@charset "UTF-8";
/* destyle.css*/
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
html {
  line-height: 1.15;
  /* Correct the line height */
  -webkit-text-size-adjust: 100%;
  /* Prevent font size adjustment */
  -webkit-tap-highlight-color: transparent;
  /* Remove gray overlay on links */
  background-color: #F8F8F8;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Sections */
body {
  overflow-x: hidden;
  margin: 0;
  /* Remove margin */
  opacity: 0;
  /* 初期状態で非表示（フェードイン用） */
}

main {
  display: block;
  /* Render `main` consistently */
}

/* Vertical rhythm */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

/* Text-level semantics */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  appearance: none;
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

/* Interactive */
details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

/* Tables */
table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

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

/********** base **********/
/* ========================================
    初期設定
    ======================================== */
body {
  font-family: "Noto Serif JP", "serif";
  color: #151515;
  font-weight: 400;
  line-height: 1.5;
  font-size: 15px;
  letter-spacing: 0.1em;
}

.section-ttl {
  font-size: clamp(20px, 2.5vw, 32px);
}

.section-ttl span {
  font-family: "EB Garamond", "serif";
  font-size: clamp(12px, 2.5vw, 16px);
}

.m-section-ttl-en {
  font-size: 14px;
  font-family: "EB Garamond", "serif";
  letter-spacing: 0.24em;
}

/* ========================================
    コンテナ幅
    ======================================== */
.contents {
  padding: 80px 0 0 0;
}
@media (max-width: 600px) {
  .contents {
    padding: 120px 0 0 0;
  }
}

.container-sm {
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
  max-width: calc(800px + 32px);
}
@media (max-width: 1080px) {
  .container-sm {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .container-sm {
    max-width: 100%;
  }
}

.container-md {
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
  max-width: calc(940px + 32px);
}
@media (max-width: 1080px) {
  .container-md {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .container-md {
    max-width: 100%;
  }
}

.container {
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
  max-width: calc(62vw + 32px);
}
@media (max-width: 1080px) {
  .container {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100%;
  }
}

.container-lg {
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
  max-width: calc(80vw + 32px);
}
@media (max-width: 1080px) {
  .container-lg {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .container-lg {
    max-width: 100%;
  }
}

.container-xl {
  width: 100%;
  padding: 0 24px;
  margin: 0 auto;
  max-width: calc(80vw + 32px);
}
@media (max-width: 1080px) {
  .container-xl {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .container-xl {
    max-width: 100%;
  }
}

/* ========================================
    共通
    ======================================== */
.m-section-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: 14px;
}

.m-section-ttl span {
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-top: 70px;
}
@media (max-width: 600px) {
  .m-section-ttl span {
    margin-top: 0px;
  }
}

.m-section-ttl-en {
  margin-top: 12px;
}

.m-section-ttl--left {
  align-items: flex-start;
}

.m-link-contents {
  margin-bottom: 200px;
}
@media (max-width: 600px) {
  .m-link-contents {
    padding: 0 8px;
    margin-bottom: 100px;
  }
}

.m-link__head {
  margin-top: 200px;
  text-align: center;
  letter-spacing: 0.2em;
}
@media (max-width: 600px) {
  .m-link__head {
    margin-top: 120px;
    margin-bottom: 60px;
  }
}

.m-link__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
@media (max-width: 1080px) {
  .m-link__list {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .m-link__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 0;
  }
}

.m-link__item-img {
  margin-top: 80px;
}
@media (max-width: 600px) {
  .m-link__item-img {
    margin-top: 0px;
  }
}

.m-link__item-text {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  font-size: 15px;
  letter-spacing: 0.2em;
}
@media (max-width: 600px) {
  .m-link__item-text {
    margin-top: 22px;
  }
}

.m-link__item-text span {
  font-size: 13px;
  margin-top: 16px;
}
@media (max-width: 600px) {
  .m-link__item-text span {
    margin-top: 12px;
  }
}

.m-more-btn {
  margin-top: 54px;
  letter-spacing: 0.12em;
  font-size: 12px;
}
@media (max-width: 600px) {
  .m-more-btn {
    margin-top: 40px;
  }
}

.m-content__img-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 85vw;
  gap: 10px;
  margin-top: 88px;
}
@media (max-width: 600px) {
  .m-content__img-wrap {
    margin-top: 60px;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    width: 100%;
    padding: 0 22px;
  }
}
.m-content__img-wrap img {
  object-fit: cover;
}

.m-bg-accent {
  position: relative;
  height: 50vh;
}

.m-gb-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  clip-path: inset(0);
  z-index: -999;
}

.m-bg-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: bottom;
  z-index: -1;
}

.m-bg-accent--01,
.m-gb-inner--01 {
  height: 50vh;
}
@media (max-width: 1080px) {
  .m-bg-accent--01,
  .m-gb-inner--01 {
    height: 30vh;
  }
}

.m-bg-img--01 {
  background-image: url("../img/story/story6.webp");
}
@media (max-width: 600px) {
  .m-bg-img--01 {
    background-image: url("../img/story/story6SP.webp");
  }
}

/* ========================================
    ヘッダー
    ======================================== */
.header {
  width: 100%;
  left: 0;
  top: 0;
  position: fixed;
  padding: 22px 40px;
  z-index: 100;
  background: transparent;
  color: #fff;
  transition: background-color 0.3s ease;
}
@media (max-width: 600px) {
  .header {
    padding: 13px 14px;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 16px 20px;
  }
}

.header.is-scrolled,
.header.is-open {
  background: #f8f8f8;
  color: #333;
}

.header.is-scrolled .header__reserve-btn,
.header.is-open .header__reserve-btn {
  background: transparent;
  color: #333;
  border-color: #c9ccce;
}

.header.is-scrolled .header__logo-white,
.header.is-open .header__logo-white {
  display: none;
}

.header.is-scrolled .header__logo-color,
.header.is-open .header__logo-color {
  display: block;
}

@media (max-width: 768px) {
  .header.is-open .header__nav-wrap {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .header__actions {
    gap: 16px;
    flex-direction: row-reverse;
  }
}

.header__reserve--drawer {
  display: none;
}
@media (max-width: 768px) {
  .header__reserve--drawer {
    display: block;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .header__reserve--drawer .header__reserve-btn {
    padding: 22px;
  }
}

@media (max-width: 768px) {
  .header__reserve--drawer .header__reserve-btn {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    background: #333;
    color: #fff;
    border-color: #333;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .header__reserve--drawer .header__reserve-label-en {
    display: none;
  }
}

@media (max-width: 768px) {
  .header__reserve--drawer .header__reserve-label-ja {
    display: block;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 768px) {
  .header__reserve--inline {
    order: 3;
  }
}

.header__logo {
  width: clamp(122px, 11vw, 160px);
  position: relative;
  z-index: 110;
}

.header__logo a {
  display: block;
}

.header__logo img {
  width: 100%;
  display: block;
}

.header__logo .header__logo-color {
  display: none;
}

.header__nav-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .header__nav-wrap {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 32px;
    padding: 0 24px;
    padding-bottom: 100px;
    padding-top: 100px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -8px, 0);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .header__nav-list {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

.header__nav-list--secondary {
  display: none;
}
@media (max-width: 768px) {
  .header__nav-list--secondary {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding-top: 46px;
  }
}

@media (max-width: 768px) {
  .header__nav-list--primary {
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .header__nav {
    width: 100%;
  }
}

.header__nav-item {
  list-style: none;
  width: 100%;
}

.header__nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}
@media (max-width: 768px) {
  .header__nav-link {
    align-items: flex-start;
  }
}

.header__nav-label-en {
  font-size: 13px;
  letter-spacing: 0.2em;
  font-family: "EB Garamond", "serif";
}
@media (max-width: 768px) {
  .header__nav-label-en {
    font-size: 15px;
    letter-spacing: 0.24em;
    color: #333;
  }
}

.header__nav-label-ja {
  display: none;
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .header__nav-label-ja {
    display: block;
    color: #333;
    font-size: 11px;
  }
}

.header__nav-sub-link {
  display: block;
  color: inherit;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-decoration: none;
}
@media (max-width: 768px) {
  .header__nav-sub-link {
    color: #333;
  }
}

.header__reserve-btn {
  display: block;
  padding: 10px 40px;
  border: 1px solid #fff;
  text-decoration: underline;
  letter-spacing: 0.2em;
  font-size: 13px;
  background: transparent;
  color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (max-width: 600px) {
  .header__reserve-btn {
    padding: 10px 22px;
    font-size: 12.5px;
    text-decoration: none;
  }
}

.header__reserve-label {
  display: block;
}

.header__reserve-label-ja {
  display: none;
}

.hamburger-menu {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
  position: relative;
  z-index: 120;
}
@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }
}

.hamburger-menu__icon {
  position: relative;
  width: 26px;
  height: 18px;
}

.hamburger-menu__icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger-menu__icon span:nth-child(1) {
  top: 0;
}

.hamburger-menu__icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-menu__icon span:nth-child(3) {
  bottom: 0;
}

.header.is-open .hamburger-menu__icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header.is-open .hamburger-menu__icon span:nth-child(2) {
  opacity: 0;
}

.header.is-open .hamburger-menu__icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.is-fixed {
  overflow: hidden;
}

/* ========================================
    フッター
    ======================================== */
.footer {
  padding-top: 120px;
  padding-left: 10vw;
  padding-right: 20px;
  padding-bottom: 76px;
  border-top: 1px solid #E1E1E1;
}
@media (max-width: 1080px) {
  .footer {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding-top: 56px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 80px;
  }
}

.footer__inner {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer__left {
  width: 50%;
}
@media (max-width: 768px) {
  .footer__left {
    width: 100%;
  }
}

.footer__logo {
  width: clamp(90px, 7vw, 104px);
}

.footer__logo-ttl {
  width: clamp(180px, 15vw, 216px);
  margin-top: 24px;
}

.footer__wrap {
  display: flex;
}

.footer__title-wrap {
  display: flex;
  flex-direction: column;
}

.footer__title {
  font-size: 22px;
}

.footer__text {
  font-size: 12.5px;
  line-height: 2;
  margin-top: 30px;
  letter-spacing: 0.11em;
}

@media (max-width: 768px) {
  .footer__nav {
    display: none;
  }
}

.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 90px;
  letter-spacing: 0.16em;
}

.footer__nav-item {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}

.footer__nav-item a {
  display: block;
}

.footer__nav-item span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.1em;
}

.footer__content-wrap {
  display: flex;
}

.footer__reserve a {
  display: block;
  padding: 18px;
  margin-top: 35px;
  padding-left: 32px;
  border: 1px solid #C9CCCE;
  font-size: 13px;
  width: 100%;
  max-width: 300px;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .footer__reserve a {
    max-width: 100%;
  }
}

.footer__info-list {
  display: flex;
  margin-top: 35px;
}
@media (max-width: 768px) {
  .footer__info-list {
    display: none;
  }
}

.footer__info-item {
  letter-spacing: 0.1em;
  padding: 0 24px;
  position: relative;
}
.footer__info-item:first-child {
  padding-left: 0;
}
.footer__info-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1em;
  background-color: #C9CCCE;
}
.footer__info-item:last-child::after {
  display: none;
}

.footer__sns {
  margin-top: 64px;
}

.footer__sns-list {
  display: flex;
  gap: 23px;
}

.footer__sns-item {
  width: 16px;
  height: 16px;
  line-height: 1;
}

.footer__copyright {
  font-size: 10px;
  margin-top: 16px;
  color: #A1AAAF;
  letter-spacing: 0.11em;
}

/* ========================================
    メインビジュアル
    ======================================== */
.mainV {
  width: 100%;
  height: 100vh;
  position: relative;
  background-image: url("../img/top/fv_poster.webp");
  background-size: cover;
  background-position: center;
}
.mainV video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.mainV.is-video-blocked video {
  display: none;
}

.mainV__opening-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 2;
}

.mainV__ttl {
  width: clamp(300px, 45vw, 631px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.mainV__copy-wrap {
  position: absolute;
  left: 10vw;
  bottom: 20vh;
  color: #fff;
  font-family: "EB Garamond", "serif";
  z-index: 1;
}
@media (max-width: 768px) {
  .mainV__copy-wrap {
    left: 24px;
    bottom: 15vh;
  }
}

.mainV__copy {
  font-size: clamp(20px, 1.5vw, 22px);
  letter-spacing: 1em;
}

.mainV__copy-text {
  margin-top: 30px;
  line-height: 2;
  letter-spacing: 0.11em;
}
@media (max-width: 768px) {
  .mainV__copy-text {
    font-size: 13px;
  }
}

/* ========================================
    下層ページ
    ======================================== */
.m-page-mainV {
  padding-top: 160px;
}
@media (max-width: 600px) {
  .m-page-mainV {
    padding-top: 120px;
  }
}

.m-page-mainV-img {
  width: 100%;
  height: 100vh;
}
.m-page-mainV-img img {
  object-fit: cover;
}

/* ========================================
    ナビゲーションドロワー
    ======================================== */
/* ========================================
    投稿一覧ページ
    ======================================== */
/* ========================================
    投稿詳細ページ
    ======================================== */
.m-post-main img {
  object-fit: contain;
  width: auto;
  height: auto;
  margin-bottom: 20px;
}
.m-post-main p {
  margin-bottom: 20px;
  line-height: 2;
}
@media (max-width: 600px) {
  .m-post-main p {
    font-size: 14px;
  }
}
.m-post-main a {
  display: inline-block;
  margin-bottom: 20px;
  color: #00AFED;
  text-decoration: underline;
}
.m-post-main h1 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .m-post-main h1 {
    font-size: 28px;
  }
}
.m-post-main h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .m-post-main h2 {
    font-size: 22px;
  }
}
.m-post-main h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .m-post-main h3 {
    font-size: 18px;
  }
}

