@charset "UTF-8";

/* css document */


.w960{
    max-width:960px;
    margin: auto;
}
.mt50{margin-top:50px;}
.w100p{width:100%}
.japanenlogo img{border:1px solid #ccc;}
.txidt1{text-indent:1em;}
.bg-gray{
    background: #e5c286;
    padding:30px 0 60px;
}

.minyu {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}

/*header設定*/

@media screen and (max-width:480px){
#header{
	position: relative;/*ローディング画像などを表示す際の基点とするため指定*/
    height: 25vh;/*高さを全画面にあわせる*/
    text-align: center;
    color: #fff;
    /*ローディング画面時＆動画が表示されないときに表示する背景画像のレスポンシブ化*/
     background-size: cover;
}
}

@media screen and (min-width:480px){
#header{
	position: relative;/*ローディング画像などを表示す際の基点とするため指定*/
    height: 100vh;/*高さを全画面にあわせる*/
    text-align: center;
    color: #fff;
    /*ローディング画面時＆動画が表示されないときに表示する背景画像のレスポンシブ化*/
     background-size: cover;
}
}



/* ローディングアイコン設定 */

#loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    font-weight: bold;
}

/*jQueryで付与されたdisappearクラスがついたらロゴエリアを非表示*/

#loading.disappear{
     display: none;   
}


/* youtube設定 */

@media screen and (min-width:480px){

#youtube-area{
    position: fixed;
    z-index: 1;/*最背面に設定*/
    top: 0;
    right:0;
    left:0;
    bottom:0;
    overflow: hidden;
 	opacity: 0;    
}
}


@media screen and (max-width:480px){

#youtube-area{
    overflow: hidden;
 	opacity: 0;    
}
}
/*jQueryで付与されたappearクラスがついたらYoutubeエリアをふわっと表示*/
#youtube-area.appear {
	animation-name:PageAnimeAppear;
	animation-duration:.5s;
	animation-fill-mode:forwards;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

@media screen and (max-width:480px){
#youtube {
/*天地中央配置*/
  position: absolute;
  top: 12%;
  left: 50%;
  transform: translate(-50%, -50%);
/*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */

  min-width: 100%;
}
}

@media screen and (min-width:480px){
#youtube {
/*天地中央配置*/
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
/*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */

  min-width: 100%;
}
}
/*youtubeがクリックされないためのマスク*/
#youtube-mask{
    position: absolute;
    z-index: 2;/*下から2番目に表示*/
    top:0;
    width:100%;
    height: 100%;
}


/*youtube 上のロゴ */
h1{
  position:absolute;
  z-index: 2;/*下から2番目に表示*/
/*天地中央配置*/
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
/*色指定*/
  color:#fff;
  text-shadow: 0 0 15px #666;
}

/*下のコンテンツ*/
#container{
    position: relative;/*relativeを指定してfixed指定をした#youtube-areaの上に表示*/
    z-index: 3;/*一番上に表示*/
    /*見た目の調整*/
	background:#fff;
	padding:50px 0 0;

}/*-----------------------------
改行に関するcss
-----------------------------*/

/* スマホ・タブレットで改行しない */

@media screen and (max-width:480px){
    .s-nobr{
        display:none;
    }

}

/* パソコンで改行しない */

@media screen and (min-width:480px){
    .p-nobr{
        display:none;
    }
.pcma{margin:0 100px;}
}

/*-----------------------------
表示に関するcss
-----------------------------*/


@media screen and (max-width:480px){

    /*スマホのときだけ表示しない設定*/
    .s-none{
        display: none;
    }

    /* スマホのときだけ左寄せ */
    .s-left{
        text-align:left;    
    }


    .s-padding{
        padding:0 5px;    
    }

}

@media (min-width:480px){
    /* パソコン以上で表示しない */
    .pc-none{
        display: none;
    }

.pc-center{
    text-align: center;
}

}

/*-----------------------------
リンク
-----------------------------*/


