@charset "utf-8";

/* ===================================================
  Variables
====================================================== */
:root {
  --accent: #7a6a56;
  --white: #fff;
  --light_beige: #dbd8d7;
  --beige: #f1f0ec;
  --text-main: #333;
  --text-sub: #675541;
}


/* ===================================================
  Base CSS
====================================================== */
body {
  color: var(--text-main);
  font-size: 15px;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  font-family: 'Yu Gothic UI', 'Noto Sans JP', sans-serif;
  background: var(--white);
}


a {
  color: var(--text-main);
  text-decoration: none;
  transition: opacity .3s;
}

@media screen and (hover: hover) and (min-width: 601px) {
  a:hover { opacity: .8;}
}


.pc { display: block; width: 100%; height: 100%; }
.sp { display: none; width: 100%; height: 100%; }

@media screen and (max-width: 768px) {
  .pc { display: none; }
  .sp { display: block; }
}


.ofi {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


/* アニメーション前の状態（下に20pxズラして、透明にする） */
.js-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s, transform 0.8s;
}

/* JSで「is-show」というクラスがついたら、元の位置に戻して表示する */
.js-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}


/* ===================================================
  wrap
====================================================== */
/* 複数ページ制作で「コンテンツが少なくてもフッターを最下部に固定」するパーツ */
/* コーディング時は body の直下に .wrap で全体を囲んで使用 */


#wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex-grow: 1;
}



/* ===================================================
  Header
====================================================== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 90px;
  background: rgba(255,255,255,0.9);
  z-index: 100;
  line-height: 1;
}

.header_inner{
  margin: 0 auto;
  width: 96%;
  max-width: 1200px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hd_logo {
  width: 250px;
  height: 100%;
  display: flex;
  align-items: center;
}

.hd_logo a {
  display: flex;
  align-items: center;
  height: 100%; 
  width: auto;
  text-decoration: none;
}

.hd_logo img {
  display: block;
  height: 100%;
  width: auto;
  max-height: 60px
}


@media screen and (max-width: 768px) {
  .hd_logo{
    margin: 0 auto;
    width: 200px;
  }
}



/* --- gnav --- */
.gnav{}

.gnav ul {
  display: flex;
  justify-content: right;
  align-items: center;
}
 
.gnav a {
  display: inline-block;
  padding: 0 15px;
  color: var(--text-main); 
  font-size: 14px;
  line-height: 1.4;
}

@media screen and (hover:hover) and (min-width: 601px) {
  .gnav a:hover { opacity: .65; }
}


/* --- hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  cursor: pointer;
  background: none; border: none;
  padding: 4px;
  z-index: 200;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text-sub);
  border-radius: 2px;
  transition: all .5s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.hamburger:focus {
  outline: none;
}
.hamburger:focus-visible {
  outline: 2px solid var(--accent); 
}


/* --- mobile nav --- */
.mobile_nav {
  display: none;
  position: fixed;
  top: 90px; left: 0; right: 0;
  padding: 7vw;
  flex-direction: column;
  z-index: 99;
  transform: translateY(-10px);
  opacity: 0;
  transition: all .5s;
  pointer-events: none;
  background: rgba(255,255,255,0.95);
}

.mobile_nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile_nav li{
  border-bottom: 1px solid var(--light_beige);
}
.mobile_nav a {
  display: block;
  padding: 12px 20px;
  color: var(--text-main);
  text-decoration: none; text-align: center;
}


@media screen and (max-width: 768px) {
  header { padding: 0;}
  .gnav { display: none;}
  .hamburger { display: flex;}
  .mobile_nav { display: flex;}
}

/* ===================================================
  main
====================================================== */
main{
  margin-top: 110px;
}

.inner_col {
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
}

@media screen and (max-width: 768px) {
  main{
    margin-top: 90px;
  }
}

/* 共通パーツ
====================================================== */

section {
  padding: 75px 0;
}

.cmn_tit{ 
  margin-bottom: 35px;
}
.cmn_tit span {
  display: block;
  padding: 20px 0 0;
  color: var(--text-sub);
  font-size: 24px;
  font-family: 'Aboreto', cursive;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
  position: relative;
}
.cmn_tit span::before {
  content: "";
  display: block;
  width: 3.3rem;
  height: 0.1rem;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--text-sub);
  position: absolute;
}

@media screen and (max-width: 768px) {
  section {
    padding: 15vw 0 10vw;
  }
  .cmn_tit{ 
    margin-bottom: 7vw;
  }
  .cmn_tit span {
    padding: 20px 0 0;
  }
  .cmn_tit span::before {
    content: "";
    display: block;
    width: 3.3rem;
    height: 0.1rem;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: var(--text-sub);
    position: absolute;
  }
}


.flex_col {
  display: flex;
}

@media screen and (max-width: 768px) {
 .flex_col { flex-direction: column;}
 .flex_col > * { width: 100%;}
}


/* 共通ボタン */
.cmn_btn {
  margin: 75px 0;
  position: relative;
}

.cmn_btn a {
  display: block;
  margin: 0 auto;
  padding: 10px 25px;
  width: 250px;
  color: #fff;
  background: var(--accent);
  font-weight: 200;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  position: relative;
}

.cmn_btn a:after {
  content: "";
  display: block;
  width: .8rem;
  height: .8rem;
  border-top: .1rem solid #fff;
  border-right: .1rem solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  right: 2rem;
  top: calc( 50% - .4rem);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  display: block;
}

.cmn_btn a:hover:after {
  -webkit-transform: translateX(1rem) rotate(45deg);
          transform: translateX(1rem) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .cmn_btn {
    margin: 10vw 0;
  }

}




/* ===================================================
  Footer
====================================================== */
footer {
  line-height: 1;
  background: var(--beige);
}

.footer_inner {
  margin: 0 auto;
  width: 96%;
  max-width: 1200px;
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ft_logo {
  width: 250px;
  height: 60px;
  display: flex;
  align-items: center;
}

.fnav ul{
  margin-bottom: 10px;
  display: flex;
  justify-content: right;
  align-items: center; 
}

.fnav a {
  display: inline-block;
  padding: 0 15px;
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.4;
}

.fnav a:hover {
  text-decoration: underline;
  opacity: 1;
}


/* --- copyright --- */
.footer_bottom { 
  padding: 10px 0;
  text-align: center;
  background: var(--accent);
}

.footer_bottom p {
  color: #fff;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .footer_inner {
    margin: 0 auto;
    padding: 10vw 0;
    flex-direction: column;
  }
  .ft_logo {
    margin-bottom: 15vw;
    width: 200px;
  }
  .fnav {
    margin: 0 auto;
    width: 96%;
    flex-direction: column;
  }
  .fnav ul{
    margin-bottom: 0;
    justify-content: left;
    flex-wrap: wrap;
  }
  .fnav ul li{ width: 50%; list-style: none;}
  .fnav a { padding: 10px 15px;}
}



/* ===================================================
  404
====================================================== */
#error #main{
  padding-top: 250px;
  background: var(--beige);
}

#error #sec01 h2{
  margin: 0 auto 75px;
  color: var(--text-sub);
  font-size: 32px;
  font-family: "Noto Serif JP", "游明朝", serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-align: center;
}

#error #sec01 p{
  margin-bottom: 25px;
  text-align: center;
}



@media screen and (max-width: 768px) {
  #error #main{
    padding-top: 5vw;
  }

  #error #sec01 h2{
    margin: 0 auto 10vw;
    font-size: 24px;
    text-align-last: left;
  }

  #error #sec01 p{
    margin-bottom: 5vw;
    text-align: left;
  }
}