@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333; /* RGB */
  font-family: "Noto Serif JP","游明朝体", "Yu Mincho", "linotype-didot", " sans-serif" , "serif" , "Noto Sans JP" ;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
}

a:hover {
  opacity: 0.5;
}
.none {
    display: none;
}



/*
.blur{
  animation-name:blurAnime;
  animation-duration:2.3s;
  animation-fill-mode:forwards;
}

@keyframes blurAnime{
  from {
  filter: blur(10px);
  transform: scale(1.02);
  opacity: 0;
  }

  to {
  filter: blur(0);
  transform: scale(1);
  opacity: 1;
  }
}

.fadeUpTrigger{
  opacity: 0;
}
*/


/* 下から */

.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration: 2.3s;
  animation-fill-mode:forwards;
  opacity:0;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
  





/* header */
.header {
  height: 90px;
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0px 10px 10px -5px rgba(112,112,112,0.1);
}
.header-content {
  max-width: 1080px;
  height: 90px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.rogo_a {
  width: 250px;
}
.rogo {
  object-fit: cover;
  margin-top: 15px;
}
#g-nav {
  display: block;
  text-align: right;
  padding-left: 15px;
}
#g-nav ul {
  margin-top: 30px;
}

#g-nav ul li {
  display: inline-block;
  margin-left: 50px;
  font-size: 2.5rem;
  font-weight: 500;
}
#g-nav a {
  color: #333;
}
#g-nav li:last-child a {
  color: #cc8483;
}
#g-nav a {
  text-decoration: none;
  font-family: linotype-didot, serif;
}

/*==================================================
　5-3-3 左から右に線が伸びる（下部）
===================================*/
.gnavi li a{
  /*線の基点とするためrelativeを指定*/
position: relative;
padding-bottom: 10px;
}
.gnavi li.current a,
.gnavi li a:hover{
  color:#707070;
}
.gnavi li a::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 0;
  left: 0%;
  /*線の形状*/
  width: 100%;
  height: 1px;
  background:#707070;
  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1);/*X方向0、Y方向1*/
  transform-origin: left top;/*左上基点*/
}

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
  transform: scale(1, 1);/*X方向にスケール拡大*/
}






.nav-drawer__title {
  display: none;
}
.nav-cat {
  display: none;
}




@media screen and (max-width: 1127px) { 
  .header-content {
      width: 100%;
      height: 90px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
  }
  .rogo {
      object-fit: cover;
      align-items: center;
      height: 68px;
      margin-left: 39px;
  }
  .header-navigation ul li {
      display: none;
  }
  .gnavi li a::after {
    display: none;
  }


/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
top:0;
  right: -120%;
width:100%;
  height: 100vh;/*ナビの高さ*/
background:#F8ECE2;
  /*動き*/
transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
  right: 0;
}



/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top:50%;
  left:35%;
  transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
list-style: none;
text-align: center;
}

#g-nav li a{
color: #333;
text-decoration: none;
padding:10px;
display: block;
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: bold;
padding-bottom: 50px;
text-align: center;
}
#g-nav li:last-child a {
  color: #333;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
top: 14px;
right: 10px;
cursor: pointer;
  width: 100px;
  height:100px;
}

/*×に変化*/  
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 5px;
  border-radius: 2px;
background-color: #cc8483;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
top:15px; 
}

.openbtn span:nth-of-type(2) {
top:28px;
}

.openbtn span:nth-of-type(3) {
top:41px;
}

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

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

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





@media screen and (max-width: 480px) { 
  .header {
      height: 50px;
  }
  .header-content {
      width: 100%;
      height: 50px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
  }
  .rogo {
      object-fit: cover;
      align-items: center;
      height: 38px;
      margin-left: 20px;
  }
  .header-navigation ul li {
      display: none;
  }
  .gnavi li a::after {
    display: none;
  }


/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
top:0;
  right: -120%;
width:100%;
  height: 100vh;/*ナビの高さ*/
background:#F8ECE2;
  /*動き*/
transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
  right: 0;
}



/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top:50%;
  left:35%;
  transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
list-style: none;
text-align: center;
}

#g-nav li a{
color: #333;
text-decoration: none;
padding:10px;
display: block;
text-transform: uppercase;
letter-spacing: 0.1em;
font-weight: bold;
padding-bottom: 50px;
text-align: center;
}
#g-nav li:last-child a {
  color: #333;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
top: 2px;
right: 10px;
cursor: pointer;
  width: 50px;
  height:50px;
}

/*×に変化*/  
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
background-color: #cc8483;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
top:15px; 
}

.openbtn span:nth-of-type(2) {
top:23px;
}

.openbtn span:nth-of-type(3) {
top:31px;
}

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

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

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










