@charset "UTF-8";

/*全体共通*/
:root,
html {
  font-size: 10px;
}
* {
  box-sizing: border-box;
}
body {
  --max-width: 900px;
  --c-base: #311303;
  --c-main: #34170a;
  --c-accent: #0e663a;
  --ff-main: "游明朝", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  --ff-en: "Cormorant Infant", serif;
  --ff-g: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  position: relative;
  width: 100%;
  overflow-x: hidden;
  font-family: var(--ff-main);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
  color: #1c1c1c;
  letter-spacing: 0.05em;
}
/* IE表示用のCSS　*/
@media all and (-ms-high-contrast: none) {
  body {
    font-family: "游明朝", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  }
}
a {
  display: inline-block;
  color: inherit;
  font-weight: inherit;
}
a:hover {
  cursor: pointer;
}
body.userAgent-pc a[href^="tel:"] {
  pointer-events: none;
}
img,
svg {
  display: inline-block;
  max-width: 100%;
  vertical-align: bottom;
}
select {
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.--ff-en {
  font-family: var(--ff-en);
}
.--ff-g {
  font-family: var(--ff-g);
}
.--c-red {
  color: #632c2c !important;
}
.--c-white {
  color: #fff !important;
}
.--c-yellow {
  color: #93814f !important;
}
.--c-blue {
  color: #304056 !important;
}
.--c-green {
  color: #0e663a !important;
}
.--center {
  text-align: center !important;
}
.--ta-l {
  text-align: left !important;
}
.--ta-r {
  text-align: right !important;
}
.--ta-justify {
  text-justify: inter-ideograph;
  text-align: justify;
  text-align-last: left;
}
.--bold {
  font-weight: bold !important;
}
.--thin {
  font-weight: 100 !important;
}
.--nowrap {
  white-space: nowrap;
}
.--kerning {
  font-feature-settings: "palt";
}

.--overflow-ellipsis {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.--under {
  border-bottom: 1px solid #888;
}
.--img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.--img-contain {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.--clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.--d-ib {
  display: inline-block !important;
}
.--d-n {
  display: none !important;
}
.--d-f {
  display: flex !important;
}
.--justify-center {
  display: flex;
  justify-content: center;
}

a.--h-opacity,
.--h-opacity a {
  transition: opacity 0.3s;
}
a.--h-opacity:hover,
.--h-opacity a:hover {
  opacity: 0.6;
}

/* PC */
@media (min-width: 900px) {
  .--tab {
    display: none !important;
  }
  .--sp {
    display: none !important;
  }
  .--tab-sp {
    display: none !important;
  }
}
/* TAB */
@media screen and (max-width: 899px) and (min-width: 481px) {
  .--pc {
    display: none !important;
  }
  .--sp {
    display: none !important;
  }
  .--pc-sp {
    display: none !important;
  }
}
/* SP */
@media screen and (max-width: 480px) {
  .--pc {
    display: none !important;
  }
  .--tab {
    display: none !important;
  }
  .--pc-tab {
    display: none !important;
  }
}

/* アニメーション */
@keyframes inview_img_before {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  51% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
@keyframes inview_img {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
._Inview {
  opacity: 0;
  transition: 1.5s ease 0.5s;
}
._Inview.in {
  opacity: 1;
}
._Inview.-slide {
  transform: translateX(-20px);
}
._Inview.-slide.in {
  transform: translateX(0);
}
._Inview.-up {
  transform: translateY(20px);
}
._Inview.-up.in {
  transform: translateY(0);
}
._Inview.-img {
  position: relative;
  opacity: 1;
}
._Inview.-img img {
  opacity: 0;
}
._Inview.-img.in img {
  animation: inview_img 1s ease 0.5s forwards;
}
._Inview.-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--c-main);
  transform: scaleX(0);
  z-index: 2;
}
._Inview.-img.in::before {
  animation: inview_img_before 1s ease 0.5s forwards;
}
/* SP */
@media screen and (max-width: 480px) {
  ._Inview {
    transition-delay: 0s;
  }
  ._Inview.-img.in img,
  ._Inview.-img.in::before {
    animation-delay: 0s;
  }
}

/* 共通 */
.cntInner,
._Inner {
  width: 100%;
  margin: 0 auto;
}
._Title .en {
  font-size: 6rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-family: var(--ff-en);
  line-height: 1.3;
  text-transform: uppercase;
}
._Title .ja {
  font-size: 1.8rem;
  font-weight: 600;
  display: block;
}

@media screen and (max-width: 1350px) {
  ._Title .en {
    /*font-size: calc(100px - (1350px - 100vw) / (450 / 30));*/
  }
}

._Box .cntInner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
._Box .cntDiv {
}
._Box .cntTitle {
}
._Box .cntTitle .en {
}
._Box .cntTitle .ja {
}

._Box .cntText {
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.8;
}

.cntBtn {
  width: 100%;
  max-width: 230px;
  margin: auto;
}
.cntBtn a {
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.075em;
  display: block;
  width: 100%;
  text-align: right;
  margin: auto;
  background: #fff;
  color: #1c1c1c;
  transition: 0.7s;
  padding: 15px 15px;
  border-radius: 100px;
  border: 1px solid #ddd;
}
.cntBtn a::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  top: 50%;
  left: 15px;
  transition: 0.7s;
  background: #1c1c1c;
}
.cntBtn a:hover {
  background: var(--c-main);
  color: #fff;
  border-color: var(--c-main);
}
.cntBtn a:hover::after {
  left: 25px;
  background: #fff;
}

.cntBtn02 a {
  font-size: 1.6rem;
  letter-spacing: 0.075em;
  position: relative;
  padding-left: 25px;
}
.cntBtn02 a::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 1px;
  top: 50%;
  left: 0;
  transition: 0.7s;
  background: #1c1c1c;
}
._Box .cntImg {
}
._Box .cntImg .inner {
}
._Box .cntImg img {
  width: 100%;
}
._Box.-inver .cntDiv {
}
._Box.-inver .cntImg .inner {
}

._Box .cntList {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (max-width: 1350px) {
}
/* TAB */
@media screen and (max-width: 899px) {
  ._Title .en {
    font-size: 5rem;
    line-height: 1.1;
  }
  ._Title .ja {
    font-size: 1.6rem;
  }
  ._Box .cntText {
    letter-spacing: 0.075em;
    line-height: 1.6;
  }
}
/* SP */
@media screen and (max-width: 480px) {
  ._Title .en {
    font-size: 4.2rem;
    line-height: 1.2;
  }
  ._Title .ja {
    font-size: 1.5rem;
  }
  .cntBtn {
    width: 100%;
    max-width: 90%;
  }
  ._Box .cntText {
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}

/* ローディング */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 999;
}

/* ヘッダー */
#header {
  position: absolute;
  width: calc(100% - 100px);
  top: 0;
  left: 0;
  z-index: 101;
}
#header .cntInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 30px 25px 0 10px;
  margin: 0 auto;
}
#headerLogo {
  width: 30%;
  padding: 10px;
}
#header .cntBox {
  width: 60%;
  max-width: 768px;
}
#header .cntList {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

