@charset "UTF-8";

/* ========================================================================
//  変数など
======================================================================== */
:where(:root) {
  /* Colors */
  --color-main-bg: #333;
  --color-sub-bg: #000;
  --color-main: #0a0a0a;
  --color-text: #fff;
  --color-white: #f9f9f9;
  --color-text--sub: #333;
  --color-primary: #d44c11;
  --color-background-light: #f8f6f6;
  --color-background-dark: #1a1a1a;
  --color-surface-dark: #221610;
  --color-gold: #DAA520;
  --color-deep-red: #8B0000;
  --color-deep-green: #0f4209;
  

  /* Calculations & Units */
  --root-font-size: 16;
  --rem: calc(1rem / var(--root-font-size));

  /* Layout */
  --layout-width-min: 375;
  --layout-width-max: 1440;
  --layout-width-inner-pc: 1440;
  --layout-header-block-size-sp: 54;
  --layout-header-block-size-pc: 54;

  /* Typography */
  --ff-base: "Shippori Mincho", serif;
  --fz-base: calc(16 * var(--rem));
  --fw-base: 400;
  --lh-base: 1.5;
  --ff-ttl: "Noto Sans JP", sans-serif;

  /* Z-index Layers */
  --z-loading: 300;
  --z-modal: 100;
  --z-drawer: 40;
  --z-floating: 30;
  --z-header: 20;
  --z-footer: 10;
  --z-default: 1;

  /* Allow animations and transitions of intrinsic sizing keywords. */
  interpolate-size: allow-keywords;
}

/* =========================================================================
//  ベース - 初期設定
========================================================================= */
* {
  /* Prevent inline elements from extending beyond their container's bounds. */
  min-inline-size: 0;
}

/* デフォルトのマージンを削除、作成するCSSの制御を改善するため */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  overflow-x: clip;
  scroll-padding-block-start: calc(var(--layout-header-block-size-sp) * 1px);
  scroll-behavior: smooth;
  margin-top: 0 !important;
  @media (768px <= width) {
    scroll-padding-block-start: calc(var(--layout-header-block-size-pc) * 1px);
  }
}

body {
  background-color: var(--color-main-bg);
  min-block-size: 100svb;
  overflow-x: clip;
  font-family: var(--ff-base);
  font-size: var(--fz-base);
  font-weight: var(--fw-base);
  line-height: var(--lh-base);
  color: var(--color-text);
}

main {
  margin-block: 80px 0;
}

img {
  block-size: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  padding: 0;
  color: inherit;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  border: none;
}

@media (768px <= width) {
  /* pcではtelかけられないように */
  a[href*="tel:"] {
    text-decoration: none;
    pointer-events: none;
    cursor: default;
  }
  a:hover {
    transition: all 0.5s ease;
  }
}

.parallax {
    background-attachment: fixed;
    background-image: linear-gradient(rgba(26, 26, 26, 0.7) 0%,
    rgba(26, 26, 26, 0.7) 100%);
    background-size: cover;
    background-position: top 100% left 50%;
    /* iOSはfixedが効かないのでscrollに切り替え */
    @supports (-webkit-touch-callout: none) {
        background-attachment: scroll;
        background-size: 160vw;
        background-position: bottom 20% left 50%;
    }
    @media (768px <= width) {
      height: 50vh;
      background-size: cover;
      background-position: center;
    }
}

.parallax {
  height: 50vh;
  @media (768px <= width) {
    height: 80vh;
    }
}
.parallax.top {
  background-image: url("../img/parallax-top-sp.webp");
  @media (768px <= width) {
    background-image: url("../img/parallax-top.webp");
  }
}
.parallax.bottom {
  background-image: url("../img/parallax-bottom-sp.webp");
  @media (768px <= width) {
    background-position: top;
    background-image: url("../img/parallax-bottom.webp");
  }
}


/* =========================================================================
//  レイアウト - インナー
========================================================================= */
.inner {
  padding-inline: 16px;

  @media (768px <= width) {
    box-sizing: content-box;
    max-inline-size: calc(var(--layout-width-inner-pc) * 1px);
    padding-inline: 24px;
    margin-inline: auto;
  }
}

/* =========================================================================
//  コンポーネント（共通パーツ）
========================================================================= */
.section {
  padding-block: 64px;

  @media (768px <= width) {
    padding-block: 80px;
  }
}