/* ========================================
    ユーティリティ
    ======================================== */
.u-pc-only {
  display: block;
}
@media (max-width: 600px) {
  .u-pc-only {
    display: none;
  }
}

.u-sp-only {
  display: none;
}
@media (max-width: 600px) {
  .u-sp-only {
    display: block;
  }
}

/* ========================================
    トップページ
    ======================================== 
*/
.top-concept {
  margin-top: 180px;
}
@media (max-width: 768px) {
  .top-concept {
    margin-top: 96px;
  }
}

.top-concept__inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 36px;
}
@media (max-width: 600px) {
  .top-concept__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
}

.top-concept__text {
  writing-mode: vertical-rl;
  font-size: 13px;
  line-height: 2em;
}
@media (max-width: 600px) {
  .top-concept__text {
    writing-mode: horizontal-tb;
  }
}

.top-concept__text-text {
  display: inline-block;
  padding-right: 36px;
}
@media (max-width: 600px) {
  .top-concept__text-text {
    padding-right: 0;
    padding-top: 26px;
  }
}

.top-link__content {
  margin-top: 180px;
  padding: 0 2vw;
}
@media (max-width: 600px) {
  .top-link__content {
    margin-top: 96px;
    padding: 0 24px;
  }
}

.top-link__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}
@media (max-width: 1080px) {
  .top-link__list {
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .top-link__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}

.top-link__item a {
  display: block;
  position: relative;
}

.top-link__item-text {
  position: absolute;
  left: 12%;
  bottom: 10%;
  color: #fff;
}
@media (max-width: 768px) {
  .top-link__item-text {
    bottom: inherit;
    top: 50%;
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.top-link__item-text-title {
  font-size: 22px;
  font-family: "EB Garamond", "serif";
}

.top-link__item-text-text {
  font-size: 13px;
  font-weight: 500;
  margin-top: 44px;
}

.top-instagram {
  margin-top: 160px;
}
@media (max-width: 768px) {
  .top-instagram {
    margin-top: 84px;
  }
}

.top-instagram__ttl {
  text-align: center;
}

.top-instagram__feed {
  margin-top: 66px;
}
@media (max-width: 768px) {
  .top-instagram__feed {
    margin-top: 50px;
  }
}

#sb_instagram .sbi_photo {
  position: relative;
  display: block;
  overflow: hidden;
}
#sb_instagram .sbi_photo::after {
  content: attr(data-alt);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 24px);
  color: #fff;
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  background-color: rgba(0, 0, 0, 0.65);
  opacity: 0;
  transition: opacity 0.3s ease;
}
#sb_instagram .sbi_photo:hover::after, #sb_instagram .sbi_photo:focus-visible::after {
  opacity: 1;
}
#sb_instagram .sbi_photo img {
  display: block;
}