#header .cntList .item,
#header .cntList .init-bottom {
  display: block;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 700;
  transition: 0.7s;
  color: #fff;
  /*position: relative;*/
}

/*#header .cntList .item::after{
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 100%;
    bottom: -15px;
    right: 0;
    left: 0;
    margin: auto;
    transition: 0.5s;
    }*/
#header .cntList .item .jp,
#header .cntList .init-bottom .jp {
  font-size: 1.6rem;
}
#header .cntList .item.current {
}
#header .cntList .item:hover {
  opacity: 1;
}
#header .cntList .item:hover::after,
#header .cntList .item.current::after {
  background: var(--c-accent);
}

#header .cntList ul.menu__second-level {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
#header .cntList .menu__second-level li {
  padding: 6px 0;
}
#header .cntList .menu__second-level li a:hover {
  color: #93814f;
}
#header .cntList li.menu__single {
  position: relative;
}
#header .cntList li.menu__single ul.menu__second-level {
  position: absolute;
  top: 10px;
  width: 220%;
  max-width: 180px;
  /*background:var(--c-main);*/
  background: rgba(255, 255, 255, 0.7);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #333;
  padding: 6px;
  box-sizing: border-box;
  text-align: center;
  left: 0;
  font-size: 1.4rem;
}
#header .cntList li.menu__single:hover ul.menu__second-level {
  top: 22px;
  visibility: visible;
  opacity: 1;
}

#sideNav {
  position: absolute;
  width: 100px;
  top: 0;
  right: 0;
  margin: auto;
  z-index: 10;
}
/* #sideNav a,
#sideNav .modal-open-button {
  display: block;
  width: 100%;
  height: 100px;
  text-align: center;
  padding-top: 30px;
  box-sizing: border-box;
  cursor: pointer;
} */
#sideNav .modal-open-button {
  display: block;
  width: 100%;
  height: 100px;
  text-align: center;
  padding-top: 30px;
  box-sizing: border-box;
  cursor: pointer;
}
/* #sideNav .nav01 a,
#sideNav .nav01 .modal-open-button{background: #0e663a;}
#sideNav .nav02 a,
#sideNav .nav02 .modal-open-button{background: #311303;} */
#sideNav .nav01 .modal-open-button {
  background: #0e663a;
}
#sideNav .nav02 .modal-open-button {
  background: #311303;
}