.section-ttl {
  inline-size: fit-content;
  font-weight: bold;
  margin-inline: auto;
}


/* =========================================================================
//  ユーティリティ
========================================================================= */
.hidden-pc {
  /* モバイルファーストPC時に非表示 */
  @media (768px <= width) {
    display: none !important;
  }
}

.visible-sp {
  display: block!important;
  @media (768px <= width) {
    display: none !important;
  }
}

.visible-pc {
    display: none !important;
  @media (768px <= width) {
    display: block!important;
  }
}

/* =========================================================================
//  ヘッダー
========================================================================= */
.header {
  position: fixed;
  inset-inline: 0;
  z-index: var(--z-header);
  padding-block: 12px;
  background-color: var(--color-sub-bg);
  z-index: 999999;
  top: 0;
  left: 0;
  height: 80px;
  display: flex;
  align-items: center;
  @media (768px <= width) {
    height: 80px;
    display: block;
  }
}

.header__inner {
  @media (768px <= width) {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.header__logo {
  display: grid;
  a {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    line-height: calc(32 / 24);
    color: #fff;
  }
  img {
    max-width: 100px;
  }
  @media (768px <= width) {
    img {
      max-width: 100%;
    }
  }
}

.header__nav {
  display: none;

  @media (768px <= width) {
    display: flex;
    column-gap: 32px;
  }
}

.header__list {
  @media (768px <= width) {
    display: flex;
    column-gap: calc(32px - 8px * 2);
    align-items: center;
  }

  li {
    @media (768px <= width) {
      line-height: 1;
    }
  }

  a {
    color: var(--color-text);
    @media (768px <= width) {
      padding-inline: 8px;
    }
  }
}

.header__button {
  display: inline-block;
  padding-block: 10px;
  padding-inline: 16px;
  color: #fff;
  background-color: var(--color-main);
  border-radius: 6px;
  &.rsv {
    background-color: var(--color-deep-green);
  }
}

/* =========================================================================
//  ドロワー
========================================================================= */
.drawer-icon {
  position: fixed;
  inset-block-start: 28px;
  inset-inline-end: 18px;
  z-index: calc(var(--z-drawer) + 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  inline-size: 48px;
  block-size: 24px;
  z-index: 1000000;
  top: 24px;

  @media (768px <= width) {
    display: none;
  }
}

.drawer-icon__bar {
  inline-size: 100%;
  block-size: 2px;
  background-color: var(--color-text);
  transition: all 0.5s ease;
}

.is-open {
  .drawer-icon__bar:nth-of-type(1) {
    rotate: 225deg;
    translate: 0 12px;
  }

  .drawer-icon__bar:nth-of-type(2) {
    opacity: 0;
  }

  .drawer-icon__bar:nth-of-type(3) {
    rotate: -225deg;
    translate: 0 -11px;
  }
}

.drawer {
  position: fixed;
  inset-block: 77px 0;
  inset-inline-end: 0;
  z-index: var(--z-drawer);
  inline-size: 50vw;
  overflow-y: scroll;
  background-color: rgba(0, 0, 0, .85);
  translate: 101% 0;
  transition: translate 0.5s ease;

  @media (768px <= width) {
    inset-block: 60px 0;
  }

  &.is-open {
    translate: 0;
  }
}

.drawer__body {
  inline-size: 100%;
  block-size: fit-content;
  padding-block: 32px;
  padding-inline-start: 16px;
  padding-inline-end: 16px;
}

.drawer__list {
  display: flex;
  flex-direction: column;
  row-gap: 32px;

  li {
    line-height: 1;
  }

  a {
    color: var(--color-white);
    font-size: medium;
  }
}

.drawer__button {
  display: inline-block;
  padding-block: 10px;
  padding-inline: 16px;
  margin-block-start: 40px;
  color: #fff;
  background-color: var(--color-main-bg);
  border-radius: 6px;
  &.rsv {
    background-color: var(--color-deep-green);
  }
}

/* =========================================================================
//  ファーストビュー
========================================================================= */
.first-view {
  position: relative;
  inline-size: 100%;
  aspect-ratio: 1 / 1;
  margin-top: 32px;
  @media (768px <= width) {
    background-color: var(--color-main);
    aspect-ratio: auto;
    margin-top: 44px;
  }
}

.first-view__swiper {
  max-width: 100%;
  max-height: 100%;
  height: 100%;
  @media (768px <= width) {
    max-width: 1440px;
    max-height: 720px;
  }
}

.first-view__swiper,
.first-view__swiper-wrapper,
.first-view__swiper-slide {
  inline-size: inherit;
  block-size: inherit;
}

.swiper-slide-active img,
.swiper-slide-duplicate-active img,
.swiper-slide-prev img {
  animation: zoom-in 13s linear 0s normal both;
}

@keyframes zoom-in {
  from {
    scale: 1;
  }
  to {
    scale: 1.4;
  }
}

.first-view__image {
  inline-size: inherit;
  block-size: inherit;
  img {
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
  }
}

.first-view--content {
  inset: 0;
  z-index: var(--z-default);
  display: grid;
  place-content: center;
  inline-size: fit-content;
  block-size: fit-content;
  padding-inline: 16px;
  margin: auto;
  color: var(--color-white);
  text-align: center;
  z-index: 2;
}

.first-view--cover {
  z-index: 1;
}

.first-view--catch {
  width: 80%;
  margin-inline: auto;
  justify-content: center;
  @media (768px <= width) {
    width 320px;
  }
}

.first-view--title {
  margin-block-start: 24px;
  font-size: 20px;
  line-height: calc(28 / 20);
  text-shadow: 2px 2px 4px #333;

  @media (768px <= width) {
    font-size: 24px;
    line-height: calc(32 / 24);
  }
}

.first-view--button {
  margin-block-start: 32px;
  a {
    display: inline-block;
    padding-block: 16px;
    padding-inline: 32px;
    font-size: 1.375rem;
    line-height: calc(28 / 18);
    background-color: var(--color-main);
    border-radius: calc(1px / 0);
    border: 1px solid var(--color-main);
  }
  &.rsv {
    a {
      background-color: var(--color-deep-green);
      border: 1px solid var(--color-deep-green);
    }
  }
}

/* VIDEO MV */
.video-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.fullwidth-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  position: absolute;
  bottom: 0;
  left: 0;
}

.mobile-video {
  display: none;
}

@media (768px <= width) {
  .desktop-video {
    display: none;
  }
  .mobile-video {
    display: block;
  }
  .first-view--button {
    a:hover {
      background-color: var(--color-white);
      color: var(--color-main);
    }
  }
}

/* =========================================================================
//  お知らせセクション
========================================================================= */
.news {
  margin-block-start: 40px;
}

.news__inner {
  @media (768px <= width) {
    max-inline-size: 800px;
  }
}

.news__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block-end: 4px;
  text-align: right;
}

.news__title {
  font-size: 20px;
  font-weight: 700;
}

.news__history-link {
  border: 1px solid var(--color-white);
  border-radius: 50vw;
  font-size: 1.125rem;
  color: var(--color-white);
  padding-block: 8px;
  padding-inline: 20px;
  text-decoration: none;
  text-underline-offset: 0.6ex;
  margin: 40px auto 0;
}

@media (768px <= width) {
  .news__history-link:hover {
    background-color: var(--color-white);
    color: var(--color-background-dark);
  }
}

.news__item {
  display: flex;
  column-gap: 24px;
  padding-block: 16px;
  border-block-end: 1px solid #fff;
  padding-block-end: 31px;
  row-gap: 8px;
  align-items: center;
}

.news__date {
  align-content: center;
  font-size: 12px;
}

.news__item-title {
  font-size: 14px;
}


/* =========================================================================
//  アバウト
========================================================================= */
section#about p {
  line-height: 1.6;
  font-size: 1.175rem;
  margin-top: 1rem;
  @media (768px <= width) {
    font-size: 1.375rem;
  }
}

