@charset "UTF-8";
/** pxからvwへ変換関数 **/
html {
  font-size: 10px;
}

body {
  width: 100%;
  color: #3B3B3B;
  font-size: 1.6rem;
  line-height: 1.7;
  font-family: "Noto Serif JP", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  background-color: #FAF8F3;
}

select {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  line-height: inherit;
}

ul {
  list-style: none;
}

a {
  color: #202020;
  transition: all 0.4s 0s ease;
}
a:hover {
  color: #b24d3e;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

h2 {
  font-size: 4rem;
  line-height: 1.5;
}

h3 {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

h4 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
}

table {
  width: 100%;
  text-align: left;
}

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

.text-align-right {
  text-align: right;
}

.font-bold {
  font-weight: bold;
}

.mt-08 {
  margin-top: 8rem;
}

.mt-03 {
  margin-top: 3rem;
}

.mb-04 {
  margin-bottom: 4rem;
}

.mb-05 {
  margin-bottom: 5rem;
}

.mb-06 {
  margin-bottom: 6rem;
}

.mb-02 {
  margin-bottom: 2rem;
}

.mb-01 {
  margin-bottom: 1rem;
}

.pl-01 {
  padding-left: 1rem;
}

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

.text-right {
  text-align: right;
  margin-top: 8rem;
}

.w1000 {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.w800 {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.w600 {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.w50 {
  width: 50%;
}

.w30 {
  width: 30%;
}

.w35 {
  width: 35%;
}

.w65 {
  width: 65%;
}

.w70 {
  width: 70%;
}

.bona-nova-regular {
  font-family: "Bona Nova", serif;
  font-weight: 400;
  font-style: normal;
}

.bona-nova-bold {
  font-family: "Bona Nova", serif;
  font-weight: 700;
  font-style: normal;
}

.worry-card__dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: #222;
  vertical-align: middle;
  margin-left: 8px;
  position: relative;
}

/* 中の ▶（三角） */
.worry-card__dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-42%, -50%); /* 少し左寄せが自然 */
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px; /* 三角サイズ */
  border-color: transparent transparent transparent #fff;
}

.text-under {
  border-bottom: 1px solid #3B3B3B;
  padding: 10px 0 5px;
}

/*===========
main contents
=============*/
.container {
  max-width: 1090px;
  width: 100%;
  margin: 0 auto;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-between {
  justify-content: space-between;
}

.flex-end {
  justify-content: flex-end;
}

.flex-center {
  justify-content: center;
}

.flex-align-center {
  align-items: center;
}

.flex-align-start {
  align-items: flex-start;
}

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

.flex-wrap {
  flex-wrap: wrap;
}

.flex-reverse {
  flex-direction: row-reverse;
}

.col-01 {
  width: 100%;
}

.col-02 {
  width: 48%;
  margin-bottom: 3rem;
}

.col-03 {
  width: 31%;
}

.col-04 {
  width: 23%;
}

/*メインコンテンツ*/
.title {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
  gap: 20px;
}
.title img {
  width: 70px;
}
.title h2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.4rem;
}
.title h2 span {
  font-size: 2.4rem;
}

section {
  padding: 6rem 0;
}

.more-link {
  position: relative;
  padding-right: 24px; /* 矢印分の余白 */
}

.tel__icon svg {
  position: relative;
  top: 3px;
}

.more-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid #fff; /* 色は調整 */
  border-right: 1.5px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 750px) {
  .sp-none {
    display: none !important;
  }
  body {
    font-size: 4vw;
  }
  h2 {
    font-size: 6.6666666667vw;
  }
  h3 {
    font-size: 4.8vw;
  }
  h4 {
    font-size: 4.2666666667vw;
  }
  .col-03 {
    width: 100%;
  }
  .col-02 {
    width: 100%;
  }
  .w35 {
    width: 100%;
  }
  .w65 {
    width: 100%;
  }
  main section {
    padding: 6rem 2rem;
  }
}
/*  header  */
.header {
  background-color: rgba(75, 54, 33, 0.7);
}
.header .header-container {
  display: flex;
  align-items: center;
  padding: 0 0 0 3rem;
  width: 100%;
}
.header .header__nav .nav__items {
  display: flex;
  width: 100%;
  gap: 26px;
}
.header #js-hamburger {
  background: #fff;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0px 0px 15px -5px #d6d6d6;
}
.header .sns {
  display: flex;
  gap: 15px;
}
.header .sns a img {
  width: 30px;
}