a:hover img{
    opacity: 0.6;
    filter: alpha(opacity=50);
    -webkit-transition:0.4s;
    transition: 0.4s;
}

.center{
    text-align: center;
}

.right{
    text-align: right;
}

.left{
    text-align: left;
}

.mb10{
    margin-bottom:10px;
}

.mb20{
    margin-bottom:20px;
}

.mb30{
    margin-bottom:30px;
}
.mb50{
    margin-bottom:50px;
}

.lh17{
    line-height: 1.7;
}

.lh20{
    line-height: 2.0;
}

#main .h3-index a{
    color:#3248ab;
    text-decoration:none;
}

.font11{
    font-size:11px !important;
    font-size:1.1rem !important;
}

.font12{
    font-size:12px !important;
    font-size:1.2rem !important;
}

.font13{
    font-size:13px !important;
    font-size:1.3rem !important;
}

.font14{
    font-size:14px !important;
    font-size:1.4rem !important;
}

.font15{
    font-size:15px !important;
    font-size:1.5rem !important;
}

.font16{
    font-size:16px !important;
    font-size:1.6rem;
}

.font17{
    font-size:17px !important;
    font-size:1.7rem !important;
}

.font18{
    font-size:18px !important;
    font-size:1.8rem !important;
}

.font19{
    font-size:19px !important;
    font-size:1.9rem !important;
}

.font20{
    font-size:20px !important;
    font-size:2.0rem !important;
}

.font21{
    font-size:21px !important;
    font-size:2.1rem !important;
}

.font22{
    font-size:22px !important;
    font-size:2.2rem !important;
}

.font23{
    font-size:23px !important;
    font-size:2.3rem !important;
}

.font24{
    font-size:24px !important;
    font-size:2.4rem !important;
}

.font25{
    font-size:25px !important;
    font-size:2.5rem !important;
}

.font26{
    font-size:26px !important;
    font-size:2.6rem !important;
}

.font27{
    font-size:27px !important;
    font-size:2.7rem !important;
}

.font28{
    font-size:28px !important;
    font-size:2.8rem !important;
}

.font29{
    font-size:29px !important;
    font-size:2.9rem !important;
}

.font30{
    font-size:30px !important;
    font-size:3.0rem !important;
}

.font31{
    font-size:31px !important;
    font-size:3.1rem !important;
}

.ora{
    color:#ff6c00 !important;;
}

.orab{
    color:#ff6c00 !important;;
}

.gr{
    color:#00b623 !important;;
}

.grb{
    color:#02712f !important;;
    font-weight: bold;
}

.blue{
    color:#004098 !important;;
}

.blue-light{
    color:#0090d6 !important;;
}


@media screen and (max-width:480px){
    
    /*スマホのときだけ表示しない設定*/
    .s-none{
        display: none;
    }
    
    /* スマホのときだけ改行しない */
    .s-nobr{
        display:none;
    }
    
    /* スマホのときだけ左寄せ */
    .s-left{
        text-align:left;    
    }
    
}

/* パソコンの時は改行しない */

@media screen and (min-width:768px){
    .p-nobr{
        display:none;
    }

}


/* メインフレーム */
body {
    font-size: 1.6rem;/* 16px */
    font-family:  '游明朝 Medium','Yu Mincho Medium',YuMincho Medium,'Hiragino Mincho Pro',serif;
    -webkit-text-size-adjust: 100%;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    color: #333;
}

.page-cont{
    max-width:960px;
    background: rgba(255,255,255,0.6);
    padding:20px;
    margin:0 auto 20px;
    /* //border-radius: 16px;
    //-webkit-border-radius: 16px;
    //-moz-border-radius: 16px; */
}

.content-title{
    margin-bottom:20px;
}


/* ヘッダ */
header {
    background: #fff;
/*     margin-bottom:30px; */
    
}
header a, #main a {
    text-decoration: underline;
    color:#333;
}

