@charset "UTF-8";

body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Serif JP', sans-serif;
}
a{
    text-decoration: none;
    color: #333333;
}
li{
    list-style: none;
}

.wrapper{
    width: 850px;
    margin: 0 auto;
}
.sec-ttl{
    font-size: 1.4rem;
    line-height: 55px;
    margin: 100px auto 35px;
    border: 1px solid #dddddd;
    border-left: 7px solid #dddddd;
}
.link-btn{
  display: inline-block;
  width: 226px;
  line-height: 65px;
  background-color: #DDBE80;
  color: #FFFFFF;
  position: relative; /* position: relative;で矢印の位置を基点とさせます */
  text-align: center;
  text-decoration: none;
}
.link-btn:hover{
  color: red;
}
.link-btn::after{
    /* 擬似要素で矢印アイコンをつくる */
    content: '';
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    display: inline-block;
    width: 10px;
    height: 10px;
    /* 矢印アイコンの位置を設定 */
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg); /* rotate(45deg)で矢印を回転（向きを変更）させる */
}
.link-btn:hover::after{
    border-top: solid 2px red;
    border-right: solid 2px red;
}

/* slider */
.slick-slider{
  margin: 0;
  padding: 0;
}
.slick-slider img {
  width: 90vw;
  height: 100%;
  margin: 0 auto;
}

/* ヘッダー */
.header{
    width: 100%;
    padding: 20px 0;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    background-color: #FFFFFF;
    color: #333333; 
}
.header .burger-menu{
    display: block;
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 300px;
    color: #333333;
    padding: 100px 25px;
    background-color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: all .5s;
    z-index: 999;
    /* opacity: 0;    */
}

.header .main-title{
    font-size: 1.7rem;
    font-weight: 400;
    font-family: 'Noto Serif JP';
    margin-bottom: 15px;
}
.header .menu-gnavi-container .gmenu{
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}
.header .menu-gnavi-container .gmenu .menu-item a{
    font-size: 1rem;
    font-family: 'Noto Serif JP';
}

/* スクロールしたら出る固定ヘッダー */
/* is-fixedが付与されたヘッダー */
.header.is-fixed{
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(-60px);
    opacity: 0;
    transition: transform 0.6s, opacity 0.6s; 
    z-index: 999;
    display: flex;
    justify-content: flex-start;
    gap: 20%;
    align-items: center;
    box-shadow: 0 2px 4px #e1dedc;
}
/* 表示 */
.header.is-show{
    transform: translateY(0);
    opacity: 1;
    margin-bottom: 0;
    font-size: 1.2rem;
}
.header.is-fixed span.main-title{
    width: 13%;
    text-align: right;
    margin-bottom: 0;
    font-size: 1.2rem;
}
.header.is-fixed .menu-fixed-gmenu-container .gmenu{
    width: 130%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.header.is-fixed .menu-fixed-gmenu-container .gmenu .menu-item a{
    font-size: 0.9rem;
    font-family: 'Noto Serif JP';
}

/* サーチ */
/*========= 検索窓を開くためのボタン設定 ===========*/

.open-btn1{
  position: absolute;
  top:18px;
  right:30px;
  background:url("https://coco-factory.jp/ugokuweb/wp-content/themes/ugokuweb/data/7-2-3/img/icon_search.svg") no-repeat 15px center;/*虫眼鏡アイコンを背景に表示*/
  background-size: 20px 20px;
  width:50px;
  height:50px;
  cursor: pointer;/*カーソルを指マークに*/
  z-index: 1000;
}

.sp1{
  display: none;
}

/*クリック後、JSでボタンに btnactive クラスが付与された後の見た目*/
.open-btn1.btnactive{
  background:url("../img/search1.svg") no-repeat 15px center;/*閉じるアイコンを背景に表示*/
  background-size: 18px 18px;
}

/*========= 検索窓の設定 ===============*/

/*==検索窓背景のエリア*/

#search-wrap{
  position:absolute;/*絶対配置にして*/
  top:150px;
  right:20px;
  z-index: -1;/*最背面に設定*/
  opacity: 0;/*透過を0に*/
  width:0;/*横幅は0に*/
  transition: all 0.4s;/*transitionを使ってスムースに現れる*/
  border-radius: 5px;
}

