@charset "UTF-8";
/* CSS Document */
/*
テキスト　#271400
サブテキスト　#D7C4A5
h2　#664b2f
*/
/*================================
 フォント
=================================*/
/*======= Zen Kaku Gothic New　静的フォント =======*/
.zen-kaku-gothic-new-400 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/*========== jost(ヨスト)　可変フォント ==========*/
.jost {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400; /*100-900*/
  font-style: normal;
}
/*================================
 共通項目
=================================*/
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #271400; /* RGB */
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 1.4em;
  line-height: 2;
  text-align: left;
  letter-spacing: 0.1em;
  background-color: #ffffff;
}
a {
  text-decoration: none;
  color: #271400;
}
a:hover {
  /*opacity: 0.5;*/
  cursor: pointer;
}
.none {
  display: none;
}
ul {
  list-style: none;
}
img {
  width: 100%;
}
/*================================
 h2
=================================*/
.h2 {
  color: #D7C4A5;
  text-align: center;
  font-weight: 400;
  font-size: 1.25em; /*20px*/
  margin-bottom: clamp(20px, 5vw, 40px);
}
@media (min-width: 768px) {
  .h2 {
    font-size: 1.875em; /*30px*/
  }
}
/*=======================
 h3,h4
=======================*/
h3, h4 {
  font-weight: 400;
}
/*================================
左右の余白
=================================*/
.page-padding-area {
  padding: 0 clamp(10px, 5%, 200px);
}
@media (min-width: 1024px) {
  .page-padding-area {
    padding: 0 clamp(10px, 10%, 200px);
  }
}
/*================================
 各セクションの上下のpadding
=================================*/
section {
  /*  margin-bottom: clamp(120px, 20vw, 200px);*/
  padding: clamp(60px, 5vw, 100px) 0;
}
/*================================
  ヘッダー
=================================*/
/*共通*/
.header {
  width: 100%;
  background-color: rgba(87, 89, 63, 0); /*0で透過させてる*/
  z-index: 10;
  position: fixed; /*上部固定*/
  /*  height: 60px;*/
  transition: background-color 0.6s ease;
  /*    padding: 10px 0;*/
  height: auto;
  /*    padding: 10px clamp(20px, 5%, 200px);*/
}
.header__title {
  color: #D7C4A5;
}
/*
.header__container {
  padding: 10px clamp(20px, 10%, 200px);
}
*/
/*ヘッダー余白*/
.header__container {
  padding: 10px clamp(10px, 5%, 200px);
}
@media (min-width: 1024px) {
  .header__container {
    padding: 10px clamp(10px, 10%, 200px);
  }
}
/* スクロールした際のヘッダーのスタイル */
header.scrolled {
  background-color: #FFF; /*後で変更*/
}
/*========== ナビゲーションメニュー SP (ハンバーガーメニュー内)==========*/
@media (max-width: 1024px) {
  .g-nav-pc {
    display: none;
  }
  .g-nav-sp {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: #D7C4A5;
    /*動き*/
    transition: all 0.6s;
    font-size: 16px;
  }
  /*アクティブクラスがついたら位置を0に*/
  .g-nav-sp.panelactive {
    right: 0;
  }
  /*ナビゲーションの縦スクロール*/
  .g-nav-sp.panelactive .g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 99;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*ナビゲーション*/
  .g-nav-sp ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 99;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .g-nav-sp.panelactive ul {
    display: block;
  }
  /*リストのレイアウト設定*/
  .g-nav-sp li {
    list-style: none;
    text-align: center;
  }
  .g-nav-sp li a {
    /* color: #fff; */
    text-decoration: none;
    padding: 20px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .g-nav-list__insta-logo {
    width: inherit;
  }
  /*========== ハンバーガーボタン ==========*/
  .openbtn {
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 0px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /*三本線(×に変化する)*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 1.5px;
    border-radius: 1px;
    background-color: #D7C4A5; /*後で変更*/
    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%;
    background-color: #664b2f;
  }
  .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%;
    background-color: #664b2f;
  }
}
/*========== ナビゲーションメニュー PC ==========*/
@media (min-width: 1024px) {
  .header {
    height: auto;
    margin: 0 auto;
  }
  .g-nav-sp {
    display: none;
  }
  .openbtn {
    display: none;
  }
  .g-nav-pc {
    display: block;
  }
  .g-nav-pc ul {
    display: flex;
    gap: 3vw;
    /* color: #fff; */
  }
  .header__container {
    display: flex;
    justify-content: space-between;
    font-weight: 300;
    /*    align-items: center;*/
    /*    padding: 20px 100px;*/
    /*    padding: 0 clamp(20px, 5%, 200px);*/
  }
  .g-nav-pc ul a {
    /* color: #fff; */
    text-decoration: none;
  }
}
/*========================================
  スクロール誘導アニメーション（トップページで使用）
========================================*/
/*=======丸が動いてスクロールを促す ========*/
/*スクロールダウン全体の場所*/
.scrolldown2 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 5%;
  /*  left: 50%;*/
  z-index: 1;
}
/*Scrollテキストの描写*/
.scrolldown2 span {
  /*描画位置*/
  position: absolute;
  left: 5px;
  bottom: 10px;
  /*テキストの形状*/
  color: #D8D8D8; /*後で変更*/
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
/* 丸の描写 */
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -3px;
  /*丸の形状*/
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #D7C4A5; /*後で変更*/
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation:
    circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  z-index: 2;
}
/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/* 線の描写 */
.scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 1px;
  height: 50px;
  background: #D8D8D8; /*後で変更*/
}
/*================================
　contact
=================================*/
.contact {
  background-color: #D7C4A5;
  margin: 0;
  padding: clamp(20px, 5vw, 40px) clamp(10px, 5%, 200px);
  text-align: center;
}
.contact .h2 {
  color: #664b2f;
}
.contact a {
  text-decoration: underline;
}
/*================================
　コンタクトフォーム　gmail届かないので使用しない
=================================*/
/*
.contact {
  background-color: #D7C4A5;
  margin: 0;
  padding: clamp(20px, 5vw, 40px) clamp(10px, 5%, 200px);
}
.contact .h2{
    color: #664b2f;
}
.contact-form {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-form__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-form__label {
  margin-bottom: 5px;
  display: block;
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #D7C4A5;
  border-radius: 4px;
}
.contact-form__textarea {
  height: 100px;
}
.contact-form__submit {
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 20px;
  border: 1px solid #D7C4A5;
}
.contact-form__submit:hover {
  background-color: #664b2f;
  color: #fff;
  border: 1px solid #D7C4A5;
}
*/
/*================================
　フッター
=================================*/
.footer {
  background-color: #D7C4A5;
  padding-top: 50px;
}
small {
  color: #fff;
  display: block;
  font-size: 1.2rem;
  text-align: center;
}
/*================================
 ホバーしたらラインが出てくる
=================================*/
.hover-line a {
  position: relative;
}
.hover-line a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #D7C4A5;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
.hover-line a:hover::after {
  transform: scale(1, 1);
}
/*==================================
ふわっ 
===================================*/
.box { /*ずらして表示させる時の設定*/
  opacity: 0;
}
/*下から上に*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger, .fadeUpTrigger, .fadeLeftTrigger, .fadeRightTrigger {
  opacity: 0;
}
/*===================================================
　ホバーしたら任意の文字が画像の上に現れる（トップページで使用）
====================================================*/
.image_link {
  display: block;
  position: relative;
  text-decoration: none;
}
.image_link img {
  display: block;
  width: 100%;
}
.image_link:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background: #271400;
  opacity: 0;
  transition: 0.3s;
}
.image_link:after {
  content: "READ MORE";
  display: block;
  color: #fff;
  line-height: 48px;
  width: 180px;
  border: solid 1px #fff;
  border-radius: 5px;
  text-align: center;
  position: absolute;
  top: 45%;
  left: 50%;
  margin-top: -1em;
  margin-left: -90px;
  opacity: 0;
  z-index: 3;
  transition: 0.3s;
  font-weight: bold;
  letter-spacing: 0.2em;
}
.image_link:hover:before {
  opacity: 0.8;
}
.image_link:hover:after {
  opacity: 1;
  margin-top: -0.5em;
}