.logo {
  margin-right: 30px;
  max-width: 180px;
}

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

.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #1D98C4;
  transition: ease 0.4s;
}

/* ハンバーガーメニュー */
.header__hamburger {
  width: 48px;
  height: 100%;
}

.header .contact-btn {
  border-right: 0;
}
.header .contact-btn svg {
  margin-right: 1rem;
}
.header .contact-btn a {
  display: flex;
  flex-direction: row;
  color: #fff;
  font-size: 1.4rem;
  align-items: center;
  transition: all 0.4s;
  background: linear-gradient(65deg, rgb(2, 56, 147) 0%, rgb(0, 135, 196) 100%);
  padding: 1rem 3em;
  border-radius: 30px;
}
.header .contact-btn a:hover #bg-green #hoverchange {
  fill: #2FA8DD;
}
.header .contact-btn #bg-green {
  position: absolute;
  top: -2rem;
  right: -2em;
  z-index: -1;
}
.header .contact-btn #icon-contact {
  width: 20px;
  height: 20px;
}

.border-right-zero {
  border-right: 0px !important;
}

@media screen and (min-width: 960px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
  }
}
@media screen and (min-width: 960px) {
  .nav__items {
    display: flex;
    align-items: center;
    height: initial;
    height: 85px;
  }
}
.nav-items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}

@media screen and (min-width: 960px) {
  .nav-items {
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
  .nav-items__item--tel {
    position: fixed;
    right: 0;
    padding: 1rem 2rem;
    font-size: 20px;
  }
  #reserve-btn {
    position: fixed;
    right: 0;
    top: 85px;
  }
}
/* ナビのリンク */
/* ===== サブメニュー付き ===== */
.nav-items__item--has-sub {
  position: relative;
}

.nav-items__item--has-sub a {
  color: #fff;
}

/* row（リンク + トグル） */
.nav-items__row {
  display: flex;
  align-items: center;
}

/* トップ階層リンクだけに効かせる（重要） */
.nav-items__link {
  display: flex;
  align-items: center;
  height: 100%;
  color: #202020;
  text-decoration: none;
}

.nav-items__item > a:not(.nav-items__link) {
  /* 何も指定しない（必要なら） */
}

.nav-items__item a {
  color: #fff;
}

/* サブメニュー */
.nav-submenu {
  list-style: none;
  margin: 0;
  padding: 10px 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

/* サブメニューのリンクは普通のブロックにする */
.nav-submenu a {
  display: block;
  padding: 10px 16px;
  color: #202020;
  text-decoration: none;
  white-space: nowrap;
}

.nav-submenu a:hover {
  color: #1D98C4;
}

/* ===== PC：hover/focusでドロップダウン ===== */
@media (min-width: 960px) {
  /* PCではトグル非表示 */
  .nav-items__toggle {
    display: none;
  }
  .nav-submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
  }
  /* hover + キーボード操作（focus-within） */
  .nav-items__item--has-sub:hover .nav-submenu,
  .nav-items__item--has-sub:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  /* PC時のホバー色（必要なら） */
  .nav-items__link:hover {
    color: #fff;
    opacity: 0.8;
  }
}
/* ===== SP：クリックでアコーディオン ===== */
@media (max-width: 959px) {
  /* SPナビの中では row を横並びに固定 */
  .nav-items__row {
    width: 100%;
  }
  /* トップリンクは横幅を取る */
  .nav-items__link {
    flex: 1;
    padding: 1.5rem 1rem;
    font-weight: bold;
    justify-content: flex-start;
  }
  /* トグルボタン（右端） */
  .nav-items__toggle {
    background: transparent;
    border: 0;
    padding: 12px 10px;
    cursor: pointer;
    line-height: 0;
  }
  .nav-items__chev {
    width: 10px;
    height: 10px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    display: inline-block;
  }
  /* display:none ではなく max-height で開閉（ガクつき防止） */
  .nav-submenu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 6px 0 0;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease;
    background: transparent;
  }
  .nav-items__item.is-open .nav-submenu {
    max-height: 500px; /* 項目数に応じて十分大きく */
    opacity: 1;
  }
  .nav-items__item.is-open .nav-items__chev {
    transform: rotate(-135deg);
  }
  /* サブメニューの見た目（SP用） */
  .nav-submenu a {
    padding: 12px 14px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
    font-weight: 500;
  }
  .header .header-container {
    justify-content: space-between;
  }
}
@media screen and (min-width: 960px) {
  .nav-items__item a {
    margin-bottom: 0;
    height: 100%;
    flex-direction: row;
  }
  .nav-items__item a:hover {
    color: #b07aa1;
  }
}
.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