/*ボタンクリック後、JSで#search-wrapに panelactive クラスが付与された後の見た目*/
#search-wrap.panelactive{
  opacity: 1;/*不透明に変更*/
  z-index: 3;/*全面に出現*/
  width:280px;
  padding:20px;
  top:60px;
  background:#fff;
}

/*==検索窓*/
#search-wrap #searchform{
  display: none;/*検索窓は、はじめ非表示*/
}

/*ボタンクリック後、JSで#search-wrapに panelactive クラスが付与された後*/
#search-wrap.panelactive #searchform{
  display: block;/*検索窓を表示*/
}

/*==検索フォームの設定*/

/*==テキスト入力とボタンinput共通設定*/
#search-wrap input{
  -webkit-appearance:none;/*SafariやChromeのデフォルトの設定を無効*/
  outline: none;
  cursor: pointer;/*カーソルを指マークに*/
  color: #666;
}

/*テキスト入力input設定*/
 #search-wrap input[type="text"] {
  width: 100%;
  border: none;
  border-bottom:2px solid #ccc;
  transition: all 0.5s;
  letter-spacing: 0.05em;
    height:46px;
  padding: 10px;
}

/*テキスト入力inputにフォーカスされたら*/
 #search-wrap input[type="text"]:focus {
  background:#eee;/*背景色を付ける*/
}

/*ボタンinput設定*/
 #search-wrap input[type="submit"] {
  position: absolute;
    top:10px;
  right:30px;
  background:url("../img/search1.svg") no-repeat right;/*虫眼鏡アイコンを背景に表示*/
  background-size: 20px 20px;
  width:30px;
  height: 60px;
}



/* about */
.about{
  width: 100%;
  text-align: center;
  margin-bottom: 25px;
  background-color: #FCFBFA;
  padding-bottom: 80px;
}
.about-info{
  display: flex;
  justify-content: space-between;
  margin: 35px auto 25px;
}
.about-info .info-list{
  width: 31%;
  margin: 0 5px;
}
.about-info .info-list img{
  width: 100%;
  object-fit: cover;
}
.about-info .info-list .info-list-ttl{
  font-size: 1.1rem;
  margin: 35px auto 45px; 
}
.about-info .info-list .info-list-text{
  font-size: 1rem;
  text-align: left;
}


/* news1 */
.news1{
  text-align: center;
  padding-bottom: 100px;
}
.news1 span{
  display: block;
  font-size: 1.2rem;
  margin: 41px auto;
}

/* news2 */
.news2{
  width: 100%;
  text-align: center ;
  padding: 1px 0 77px;
  background-color: #FCFBFA;
}
.news2 .news-list{
  margin: 0 0 50px;
}
.news2 .news-list .list-item{
  width: 100%;
  text-align: left;
  margin: 20px 0;
  border-bottom: 1px solid #EEEEEE;
}
.news2 .news-list .list-item:first-child{
  border-top: 1px solid #EEEEEE;
}
.news2 .news-list .list-item .list-ttl{
  margin: 5px 0;
}
.news2 .news-list .list-item p{
  margin-bottom: 15px;
}

/* blog */
.blog{
  text-align: center;  
  height: auto;
}
.blog-ttl{
  margin: 100px auto;
}

/* info2 */
.info2{
  width: 100%;
  text-align: center;
  background-color: #FCFBFA;
  padding: 1px 0 80px;
}
.info2-containe{
  background-color: #FFFFFF;
}
.info2 .info2-inner{
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;  
}
.info2 .info2-inner img{
  width: 410px;
  height: 230px;
}
.info2 .info2-inner .info2-text-area{
  width: 45%;
  text-align: left;
}
.info2 .info2-inner .info2-text-area p{
 line-height: 25px;
}