header a:hover, #main a:hover {
    text-decoration: none;
    color:#4791d1;
}

header h1.col img{
    /* //mix-blend-mode:multiply; */
}

.header-tel-box{
    color:#4cd364;
}

header .tel-link {
    color: #4cd364;
    font-weight: bold;
}

@media ( min-width : 769px ) { 

header h1{
    text-align: left;
}
    
}

.font-tel{
    font-family: 'Arimo', sans-serif;
}

/* フッタ */

footer {
    color:#fff;
    background: #2f7abe;
}

#footer-nav{
    border-top:1px solid #fff;
    border-bottom:1px solid #fff;
    background:#4cd364;
}

div#footer-nav li{
    border-left:1px solid #fff;
}

div#footer-nav li:last-child{
    border-right:1px solid #fff;
}

div#footer-nav a {
    text-decoration: none;
    color:#fff;
    font-size:1.1rem;
}

div#footer-nav a:hover {
    text-decoration: none;
    color:#94deff;    
}

footer a { 
    text-decoration: none;
    color:#333;
}

footer a:hover {
    text-decoration: underline;
    color:#666;    
}

address{
    font-size:1.3rem;
}


/* nav */
@media ( min-width : 769px ) {  
    nav#main-nav ul li { 
        font-size: 1.5rem;
        font-weight: bold;
        border-left:1px solid #999;
    }
    
    nav#main-nav ul li:last-child{
        border-right:1px solid #999;
    }
    
    
    nav#main-nav ul li a{
        text-decoration: none;
        color:#333;
    }
    
    
}

/* スマホ用プルダウンメニュー */
.slicknav_menu {
    background-color:#004098;
}

.slicknav_btn {
    background-color:#0090d6;
    color:#fff;
}
.slicknav_menu .slicknav_menutxt {
    color: #FFF;
    text-shadow: 0px 1px 3px #3248ab;
}

.slicknav_nav a:hover {
    color:#fff;
    background-color:#3248ab;        
}



/* 共通　*/



/*---------------------------------
index
---------------------------------*/

#main .bt-company a:link ,#main .bt-company a:visited{
    color:#333;
    text-decoration: none;
}

#main .bt-company a:hover{
    color:#5bb66b;
}

.bt-s{
width:60%;
margin:0 auto;
}


.bt-common{
    display: block;
    border:1px solid #666;
    background: #fff;
    text-align: center;
    position: relative;
}

.bt-common a{
    border:1px solid #ccc;
    padding:10px 20px;
    display: block;
}

.bt-common .fas{
    position: absolute;
    right:10px;
    top:50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}





@media(min-width:768px){
.work-bt{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width:600px;
    margin: 20px auto;
}

.work-bt li{
    -ms-flex-preferred-size: 1;
    flex-basis: 1;
    color:#004098;
    font-size:1.4rem;
    margin-right:20px;
}
    
}

.work-bt li:before{
    font-family: "Font Awesome 5 Free";
    content: "\f152";
    color:#004098;
    margin-right:6px;
    font-size:1.1rem;
    
}

#main .work-bt li a:link,
#main .work-bt li a:visited{
    color:#0a6ef6;
    text-decoration: none;
}

/*===============================
TOPページスライドショー
===============================*/

/* スライドの文字の動き　*/

.swiper-container{
    width:100%;
    height:100%;
}

.swiper-container .swiper-slide {
    position: relative;
}

.swiper-slide-content {
    position: absolute;
    opacity: 0;
    -webkit-transition: all 3s ease 0s;
    transition: all 3s ease 0s;
    z-index:10000;
}

.swiper-slide-content-1{
    right:50px;
    bottom:50px;
}

.swiper-slide-content-2{
    left:60px;
    top:50%;
    -webkit-transform:translateY(-50%);
    transform:translateY(-50%);
}

@media(max-width:768px){
    .swiper-slide-content{
        width:60%;
        left:50%;
        top:50%;
        -webkit-transform:translate(-50%, -50%);
        transform:translate(-50%, -50%);
    }
    
}