@media screen and (min-width: 960px) {
  .hamburger {
    display: none;
  }
}
/* ハンバーガーメニューの線 */
.hamburger span {
  width: 70%;
  height: 1px;
  background-color: #000;
  position: relative;
  transition: ease 0.4s;
  display: block;
  margin: 0 auto;
}

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

.hamburger span:nth-child(2) {
  margin: 6px auto;
}

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

/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -7px;
  transform: rotate(-45deg);
}

@media screen and (min-width: 751px) {
  .nav-items__item a::after {
    content: none !important;
  }
}
@media screen and (min-width: 751px) {
  .sp-br {
    display: none;
  }
}
@media screen and (max-width: 959px) {
  .header .header__nav .nav__items {
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
    position: static;
    transform: none;
    padding-top: 45px;
  }
  .header .contact-btn {
    margin-top: 2rem;
  }
  .nav-items__item {
    overflow-y: scroll;
    border-right: 0;
  }
  .nav-items__item a {
    display: block;
    font-weight: bold;
    padding: 1.5rem 1rem;
  }
  .header .header-container {
    padding: 1rem 2rem;
  }
  .header .header__nav .nav__items {
    gap: 0;
  }
  #reserve-btn img {
    width: 100%;
  }
  .header .header__nav {
    overflow-y: scroll;
    background-color: rgba(58, 51, 44, 0.95);
  }
}
.worries02 .worries__list {
  margin-top: 40px;
  justify-content: space-between;
}
.worries02 .worries__list .worry-card {
  display: block;
}
.worries02 .worries__list .worries__item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
.worries02 .worries__list .worry-card__body {
  padding: 2rem;
}
.worries02 .worries__list .worry-card__body h3 {
  display: flex;
  align-items: center;
}
.worries02 .worries__list .worry-card__text {
  font-size: 1.4rem;
}
.worries02 .menu__decor,
.worries02 .worries__ornament {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

footer {
  color: #fff;
}

/* 上段：予約＋支払い */
.footer__reserve {
  background: #AF6494; /* 紫 */
  padding: 28px 0 18px;
}

.footer__reserve .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer__reserveInner {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 18px;
  align-items: stretch;
}

.footer__reserveCard,
.footer__pay {
  background: #fff;
  color: #3a332c;
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.footer__reserveCard {
  text-align: center;
}

.footer__reserveTitle {
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer__reserveTitle img {
  width: 40px;
}

/* 予約ボタン */
.footer__reserveBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(260px, 100%);
  height: 44px;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.12s ease, filter 0.12s ease;
}

.footer__reserveBtn:hover {
  color: #fff;
  transform: translateY(-1px);
  filter: brightness(0.98);
}

.footer__reserveCard--tel .footer__reserveBtn {
  background: #b24d3e;
}

.footer__reserveCard--line .footer__reserveBtn {
  background: #63b45a;
}

.footer__reserveNote {
  margin: 10px 0 0;
  font-size: 14px;
  color: rgba(58, 51, 44, 0.75);
  line-height: 1.6;
}

/* 支払い */
.footer__payTitle {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__payTitle::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #7c4f70;
  display: inline-block;
}

.footer__payList {
  list-style: disc;
  margin: 0px 0 15px;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.8;
}

.footer__payAttention {
  margin: 10px 0 0;
  color: #c7352c;
  font-size: 16px;
  font-weight: 700;
}

.footer__payLogos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.footer__payLogos img {
  width: 80%;
  margin: 0 auto;
  display: block;
}

/* 紫エリアの補足テキスト */
.footer__reserveText {
  margin: 14px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

/* 下段：フッター本体 */
.footer__main {
  background: #5b5448; /* ブラウン/グレー */
  padding: 34px 0 18px;
}

.footer__main .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer__main .container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;
  align-items: start;
}

/* ブランド */
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__logo {
  margin: 0;
  line-height: 1.1;
}
.footer__logo img {
  max-width: 200px;
  display: block;
  margin: 0 auto;
}

.footer__logoEn {
  display: block;
  font-size: 34px;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.footer__logoSub {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  opacity: 0.85;
  margin-top: 6px;
}

.footer__shop {
  margin: 0;
  font-size: 16px;
  text-align: center;
}

/* SNS */
.footer__sns {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  font-size: 12px;
}

.footer__sns a {
  font-size: 10px;
  color: #fff;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: filter 0.12s ease, transform 0.12s ease;
}

.footer__sns a:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.footer__sns img {
  width: 34px;
  display: block;
  margin-top: 10px;
}

/* ナビ */
.footer__nav {
  border-top: 1px solid rgb(255, 255, 255);
  padding-top: 25px;
}

.footer__navCols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgb(255, 255, 255);
}

.footer__navHead {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer__navHead::after {
  content: "▶";
  font-size: 10px;
  opacity: 0.8;
}

.footer__navList {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__navList li a {
  position: relative;
  display: block;
  border-bottom: 1px solid #fff;
}

.footer__navList li a::after {
  content: "▶";
  font-size: 10px;
  opacity: 0.8;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer__navList li + li {
  margin-top: 8px;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 14px;
}

.footer__nav a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 1;
}

/* 下段横並びリンク */
.footer__navBottom {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
}

.footer__navBottom a {
  font-size: 12px;
  opacity: 0.9;
}

/* コピーライト */
.footer__copy {
  grid-column: 1/-1;
  margin: 18px 0 0;
  text-align: center;
  font-size: 11px;
  opacity: 0.75;
}

.worries02 .worries__list:after {
  content: "";
  display: block;
  width: 31%;
}

.information__hero {
  display: flex;
  justify-content: flex-end;
}

.information__hero img {
  width: min(720px, 100%);
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 14px;
  display: block;
}

/* カード（ヒーローに重ねる） */
.information__card {
  width: min(920px, 100%);
  margin: clamp(-38px, -4.5vw, -56px) auto 0;
  background: #fff;
  border-radius: 16px;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

/* 下のCTA 2枚 */
.information__cta {
  width: min(920px, 100%);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.information__media {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.information__media .information__map {
  width: 48%;
}
.information__media .information__map iframe {
  width: 100%;
  height: 258px;
}

.information__photos {
  width: 48%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.information__photos figure figcaption {
  font-size: 1.4rem;
  margin-top: 8px;
}

.information__caption a {
  font-size: 1.4rem;
  text-decoration: underline;
}

.information__name {
  border-bottom: 1px solid #ccc;
  padding-bottom: 1.2rem;
}

.information__dl {
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.information__row {
  font-size: 1.4rem;
  display: flex;
  border-bottom: 1px solid #ccc;
}
.information__row dt {
  width: 25%;
  padding: 1rem;
}
.information__row dd {
  width: 75%;
  padding: 1rem;
}

.ctaCard__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(260px, 100%);
  height: 44px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  transition: transform 0.12s ease, filter 0.12s ease;
}

/* 下のCTA 2枚 */
.information__cta {
  width: min(920px, 100%);
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ctaCard {
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px 16px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.ctaCard__label {
  margin: 0 0 6px;
  font-size: 12px;
  color: rgba(58, 51, 44, 0.75);
}

.ctaCard__title {
  margin: 0 0 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #3a332c;
}

.ctaCard__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(260px, 100%);
  height: 44px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
  transition: transform 0.12s ease, filter 0.12s ease;
}

.ctaCard__button:hover {
  transform: translateY(-1px);
  filter: brightness(0.98);
}

.ctaCard__note {
  margin: 10px 0 0;
  font-size: 11px;
  color: rgba(58, 51, 44, 0.72);
  line-height: 1.6;
}

/* ボタン色（電話/LINE） */
.ctaCard--tel .ctaCard__button {
  background: #b24d3e;
}

.ctaCard--tel .ctaCard__button:hover {
  color: #fff;
}

.ctaCard--line .ctaCard__button {
  background: #63b45a;
}

.ctaCard--line .ctaCard__button:hover {
  color: #fff;
}

@media screen and (max-width: 750px) {
  .pc-br {
    display: none;
  }
  main section {
    padding: 4rem 2rem;
  }
  body {
    font-size: 4vw;
  }
  h3 {
    font-size: 6vw;
  }
  p {
    font-size: 4vw;
  }
  .information__card {
    margin-top: -26px;
    border-radius: 14px;
  }
  .information__row {
    grid-template-columns: 72px 1fr;
    gap: 10px;
  }
  .information__photos {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .information__cta {
    grid-template-columns: 1fr;
  }
  .information__media {
    grid-template-columns: 1fr;
  }
  .information__photos {
    grid-template-columns: 1fr 1fr;
  }
  .information__photos {
    gap: 16px;
  }
  .information__media .information__map {
    width: 100%;
  }
  .information__photos {
    margin-top: 4rem;
    width: 100%;
  }
  footer .footer-layer li:first-child a {
    border-left: 0px;
    border-top: 1px solid #fff;
  }
  footer .footer-layer li a {
    border-right: 0px;
    border-top: 0px;
  }
  footer .footer-layer {
    flex-direction: column;
    padding: 3rem 2rem;
  }
  footer .footer-layer li a {
    padding: 1.5rem;
  }
  .copyright {
    padding: 1.5rem 2rem;
  }
  .footer__reserveInner {
    grid-template-columns: 1fr;
  }
  .footer__main .container {
    grid-template-columns: 1fr;
  }
  .footer__navCols {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__navCols {
    grid-template-columns: 1fr;
  }
  .footer__navBottom {
    gap: 10px 16px;
  }
  .footer__logoEn {
    font-size: 30px;
  }
}
@media screen and (max-width: 540px) {
  .header .logo img {
    height: auto;
  }
  .worries02 .worries__list .worry-card__body h3 {
    font-size: 4.8vw;
  }
  .information__name {
    font-size: 4.8vw;
  }
  .information__row dt {
    width: 32%;
  }
  .information__row dd {
    width: 68%;
  }
}

.fixed-cta{
  position: fixed;
  left: 0;
  right: 0;
  z-index: 999;
  bottom: env(safe-area-inset-bottom);

  display: flex;
  width: 100%;
  height: 50px;

  /* iPhoneの下端（ホームバー）対策 */
  padding-bottom: env(safe-area-inset-bottom);

  box-shadow: 0 -6px 18px rgba(0,0,0,.18);
  border-top: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
}

@media screen and (min-width: 751px) {
  .fixed-cta {
    display: none;
  }
}

/* 各ボタン */
.fixed-cta__item{
  flex: 1 1 33.333%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .02em;

  /* クリックしやすく */
  -webkit-tap-highlight-color: transparent;
}

/* 背景色（画像に近いイメージ） */
.fixed-cta__item.is-reserve{ background: #a7a38f; }
.fixed-cta__item.is-menu   { background: #b24d3e; }
.fixed-cta__item.is-line   { background: #63b45a; }

/* 区切り線 */
.fixed-cta__item + .fixed-cta__item{
  border-left: 1px solid rgba(255,255,255,.18);
}

.fixed-cta__icon{
  font-size: 18px;
  line-height: 1;
}

.fixed-cta__text{
  font-size: 16px;
  line-height: 1;
}

/* ホバー（PC用） */
@media (hover:hover){
  .fixed-cta__item:hover{
    filter: brightness(1.05);
  }
  .fixed-cta__item:active{
    filter: brightness(.95);
  }
}

/* 画面が狭いとき微調整 */
@media (max-width: 480px){
  :root{ --fixed-cta-h: 60px; }
  .fixed-cta__text{ font-size: 15px; }
  .fixed-cta__icon{ font-size: 17px; }
}

/*# sourceMappingURL=style.css.map */