/* contact */
.contact{
  width: 100%;
  text-align: center;
  padding: 1px 0 90px;
}
.contact .bg-1{
  background-color: #FFFFFF;
}

.contact .btn-flex{
  display: flex;
  justify-content: space-around;
}
.contact .btn-flex .line-link-btn{
  display: inline-block;
  width: 312px;
  line-height: 65px;
  background-color: #DDBE80;
  color: #FFFFFF;
  position: relative; /* position: relative;で矢印の位置を基点とさせます */
  text-align: center;
  text-decoration: none;
}
.contact .btn-flex .line-link-btn::after{
  /* 擬似要素で矢印アイコンをつくる */
    content: '';
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    display: inline-block;
    width: 10px;
    height: 10px;
    /* 矢印アイコンの位置を設定 */
    position: absolute;
    top: 49%;
    right: 55px;
    transform: translateY(-50%) rotate(45deg); /* rotate(45deg)で矢印を回転（向きを変更）させる */
}


.contact .btn-flex .form-link-btn{
  display: inline-block;
  width: 312px;
  line-height: 65px;
  background-color: #DDBE80;
  color: #FFFFFF;
  position: relative; /* position: relative;で矢印の位置を基点とさせます */
  text-align: center;
  text-decoration: none;
}
.contact .btn-flex .form-link-btn::after{
  /* 擬似要素で矢印アイコンをつくる */
    content: '';
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    display: inline-block;
    width: 10px;
    height: 10px;
    /* 矢印アイコンの位置を設定 */
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%) rotate(45deg); /* rotate(45deg)で矢印を回転（向きを変更）させる */
}
.contact .btn-flex .line-link-btn:hover,
.contact .btn-flex .form-link-btn:hover{
  color: red;
}
.contact .btn-flex .line-link-btn:hover::after,
.contact .btn-flex .form-link-btn:hover::after{
    border-top: solid 2px red;
    border-right: solid 2px red;
}

.contact .line-link-btn2{
    display: inline-block;
    line-height: 53px;
    width: 200px;
    border: 2px solid #000;
    color: #333333;
    position: relative; /* position: relative;で矢印の位置を基点とさせます */
    text-align: center;
    text-decoration: none;
    margin: 30px 68% 95px 0;
}
.contact .line-link-btn2:hover{
    background: #333333;
    color: #fff;
}
.contact .line-link-btn2::after{
  /* 擬似要素で矢印アイコンをつくる */
    content: '';
    border: 0;
    border-top: solid 2px #333333;
    border-right: solid 2px #333333;
    display: inline-block;
    width: 10px;
    height: 10px;
    /* 矢印アイコンの位置を設定 */
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg); /* rotate(45deg)で矢印を回転（向きを変更）させる */
}
.contact .bg-2{
    background-color: #FCFBFA;
    display: flex;
    justify-content: space-between;
    padding: 55px;
}

.contact .bg-2 .contact-text{
  width: 50%;
  text-align: left;
  margin-left: 8vw;
}
.contact .bg-2 .contact-text span.contact-text-ttl{
  font-size: 1.3rem;
  margin: 0 0 45px 13vw;
}
.contact .bg-2 .contact-text p{
  font-size: 1rem;
  margin: 5px 0;
}
.contact .bg-2 .contact-text p:nth-of-type(1){
  margin-top: 45px;
}
.contact .bg-2 .map{
  width: 50%;
}
/* .contact .bg-2 .map iframe{
  width: 106%;
  object-fit: cover;
} */
.contact .bg-2 .tel{
  color: #1967D2;
}

/* page-top */
.pagetop{
  width: 55px;
  height: 55px;
  position: fixed;
  right: 50px;
  bottom: 85px;
  background-color: #7c7878b7;
  border-radius: 5px;
  opacity: 0.5; 
  z-index: 1000; 
}
.pagetop .pagetop_arrow{
  display: block;
  height: 10px;
  width: 10px;  
}
.pagetop .pagetop_arrow::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '';
  font-size: 25px;
  color: #000;
  position: absolute;
  width: 15px;
  height: 15px;
  top: -15px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  transform: translateY(20%) rotate(-45deg);
}
.pagetop .pagetop_arrow::after{
  content: 'PAGE TOP';
  font-size: 10px;
  color: #fff;
  position: absolute;
  top: 30px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  color: #000;
  transform: translateY(-7%) rotate(0deg);
}