/* スライドのレイアウト */


.swiper-container {
    max-width: 100%;
    height: auto;
}

.slide-img{
    width:100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.slide-img {
    -o-object-position: 0 100%;
    object-position: 0 100%
}

.slide-img {
    -o-object-position: 100% 100%;
    object-position: 100% 100%
}

/*-- content --*/

.row-order > div:first-child{
    float:right;    
}

.row-order > div:last-child{
    float:left;
    margin-right:2%;
    margin-left:0;
}

.top-news dl{
    text-align: left;
    margin-bottom:10px;
    padding-bottom:10px;
    border-bottom:1px dashed #999;
}

.top-news dt{
    display: inline-block;
}

.top-news dd{
    display: inline-block;
}

/*-- posting --*/

.top-pos{
    background: url(img/index/bg-pos.png) no-repeat right top;
    padding: 10px 0 20px;
}

.wd25{
 width:25%;
}



/*---------------------------------
content
---------------------------------*/

h2{

    font-size:2.0rem;
    margin-bottom:1em;
    line-height:1.75;
}

.h2-page{
    margin-bottom: 10px; 
    font-size:2.5rem;
    font-weight: normal;
    font-weight: bold;
    /* //perspective-origin: relative; */
    position: relative;
    padding: 0 .5rem;
}

/* .h2-page:before,
.h2-page:after{
    position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  content: '';
  background-image: -webkit-gradient(linear, right top, left top, from(#30cfd0), to(#330867));
  background-image: linear-gradient(to left, #30cfd0 0%, #330867 100%);
} */

.h2-page:before{
    top:0;
}

.h2-page:after{
    bottom:0;
}

h3.content{
    font-size:2.8rem;
    color:#333;
    position: relative;
}



/* index */

.top-cont img{
    margin-bottom:20px;
}

.h3-cont4 p{
    text-align: center;
}


.go-merit{
    text-align:right;
    font-size:1.3rem;
}

/* ---------------------------------
新聞折込
---------------------------------*/


    header .content-title.orikomi {
        background:url(./img/example/main-image.jpg) no-repeat center center;
        background-size:cover;
        height:200px;
    }




/* ---------------------------------
申し込み・お問い合わせ
---------------------------------*/

.h3-page span{
    border-left:5px solid #0A6EF6;
    padding-left:10px;
    text-align: left;
    color:#0A6EF6;
    font-size:2.1rem;
    font-weight:normal;
}

.h3-page{
    border-bottom:1px dashed #0a6ef6;
    text-align: left;
    margin-bottom:20px;
}



.h3-contact{
    background: #feffbd;
    border:1px dashed #ff6c00;
    line-height:2;
    padding:10px 0 10px 80px;
    text-align: left;
    position:relative;
    color:#ff6c00;
    margin:40px 0 20px 0;
}


/*---------------------------------
会社概要
---------------------------------*/

.about1-box dl:nth-child(2n) { 
    background-color:#C9E8F1;
}
.about2-box dl { 
    border-bottom:1px dotted #3248ab;
}

.info-about{
    display:table;
    width:100%;
    margin:2em auto;
    border:1px solid #999;
    border-radius: 12px;
}

.info-about-text{
    display: table-cell;
    padding:1em 0.4em;
    vertical-align: middle;
    background:#016330;
    color:#fff;
    border-radius: 12px 0 0 12px;
    font-size:1.2rem;
}

.info-about-tel{
    display:table-cell;
    padding:1em 0.4em;
    vertical-align: middle;
    font-size:1.8rem;
}

/* //.company-tel{
    font-family: 'Crimson Text', serif;
} */

.about-reform dt{
    color:#02712F;
}

.about-reform dd{
    margin-bottom:10px;
}


@media ( min-width : 768px ) {

    .info-about{
        width:80%;
    }

    .info-about-text{
        font-size:1.5rem;
        padding:1em 0.5em;
        text-align: center;
    }

    .info-about-tel{
        font-size:3.2rem;
        padding:1em 0.5em;
        text-align: center;
    }


}



@media (min-width: 769px){
    
    .h2-top{
        font-size:3.0rem;
        text-align: left;
        margin:30px auto;
        text-align: center;
    }
  
}

    .h3-top{
        font-size:2.5rem;
        text-align: left;
        margin:0 auto 30px;
        text-align: center;
    } 



/*--------------------------------
company
---------------------------------*/

h3.about{
    font-size:2.4rem;
    font-weight: normal;
    margin-bottom:30px;
}

.googlemap iframe { width:100%; height:350px; }
.googlemap-link-box { text-align: right; }
.about1-box dl { padding:10px; }
.about1-box dl dt { float:left; width: 120px; }

.about2-box { margin-bottom:50px; }
.about2-box dl { 
    padding:10px; 
}

.about2-box dl {
    display: table;
    width:100%;
}
    
.about2-box dl dt {
    display: table-cell;
    width: 40%;
    vertical-align: middle;    text-align: center;
}

.about2-box dl dd{
    display: table-cell;padding: 10px;
}



@media ( min-width : 769px ) {  
    header .content-title.company {
        background-image:url(./img/company/main-image.jpg);
        background-repeat:no-repeat;
        background-size:cover;
        background-position:center;
        height:200px;
    }
}

@media ( max-width : 768px ) {
    header .content-title.company {
        background-image:url(./img/company/main-image.jpg);
        background-repeat:no-repeat;
        background-size:cover;
        background-position:left;
        height:200px;
    }
}

.h4-recruit{
    text-align: center;
    margin-bottom:20px;
    font-size:1.8rem;
    font-weight: normal;
    color:#004098;
    
}

.h4-recruit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.h4-recruit:before,
.h4-recruit:after {
    border-top: 1px solid #004098;
    content: "";
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
.h4-recruit:before {
    margin-right: 1rem;
}
.h4-recruit:after {
    margin-left: 1rem;
}

    
/*---------------------------------
contact
---------------------------------*/

 
    header .content-title.contact {
        background-image:url(./img/contact/main-image.jpg);
        background-repeat:no-repeat;
        background-size:cover;
        background-position:center center;
        height:200px;
    }



.tel-box{
    border:10px solid #afe1ed;
    max-width:800px;
    margin:auto;
    padding:40px 20px;
}

.contact-box th,.contact-box td{
    vertical-align: top;
    padding:10px;
    text-align: left;
}

.contact-tel{
    font-size:4.2rem;
    color:#1170b8;
    font-weight: bold;
}

.contact-box{
    line-height: 2.0em;
}

.contact-info{
    text-align:center;
    font-size:2.1rem;
    margin-bottom:10px;
    color: #004098;
}

@media(max-width:640px){
    .contact-box th,.contact-box td{
        display: block;
        padding:5px;
    }
    .contact-tel{
        font-size:2.4rem;
    }
}


/*---------------------------------
部数表
---------------------------------*/
    
    

    header .content-title.price{
        background-image:url(./img/reform/main-image.jpg);
        background-repeat:no-repeat;
        background-size:cover;
        background-position:center center;
        height:200px;
    }



.h4-price{
    text-align: center;
    font-size:1.8rem;
}

.price-ta{
    width:100%;
}

.price-ta th,.price-ta td{
    border:1px solid #ccc;
    padding:10px;
}

.price-ta-att{
    text-align: right !important;
    font-size:12px;
}

@media(max-width:600px){
    .price-ta td:nth-child(2){
        width:50%;
    }
}

.price-ta td.price-ta-att{
    border-top:none;
    border-right:none;
    border-left:none;
}

.price-ta th{
    background: #e6e6e6;
}

.price-ta-kanri th{
    background: #f2f2f2;
}

.price-ta td:first-of-type{
    width:25%;
    font-weight: bold;
}

.price-ta td:last-of-type{
    width: 200px;
    text-align: center;
}

.price-ta-cont{
    text-align: left !important;
    font-weight: normal !important;
}

.busu-box{
    border:1px solid #ccc;
    margin:0 auto;
    padding:40px;
    display: flex;
    flex-wrap:wrap;
    justify-content: space-between;
    max-width:600px;
}

.price-title{
    text-align: right;
    text-align: center;
}

.price-pdf{
    text-align: center;
    flex-basis:31%;
    margin:1%;
}

@media(max-width:599px){
    .price-title{
        width:100%;
        margin-bottom:20px;
    }
}


.price-title img, .price-pdf img{
    max-width:80px;
}


/*---------------------------------
広告
---------------------------------*/

@media ( min-width : 769px ) {
    header .content-title.advertising {
        background:url(./img/ad2/main-image.jpg) no-repeat center center;
        background-size:cover;
        height:200px;
    }
}

@media ( max-width : 768px ) {
    header .content-title.advertising {
        background-image:url(./img/ad2/main-image.jpg);
        background-repeat:no-repeat;
        background-size:cover;
        background-position:left;
        height:200px;
    }
}



/*---------------------------------
お問い合わせボタン
---------------------------------*/

.bt-contact {
    max-width: 380px;
    margin: 40px auto 80px;
}
.bt-contact a {
    position: relative;
    display: block;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    text-align: center;
}

.bt-contact a:link,
index.php.bt-contact a:visited{
    text-decoration: none !important;
    color:#fff !important;
}

.bt-contact a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(155deg, #fff 40%, #d9d9d9 60%, #d9d9d9 70%, #fff 90%); */
    /* //border-radius: 7em; */
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.bt-contact a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    /* //background-color: #330867; */
    background: -webkit-gradient(linear, left top, right top, from(#330867) , to(#30cfd0));
    background: linear-gradient(to right, #330867 , #30cfd0);
    /* //border-radius: 7em; */
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

#header a{
    color:#fff;
}


.bt-contact a span {
    position: relative;
    display: block;
    padding: 2.8rem 5rem;
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
    overflow: hidden;
    z-index: +1;
    color:#fff;
}
/* .bt-contact a span::before {
    content: "";
    position: absolute;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.bt-contact a::after, .bt-contact a span {
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.bt-contact a:hover::after, .bt-contact a:hover span {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}
.bt-contact a:hover span::before {
    -webkit-animation: shine 1s ease-in-out 1;
    animation: shine 1s ease-in-out 1;
} */
/* @-webkit-keyframes shine {
    0% {
        -webkit-transform: scale(1) rotate(45deg);
        transform: scale(1) rotate(45deg);
        opacity: 0;
    }
    10% {
        -webkit-transform: scale(1) rotate(45deg);
        transform: scale(1) rotate(45deg);
        opacity: 0.5;
    }
    20% {
        -webkit-transform: scale(4) rotate(45deg);
        transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: scale(50) rotate(45deg);
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
}
@keyframes shine {
    0% {
        -webkit-transform: scale(1) rotate(45deg);
        transform: scale(1) rotate(45deg);
        opacity: 0;
    }
    10% {
        -webkit-transform: scale(1) rotate(45deg);
        transform: scale(1) rotate(45deg);
        opacity: 0.5;
    }
    20% {
        -webkit-transform: scale(4) rotate(45deg);
        transform: scale(4) rotate(45deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: scale(50) rotate(45deg);
        transform: scale(50) rotate(45deg);
        opacity: 0;
    }
} */

/*------------------------------------------
フッター
-------------------------------------------*/

.foot-logo{
    width:320px;
}

/*------------------------------------------
施工事例
-------------------------------------------*/

.ex-photo{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media(min-width:768px){
    .ex-photo > div{
        flex-basis: 25%;
        padding:1%;
    }
}