/* 定義 */
:root {
  --base-color: #bebdb9;
  --border-color: #707070;
  --white-color: #f8f8f8;
  --black-color: #1d1b14;
  /* pc最小幅 */
  --pc-width: 1200px;
  /* sp-inner padding */
  --sp-inner-p: 10px;
  /* フォントサイズ */
  --font-size-s: 12px;
  --font-size-m: 16px;
  --font-size-l: 30px;
  --font-size-xl: 60px;
  --font-size-2xl: 70px;
  --font-size-3xl: 80px;

  @media (max-width: 599px) {
    /* フォントサイズ */
    --font-size-s: 12px;
    --font-size-m: 0.9rem;
    --font-size-l: 1.1rem;
    --font-size-xl: 1.4rem;
    --font-size-2xl: 1.8rem;
    --font-size-3xl: 45px;
  }
}

/* 基本 */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
@media screen and (max-width: 599px) {
  html {
    scroll-padding-top: 100px;
  }
}
body {
  margin: 0;
  background: var(--base-color);
  font-family: "Noto Sans JP", "Helvetica Neue", Arial,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  color: #1d1b14;
  box-sizing: border-box;
  overflow-x: hidden;
}
body *{
  box-sizing: inherit;
}
a:hover{
  opacity: 0.7;
}
p {
  margin: 0;
}
hr {
  border-color: #1d1b14;
}
.spdeny {
  display: block;
}
.sponly {
  display: none;
}
.grecaptcha-badge {
  visibility: hidden;
}
@media screen and (max-width: 599px) {
  .sponly {
    display: block;
  }
  .spdeny {
    display: none;
  }
}

/* フォント関連 */
.en-text {
  font-family: "Montserrat", serif;
}
.deco-text {
  font-family: "Alex Brush", serif;
  color: #b0b5a6;
}