section#about .about-item {
  max-width: 800px;
  margin-inline: auto;
}

section#about .about-item .section-ttl {
  display: flex;
  align-items: center;
}

section#about .about-item .section-ttl:before,
section#about .about-item .section-ttl:after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1px;
  margin: 0 .8rem;
  background-color: currentColor;
}

section#about .about-item:first-child .section-ttl:before,
section#about .about-item:first-child .section-ttl:after {
  content: "";
  display: none;
}

/* =========================================================================
//  アクセス
========================================================================= */
.access-block--map {
    height: 100%;
    margin-top: 1.6rem;
    display: block;
    > * {
      height: 100%;
      aspect-ratio: 1 / 1;
    }
}
@media (768px <= width) {
  .access-block {
    display: flex!important;
    flex-direction: column;
  }
  .access-block--inner {
    flex: 1;
  }
  .access-block--map {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    > * {
      height: 320px;
      aspect-ratio: auto;
    }
  }
}

/* =========================================================================
//  フッター
========================================================================= */
.footer {
  position: sticky;
  inset-block-start: 100%;
  z-index: var(--z-footer);
  padding-block: 40px 120px;
  text-align: center;
  background-color: var(--color-sub-bg);

  @media (768px <= width) {
    padding-block: 80px;
  }
}

