@charset "utf-8";

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
}

:root {
  --color-black: hsla(0, 0%, 16%, 1);
  --color-lite-black: hsla(0, 0%, 44%, 1);
  --color-white: hsla(0, 0%, 100%, 1);
  --color-lite-gray: hsla(0, 0%, 94%, 1);
  --color-lite-red: hsla(0, 75%, 70%, 1);
  --font-lato: "Lato", sans-serif;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

ul {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.sp {
  display: none;
}

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

.container {
  /* padding: 0 142px; */
  /* padding: 0 10.142857142857142vw; */
  padding: 0 7.285714285714286vw;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.common_wrapper {
  max-width: 1198px;
  padding: 0 40px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .common_wrapper {
    max-width: none;
    /* padding: 0 20px; */
    padding: 0;
  }
}

.h-container {
  /* padding: 120px 0; */
  padding: 8.571428571428571vw 0;
}

@media (max-width: 768px) {
  .h-container {
    padding: 80px 0;
  }
}


/* ============== ヘッダー ================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
}

.header-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 80px;
  z-index: 99;

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  mask-image: linear-gradient(to bottom, #fff 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #fff 0%, transparent 100%);
}

.header-back img {
  min-height: 80px;
}

@media (max-width: 768px) {
  .header-back {
    min-height: 66px;
  }

  .header-back img {
    min-height: 66px;
  }
}


.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  position: relative;
  z-index: 999;
}

@media (max-width: 768px) {
  .header-container {
    padding: 12px 16px;
    display: block;
  }
}

.site_header_logo {
  transition: opacity .4s ease;
  position: relative;
  z-index: 100;
}

.site_header_logo:hover {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .site_header_logo {
    max-width: 120px;
  }
}

.global_nav {
  position: relative;
  z-index: 100;
}



.global_nav_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;

}

.global_nav_list_item {
  list-style: none;
}

.global_nav_list_link {
  color: var(--color-black);
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}


.global_nav_list_link::after {
  background-color: var(--color-black); /* 下線の色 */
  bottom: -4px; /* 要素の下端からの距離 */
  content: ""; /* 要素に内容を追加 */
  height: 1px; /* 下線の高さ */
  left: 0; /* 要素の左端からの距離 */
  position: absolute; /* 絶対位置指定 */
  transform: scale(0, 1); /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: right top; /* 変形の原点を右上に指定 */
  transition: transform .3s; /* 変形をアニメーション化 */
  width: 100%; /* 要素の幅 */
}
/* リンクにホバーした際の下線の表示 */
.global_nav_list_link:hover::after {
  transform-origin: left top; /* 変形の原点を左上に指定 */
  transform: scale(1, 1); /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}

.top_link {
  display: none;
}

/* ハンバーガーメニュー */
.hamburger {
  display: none;
}

.hamburger_logo {
  display: none;
}

@media (max-width: 768px) {

  .hamburger {
    display: block;
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 100;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: .4s;
  }

  .hamburger__line {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 2px;
    background-color: var(--color-black);
    transition: .4s;
  }

  .hamburger__line:nth-of-type(1) {
    top: 14px;
  }

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

  .hamburger__line:nth-of-type(3) {
    top: 32px;
  }

  /* メニューオープン時 */
  .hamburger.nav-toggle.is-active .hamburger__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
  }

  .hamburger.nav-toggle.is-active .hamburger__line:nth-of-type(2) {
    opacity: 0;
  }

  .hamburger.nav-toggle.is-active .hamburger__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
  }

  .hamburger.nav-toggle.is-active .site_header_logo {
    display: none;
  }

  .hamburger.nav-toggle.is-active .header-container {
    padding: 0;
  }

  /* メニュー */

  .global_nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    pointer-events: none;
    transition: all .3s linear;
    z-index: 100;
  }

  /* 開閉アニメーション */
  .global_nav.is-active {
    pointer-events: auto;
    opacity: 1;
  }

  .global_nav_overlay {
    height: 100%;
    opacity: 0;
    transition: all .3s linear;
  }

  /* 開閉アニメーション */
  .global_nav_overlay.is-open {
    opacity: 1;
    background-color: var(--color-white);
    pointer-events: auto;
  }

  .global_nav_list {
    flex-direction: column;
    gap: 24px;
    z-index: 200;
    position: absolute;
    /* top: 10%; */
    left: 0;
    right: 0;
    padding: 40px 40px 80px;
    align-items: baseline;
  }

  .global_nav_list_link {
    font-size: 36px;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: all .3s ease;
  }

  .top_link {
    display: block;
  }

  .hamburger_logo {
    display: inline-block;
    padding: 12px 16px;
  }

  .hamburger_logo img {
    max-width: 120px;
  }
}

/* ================ フッター ================ */
.site-footer {
  background: var(--color-black);
}

.footer-container {
  padding: 44px 60px 52px;
  padding: min(3.571428571428571vw, 50px) min(4.285714285714286vw, 60px) min(4vw, 56px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 60px 40px 28px;
    gap: 60px;
  }
}

.footer-logo {
  width: min(35.642857142857146vw, 499px);
  transition: opacity .4s ease;
}

.footer-logo:hover {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .footer-logo {
    width: 58.71794871794872vw;
  }
}


.footer-right-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-right: 60px;
  padding-top: 24px;
}

@media (max-width: 890px) {

  .footer-right-top {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .footer-right-top {
    align-items: center;
    padding: 0;
  }
}

.footer-nav-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 768px) {
  .footer-nav-wrapper {
    align-items: center;
    gap: 20px;
  }
}

.footer-nav-title {
  color: var(--color-lite-black);
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 20px;
  }
}

.footer-nav-list {
  list-style: none;
}

.footer-nav-link {
  color: var(--color-white);
  font-family: "Lato", sans-serif;
  font-weight: 400;
  /* font-size: 16px; */
  font-size: clamp(13px, 1.1428571428571428vw, 16px);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: opacity .4s ease;
}

@media (max-width: 768px) {
  .footer-nav-link {
    font-size: 16px;
  }
}

.footer-nav-link:hover {
  opacity: 0.6;
}

/* .instagram_link {
  display: flex;
  align-items: center;
  gap: 7px;
  transition: opacity .4s ease;
}

.instagram_link:hover {
  opacity: 0.6;
}

.instagram_text {
  color: var(--color-white);
  font-family: "Lato", sans-serif;
  font-weight: 400;
    font-size: clamp(13px, 1.1428571428571428vw, 16px);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .instagram_text {
  font-size: 16px;
}
} */
.address {
  pointer-events: none;
  color: var(--color-white);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.04em;

}

@media (max-width: 768px) {
  .address {
    text-align: center;
    font-size: 12px;
  }
}

.footer-right-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .footer-right-bottom {
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
  }
}

.copyright {
  color: var(--color-white);
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
}

.back_to_top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  transition: opacity .4s ease;
}

.back_to_top:hover {
  opacity: 0.6;
}

.back_to_top_text {
  color: var(--color-white);
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}