/* flex関連 */
.flex {
  display: flex;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.justify-evenly {
  justify-content: space-evenly;
}
.justify-end {
  justify-content: flex-end;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.flex-wrap {
  flex-wrap: wrap;
}

.flex-column {
  flex-direction: column;
}

.text-center {
  text-align: center;
}
.text-white {
  color: #fff;
}
.font-xl {
  font-size: var(--font-size-xl);
}
.font-l {
  font-size: var(--font-size-l);
}
.font-m {
  font-size: var(--font-size-m);
}
.font-s {
  font-size: var(--font-size-s);
}

.bg-base {
  background: var(--base-color);
  z-index: -2;
  overflow: hidden;
}

/* ヘッダー */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 60;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  width: 100vw;
  padding: 37px 50px;
  box-sizing: border-box;
}
@media screen and (max-width: 1330px) {
  .header-inner {
      padding: 37px 5%;
      box-sizing: border-box;

  }
}
@media screen and (max-width: 599px) {
  .header-inner {
    padding: 15px 5%;
  }
}
.site-title {
  display: block;
  /* position: fixed; */
  /* top: 37px;
  left: 50px; */
  width: 71px;
  img {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .site-title {
    width: 50px;
  }
}
@media (min-width: 600px) and (max-width: 1199px) {

}

/* ハンバーガーメニュー */
.menu-btn {
  display: flex;
  height: 34px;
  width: 40px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 90;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 1.5px;
  width: 40px;
  background-color: #fff;
  transition: 0.2s;
  position: absolute;
  z-index: 90;
}

/* .menu-btn.scrolled span,
.menu-btn.scrolled span:before,
.menu-btn.scrolled span:after {
  background-color: #000;
} */

.menu-btn span:before {
  bottom: 16px;
}
.menu-btn span:after {
  top: 16px;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(
    255,
    255,
    255,
    0
  ); /*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
  background-color: #1d1b14;
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #1d1b14;
}

@media (max-width: 599px) {
  
  .menu-btn {
    height: 32px;
    width: 30px;
  }
  .menu-btn span,
  .menu-btn span:before,
  .menu-btn span:after {
    width: 25px;
  }
  .menu-btn span:before {
    bottom: 9px;
  }
  .menu-btn span:after {
    top: 9px;
  }
}
@media (min-width: 600px) and (max-width: 1199px) {
  .menu-btn {
    right: 4%;
  }
}

/* ナビゲーション */
.hamburger-menu {
  height: 0;
  position: fixed;
  top: calc(37px - 15px);
  right: calc(50px - 15px);
}
/* ハンバーガーメニューの背景 */
.menu-bg {
  background-color: #1d1b14;
  padding: 15px;
}

@media screen and (max-width: 1330px) {
  .hamburger-menu {
    position: fixed;
    top: calc(37px - 15px);
    right: calc(5% - 15px);
  }
}
@media screen and (max-width: 599px) {
  .hamburger-menu {
    height: 0;
    position: fixed;
    top: calc(15px - 5px);
    right: calc(5% - 5px);
  }
  .menu-bg {
    padding: 5px;
  }
  
}

.glnav {
  position: fixed;
  width: 0px;
  min-height: 100svh;
  right: 0;
  top: 0;
  background: #bebdb9;
  z-index: 80;
  transform: translateX(100%);
  transition: transform 0.4s;
  padding: 2rem 0;
  .btn-area {
    display: flex;
  }

  @media screen and (max-width: 599px) {
    padding: 1rem 0;
    .btn-area {
      flex-direction: column;
    }
  }
}
#menu-btn-check:checked ~ .glnav {
  width: 700px;
  overflow: scroll;
  height: 100vh;
  transform: translateX(0);
  overflow-x: hidden;
  @media screen and (max-width: 800px) {
    width: 100%;
    max-width: 90vw;
  }
  @media screen and (max-width: 599px) {
    width: 100%;
    max-width: 100vw;
  }
}
.bg-nav {
  width: 0;
  filter: opacity(0%);
  transition: filter 0.5s;
}
#menu-btn-check:checked ~ .bg-nav {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #1d1b14;
  filter: opacity(50%);
  z-index: 70;
  transition: filter 0.5s;
  top: 0;
  left: 0;
}
.nav-contents {
  flex-direction: column;
  width: 100%;
  padding: 4rem 3.5rem 10rem;
  box-sizing: border-box;
  a {
    color: #1d1b14;
    text-decoration: none;
  }
  hr {
    width: 100%;
    margin: 3rem 0;
    border-style: solid;
    border-width: 0.5px;
  }
  @media screen and (max-width: 599px) {
    padding: 3rem 1.5rem 6rem;
    .gl-menu {
      gap: 2.5rem !important;
    }
    hr {
      margin: 2rem 0 2.5rem;
    }
    .btn-area {
      gap: 1.5rem;
      margin: 2.5rem 0;
    }
    .btn {
      height: 4.5rem;
      width: 100%;
    }
  }
}
.contents-upper {
  /* flex: 0.6; */
  .gl-menu {
    height: 100%;
    flex-flow: column;
    padding-inline-start: 0;
    gap: 3rem;
    .gl-menu-title {
      font-size: 22px;
      font-weight: bold;
    }
    li {
      flex-grow: 1;
      list-style: none;
      font-size: 14px;
    }
  }
}
.contents-lower {
  /* flex: 0.4; */
  p {
    padding: 0.5rem 0;
    font-size: 13px;
  }
  .btn-area {
    gap: 1rem;
    .btn {
      color: #fff;
    }
    .btn:last-child {
      background: #555555;
    }
    .btn:hover {
      background: #F8F8F8;
      color: #1d1b14;
      border: 1px solid #1d1b14;
      opacity: 1;
    }
  }
}

/* ボタン */
.btn {
  background: #1d1b14;
  color: #ffffff;
  border-radius: 100px;
  font-size: var(--font-size-m);
  cursor: pointer;
  text-decoration: none;
  height: 59px;
  width: 252px;

  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.btn:hover {
  background: #F8F8F8;
  color: #1d1b14;
  border: 1px solid #1d1b14;
  opacity: 1;
}
.btn-clear {
  background: transparent;
  color: white;
  border: 1px solid #fff;
}

.btn-area {
  margin: 50px 0;
  @media screen and (max-width: 599px) {
    margin: 30px 0;
    justify-content: center;
    text-align: center;
  }
}
.fa-circle-chevron-right {
  padding-left: 1rem;
}

/* コンテナ共通 */
.container {
  width: 100%;
}
.container-inner {
  /* PC用スタイル */
  @media (min-width: 1200px) {
    /* margin: 0 auto; */
    max-width: var(--pc-width);
    min-height: 50vh;
  }
  /* タブレット用スタイル */
  @media (min-width: 600px) and (max-width: 1199px) {
    .sp-inner {
      margin: 0 var(--sp-inner-p);
    }

  }
  @media (max-width: 599px) {
    /* margin: 0 10px; */
    .sp-inner {
      margin: 0 var(--sp-inner-p);
    }
  }
}
/* ファーストビュー */
.firstview {
  z-index: 10;
  height: 100vh;
  align-items: center;
  background-color: rgba(0, 0, 0, 1);
  position: relative;
  overflow: hidden;
  ::before {
    content: "";
    background-image: url("../images/top/top.webp");
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  ::after {
    content: "";
    background-color: rgba(0, 0, 0, 0.1); /* 黒のオーバーレイ */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* 背景画像の上に配置 */
  }
  .top-title-box {
    font-size: var(--font-size-3xl);
    letter-spacing: 0.15rem;
    border: 1px solid #fff;
    padding: 0 1rem;
    margin: 0.5rem 0.5rem 2rem;
    width: auto;
  }
  typewritten-text[paused] .typewritten-text_character::after {
    visibility: hidden;
  }
  > div > span {
    font-size: 1.9rem;
    font-weight: 300;
  }
  @media screen and (max-width: 1330px) {
    .top-title-box {
      font-size: var(--font-size-xl);
    }
    > div > span {
      font-size: 1.5rem;
    }
  }
  @media screen and (max-width: 960px) {
    .top-title-box {
      margin: 2rem 15vw;
      padding: 1rem;
    }
    > div > span {
      font-size: 1.5rem;
    }
  }
  @media screen and (max-width: 700px) {
    .top-title-box {
      font-size: 35px;
    }
    > div > span {
      font-size: 1.2rem;
    }
  }
}
.swiper {
  width: 600px;
}

/* 共通：全ページ */
.btn i {
  padding-left: 1rem;
}

/* SVGアニメーション */
.loading__svg {
  background-color: #f8f8f8;
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 99;
  #svg__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 200px;
    height: auto;
  }
}
@media screen and (max-width: 700px) {
  .loading__svg {
    #svg__logo {
      width: 20vw;
      max-width: 150px;
    }
  }
}
@media screen and (max-width: 700px) {
  .loading__svg {
    #svg__logo {
      top: 47%;
      width: 25vw;
      max-width: 100px;
    }
  }
}

