@charset "UTF-8";
/* CSS Document */

/*----- カタログ請求について -------------------------*/

#catalog{
	margin:0 auto;
	font-size: 18px;
}

#catalog .heading {
	background-image: url(../../img/usr/cfa_catalog/title_flower.png);
	background-repeat: no-repeat;
	background-position: right top;
}
#catalog .heading .text {
	padding: 40px 0 30px 0;
}

#catalog .bg_firstview {
    background-image: url(../../img/usr/cfa_catalog/main.png);    /* 背景画像指定 */
    text-align:  center;    /* 文字中央寄せ */
    padding:  190px;        /* 余白指定 */
}

.bg_firstview > .btn-flat-logo {
  position: relative; top:260px;
  display: inline-block;
  font-size: 40px;
  font-weight: bold;
  padding: 0.25em 1em;
  text-decoration: none;
  color: #ffffff;
  background: darkgreen;
  transition: .4s;
}

.bg_firstview > .btn-flat-logo:hover {
  background: lightgreen;
}

#catalog .heading h3 {
	font-size: 28px;
	font-weight: bold;
	color: #528A1F;
	margin-bottom: 5px;
}

#catalog .catalog_box {
	display: -webkit-flex;
	display: flex;
	padding-top: 50px;
	padding-bottom: 50px;
}
#catalog .catalog_box .image {
	width: 300px;
}
#catalog .catalog_box .text {
	-webkit-flex: 1;
	flex: 1;
}
#catalog .catalog_box div:first-child {
	padding-right: 30px;
}
#catalog .catalog_box h4 {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 20px;
}
#catalog .bline {
	border-top-width: 1px;
	border-top-style: dotted;
	border-top-color: #000;
}

.last{
    text-align:  center;
    font-size: 20px;
}
.point{
    color: darkorange;
    font-weight: bold;
}  

.bg_last{
    padding:  20px 0 0 300px; 
}

.bg_last > .btn-flat-logo {
  font-size: 30px;
  font-weight: bold;
  padding: 0.25em 1em;
  text-decoration: none;
  color: #ffffff;
  background: darkgreen;
  transition: .4s;
}

.bg_last > .btn-flat-logo:hover {
  background: lightgreen;
}

/* 点滅 */
.blinking{
	-webkit-animation:blink 0.1s ease-in-out infinite alternate;
    -moz-animation:blink 0.1s ease-in-out infinite alternate;
    animation:blink 1s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}