@media screen and (max-width: 1220px) {
  #headerLogo {
    width: 20%;
    padding: 0;
  }
  #header .cntBox {
    width: 75%;
  }
  #header .cntList .item .jp,
  #header .cntList .init-bottom .jp {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}

/* TAB */
@media screen and (max-width: 899px) {
  #header {
    width: 100%;
  }
  #header .cntInner {
    padding: 5px 5px 0 5px;
  }
  #headerLogo {
    width: 280px;
  }
  #sideNav {
    width: 50px;
    top: 55px;
  }
  /* #sideNav a, */
  #sideNav .modal-open-button {
    height: 50px;
    padding-top: 10px;
  }
  #sideNav a img,
  #sideNav .modal-open-button img {
    width: 25px;
  }
  #header .cntBox {
    width: auto;
    background: none;
    border: none;
    padding: 0;
  }
  #headerBtn {
    position: absolute;
    top: 8px;
    right: 0;
    width: 50px;
    height: 35px;
    cursor: pointer;
    z-index: 999;
  }
  #headerBtn span {
    position: absolute;
    left: 10px;
    display: inline-block;
    width: calc(100% - 20px);
    height: 3px;
    transition: all 0.5s;
    background: #fff;
    border-radius: 100px;
  }
  #headerBtn span:nth-of-type(1) {
    top: 10px;
  }
  #headerBtn span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-1px);
  }
  #headerBtn span:nth-of-type(3) {
    bottom: 8px;
  }
  #headerBtn.active span {
    background: #fff;
  }
  #headerBtn.active span:nth-of-type(1) {
    transform: translateY(6px) rotate(45deg);
  }
  #headerBtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  #headerBtn.active span:nth-of-type(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
/* SP */
@media screen and (max-width: 480px) {
  #headerLogo {
    width: 200px;
    padding: 5px 0;
  }
}

/* スマホナビ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  padding-bottom: 70px;
  background: #1d120c;
  z-index: 100;
  color: #fff;
}
#nav .cntInner {
  text-align: center;
  padding: 70px 20px 0;
}
#nav .cntList .item {
  margin-top: 24px;
  line-height: 1.2;
  letter-spacing: 0.075em;
}
#nav .cntList {
  font-weight: 600;
  display: block;
}
#nav .cntList .current {
  color: #a89774;
}
#nav .cntList li.mail {
  text-transform: uppercase;
}

/* フッター */
#footer {
  background: var(--c-main);
  position: relative;
  padding: 0;
}
#footer .cntInner {
  max-width: 1280px;
  width: 96%;
  margin: 0 auto;
  padding: 100px 0 80px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
#footer #footerLogo {
  text-align: left;
  max-width: 370px;
  width: 30%;
  margin: 0;
}
#footer .cntList {
  width: 65%;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #fff;
}
#footer .cntList ul {
  width: 33.3333%;
}
#footer .cntList ul li {
  margin-bottom: 18px;
}
#footer .cntList li a {
  color: #fff;
}
#footer .cntList li ul {
  margin-top: 10px;
  font-size: 1.4rem;
}
#footer .cntList li ul {
  width: 100%;
}
#footer .cntList li ul li {
  margin-bottom: 10px;
}
#footer .cntList ul:last-child li ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#footer .cntList ul:last-child li ul li {
  width: 60%;
}
#footer .cntList ul:last-child li ul li:nth-child(2n) {
  width: 40%;
}

#copyright {
  background: #1d120c;
  color: #fff;
  display: block;
  font-size: 1.1rem;
  margin: auto;
  text-align: center;
  padding: 22px 0;
}

/* トップへ戻るボタン */
#top {
  position: fixed;
  bottom: 5px;
  right: 5px;
  width: 12px;
  z-index: 100;
}

/* TAB */
@media screen and (max-width: 899px) {
  #footer {
    padding: 30px 0 0;
  }
  #footer .cntInner {
    padding: 0 20px;
    display: block;
  }
  #footer #footerLogo {
    text-align: center;
    max-width: 170px;
    width: 100%;
    margin: 0 auto 20px;
  }
  #copyright {
    padding: 10px 0;
  }
  #top {
  }
}
/* SP */
@media screen and (max-width: 480px) {
}

/* モーダル */
#sideNav .modal-checkbox {
  display: none;
}
#sideNav .modal-open-button {
}
#sideNav .modal {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 60%);
  z-index: 9999;
}
#sideNav .close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  transform: translate(50%, -50%);
}
#sideNav .modal-wrapper {
  position: relative;
  width: 90%;
  max-width: 1200px;
  /* max-height: 70%; */
  padding: 25px;
  margin: auto;
  /*overflow: scroll;*/
  background: #f3f0ed;
}
#sideNav .modal-checkbox:checked + .modal {
  display: flex;
}
#sideNav .nav02 .modal .cntList {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between;
}