.top-instagram__more-btn {
  text-align: center;
}
@media (max-width: 600px) {
  .top-instagram__more-btn {
    text-align: left;
  }
}

.top-instagram__more-btn a {
  width: fit-content;
  margin: 0 auto;
  letter-spacing: 0.12em;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid #333333;
  font-family: "EB Garamond", "serif";
  font-size: 13px;
}

.top-story {
  margin-top: 160px;
  border-top: 0.5px solid #C9CCCE;
  border-bottom: 0.5px solid #C9CCCE;
}
@media (max-width: 768px) {
  .top-story {
    margin-top: 80px;
  }
}

.top-story__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(50px, 8vw, 120px);
  flex-wrap: wrap;
}
@media (max-width: 1080px) {
  .top-story__inner {
    flex-wrap: nowrap;
    padding: 40px 0;
  }
}

.top-story__left {
  flex: 0 0 clamp(320px, 32vw, 420px);
}
@media (max-width: 768px) {
  .top-story__left {
    margin-top: 50px;
  }
}

.top-story__left-text {
  margin-top: 40px;
  font-size: 13px;
  line-height: 2;
}
@media (max-width: 768px) {
  .top-story__left-text {
    margin-top: 24px;
  }
}

.top-story__right {
  width: 50vw;
  flex: 0 0 50vw;
  margin-left: auto;
  margin-right: calc(50% - 50vw);
}
@media (max-width: 768px) {
  .top-story__right {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

@media (max-width: 768px) {
  .top-story__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: inherit;
  }
  .top-story__left {
    flex: 1 1 auto;
  }
}
.top-access {
  margin-top: 185px;
}
@media (max-width: 768px) {
  .top-access {
    margin-top: 80px;
  }
}

.top-access__reserve {
  margin-bottom: 90px;
}
@media (max-width: 768px) {
  .top-access__reserve {
    margin-bottom: 120px;
  }
}

.top-access__reserve a {
  display: block;
  padding: 18px;
  font-size: 15px;
  letter-spacing: 0.2em;
  border: 1px solid #C9CCCE;
  width: 100%;
  max-width: 340px;
  text-align: center;
}
@media (max-width: 768px) {
  .top-access__reserve a {
    margin: 0 auto;
    max-width: 400px;
  }
}

.top-access__text-wrap {
  margin-top: 32px;
  display: flex;
  gap: 12px;
}
@media (max-width: 768px) {
  .top-access__text-wrap {
    flex-direction: column;
    gap: 10px;
  }
}

.top-access__text-wrap a {
  font-size: 13px;
  text-decoration: underline;
}

.top-access__text {
  font-size: 13px;
}

.top-access__more-btn {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .top-access__more-btn {
    margin-top: 40px;
  }
}

.top-access__map {
  margin-top: 72px;
  margin-bottom: 160px;
}
@media (max-width: 768px) {
  .top-access__map {
    margin-top: 30px;
    margin-bottom: 80px;
  }
}

/* ========================================
    ツアー
    ======================================== */
.tour {
  padding-top: 100px;
  padding-bottom: 100px;
}

.tour-top__img {
  margin-top: 64px;
  position: relative;
}
@media (max-width: 768px) {
  .tour-top__img {
    margin-top: 40px;
  }
}

.tour-top__img-num a {
  position: absolute;
  width: 36px;
  height: 36px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  z-index: 10;
  background: #000;
  border-radius: 50%;
  font-weight: 600;
  border: 1px solid #000;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .tour-top__img-num a {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .tour-top__img-num a {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
}
.tour-top__img-num a:hover {
  opacity: 0.7;
}

.tour-top__img-num01 a {
  top: 7.5%;
  left: 90%;
}

.tour-top__img-num02 a {
  top: 11%;
  left: 56%;
}

.tour-top__img-num03 a {
  top: 16%;
  left: 25%;
}

.tour-top__img-num04 a {
  top: 48%;
  left: 25%;
}

.tour-top__img-num05 a {
  top: 60%;
  left: 33%;
}

.tour-top__img-num06 a {
  top: 43%;
  left: 66%;
}

.tour-top__img-num07 a {
  top: 47%;
  left: 90%;
}

.tour-top__img-num08 a {
  top: 57%;
  left: 94%;
}

.tour-top__img-num09 a {
  top: 73%;
  left: 79%;
}

.tour-top__img-num10 a {
  top: 86%;
  left: 51%;
}

.tour-content {
  margin-top: 100px;
}
@media (max-width: 768px) {
  .tour-content {
    margin-top: 80px;
  }
}

.tour-content__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 86px;
}
@media (max-width: 1080px) {
  .tour-content__list {
    gap: 40px 60px;
  }
}
@media (max-width: 768px) {
  .tour-content__list {
    gap: 40px 40px;
  }
}
@media (max-width: 600px) {
  .tour-content__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px 0;
  }
}