/* footer */
.footer {
  padding-top: 200px;
  background: rgb(255,255,255);
  background: linear-gradient(180deg, rgba(255,255,255,1) 10%, rgba(204,132,131,1) 65%);
  padding-bottom: 30px;
  margin-top: -1px;
}
.footer-content {
  max-width: 892px;
  margin: 0 auto;
  position: relative;
  justify-content: center;
}
.footer h1 {
  position: relative;
  font-size: 6.0rem;
  letter-spacing: 0.6rem;
  margin-top: 30px;
  color: #fff;
  z-index: 2;
  font-family: linotype-didot, serif;
    font-weight: 700;
    font-style: normal;
}
.footer h1::after {
 display: block;
 content: "";
 background-image: url("../photo/mini-gosen.png");
 background-size: contain;
 background-repeat: no-repeat;
 position: absolute;
 left: 44px;
 top: 10px;
 height: 100px;
 width: 100%;
 z-index: -1;
}
.footer-flex {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.footer-left {
  padding-right: 70px;
}
.footer p {
  width: 372px;
  height: 95px;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
  padding-top: 100px;
  padding-left: 30px;
  color: #fff;
  line-height: 2.7rem;
}
.footer-right {
  padding-top: 40px;
  position: relative;
}
.button-cat {
  width: 90px;
  position: absolute;
  left: 10px;
  top: -10px;
}


.btn03 {
  /*影の基点とするためrelativeを指定*/
 position: relative;
  /*ボタンの形状*/
 text-decoration: none;
 display: block;
 text-align: center;
 background: transparent;
 border-radius: 3px;
 border: solid 1px #F8ECE2;
 outline: none;
  /*アニメーションの指定*/
 transition: all 0.2s ease;
 width: 370px;
 margin: 0 auto 30px;
}
/*hoverをした後のボタンの形状*/
.btn03:hover{
 border-color:transparent; 
}

/*ボタンの中のテキスト*/
.btn03 span {
 position: relative;
 z-index: 2;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
   /*テキストの形状*/
 display: block;
   padding: 20px 40px;
 background:#F8ECE2;
 border-radius: 0px;
 color:#333;
 font-weight: 400;
 font-family: 'Noto Sans JP', sans-serif;
   text-align: center;
   letter-spacing: 0.4rem;
   /*アニメーションの指定*/
   transition: all 0.3s ease;
   font-size: 16px;
}


/*== 右下に押し込まれる（立体が平面に） */
/*影の設定*/
.pushright:before {
  content: "";
  /*絶対配置で影の位置を決める*/
  position: absolute;
z-index: -1;
  top: 4px;
  left: 4px;
  /*影の形状*/
  width: 100%;
  height: 100%;
border-radius: 3px;
  background-color: #fff;
 }


/*hoverの際にX・Y軸に4pxずらす*/
.pushright:hover span {
 background-color: #707070;
 color: #333;
 transform: translate(4px, 4px);
 border-radius: 3px;
}


/*  btn04 */
.btn04 {
 position: relative;
 text-decoration: none;
 display: block;
 text-align: center;
 background: transparent;
 border-radius: 3px;
 border: solid 1px #F8ECE2;
 outline: none;
 transition: all 0.2s ease;
 width: 370px;
 margin: 0 auto;
}

.btn04:hover{
 border-color:transparent; 
}

.btn04 span {
 position: relative;
 z-index: 2;
 display: block;
   padding: 20px 40px;
 background:#F8ECE2;
 border-radius: 0px;
 color:#333;
 font-weight: 400;
 font-family: 'Noto Sans JP', sans-serif;
   text-align: center;
   letter-spacing: 0.4rem;
   transition: all 0.3s ease;
   font-size: 16px;
}

.pushright:before {
  content: "";
  position: absolute;
z-index: -1;
  top: 4px;
  left: 4px;
  /*影の形状*/
  width: 100%;
  height: 100%;
border-radius: 3px;
  background-color: #fff;
 }

.pushright:hover span {
 background-color: #707070;
 color: #fff;
 transform: translate(4px, 4px);
 border-radius: 3px;
}



.copyright {
  text-align: center;
  padding-top: 100px;
}
.footer small {
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
}


@media screen and (max-width: 880px) {
    .footer-left {
      padding-right: 0px;
    }
    .btn03 {
      max-width: 250px;
    }
    .btn04 {
      max-width: 250px;
    }
    .footer p {
      max-width: 290px;
      font-size: 1.4rem;
      line-height: 2.4rem;
      margin-right: 30px;
      padding-top: 50px;
    }
    .btn03 span {
      font-size: 14px;
      letter-spacing: 0.1rem;
      padding: 10px 40px;
    }
    .btn04 span {
      font-size: 14px;
      letter-spacing: 0.1rem;
      padding: 10px 40px;
    }
    .footer h1 {
      margin-left: 50px;
      font-size: 45px;
    }
    .footer-right {
      margin-bottom: 15px;
    }
}
@media screen and (max-width: 740px) {
  .footer p {
    line-height: 1.4em;
    max-width: 280px;
  }
  .footer h1 {
    position: relative;
    font-weight: 500;
    font-size: 35px;
    color: #fff;
    z-index: 2;
    text-align: center;
    padding-top: 50px;
    margin-top: 0px;
    margin-left: 0;
}
.footer h1::after {
    height: 35px;
   display: block;
   content: "";
   background-image: url("../photo/mini-gosen.png");
   background-size: contain;
   background-repeat: no-repeat;
   position: absolute;
   left: 140px;
   top: 56px;
   width: 220px;
   z-index: -1;
}



}
@media screen and (max-width: 629px) {
    .footer p {
      padding-top: 60px;
      max-width: 210px;
      line-height: 1.2em;
      margin-right: 5px;
    }
    .btn03 {
      margin-bottom: 15px;
      max-width: 195px;
    }
    .btn03 span {
      padding: 6px 8px;
    }
    .btn04 {
      max-width: 195px;
    }
    .btn04 span {
      padding: 6px 8px;
    }
}

@media screen and (max-width: 537px) {
    .footer p {
      max-width: 165px;
    }

}


@media screen and (max-width: 480px) {
  .footer {
      padding-top: 60px;
      background-position: bottom;
      padding-bottom: 30px;
  }
  .footer-content {
      width: 100%;
      margin: 0 auto;
      position: relative;
  }
  .footer h1 {
      position: relative;
      font-weight: 500;
      font-size: 35px;
      color: #fff;
      z-index: 2;
      text-align: center;
      padding-top: 50px;
      margin-top: 0px;
      margin-left: 0;
  }
  .footer h1::after {
      height: 35px;
     display: block;
     content: "";
     background-image: url("../photo/mini-gosen.png");
     background-size: contain;
     background-repeat: no-repeat;
     position: absolute;
     left: 140px;
     top: 56px;
     width: 220px;
     z-index: -1;
  }
  .footer-flex {
      display: block;
      justify-content: center;
  }
  .footer-left {
      padding-right: 0px;
  }
  .footer p {
      max-width: 300px;
      height: auto;
      font-size: 14px;
      letter-spacing: 0;
      padding: 30px 0 20px;
      color: #fff;
      line-height: 2rem;
      margin: 0 auto;
      padding-top: 60px;
  }
  .footer-right {
      padding-top: 40px;
      position: relative;
  }
  .button-cat {
      width: 55px;
      position: absolute;
      left: 110px;
      top: 10px;
  }
  
/* btn03 */
  .btn03 {
    width: 275px;
    margin: 0 auto 30px;
}
  .btn03 span {
    display: block;
      padding: 10px 10px;
    color:#333;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
      text-align: center;
      letter-spacing: 0.2rem;
      font-size: 12px;
  }
  .pushright:before {
      content: "";
      position: absolute;
    z-index: -1;
      top: 4px;
      left: 4px;
      width: 100%;
      height: 100%;
    border-radius: 3px;
      background-color: #333;
  }
  .pushright:hover span {
    background-color: #707070;
    color: #fff;
    transform: translate(4px, 4px);
    border-radius: 3px;
  }

/* btn04 */
  .btn04 {
    width: 275px;
    margin: 0 auto;
}

  .btn04 span {
    display: block;
      padding: 10px 10px;
    border-radius: 0px;
    color:#333;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
      text-align: center;
      letter-spacing: 0.2rem;
      font-size: 12px;
  }
  .pushright:before {
      content: "";
      position: absolute;
    z-index: -1;
      top: 4px;
      left: 4px;
      width: 100%;
      height: 100%;
    border-radius: 3px;
      background-color: #333;
  }
  .pushright:hover span {
    background-color: #707070;
    color: #fff;
    transform: translate(4px, 4px);
    border-radius: 3px;
  }



  .copyright {
      text-align: center;
      padding-top: 65px;
    }
    .footer small {
      color: #fff;
      font-size: 12px;
      letter-spacing: 0.2em;
    }
}

@media screen and (max-width: 470px) {
    .footer h1::after {
      left: 140px;
      width: 180px;
    }
}
@media screen and (max-width: 442px) {
  .footer h1::after {
    left: 126px;
    width: 180px;
  }

}
@media screen and (max-width: 389px) {
  .footer h1::after {
    left: 101px;
    width: 180px;
  }
  .button-cat {
    left: 82px;
  }

}