.footer__logo {
  font-size: 24px;
  font-weight: 700;
  line-height: calc(32 / 24);
  color: var(--color-main);
  display: flex;
  justify-content: center;
}

.footer__address {
  margin-block-start: 40px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.footer__hours {
  margin-block-start: 4px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.footer__copyright {
  margin-block-start: 40px;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

/* =========================================================================
//  page-top
========================================================================= */
.page-top {
  position: fixed;
  inset-block-end: 64px;
  inset-inline-end: 20px;
  z-index: var(--z-floating);
  display: inline flow-root;
  visibility: hidden;
  max-inline-size: 48px;
  aspect-ratio: 1;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;

  @media (768px <= width) {
    inset-block-end: 16px;
    inset-inline-end: 120px;
  }

  &.is-show {
    visibility: visible;
    opacity: 1;
  }

  img {
    inline-size: 100%;
  }
}

.page-top-btn {
  width: 48px;
  height: 48px;
  background-color: var(--color-background-dark); /* 画像に合わせて調整してください */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.page-top-btn::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid var(--color-background-light);
  transform: translateY(-2px); /* 視覚的に中央に見せる微調整 */
}

/* =========================================================================
//  下層ファーストビュー
========================================================================= */
.lower-first-view {
  padding-block: 120px 80px;
  position: relative;
}
.lower-first-view-cover {
    z-index: -1;
}

.lower-first-view__title {
  font-size: 36px;
  font-weight: 700;
  line-height: calc(52 / 36);
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 4px #333;
  position: relative;
  z-index: 1;

  @media (768px <= width) {
    font-size: 40px;
    line-height: 1.5;
  }
}

/* =========================================================================
//  パンくずリスト
========================================================================= */
.breadcrumb__body {
  padding-block: 8px;
  line-height: 1.5;

  > span {
    flex-shrink: 0;
    padding-inline-end: 8px;
    color: #ccc;
  }

  > span:last-child {
    flex-shrink: revert;

    span {
      color: var(--color-text);
    }
  }
}

/* =========================================================================
//  下層お知らせセクション
========================================================================= */
.lower-news {
  padding-block: 64px;

  @media (768px <= width) {
    padding-block: 40px;
  }
}

.lower-news__inner {
  @media (768px <= width) {
    max-inline-size: 880px;
  }
}

.lower-news__container {
  display: block grid;
  grid-template-columns: 88px 1fr;
  gap: 30px 16px;

  @media (768px <= width) {
    grid-template-columns: 92px max-content 1fr;
    row-gap: 10px;
  }
}

.lower-news-item {
  display: block grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  row-gap: 8px;
  align-items: center;
  padding-block-end: 31px;
  border-block-end: 1px solid #999;

  @media (768px <= width) {
    grid-column: span 3;
  }

  &:nth-child(n + 2) {
    @media (768px <= width) {
      padding-block-start: 30px;
    }
  }
}

.lower-news-item__thumb {
  width: 100px;
  height: 100px;
}

.lower-news-item__date {
  line-height: calc(24 / 16);
  color: #b4adad;
  letter-spacing: 0.05em;
  inline-size: max-content;
  padding-right: 1rem;

  @media (768px <= width) {
    line-height: 1.5;

  }
}

.lower-news-item__category {
  inline-size: max-content;
  padding-block: 3px;
  padding-inline: 8px;
  font-size: 14px;
  line-height: 1;
  color: var(--color-accent);
  letter-spacing: 0.05em;
  border: 1px solid;
}

.lower-news-item__title {
  grid-column: 1 / -1;
  text-align: justify;
  letter-spacing: 0.05em;

  @media (768px <= width) {
    grid-column: revert;
    line-height: calc(29 / 16);
  }
}
/* =========================================================================
//  メニュー
========================================================================= */
.menu-price--valume {
  .price {
    font-family: var(--ff-base);
    padding-inline: 2px;
  }
  
}
/* =========================================================================
//  エントリー
========================================================================= */
.entry {
}

.entry__title {
  margin-block-end: 18px;
  font-size: 24px;
  font-weight: 600;
  line-height: calc(34 / 24);

  @media (768px <= width) {
    font-size: 30px;
    line-height: 1.4;
  }
}

.entry__published {
  font-size: 12px;
  color: #808080;
}

.entry__author {
  margin-block-start: 8px;
}

.entry__body {
  margin-block-start: 2rem;

  &:first-child {
    margin-block-start: 0;
  }

  &:last-child {
    margin-block-end: 0;
  }
}

/* =========================================================================
//  エントリーコンテンツ（本文）
========================================================================= */
.entry-content {
  h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.8;
    margin-block-start: 2rem;
    @media (768px <= width) {
      line-height: 1.6;
    }
  }

  h2 {
    font-size: 1.6rem;
    @media (768px <= width) {
      font-size: 2rem;
    }
  }

  h3 {
    font-size: 1.4rem;
    @media (768px <= width) {
      font-size: 1.6rem;
    }
  }

  h4 {
    font-size: 1.2rem;
    @media (768px <= width) {
      font-size: 1.4rem;
    }
  }

  h5,h6 {
    font-size: 1.15rem;
    @media (768px <= width) {
      font-size: 1.2rem;
    }
  }

  p {
    margin-top: 1rem;
    font-size: 1.125rem;
    line-height: 1.875;
    @media (768px <= width) {
      line-height: 1.6;
    }
  }

  h2 + p,
  h3 + p,
  h4 + p,
  h5 + p,
  h6 + p {
    margin-block-start: 0;
  }

  > :first-child {
    margin-block-start: 0;
  }

  > :last-child {
    margin-block-end: 0;
  }
}

/* =========================================================================
//  下層コンタクトセクション
========================================================================= */
.lower-contact {
  padding-block: 64px;

  @media (768px <= width) {
    padding-block: 80px;
  }
}

.lower-contact__inner {
  @media (768px <= width) {
    max-inline-size: 720px;
  }
}

/* =========================================================================
//  フォーム
========================================================================= */
.form {
}

.form__lists {
  display: block grid;
  row-gap: 40px;
}

.form__list {
  display: block grid;
  row-gap: calc(8 * var(--rem));
}

.form__input {
  [type="text"],
  [type="email"],
  [type="tel"],
  textarea {
    inline-size: 100%;
    padding-block: 9px;
    padding-inline: 15px;
    font-family: inherit;
    font-size: 16px;
    line-height: calc(24 / 16);
    color: inherit;
    letter-spacing: 0;
    appearance: none;
    background-color: #fff;
    border: 1px solid #c3c3c3;
    border-radius: 4px;
    box-shadow: none;

    &::placeholder {
      color: #ccc;
    }
  }

  select {
    inline-size: 100%;
    padding-block: 9px;
    padding-inline: 15px;
    font-family: inherit;
    font-size: 16px;
    line-height: calc(24 / 16);
    color: inherit;
    letter-spacing: 0;
    background-color: #fff;
    border: 1px solid #c3c3c3;
    border-radius: 4px;
    box-shadow: none;

    &::placeholder {
      color: #ccc;
    }
  }

  textarea {
    block-size: 180px;
    resize: vertical;
  }
}

.form__button {
  margin-block-start: 40px;
  text-align: center;

  [type="submit"] {
    display: inline-block;
    padding-block: 8px;
    padding-inline: 32px;
    font-size: 18px;
    line-height: calc(28 / 18);
    color: #fff;
    cursor: pointer;
    background-color: var(--color-main);
    border: 1px solid var(--color-main);
    border-radius: calc(1px / 0);
  }
}

/* レイアウト崩れ対策 */
span.wpcf7-spinner {
  display: none;
}
