@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)で矢印を回転（向きを変更）させる */
}
.w12{
  max-width: 1200px;
}


/* ヘッダー */
.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;
}

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

.sp1{
  display: none;
}
/*========= 検索窓の設定 ===============*/

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

#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;
}

/* page-ttl */
.page-ttl{
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  line-height: 1;
  color: #534741;
  margin: 37px auto 10px;
}
.page-ttl .en{
  text-transform: uppercase;
  display: block;
  font-size: 2.8rem;
  margin-bottom: 7px;
}
.page-ttl .ja{
  display: block;
  font-size: 0.9rem;
}

/* body */
.inner{
    width: 1140px;
    margin: 0 auto;
}

/* ttl-img-area */
.ttl-img-area{
  width: 80%;
}
.ttl-img-area img{
  width: 100%;
  margin: 10px 0 0 30px;
}

/* info-img-area */
.info-img-area{
  width: 725px;
  margin: 0 auto;
}
.info-img-area img{
  width: 100%;
  margin: 15px 0;  
}

/* 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;
  gap: auto;
  margin: 10px auto;
  flex-wrap: wrap;
}
.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 1023 */
@media screen and (max-width: 1023px){

    html{
      margin: 0;
      padding: 0;
    }
    .inner{
      width: 95%;
      margin: 0 auto;
    }
    .sec-ttl{
      width: 100%;
      margin: 10px auto 35px ;
      line-height: 80px;
      padding: 10px 0;
    }
    .link-btn{
      margin: 25px auto;
    }
    .sp1{
      display: block;
    }
    .page-ttl{
      padding-top: 105px;
    }
    .header{
        width: 100vw;
        text-align: center;
        position: fixed;
        z-index: 1000;
        top: 0;
        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 .menu-fixed-gmenu-container .gmenu{
      display: none;
    }

    /* .ttl-img-area */
    .ttl-img-area{
      width: 100%;
    }
    .ttl-img-area img{
      width: 100%;
      margin: 10px 0 0 10px;
    }

    /* info-img-area */
    .info-img-area{
      width: 75vw;
      margin: 0 auto;
    }
    .info-img-area img{
      width: 100%;
      margin: 15px 0;  
    }
}

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


    .inner{
        width: 90%;
        margin: 0 auto;
    }

    /* info-img-area */
    .info-img-area{
      width: 90vw;
      margin: 0 auto;
    }
    .info-img-area img{
      width: 100%;
      margin: 15px 0;  
    }

    /* 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;
    }
}

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


    .inner{
        width: 90%;
        margin: 0 auto;
    }

    /* info-img-area */
    .info-img-area{
      width: 90vw;
      margin: 0 auto;
    }
    .info-img-area img{
      width: 100%;
      margin: 15px 0;  
    }

    /* 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;
    }
}