/***************************************************
 * Generated by SVG Artista on 2/21/2025, 1:54:33 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/

@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

.svg-elem-1 {
  -webkit-animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    0.8s both;
  animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s
    both;
}

@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

.svg-elem-2 {
  -webkit-animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    0.9s both;
  animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s
    both;
}

@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

.svg-elem-3 {
  -webkit-animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    1s both;
  animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}

@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

.svg-elem-4 {
  -webkit-animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    1.1s both;
  animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s
    both;
}

@-webkit-keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

.svg-elem-5 {
  -webkit-animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    1.2000000000000002s both;
  animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    1.2000000000000002s both;
}

@-webkit-keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

.svg-elem-6 {
  -webkit-animation: animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    1.3s both;
  animation: animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s
    both;
}

@-webkit-keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

.svg-elem-7 {
  -webkit-animation: animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    1.4000000000000001s both;
  animation: animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    1.4000000000000001s both;
}

@-webkit-keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

.svg-elem-8 {
  -webkit-animation: animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    1.5s both;
  animation: animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s
    both;
}

@-webkit-keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

.svg-elem-9 {
  -webkit-animation: animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    1.6s both;
  animation: animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s
    both;
}

@-webkit-keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

@keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }

  100% {
    fill: rgb(28, 26, 19);
  }
}

.svg-elem-10 {
  -webkit-animation: animate-svg-fill-10 0.7s
    cubic-bezier(0.47, 0, 0.745, 0.715) 1.7000000000000002s both;
  animation: animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715)
    1.7000000000000002s both;
}
