@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;
}
.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;
  text-align: left;
  margin: 37px 0 100px;
}
.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;
}

.contact{
    width: 100%;
    background:#e1dedc;
    padding: 50px 0;
}
.contact .cnt-inner{
  width: 80%;
  margin: 0 auto;
}
.contact .cnt-inner .sec-ttl-area{
  width: 100%;
  text-align: center;
}
.contact .cnt-inner .sec-ttl-area .sec-ttl{
  font-size: 2rem;
}
/* Contact Form7 */

.contact .contact7 {
	width: 70%;
	box-sizing: border-box;
  padding: 50px 0;
  margin: 0 auto;
}
.contact .contact7 dd {
  width: 100%;
	margin: 0 0 30px 0;
}
.contact .contact7 dd input{
  width: 70%;
  background-color: #fff;
  line-height: 2.5rem;
  box-shadow: 2px 3px 2px #000;
}
.contact .contact7 dd textarea{
  width: 100%;
  margin: 30px 0;
  background-color: #fff;
  box-shadow: 2px 3px 2px #000;
}
.contact .contact7 dt {
  width: 30%;
	font-weight: normal;
}


/* 必須マーク */
.contact .contact7 .must {
	background: #FF1A00;
}

/* 任意マーク */
.contact .contact7 .optional {
	background: #999;
}

.contact .contact7 .must,
.contact .contact7 .optional {
	color: #FFF;
	border-radius: 3px;
	font-size: 10px;
	margin-left: 10px;
	padding: 5px 10px;
	letter-spacing: 2px;
}
.contact .btn_contact7 {
	text-align: center;
  margin: 0 0 0 70px;
}
.contact .btn_contact7 input {
	width: 70%;
	background-color: #FF1A00;;
  line-height: 4rem;
	color: #FFF;
	font-size: 1.1em;
	font-weight: bold;
	letter-spacing: 0.2em;
	border: 1px solid #FF1A00;
  border-radius: 2rem;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
  padding: 0 auto;
}
.contact .box_check{
  text-align: center;
  margin: 0 0 50px 0;
}
/* .contact .btn_contact7 input {
	width: 70%;
	background-color: #005513;
  line-height: 2rem;
	color: #FFF;
	font-size: 1.1em;
	font-weight: bold;
	letter-spacing: 0.2em;
	border: 1px solid #005513;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;	
} */
.contact .btn_contact7 input:hover {
	background-color: #FFF;
	color: #FF1A00;
}
@media screen and (min-width: 768px) {
  .contact7 dt {
    float: left;
    clear: left;
    width: 35%;
    padding: 5px 10px 5px 0;
    }
  .contact7 dd {
    margin-left: 35%;
    }

  /* .btn_contact7 input {
    width: 70%;
    background-color: #005513;
    color: #FFF;
    font-size: 1.1em;
    font-weight: bold;
    letter-spacing: 0.2em;
    border: 1px solid #005513;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;	
  }
  .btn_contact7 input:hover {
    background-color: #FFF;
    color: #005513; 
  } */

}


/*プライバシーのデザインcss↓*/
.con_pri {
  max-width: 70%;
  margin: 0  auto;
}
@media only screen and (max-width: 768px) and (max-width: 1024px) {
  .con_pri {
    width: 95%;
  }
}
.con_pri .box_pri {
  height: 300px;
  overflow-y: scroll;
  border: 1px solid #cdcdcd;
  background: #f7f7f7;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 20px 0 80px;
  padding: 20px 55px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri {
    margin-top: 4%;
    padding: 3%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .con_pri .box_pri {
    padding: 4%;
  }
}
.con_pri .box_pri .box_tori {
  text-align: left;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori {
    margin-top: 4%;
  }
}
.con_pri .box_pri .box_tori h4 {
  font-weight: normal;
  margin-bottom: 30px;
  font-size: 150%;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori h4 {
    margin-bottom: 4%;
  }
}
.con_pri .box_pri .box_tori .txt {
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori .txt {
    padding: 0;
  }
}
.con_pri .box_pri .box_num {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num {
    margin-top: 5%;
  }
}
.con_pri .box_pri .box_num h4 {
  font-weight: normal;
  font-size: 113%;
}
.con_pri .box_pri .box_num .txt {
  padding: 10px 0 0 20px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num .txt {
    padding: 3% 0 0 3%;
  }
}
.contact .contact7 .box_check {
  text-align: center;
  margin: 1em auto;
}
.contact .contact7 .box_check label {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact .contact7 .box_check label span {
  margin-left: .3em;
}




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

    .contact{
      width: 100%;
      padding: 30px 0;
    }
    .contact .cnt-inner{
      width: 80%;
      margin: 0 auto;
    }
    .contact .cnt-inner .sec-ttl-area{
      width: 100%;
      text-align: center;
    }
    .contact .cnt-inner .sec-ttl{
      font-size: 2rem;
    }
    /* Contact Form7 */

    .contact .contact7 {
      width: 100%;
      box-sizing: border-box;
      padding: 50px 0;
      margin: 0 auto;
    }
    .contact .contact7 dd {
      width: 110%;
      margin: 0 0 30px 0;
    }
    .contact .contact7 dd input{
      width: 90%;
      background-color: #fff;
      line-height: 2.5rem;
      box-shadow: 2px 3px 2px #000;
      margin: 15px 0;
    }
    .contact .contact7 dd textarea{
      width: 90%;
      margin: 30px 0;
      background-color: #fff;
      box-shadow: 2px 3px 2px #000;
    }
    .contact .contact7 dt {
      width: 30%;
      font-weight: normal;
    }

    /*プライバシーのデザインcss↓*/
    .con_pri {
      max-width: 100%;
      margin: 0 auto;
    }
}

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


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

     .header{
        width: 100vw;
        text-align: center;
        position: fixed;
        z-index: 1000;
        top: 30px;
        box-shadow: 0 2px 4px #e1dedc;
    }
    .contact{
        width: 100%;
        background:#e1dedc;
    }
    .contact .cnt-inner{
      width: 90%;
      margin: 0 auto;
    }
    .contact .cnt-inner .sec-ttl-area{
      width: 100%;
      text-align: center;
    }
    .contact .cnt-inner .sec-ttl-area .sec-ttl{
      font-size: 2rem;
    }
    /* Contact Form7 */

    .contact .contact7 {
      width: 100%;
      box-sizing: border-box;
      padding: 50px 0;
      margin: 0 auto;
    }
    .contact .contact7 dd {
      width: 100%;
      margin: 0 0 30px 0;
    }
    .contact .contact7 dd input{
      width: 100%;
      background-color: #fff;
      line-height: 2.5rem;
      box-shadow: 2px 3px 2px #000;
    }
    .contact .contact7 dd textarea{
      width: 100%;
      margin: 30px 0;
      background-color: #fff;
      box-shadow: 2px 3px 2px #000;
    }
    .contact .contact7 dt {
      width: 50%;
      font-weight: normal;
    }

    /*プライバシーのデザインcss↓*/
    .con_pri {
      max-width: 100%;
      margin: 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;
    }
}