/* footer */
.footer{
  width: 100%;
  text-align: center;
  margin: 120px auto 15px;
  font-size: 0.9rem;
}

.footer .f-menu{
  display: flex;
  justify-content: center;
  margin: 10px auto;
}
.footer .f-menu li{
  border-right: 1px solid #000;
  border-right: 1px solid #000;
}
.footer .f-menu a{
  float: left;
  border-left: solid 1px #fff;
  padding: 0 1rem;
}
.footer .f-menu li+li{
  border-left: 0;
  border-right: 1px solid #333;
}
.footer .f-menu li:first-child{
  border-left: 1px solid #000;
}



/* SP-800px */
@media screen and (max-width: 1023px){


    .wrapper{
      width: 100%;
      margin: 0 auto;
    }
    .sec-ttl{
      width: 90vw;
      margin: 100px auto 35px ;
      line-height: normal;
      padding: 10px 0;
    }
    .link-btn{
      margin: 25px auto;
    }
    .sp1{
      display: block;
    }
    
    .header{
        width: 100vw;
        text-align: center;
        position: fixed;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 4px #e1dedc;
    }
    .header .main-title{
        margin-top: -45px;
        margin-bottom: 5px;
        margin-left: 10%;
    }
        
    .header .menu-gnavi-container .gmenu{
        display: none;
    }


    /* burger */
    .burger{
        width: 50px;
        height: 50px;
        background: #fff;
        margin: 0 0 0 8vw;
        cursor: pointer;
        position: relative;
        border-radius: 5px;
        z-index: 1000;
    }
    .burger:hover{
        background-color: #ddd;
    }

    /* .burger アニメーション */
    .burger span{
        display: inline-block;
        transition: all .4s; /*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 2px;
        border-radius: 5px;
        background: #333333;
        width: 45%;
    }

    .burger span:nth-of-type(1) {
        top:13px;	
    }

    .burger span:nth-of-type(2) {
        top:19px;
    }

    .burger span:nth-of-type(3) {
        top:25px;
    }

    .burger span:nth-of-type(3)::after{ 
        content: "Menu"; /*3つ目の要素のafterにMenu表示を指定*/
        position: absolute;
        top: 5px;
        left: -3px;
        color: #333333;
        font-size: 0.6rem;
        text-transform: uppercase;
    }

    /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

    .burger.is-active span:nth-of-type(1) {
        top: 14px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .burger.is-active span:nth-of-type(2) {
        opacity: 0;
    }

    .burger.is-active span:nth-of-type(3){
        top: 26px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .burger.is-active span:nth-of-type(3)::after {
        content:"Close";/*3つ目の要素のafterにClose表示を指定*/
        transform: translateY(0) rotate(-45deg);
        top:5px;
        left:4px;
    }


    .burger.is-active{
        position: relative;
        z-index: 1000;
    }

    .burger-bg{
        width: 100vw;
        height: 100vh;
        display: none;
        background-color: #000;
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 998;
    }

    /* burger-menu */
    .burger-menu.is-active{
        left: 0;
        opacity: 1;   
    }
    .burger-bg.is-active{
		display: block;
      	opacity: 0.5;
    }
    .burger-menu .menu-item{
      	margin: 15px 0;
    }
    .burger-menu .menu-item a{
        margin: 10px 0;
        color: #333333;
    }
    .burger-menu .menu-item a:hover{
        border-bottom: 3px solid #333;
    }

    .header.is-fixed .burger.is-active{
        position: relative;
        z-index: 1000;
    }

    .header.is-fixed .menu-fixed-gmenu-container .gmenu{
      display: none;
    }

    .link-btn{
      display: inline-block;
      width: 226px;
      line-height: 65px;
      background-color: #DDBE80;
      color: #FFFFFF;
      position: relative; /* position: relative;で矢印の位置を基点とさせます */
      text-align: center;
      text-decoration: none;
    }
    .link-btn:hover{
      color: red;
    }
    .link-btn::after{
        /* 擬似要素で矢印アイコンをつくる */
        content: '';
        border: 0;
        border-top: solid 2px #fff;
        border-right: solid 2px #fff;
        display: inline-block;
        width: 10px;
        height: 10px;
        /* 矢印アイコンの位置を設定 */
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%) rotate(45deg); /* rotate(45deg)で矢印を回転（向きを変更）させる */
    }
    .link-btn:hover::after{
        border-top: solid 2px red;
        border-right: solid 2px red;
    }

    .contact .btn-flex .line-link-btn:hover,
    .contact .btn-flex .form-link-btn:hover{
      color: red;
    }
    .contact .btn-flex .line-link-btn:hover::after,
    .contact .btn-flex .form-link-btn:hover::after{
        border-top: solid 2px red;
        border-right: solid 2px red;
    }


    
    /* silder */
    .slider-area{
        width: 100%;
        padding: 100px 0 0 0;
    }

    /* news2 */
    .news2{
        width: 100%;
        
    }
    .news2 .news-list{
      width: 90%;
      margin: 0 auto;
    } 

    /* info2 */
    .info2{
      width: 100%;
    }
    .info2 .info2-container{
      width: 90%;
      margin: 0 auto;
    }
    .info2 .info2-text-area{
      width: 43%;
      margin: 0 0 0 24px;
    }

    /* contact */
    .contact .bg-2 .contact-text{
      margin: 0 20px 0 0;
    }
    .contact .bg-2 iframe{
      width: 100%;
    }

    /* footer */
    .footer .f-menu{
      flex-wrap: wrap;
    }
}

/* SP 480px */
@media screen and (max-width: 781px){


    .wrapper{
      width: 100%;
    }
    .header{
      position: fixed;
      top: 0;
    }

    /* about */
    .about .about-info{
      flex-direction: column;
    }
    .about .info-list{
      width: 100%;
    }
    .about .info-list img{
      width: 100%;
    }
    .about .info-list .info-list-text{
      line-height: 200%;
      margin-bottom: 30px;
    }

    /* news2 */
    .news2 .news-list .list-text{
      font-size: 0.9rem;
    }
    /* info2 */
    .info2 .info2-inner{
      flex-direction: column;
    }
    .info2 .info2-inner img{
      width: 100%;
      margin: 0 auto 20px;
    }
    .info2 .info2-inner .info2-text-area{
      width: 100%;
      margin: 0 auto;
    } 

    /* contact */
    .contact .btn-flex{
      flex-direction: column;
    }
    .contact .btn-flex .line-link-btn,
    .contact .btn-flex .form-link-btn{
      margin: 10px auto;
    }

    .contact .bg-2{
      flex-direction: column;
      text-align: center;
      padding: 20px;
    }
    .contact .bg-2 .contact-text{
      width: 100%;
      margin-bottom: 30px;
    }
    .contact .bg-2 .map{
      position: relative;
      width: 100%;
      height: 450px;
      padding-top: 75%; /* 比率を4:3に固定 */
      /* height: 0;
      padding-top: 75%; */ /* 比率を4:3に固定 */
    }
    .contact .bg-2 .map iframe{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 999;
    }
   
    /* footer */
    .footer{
        width: 100%;
        
    }
    .footer .f-menu{
        width: 100%;
        flex-wrap: wrap;
        
    }
    .footer .f-menu li{
        width: 30%;
        line-height: 25px;
        margin: 3px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .footer .f-menu li+li{
        border-right: none;
    }
    .footer .f-menu li:first-child{
        border-right: none;
        border-left: none;
    }
    .footer .f-menu li a{
      font-size: 0.9rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
}