.tour-content__item-title {
  margin-top: 23px;
  letter-spacing: 0.09em;
  font-size: 14px;
  line-height: 2.4;
}

.tour-content__btn a {
  letter-spacing: 0.12em;
  margin-top: 16px;
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid #333333;
  font-family: "EB Garamond", "serif";
}
@media (max-width: 768px) {
  .tour-content__btn a {
    font-size: 12px;
  }
}

/* 温泉 */
.tour-content__onsen-list {
  margin-top: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-content__onsen-item {
  padding: 0 30px;
  border-right: 1px solid #c9ccce;
  line-height: 1;
}
@media (max-width: 600px) {
  .tour-content__onsen-item {
    padding: 0 15px;
  }
}

.tour-content__onsen-list .tour-content__onsen-item:last-child {
  border-right: none;
}

.tour-content__title {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 62px;
  letter-spacing: 0.16em;
}
@media (max-width: 768px) {
  .tour-content__title {
    margin-bottom: 32px;
  }
}

.tour-content__title::before {
  content: "";
  display: block;
  width: 2em;
  height: 1px;
  background-color: #c9ccce;
}

.tour-content__inner--onsen {
  border-bottom: 1px solid #c9ccce;
  padding-bottom: 80px;
  padding-top: 100px;
}
@media (max-width: 768px) {
  .tour-content__inner--onsen {
    padding-bottom: 50px;
    padding-top: 50px;
  }
}

.tour-content__item-text {
  margin-top: 16px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .tour-content__item-text {
    font-size: 13px;
  }
}

.tour-content__item-time {
  margin-top: 12px;
}

.tour-content__item-price {
  margin-top: 1em;
}

.tour-content__item-time,
.tour-content__item-price {
  font-size: 11px;
  letter-spacing: 0.09em;
}

/* ========================================
    ご宿泊
    ======================================== */
.stay-content__inner {
  display: flex;
  align-items: center;
  padding-left: 10vw;
  gap: 94px;
  justify-content: flex-end;
  margin-top: 200px;
}
@media (max-width: 1080px) {
  .stay-content__inner {
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .stay-content__inner {
    flex-direction: column-reverse;
    padding-left: 0;
    gap: 50px;
    margin-top: 96px;
  }
}

.stay-content .stay-content__inner:first-of-type {
  margin-top: 90px;
}
@media (max-width: 600px) {
  .stay-content .stay-content__inner:first-of-type {
    margin-top: 30px;
  }
}

.stay-content__right {
  width: 55vw;
  flex-shrink: 0;
}
@media (max-width: 1080px) {
  .stay-content__right {
    width: 45vw;
  }
}
@media (max-width: 600px) {
  .stay-content__right {
    width: 100%;
  }
}

.stay-content__left {
  max-width: 500px;
}
@media (max-width: 600px) {
  .stay-content__left {
    padding: 0 22px;
  }
}

.stay-content__left-text {
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-left: 40px;
  font-size: 13px;
}
@media (max-width: 1080px) {
  .stay-content__left-text {
    padding-left: 15px;
  }
}

.stay-content__title {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 64px;
  font-size: 16px;
  letter-spacing: 0.16em;
  line-height: 2;
}
@media (max-width: 600px) {
  .stay-content__title {
    margin-bottom: 10px;
  }
}
.stay-content__title span {
  font-size: 13px;
  font-family: "Noto Serif JP", "serif";
  font-weight: 500;
  letter-spacing: 0.1em;
}

.stay-content__btn {
  width: fit-content;
  border-bottom: 1px solid #151515;
  padding-bottom: 4px;
  font-family: "EB Garamond", "serif";
  letter-spacing: 0.1em;
  margin-top: 40px;
  margin-left: 40px;
}

.stay-slide-content__wrap {
  position: relative;
  margin-top: 200px;
}
@media (max-width: 600px) {
  .stay-slide-content__wrap {
    margin-top: 120px;
  }
}

.stay-slide-content__wrap .stay-pagination {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.stay-slide-content__wrap .stay-pagination__bullet {
  background-color: transparent;
  border: 1px solid #4B5152;
  border-radius: 999px;
  width: 10px;
  height: 10px;
  opacity: 1;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.stay-slide-content__wrap .stay-pagination__bullet:hover {
  background-color: rgba(75, 81, 82, 0.15);
}

.stay-slide-content__wrap .stay-pagination__bullet.is-active {
  background-color: #4B5152;
  border-color: #4B5152;
}

.stay-map {
  margin-top: 200px;
}
@media (max-width: 600px) {
  .stay-map {
    margin-top: 120px;
  }
}

.stay-map__inner {
  display: flex;
}
@media (max-width: 600px) {
  .stay-map__inner {
    flex-direction: column;
    gap: 40px;
  }
}

.stay-map__left {
  flex-shrink: 0;
  margin-right: 64px;
}

.stay-map-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #4B5152;
  margin-top: 40px;
  position: relative;
}

.stay-map-nav__next {
  cursor: pointer;
  margin-left: 60px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  position: relative;
}
.stay-map-nav__next::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.stay-map-nav__next.is-rotated::after {
  transform: rotate(225deg);
}

.stay-map__right-img {
  display: block;
}

.stay-info__inner {
  display: flex;
  gap: 120px;
  margin-top: 100px;
  border-bottom: 1px solid #E1E1E1;
}
@media (max-width: 1080px) {
  .stay-info__inner {
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
  }
}

.stay-info__left {
  flex-shrink: 0;
  min-width: 200px;
}

.stay-info__right-flex {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
}
@media (max-width: 600px) {
  .stay-info__right-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.stay-info__right-flex__title {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  line-height: 2.5;
  margin-right: 18px;
  justify-content: space-between;
  flex-shrink: 0;
}
.stay-info__right-flex__title span {
  flex-shrink: 0;
  min-width: 8em;
}
@media (max-width: 600px) {
  .stay-info__right-flex__title {
    margin-right: 0;
    width: 100%;
    justify-content: flex-start;
  }
}
.stay-info__right-flex__title::after {
  content: "";
  display: block;
  width: 90px;
  height: 1px;
  background-color: #C9CCCE;
  margin-left: 12px;
  transform: translateY(2px);
}
@media (max-width: 600px) {
  .stay-info__right-flex__title::after {
    width: 100%;
  }
}

.stay-info__right--sp .stay-info__right-flex {
  flex-direction: row;
  align-items: flex-start;
  width: fit-content;
  gap: 12px;
}
.stay-info__right--sp .stay-info__right-flex .stay-info__right-flex__title {
  width: fit-content;
}
.stay-info__right--sp .stay-info__right-flex .stay-info__right-flex__title::after {
  width: 30px;
}

.stay-info__right-flex__content__text {
  line-height: 2.5;
  font-size: 13px;
}

.stay-info__right-flex__content__text span {
  font-size: 15px;
}

.stay-info__right-flex__content ul {
  margin-bottom: 48px;
}
@media (max-width: 600px) {
  .stay-info__right-flex__content ul {
    margin-bottom: 0px;
  }
}

.stay-info__right-flex__content__list {
  margin-top: 48px !important;
}

.stay-info__right-flex__content li {
  line-height: 2.5;
  font-size: 13px;
}

.stay-info__inner-last {
  border-bottom: none;
}

.stay__reserve a {
  display: block;
  padding: 18px;
  font-size: 13px;
  letter-spacing: 0.2em;
  border: 1px solid #C9CCCE;
  width: 100%;
  max-width: 340px;
  text-align: center;
}
@media (max-width: 768px) {
  .stay__reserve a {
    margin: 0 auto;
    max-width: 400px;
    margin-top: 56px;
  }
}

/* ========================================
    くらしのこと
    ======================================== */
.story-content {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 600px) {
  .story-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.story-content__inner {
  padding-top: 26px;
}
@media (max-width: 600px) {
  .story-content__inner {
    padding-top: 0px;
  }
}

.story-content__body-ja {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-top: 66px;
}
@media (max-width: 600px) {
  .story-content__body-ja {
    margin-top: 40px;
  }
}

.story-content__body-en {
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 2;
  color: #a1aaaf;
  margin-top: 1em;
  margin-bottom: 66px;
}
@media (max-width: 600px) {
  .story-content__body-en {
    margin-top: 1em;
    margin-bottom: 40px;
  }
}

.story-content__img--mt46 {
  margin-top: 46px;
}
@media (max-width: 600px) {
  .story-content__img--mt46 {
    margin-top: 26px;
  }
}

.story-content__img--mt240 {
  margin-top: 240px;
}
@media (max-width: 600px) {
  .story-content__img--mt240 {
    margin-top: 120px;
  }
}

.story__center-content {
  margin-top: 120px;
}
@media (max-width: 600px) {
  .story__center-content {
    margin-top: 90px;
  }
}

.story__center-content__inner {
  display: flex;
  justify-content: center;
  gap: 42px;
}
@media (max-width: 600px) {
  .story__center-content__inner {
    flex-direction: column;
  }
}

.story__center-content__left p {
  line-height: 2;
  letter-spacing: 0.1em;
}

.story__center-content__right {
  max-width: 400px;
}

.story__center-content__inner p {
  margin-top: 24px;
  font-size: 13px;
}

.story__center-content__right p {
  color: #a1aaaf;
  font-family: "EB Garamond", "serif";
  letter-spacing: 0.1em;
  line-height: 2;
}

/* ========================================
    お食事
    ======================================== */
.meal-top {
  padding-top: 100px;
}
@media (max-width: 600px) {
  .meal-top {
    padding-top: 60px;
  }
}

.meal-top__text {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  line-height: 2;
  margin-top: 82px;
}
@media (max-width: 600px) {
  .meal-top__text {
    margin-top: 40px;
    text-align: left;
  }
}

.meal-slide-content {
  margin-top: 82px;
  padding-top: 100px;
  border-top: 1px solid #e1e1e1;
}
@media (max-width: 600px) {
  .meal-slide-content {
    margin-top: 56px;
    padding-top: 50px;
  }
}

.meal-slide-content__inner {
  width: 90vw;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .meal-slide-content__inner {
    width: 100%;
    padding: 0 20px;
  }
}

.meal-content__img {
  margin-top: 78px;
}
@media (max-width: 600px) {
  .meal-content__img {
    margin-top: 40px;
  }
}

.meal-slide-content__swiper-wrap {
  position: relative;
}
@media (max-width: 1080px) {
  .meal-slide-content__swiper-wrap {
    width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .meal-slide-content__swiper-wrap {
    width: 100%;
  }
}
.meal-slide-content__swiper-wrap .swiper-button-prev,
.meal-slide-content__swiper-wrap .swiper-button-next {
  position: absolute;
  letter-spacing: 0.16em;
  transform: translateY(-50%);
  z-index: 10;
  width: 12px;
  height: 16px;
  margin-top: 0;
  background-image: url("../img/meal/slide-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.meal-slide-content__swiper-wrap .swiper-button-prev {
  left: -60px;
  transform: translateY(-50%) rotate(180deg);
}
@media (max-width: 600px) {
  .meal-slide-content__swiper-wrap .swiper-button-prev {
    display: none;
  }
}
.meal-slide-content__swiper-wrap .swiper-button-next {
  right: -60px;
}
@media (max-width: 600px) {
  .meal-slide-content__swiper-wrap .swiper-button-next {
    display: none;
  }
}
.meal-slide-content__swiper-wrap .swiper-button-prev::after,
.meal-slide-content__swiper-wrap .swiper-button-next::after {
  display: none;
}

.meal-slide-content__head {
  font-size: 16px;
  font-weight: 500;
}

.meal-slide-content__text {
  margin-top: 36px;
  font-size: 13px;
}

.meal-slide-content__btn {
  margin-top: 54px;
  display: inline-block;
  font-size: 13px;
  font-family: "EB Garamond", "serif";
  letter-spacing: 0.16em;
}
@media (max-width: 600px) {
  .meal-slide-content__btn {
    margin-top: 50px;
  }
}

.meal-slide-content__swiper {
  margin-top: 78px;
}
@media (max-width: 600px) {
  .meal-slide-content__swiper {
    margin-top: 40px;
  }
}

/* ========================================
    プライバシーポリシー
    ======================================== */
.policy {
  padding-top: 100px;
  padding-bottom: 100px;
  font-size: 13px;
}

.policy__title {
  font-size: 18px;
  margin-bottom: 40px;
}

.policy__content {
  line-height: 1.75;
}
.policy__content .wp-block-heading {
  font-size: 13px;
  margin-top: 60px;
  font-weight: 500;
  margin-bottom: 15px;
}
.policy__content .wp-block-spacer {
  height: 40px !important;
}
.policy__content .wp-block-list {
  padding: 20px 0;
  list-style: disc;
  margin-left: 1em;
}
.policy__content p,
.policy__content a,
.policy__content li {
  margin-top: 0.8em;
  font-size: 13px;
  letter-spacing: 0.16em;
}
.policy__content .wp-block-table {
  margin-top: 18px;
}
.policy__content .wp-block-table tbody tr:first-child td:first-child {
  text-align: center;
}

.wp-block-table td,
.wp-block-table th {
  vertical-align: middle;
  padding: 10px 20px;
}

.table-section {
  margin-top: 150px;
}
@media (max-width: 600px) {
  .table-section {
    margin-top: 50px;
  }
}

.table-section--02 {
  margin-top: 60px;
}
@media (max-width: 600px) {
  .table-section--02 {
    margin-top: 50px;
  }
}

.contact-section {
  margin-top: 50px;
}

/* ========================================
    宿泊規約
    ======================================== */
.reserve-content {
  margin-top: 100px;
  padding-bottom: 100px;
  font-size: 13px;
}

.reserve-content__title {
  font-size: 15px;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 500;
}

.reserve-content__inner {
  line-height: 2;
  height: 50vh;
  overflow-y: auto;
  padding: 50px 60px;
  border: 1px solid #C9CCCE;
}
@media (max-width: 600px) {
  .reserve-content__inner {
    padding: 50px 16px;
  }
}

.reserve-content__list {
  margin-top: 60px;
}

.reserve-content__list p {
  margin-bottom: 18px;
}

.reserve-content__list li {
  display: flex;
}

.reserve-content__list li span {
  min-width: 1.5em;
}

.reserve-content__list-sub {
  padding-left: 1.5em;
}

.reserve-content__list-last {
  margin-top: 40px;
}

.reserve-content__form {
  margin-top: 40px;
}

.reserve-content__consent.form-consent {
  margin-top: 60px;
  margin-bottom: 60px;
}
.reserve-content__consent label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  letter-spacing: 0.16em;
}

.reserve-content__submit-wrap {
  margin-top: 0;
}

.reserve-content__submit {
  letter-spacing: 0.18em;
  font-weight: 500;
}

/* ========================================
    お問い合わせ
    ======================================== */
.contact {
  padding: 120px 0;
}
@media (max-width: 600px) {
  .contact {
    padding: 80px 0;
  }
}

.contact__info {
  font-size: 14px;
  text-align: center;
  line-height: 2;
}
@media (max-width: 600px) {
  .contact__info {
    font-size: 13px;
    text-align: left;
  }
}
.contact__info a {
  text-decoration: underline;
}

.contact__form {
  margin-top: 80px;
  width: 100%;
}
@media (max-width: 600px) {
  .contact__form {
    margin-top: 64px;
  }
}

.form-unit {
  width: 100%;
  margin-bottom: 2em;
  display: flex;
  gap: 50px;
}
@media (max-width: 600px) {
  .form-unit {
    gap: 8px;
    flex-direction: column;
  }
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.form-unit__head {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  min-width: 12em;
  flex-direction: column;
  align-items: flex-start;
  font-size: 13px;
}

.m-required::after {
  content: "必須";
  font-size: 11px;
  margin-left: 2px;
  border-radius: 4px;
}

.form-unit__input,
.form-unit__input-wrap {
  width: 100%;
  height: auto;
  padding: 8px;
  border: 1px solid #E1E1E1;
  border-radius: 4px;
  font-size: 16px;
  min-height: 50px;
}

.form-unit__textarea,
.form-unit__textarea-wrap {
  width: 100%;
  padding: 8px;
  height: 210px;
  border: 1px solid #E1E1E1;
  border-radius: 4px;
  font-size: 16px;
}

.form-unit__radio {
  margin-top: 20px;
}

.form-unit__date {
  width: 40%;
  height: 70px;
  padding: 8px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 4px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .form-unit__date {
    width: 50%;
    height: 54px;
  }
}
.wpcf7-list-item {
  display: block;
  margin-left: 0;
  margin-right: 20px;
  font-size: 13px;
}

.wpcf7-submit {
  display: block;
  text-align: center;
  color: #333;
  width: 100%;
  margin: 0;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #E1E1E1;
  transition: 0.3s;
  position: relative;
}
.wpcf7-submit.is-agreed {
  background-color: #4B5152;
  border-color: #4B5152;
  color: #fff;
}
.wpcf7-submit:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.submit-wrap {
  display: block;
  width: 100%;
  max-width: 460px;
  margin: 40px auto 0;
  position: relative;
  margin-bottom: 30px;
}
.submit-wrap .wpcf7-spinner {
  position: absolute;
  right: -32px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
.submit-wrap::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  border-top: 1px solid #E1E1E1;
  border-right: 1px solid #E1E1E1;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(45deg);
  font-size: 18px;
  color: #E1E1E1;
  pointer-events: none;
  transition: color 0.3s;
}
.submit-wrap.is-agreed::after {
  color: #fff;
}

.contact--confirm .wpcf7-submit:hover {
  background-color: #4B5152;
  border-color: #4B5152;
  color: #fff;
}

.contact--confirm .submit-wrap:hover::after {
  color: #fff;
}

.wpcf7-radio {
  -webkit-appearance: button !important;
  appearance: button !important;
  display: flex;
}

.wpcf7-radio input:hover,
.wpcf7-radio label:hover {
  cursor: pointer;
}

.wpcf7-response-output {
  border-color: transparent !important;
  text-align: center !important;
}

input[type=radio] {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #555;
  position: relative;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(-2px);
}

input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #555;
  transform: translate(-50%, -50%);
}

.form-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 0px;
  border: 1px solid #333;
  position: relative;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(-1px);
}

.form-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 25%;
  width: 4px;
  height: 8px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  transform: rotate(45deg) translate(-50%, -50%);
}

.form-unit__policy-link {
  border-bottom: 1px solid #555;
  font-size: 13px;
}

.form-consent {
  margin-top: 80px;
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 600px) {
  .form-consent {
    margin: 40px 0 30px 0;
  }
}

input.wpcf7-form-control.wpcf7-previous {
  display: block;
  margin: 0 auto;
}

.thanks__text {
  line-height: 2;
  margin-bottom: 30px;
  text-align: center;
}

.thanks__btn {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

/* ========================================
    交通案内
    ======================================== */
.access-mainV {
  padding-top: 100px;
}

.access-mainV__map {
  width: 100vw;
  margin-top: 55px;
}
.access-mainV__map .access-mainV__map-iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/0.4;
  filter: grayscale(100%) contrast(1.1);
}
@media (max-width: 600px) {
  .access-mainV__map .access-mainV__map-iframe {
    aspect-ratio: 1/0.53;
  }
}

.access-mainV__text {
  font-family: "EB Garamond", "serif";
  font-size: 13px;
  letter-spacing: 0.2em;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .access-mainV__text {
    margin-top: 20px;
  }
}

.access-content {
  padding-bottom: 80px;
}

.access-content__inner {
  display: flex;
  margin-top: 120px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .access-content__inner {
    margin-top: 82px;
    flex-direction: column;
  }
}

.access-content__left {
  flex-shrink: 0;
  min-width: 300px;
}

.access-content__left-title {
  border-left: 2px solid #c9ccce;
  padding-left: 18px;
  font-size: 13px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .access-content__left-title {
    padding-left: 15px;
  }
}

.access-content__right {
  width: 100%;
}
@media (max-width: 600px) {
  .access-content__right {
    max-width: 400px;
  }
}

.access-content__right-title {
  line-height: 2;
  font-size: 13px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .access-content__right-title {
    padding-left: 15px;
    margin-top: 1em;
  }
}

.access-content__right-img {
  margin-top: 50px;
}
@media (max-width: 600px) {
  .access-content__right-img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .access-content__right-list {
    margin-top: 2em;
  }
}

.access-content__right-list li {
  font-size: 13px;
  line-height: 2;
  font-weight: 500;
}
.access-content__right-list li a {
  width: 100%;
  max-width: 400px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 1em;
  justify-content: space-between;
}
.access-content__right-list li a::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  transform: rotate(45deg);
}

/* ========================================
    よくある質問
    ======================================== */
.faq {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 600px) {
  .faq {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}

.faq__title {
  display: flex;
  align-items: center;
  gap: 16px;
}
.faq__title::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #C9CCCE;
}

.faq__inner {
  display: flex;
  align-items: flex-start;
  gap: 100px;
  margin-bottom: 90px;
}
@media (max-width: 768px) {
  .faq__inner {
    gap: 30px;
    flex-direction: column;
  }
}

.faq__title {
  flex-shrink: 0;
  padding: 28px 0;
  min-width: 12em;
}
@media (max-width: 768px) {
  .faq__title {
    padding: 0;
  }
}
@media (max-width: 600px) {
  .faq__title {
    min-width: 8em;
  }
}

/*--------------------------------------------------
accordion_section
--------------------------------------------------*/
.accordion__list {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 0px;
}

.accordion__item {
  overflow: hidden;
  border-bottom: 1px solid #E1E1E1;
}

.accordion__q {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-radius: 0;
  background: transparent;
  padding: 28px 4.5em 28px 72px;
  cursor: pointer;
  position: relative;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: #2c2c2c;
  z-index: 1;
  transition: color 0.3s ease, background-color 0.3s ease;
}

@media screen and (max-width: 768px) {
  .accordion__q {
    font-size: 13px;
    font-weight: 500;
    padding: 22px 0em 28px 3.6em;
  }
}
.accordion__q::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #333333;
  border-bottom: 2px solid #333333;
  position: absolute;
  top: 34px;
  right: auto;
  left: 2em;
  transform: rotate(-45deg);
  transition: transform 0.3s ease, border-color 0.3s ease, top 0.3s ease;
}

@media screen and (max-width: 768px) {
  .accordion__q::after {
    left: 1.2em;
    top: 31px;
  }
}
.accordion__q.is_active::after {
  transform: rotate(45deg);
}

.accordion__q.is_active {
  color: #0d4633;
}

.accordion__a {
  box-sizing: border-box;
  height: 0;
  overflow: hidden;
  line-height: 1.9;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.accordion__a-inner {
  padding: 0 4.5em 28px 72px;
}

.accordion__q.is_active + .accordion__a {
  opacity: 1;
  visibility: visible;
}

.accordion__a p {
  font-size: 13px;
  font-weight: 500;
  color: #333333;
}

@media screen and (max-width: 768px) {
  .accordion__a p {
    font-size: 13px;
  }
  .accordion__a-inner {
    padding: 0 0em 22px 3.6em;
  }
}/*# sourceMappingURL=main.css.map */