@charset "UTF-8";
/*------------------------------------------------------------


  common.css


------------------------------------------------------------*/
@font-face {
    font-family: "Bodoni Moda";
    src: url("../fonts/BodoniModa-Regular.woff2") format("woff2"),
         url("../fonts/BodoniModa-Regular.woff") format("woff"),
         url("../fonts/BodoniModa-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Light.woff2") format("woff2"),
         url("../fonts/Inter-Light.woff") format("woff"),
         url("../fonts/Inter-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}


/*============================================================
  reset
============================================================*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, nav, section {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  background: transparent;
}

ins {
  background-color: transparent;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: transparent;
  color: #000;
  font-style: normal;
  font-weight: normal;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom:1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  border: 0;
  margin: 0;
  padding: 0;
}

input {
  margin: 0;
  padding: 0;
  outline: none;
  vertical-align: middle;
  font-family: inherit;
  background: none;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

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

select {
  font-family: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  font-family: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  display: block;
  font-family: inherit;
  border: none;
  border-radius: 0;
  background: none;
  outline: none;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

button:disabled {
  cursor: default;
}

img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

strong, em, b, i, small, address {
  font-weight: normal;
  font-style: normal;
}

summary {
  display: block;
  cursor: pointer;
  outline: none;
}

summary::-webkit-details-marker {
  display: none;
}

main {
  display: block;
}


/*============================================================
  root
============================================================*/
:root {
  --scrollbarWidth: 0px;
  --font-size: 10px;
  --font-serif : "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro",
                 "游明朝体", YuMincho, "游明朝", "Yu Mincho", serif;
  --font-sans-serif : "Inter", "Helvetica Neue", Helvetica, Arial,
                      "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
                      "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Yu Gothic UI",
                      "メイリオ", "Meiryo", "Meiryo UI", sans-serif;
  --font-bodoni : "Bodoni Moda", serif;
  --font-times : "Times New Roman", Times, sans-serif;
  --font-inter : "Inter", sans-serif;
  --color-white: #fff;
  --color-black: #080808;
  --color-gold: #706020;
  --color-yellow: #FFD020;
  --color-green: #007030;
  --color-red: #D82018;
  --grid: 1.6rem;
  --grid-2: calc(var(--grid) * 2); /* 3.2rem / 1.6rem */
  --grid-3: calc(var(--grid) * 3); /* 4.8rem / 2.4rem */
  --grid-4: calc(var(--grid) * 4); /* 6.4rem / 3.2rem */
  --grid-5: calc(var(--grid) * 5); /* 8rem / 4rem */
  --grid-6: calc(var(--grid) * 6); /* 9.6rem / 4.8rem */
  --grid-7: calc(var(--grid) * 7); /* 11.2rem / 5.6rem */
  --grid-8: calc(var(--grid) * 8); /* 12.8rem / 6.4rem; */
  --grid-9: calc(var(--grid) * 9); /* 14.4rem / 7.2rem; */
  --grid-10: calc(var(--grid) * 10); /* 16rem / 8rem */
  --grid-12: calc(var(--grid) * 12); /* 19.2rem / 9.6rem */
  --grid-14: calc(var(--grid) * 14); /* 22.4rem / 11.2rem */
  --grid-16: calc(var(--grid) * 16); /* 25.6rem / 12.8rem */
  --grid-18: calc(var(--grid) * 18); /* 28.8rem / 14.4rem */
  --grid-20: calc(var(--grid) * 20); /* 32rem / 16rem */
  --grid-22: calc(var(--grid) * 22); /* 35.2rem / 17.6rem */
  --grid-24: calc(var(--grid) * 24); /* 38.4rem / 19.2rem */
  --grid-26: calc(var(--grid) * 26); /* 41.6rem / 20.8rem */
  --grid-28: calc(var(--grid) * 28); /* 44.8rem / 22.4rem */
  --grid-30: calc(var(--grid) * 30); /* 48rem / 24rem */
  --grid-32: calc(var(--grid) * 32); /* 51.2rem / 25.6rem */
  --grid-34: calc(var(--grid) * 34); /* 54.4rem / 27.2rem */
  --grid-36: calc(var(--grid) * 36); /* 57.6rem / 28.8rem */
  --grid-38: calc(var(--grid) * 38); /* 60.8rem / 30.4rem */
  --grid-40: calc(var(--grid) * 40); /* 64rem / 32rem */
  --grid-42: calc(var(--grid) * 42); /* 67.2rem / 33.6rem */
  --grid-44: calc(var(--grid) * 44); /* 70.4rem / 35.2rem */
  --grid-46: calc(var(--grid) * 46); /* 73.6rem / 36.8rem */
  --grid-48: calc(var(--grid) * 48); /* 76.8rem */
  --grid-50: calc(var(--grid) * 50); /* 80rem */
  --grid-52: calc(var(--grid) * 52); /* 83.2rem; */
  --grid-54: calc(var(--grid) * 54); /* 86.4rem; */
  --grid-56: calc(var(--grid) * 56); /* 89.2rem; */
  --grid-58: calc(var(--grid) * 58); /* 92.8rem; */
  --grid-60: calc(var(--grid) * 60); /* 96rem; */
  --grid-62: calc(var(--grid) * 62); /* 99.2rem; */
  --grid-64: calc(var(--grid) * 64); /* 102.4rem; */
  --grid-66: calc(var(--grid) * 66); /* 105.6rem; */
  --grid-68: calc(var(--grid) * 68); /* 108.8rem; */
  --grid-70: calc(var(--grid) * 70); /* 112rem; */
  --grid-72: calc(var(--grid) * 72); /* 115.2rem; */
  --grid-74: calc(var(--grid) * 74); /* 118.4rem; */
  --grid-76: calc(var(--grid) * 76); /* 121.6rem; */
  --grid-78: calc(var(--grid) * 78); /* 124.8rem; */
  --grid-80: calc(var(--grid) * 80); /* 128rem; */
  --grid-82: calc(var(--grid) * 82); /* 131.2rem; */
  --grid-84: calc(var(--grid) * 84); /* 134.4rem; */
  --grid-86: calc(var(--grid) * 86); /* 137.6rem; */
  --grid-88: calc(var(--grid) * 88); /* 140.8rem; */
}

@media (orientation: landscape), (min-width: 769px) and (orientation: portrait) {
  :root {
    --font-size: calc((100vw - var(--scrollbarWidth)) / 144); /* 0.694vw（横幅1440pxで定義） */
    --grid: 1.6rem;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  :root {
    --font-size: calc(100vw / 40); /* 2.5vw（横幅400pxで定義） */
    --grid: 0.8rem;
  }
}


/*============================================================
  global
============================================================*/
* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

html {
  width: 100%;
  color: var(--color-black);
  font-size: var(--font-size);
  text-align: left;
  background-color: var(--color-white);
  scroll-behavior: smooth;
}

body {
  width: 100%;
  font-family: var(--font-serif);
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt" 1;
  font-variant-ligatures: no-common-ligatures;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  overflow: auto;
  position: relative;
}

html.paused,
html.paused body {
  overflow: hidden;
}

main {
  width: 100%;
  overflow: hidden;
}

main::before {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  background: url("../images/icon-loader.svg") center center no-repeat;
  background-size: contain;
  margin: auto;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 24;
}

main.active::before {
  display: none;
}

@media (max-width: 768px) and (orientation: portrait) {
  main {
    padding-top: var(--grid-12);
  }

  main::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(0.8rem);
    backdrop-filter: blur(0.8rem);
    opacity: 0;
    position: fixed;
    left: -100%;
    top: 0;
    z-index: 20;
  }

  html.paused main::after {
    opacity: 1;
    left: 0;
  }
}

a {
  color: var(--color-black);
  outline: 0;
  text-decoration: none;
}

a[href] { cursor: pointer; }
a[href^="tel"]{ color: inherit; }
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:focus { text-decoration: none; }
a:active { text-decoration: none; }

strong,
em,
span,
b,
sup {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

sup {
  font-size: 1rem !important;
  font-weight: normal !important;
}

/*  font family
--------------------*/
.ff-sans-serif {
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro",
               "游明朝体", YuMincho, "游明朝", "Yu Mincho", serif;
}

.ff-sans {
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
               "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Yu Gothic UI",
               "メイリオ", "Meiryo", "Meiryo UI", sans-serif;
}

.ff-bodoni {
  font-family: "Bodoni Moda", serif;
}

.ff-times {
  font-family: "Times New Roman", Times, sans-serif;
}

.ff-inter {
  font-family: "Inter", sans-serif;
}

/*  font-weight
--------------------*/
.fw-light { font-weight: 300; }
.fw-normal { font-weight: normal; }
.fw-bold { font-weight: bold; }

/*  br
--------------------*/
@media (orientation: landscape), (min-width: 769px) and (orientation: portrait) {
  br.sw {
    display: none !important;
    font-size: 0 !important;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  br.lw {
    display: none !important;
    font-size: 0 !important;
  }
}

/*  img
--------------------*/
img.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/*  video
--------------------*/
video.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/*  none
--------------------*/
.none {
  display: none !important;
  font-size: 0 !important;
}

@media (orientation: landscape), (min-width: 769px) and (orientation: portrait) {
  .none-lw {
    display: none !important;
    font-size: 0 !important;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  .none-sw {
    display: none !important;
    font-size: 0 !important;
  }
}

/*  hidden
--------------------*/
.hidden {
  display: block;
  width: 0 !important;
  height: 0 !important;
  line-height: 0 !important;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
}

@media (orientation: landscape), (min-width: 769px) and (orientation: portrait) {
  .hidden-lw {
    display: block;
    width: 0 !important;
    height: 0 !important;
    line-height: 0 !important;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  .hidden-sw {
    display: block;
    width: 0 !important;
    height: 0 !important;
    line-height: 0 !important;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
  }
}


/*============================================================
  a-link-button
============================================================*/
.a-link-button {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-width: var(--grid-10);
  height: 4.8rem;
  font-family: var(--font-serif);
  font-size: 1.36rem;
  letter-spacing: 0.02em;
  line-height: 1.68;
  margin-block: -0.34em;
  white-space: nowrap;
  outline: 1px solid transparent;
  outline-offset: -1px;
  border-radius: 4.8rem;
}

.a-link-button .icon-arrow {
  fill: none;
  width: 1.2rem;
  height: auto;
}

.a-link-button.color-black {
  color: var(--color-white);
  outline-color: rgba(255, 255, 255, 0.4);
}

.a-link-button.color-black .icon-arrow {
  stroke: var(--color-white);
}

.a-link-button.color-white {
  color: var(--color-black);
  outline-color: rgba(0, 0, 0, 0.4);
}

.a-link-button.color-white .icon-arrow {
  stroke: var(--color-black);
}

@media (hover: hover) {
  .a-link-button.color-black:not([disabled]):hover {
    color: var(--color-black);
    background-color: var(--color-white);
    outline-color: transparent;
  }

  .a-link-button.color-black:not([disabled]):hover .icon-arrow {
    stroke: var(--color-black);
  }

  .a-link-button.color-white:not([disabled]):hover {
    color: var(--color-white);
    background-color: var(--color-black);
    outline-color: transparent;
  }

  .a-link-button.color-white:not([disabled]):hover .icon-arrow {
    stroke: var(--color-white);
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  .a-link-button {
    min-width: var(--grid-16);
  }
}


/*============================================================
  a-link-button-contact
============================================================*/
.a-link-button-contact {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.64rem;
  min-width: var(--grid-12);
  height: 4.8rem;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border-radius: 4.8rem;
}

.a-link-button-contact .icon-calendar {
  width: 2rem;
  height: auto;
  margin-top: -0.2%;
}

.a-link-button-contact.color-yellow {
  color: var(--color-black);
  background-color: var(--color-yellow);
}

.a-link-button-contact.color-yellow .icon-calendar {
  fill: var(--color-black);
}

.a-link-button-contact.color-black {
  color: var(--color-white);
  background-color: var(--color-black);
}

.a-link-button-contact.color-black .icon-calendar {
  fill: var(--color-white);
}

@media (hover: hover) {
  .a-link-button-contact.color-yellow:not([disabled]):hover {
    color: var(--color-white);
    background-color: var(--color-black);
  }

  .a-link-button-contact.color-yellow:not([disabled]):hover .icon-calendar {
    fill: var(--color-white);
  }

  .a-link-button-contact.color-black:not([disabled]):hover {
    color: var(--color-black);
    background-color: transparent;
    outline: 1px solid rgba(0, 0, 0, 0.4);
  }

  .a-link-button-contact.color-black:not([disabled]):hover .icon-calendar {
    fill: var(--color-black);
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  .a-link-button-contact {
    min-width: var(--grid-22);
  }
}


/*============================================================
  a-link-button-call
============================================================*/
.a-link-button-call {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: var(--grid-12);
  font-family: var(--font-times);
  font-size: 2.64rem;
  margin-block: -0.096em;
  white-space: nowrap;
}

.a-link-button-call .icon-phone {
  fill: var(--color-black);
  width: 1.6rem;
  height: auto;
}


/*============================================================
  a-link-card
============================================================*/
.a-link-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  width: var(--grid-2);
  height: var(--grid-2);
  border-radius: var(--grid-2);
  outline: 1px solid rgba(0, 0, 0, 0.4);
  position: absolute;
  right: -0.08rem;
  bottom: -0.16rem;
}

.a-link-card .icon .icon-arrow {
  stroke: var(--color-black);
  fill: none;
  width: 1.04rem;
  height: auto;
}

@media (hover: hover) {
  .a-link-card:hover .picture {
    filter: brightness(104%);
  }

  .a-link-card:hover .icon {
    background-color: var(--color-black);
    outline-color: transparent;
  }

  .a-link-card:hover .icon .icon-arrow {
    stroke: var(--color-white);
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  .a-link-card .icon {
    width: var(--grid-3);
    height: var(--grid-3);
    border-radius: var(--grid-3);
  }

  .a-link-card .icon .icon-arrow {
    width: 0.96rem;
  }
}


/*============================================================
  button-prev, button-next
============================================================*/
.button-prev,
.button-next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6.4rem;
  height: 6.4rem;
  outline: 1px solid;
  outline-offset: -1px;
  border-radius: 6.4rem;
}

.button-prev .icon-arrow,
.button-next .icon-arrow {
  fill: none;
  width: 1.2rem;
  height: auto;
}

.button-prev .icon-arrow {
  transform: scaleX(-1) translateX(4%);
}

.button-next .icon-arrow {
  transform: translateX(4%);
}

.button-prev.color-black,
.button-next.color-black {
  color: var(--color-black);
  outline-color: rgba(0, 0, 0, 0.4);
}

.button-prev.color-black .icon-arrow,
.button-next.color-black .icon-arrow {
  stroke: var(--color-black);
}

.button-prev.color-white,
.button-next.color-white {
  color: var(--color-white);
  outline-color: rgba(255, 255, 255, 0.4);
}

.button-prev.color-white .icon-arrow,
.button-next.color-white .icon-arrow {
  stroke: var(--color-white);
}

@media (hover: hover) {
  .button-prev.color-black:not([disabled]):hover,
  .button-next.color-black:not([disabled]):hover {
    color: var(--color-white);
    background-color: var(--color-black);
    outline-color: transparent;
  }

  .button-prev.color-black:not([disabled]):hover .icon-arrow,
  .button-next.color-black:not([disabled]):hover .icon-arrow {
    stroke: var(--color-white);
  }

  .button-prev.color-white:not([disabled]):hover,
  .button-next.color-white:not([disabled]):hover {
    color: var(--color-black);
    background-color: var(--color-white);
    outline-color: transparent;
  }

  .button-prev.color-white:not([disabled]):hover .icon-arrow,
  .button-next.color-white:not([disabled]):hover .icon-arrow {
    stroke: var(--color-black);
  }
}


/*============================================================
  figure-image
============================================================*/
.figure-image {
  position: relative;
  z-index: 0;
}

.figure-image .picture {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.figure-image .picture::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-black);
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}


/*============================================================
  h
============================================================*/
.h-title-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--grid);
  width: 100%;
}

.h-title-section .en {
  color: var(--color-gold);
  font-family: var(--font-bodoni);
  font-size: 3.2rem;
  margin-block: -0.096em;
}

.h-title-section .jp {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  gap: var(--grid);
  width: 100%;
  font-family: var(--font-serif);
  font-size: 2rem;
  letter-spacing: 0.02em;
  margin-block: -0.096em;
}

.h-title-section .jp::after {
  flex: 1;
  content: "";
  display: block;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.24);
}

.h-title-section.color-white .en {
  color: var(--color-white);
}

.h-title-section.color-white .jp {
  color: var(--color-white);
}

.h-title-section.color-white .jp::after {
  background-color: rgba(255, 255, 255, 0.24);
}

@media (max-width: 768px) and (orientation: portrait) {
  .h-title-section {
    gap: 1.2rem;
  }

  .h-title-section .en {
    font-size: 2.8rem;
  }

  .h-title-section .jp {
    font-size: 1.6rem;
  }
}


/*============================================================
  p
============================================================*/
.p-description {
  font-family: var(--font-sans-serif);
  font-size: 1.52rem;
  letter-spacing: 0.064em;
  line-height: 1.84;
  margin-block: -0.42em;
}

.p-accent {
  display: inline-block;
  font-family: var(--font-sans-serif);
  font-size: 1.28rem;
  letter-spacing: 0.08em;
  line-height: 1.44;
  text-indent: 0.08em;
  margin-block: -0.22em;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 0.2rem;
  padding-inline: 0.8rem;
  padding-block: 0.4rem 0.24rem;
}

.p-point {
  display: inline-block;
  color: var(--color-white);
  font-family: var(--font-sans-serif);
  font-size: 1.44rem;
  letter-spacing: 0.12em;
  line-height: 1.44;
  text-indent: 0.12em;
  padding-inline: 0.8rem;
  padding-block: 0.4rem 0.24rem;
  background-color: var(--color-green);
  border-radius: 0.2rem;
}

.p-check {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  outline: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.4rem;
  padding-inline: 0.8rem;
  padding-block: 0.8rem;
}

.p-check .icon-check {
  width: 1.8rem;
  height: auto;
}

.p-check .text {
  font-size: 1.84rem;
  line-height: 1.28;
  margin-block: -0.14em;
}

.p-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: var(--grid-6);
  height: calc(var(--grid-6) + 1.2rem);
  padding-bottom: 1.2rem;
  margin-top: var(--grid);
  position: relative;
  z-index: 0;
}

.p-badge .text {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  line-height: 1.28;
  text-align: center;
  text-shadow: -0.06rem -0.06rem 0 rgba(255, 255, 255, 0.88), 0 0 0.2rem rgba(0, 0, 0, 0.24);
}

.p-badge .text > em {
  font-size: 1.6rem;
}

.p-badge .text > em .number {
  display: inline-block;
  font-family: var(--font-times);
  font-size: 3.2rem;
  letter-spacing: -0.04em;
  margin-right: 0.04em;
  margin-block: -0.2em;
}

.p-badge .badge {
  width: 100%;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
}

.p-badge .illust-badge {
  width: 100%;
  height: auto;
}

.p-warning {
  color: var(--color-red);
  font-family: var(--font-sans-serif);
  font-size: 1.12rem;
  letter-spacing: 0.064em;
  line-height: 1.6;
  margin-block: -0.3em;
}

.p-notes {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.16em;
  font-family: var(--font-sans-serif);
  font-size: 1.12rem;
  letter-spacing: 0.064em;
  line-height: 1.6;
  margin-block: -0.3em;
}

.p-notes::before {
  content:"※";
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

@media (max-width: 768px) and (orientation: portrait) {
  .p-description {
    font-size: 1.44rem;
    line-height: 1.64;
    margin-block: -0.32em;
  }

  .p-accent {
    font-size: 1.12rem;
  }

  .p-point {
    font-size: 1.2rem;
  }

  .p-check .icon-check {
    width: 1.6rem;
  }

  .p-check .text {
    font-size: 1.52rem;
  }

  .p-badge {
    width: var(--grid-9);
    height: calc(var(--grid-9) + 1.2rem);
  }

  .p-badge .text {
    font-size: 0.96rem;
  }

  .p-badge .text > em {
    font-size: 1.2rem;
  }

  .p-badge .text > em .number {
    font-size: 2.4rem;
  }
}


/*============================================================
  div-body
============================================================*/
.div-body {
  display: flex;
  flex-direction: column;
  gap: var(--grid-2);
  width: var(--grid-82);
  margin-inline: auto;
}

@media (max-width: 768px) and (orientation: portrait) {
  .div-body {
    gap: var(--grid-4);
    width: 100%;
  }
}


/*============================================================
  div-description
============================================================*/
.div-description {
  position: relative;
  z-index: 0;
}

.div-description .ul-description {
  display: flex;
  flex-direction: column;
  gap: var(--grid);
}

.div-description .ul-description > li {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: var(--grid);
  width: 100%;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(0.8rem);
  border-radius: 1.6rem;
  padding: var(--grid);
}

.div-description .ul-description > li .div-1 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--grid-2);
  padding: var(--grid);
}

.div-description .ul-description > li .div-2 {
  width: var(--grid-22);
}

.div-description .div-heading .p-point {
  margin-bottom: var(--grid);
}

.div-description .div-heading .h-headline {
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1.36;
  margin-block: -0.18em;
}

.div-description .div-heading .h-headline em {
  text-decoration: 1px underline wavy;
  text-underline-offset: 0.12em;
}

html.safari .div-description .div-heading .h-headline em {
  background: url("../images/line-wave-gold.svg") no-repeat center bottom / 64rem auto;
  padding-bottom: 0.08em;
}

.div-description .div-paragraph {
  display: flex;
  flex-direction: column;
  gap: calc(var(--grid) * 1.5);
  width: 100%;
  margin-block-start: 0.8rem;
}

.div-description .h-heading {
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 2.8rem;
  letter-spacing: 0.02em;
  line-height: 1.44;
  margin-block: -0.22em;
}

.div-description .h-catchline {
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  line-height: 1.44;
  margin-block: -0.22em;
}

.div-description .figure-image {
  width: 100%;
  height: 100%;
}

.div-description .figure-image .picture {
  border-radius: 0.8rem;
  position: absolute;
  left: 0;
  top: 0;
}

@media (max-width: 768px) and (orientation: portrait) {
  .div-description .ul-description > li {
    flex-direction: column;
    gap: var(--grid-3);
    width: 100%;
    padding: var(--grid-2);
  }

  .div-description .ul-description > li .div-1 {
    gap: var(--grid-4);
    padding: 0;
  }

  .div-description .ul-description > li .div-2 {
    aspect-ratio: 4 / 3;
    width: 100%;
  }

  .div-description .div-heading .p-point {
    margin-bottom: calc(var(--grid) * 1.5);
  }

  .div-description .div-heading .h-headline {
    font-size: 2.8rem;
  }

  .div-description .div-paragraph {
    gap: calc(var(--grid) * 2.5);
    width: 100%;
    margin-block-start: 0;
  }

  .div-description .h-heading {
    font-size: 2rem;
  }

  .div-description .h-catchline {
    font-size: 1.84rem;
  }
}


/*============================================================
  div-guide
============================================================*/
.div-guide {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: var(--grid-2);
  width: 100%;
}

.div-guide .dl-guide {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--grid);
}

.div-guide .dl-guide > dd {
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 1.6rem;
}

.div-guide .dl-guide > dd .number {
  font-family: var(--font-bodoni);
  text-decoration: 1px underline wavy;
  text-underline-offset: 0.12em;
}

html.safari .div-guide .dl-guide > dd .number {
  text-decoration: none;
  background: url("../images/line-wave-gold.svg") no-repeat center 88% / 64rem auto;
}

@media (max-width: 768px) and (orientation: portrait) {
  .div-guide {
    flex-direction: column;
    align-items: flex-start;
    justify-content: normal;
  }
}


/*============================================================
  dl-table
============================================================*/
.dl-table {
  width: 100%;
  font-family: var(--font-serif);
  font-size: 1.44rem;
  letter-spacing: 0.08em;
  margin-block: -0.096em;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 0.8rem;
  overflow: hidden;
}

.dl-table .number {
  font-family: var(--font-times);
  font-size: 1.84rem;
  letter-spacing: 0.04em;
}

.dl-table > dt {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 16rem;
  height: 4.8rem;
  padding: 0.8rem;
}

.dl-table > dd {
  width: 100%;
  margin-block-start: -4.8rem;
}

.dl-table-tr {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  width: 100%;
}

.dl-table-tr > dt {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 16rem;
  height: 4.8rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  box-sizing: contain;
  padding: 0.8rem;
}

.dl-table-tr > dd {
  flex: 1;
  display: flex;
  flex-direction: row;
}

.dl-table-td {
  display: flex;
  flex-direction: column;
  align-content: flex-end;
  width: 100%;
}

.dl-table-td > dt {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 4.8rem;
  padding: 0.8rem;
}

.dl-table-td > dd {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 4.8rem;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.8rem;
}

.dl-table.color-yellow > dt,
.dl-table.color-yellow .dl-table-td > dt {
  background-color: rgba(255, 208, 32, 0.16);
}

.dl-table.color-gray > dt,
.dl-table.color-gray .dl-table-td > dt {
  background-color: rgba(0, 0, 0, 0.04);
}

.dl-table-tr + .dl-table-tr .dl-table-td > dt {
  height: 0;
  padding: 0;
  overflow: hidden;
}

@media (max-width: 768px) and (orientation: portrait) {
  .dl-table {
    font-size: 1.28rem;
  }

  .dl-table .number {
    font-size: 1.44rem;
  }

  .dl-table > dt {
    width: 9.6rem;
    height: 4rem;
    padding: 0.4rem;
  }

  .dl-table > dd {
    margin-block-start: -4rem;
  }

  .dl-table-tr > dt {
    width: 9.6rem;
    height: 4rem;
    padding: 0.4rem;
  }

  .dl-table-td > dt {
    height: 4rem;
    padding: 0.4rem;
  }

  .dl-table-td > dd {
    height: 4rem;
    padding: 0.4rem;
  }
}


/*============================================================
  div-slider
============================================================*/
.div-slider {
  display: flex;
  flex-direction: column;
  gap: var(--grid);
  width: 100%;
  position: relative;
  z-index: 0;
}

.div-slider .div-slider-content .ul-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  position: relative;
}

.div-slider .div-slider-content .ul-slider > li {
  flex-shrink: 0;
}

.div-slider .div-slider-navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.div-slider .div-slider-navigation .div-slider-indicator {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
}

.div-slider .div-slider-navigation .div-slider-indicator .number {
  font-family: var(--font-times);
  font-size: 1.44rem;
}

.div-slider .div-slider-navigation .div-slider-indicator .bar {
  display: inline-block;
  width: 6.4rem;
  height: 1px;
  background-color: var(--color-black);
  opacity: 0.8;
  transform: rotate(-45deg);
}

.div-slider .div-slider-navigation .div-slider-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
}

.div-slider .div-slider-navigation .div-slider-indicator.color-white .number {
  color: var(--color-white);
}

.div-slider .div-slider-navigation .div-slider-indicator.color-white .bar {
  background-color: var(--color-white);
}

@media (max-width: 768px) and (orientation: portrait) {
  .div-slider {
    gap: var(--grid-2);
  }

  .div-slider .div-slider-navigation {
    width: 100%;
  }

  .div-slider .div-slider-navigation .div-slider-indicator .number {
    font-size: 1.2rem;
  }

  .div-slider .div-slider-navigation .div-slider-indicator .bar {
    width: 4.8rem;
  }
}


/*============================================================
  header
============================================================*/
#header-global {
  width: calc(var(--grid) * 15);
  background-color: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(0.8rem);
  backdrop-filter: blur(0.8rem);
  border-bottom-left-radius: 0.8rem;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 24;
}

#header-global .div-title {
  display: flex;
  flex-direction: column;
  gap: var(--grid);
  margin-inline: calc(var(--grid) * 1.5);
  margin-block: var(--grid-2);
  padding-top: 0.4rem;
  width: 100%;
}

#header-global .div-title .p-tagline {
  font-family: var(--font-sans-serif);
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  margin-block: -0.096em;
}

#header-global .div-title .h-title > a {
  display: flex;
  flex-direction: column;
  gap: var(--grid);
  width: 100%;
}

#header-global .div-title .h-title .en {
  color: var(--color-gold);
  font-family: var(--font-bodoni);
  font-size: 4.8rem;
  line-height: 1.12;
  margin-block: -0.12em;
  white-space: nowrap;
}

#header-global .div-title .h-title .jp {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  margin-block: -0.096em;
  white-space: nowrap;
}

#header-global .div-menu .nav-header {
  display: flex;
  flex-direction: column;
  gap: calc(var(--grid) * 1.5);
  width: 100%;
  margin-inline: calc(var(--grid) * 1.5);
  margin-block: calc(var(--grid) * 1.5);
}

#header-global .div-menu .nav-header .ul-content {
  display: flex;
  flex-direction: column;
  margin-block: -0.8rem;
}

#header-global .div-menu .nav-header .ul-content > li {
  font-family: var(--font-sans-serif);
  font-size: 1.28rem;
  letter-spacing: 0.064em;
  margin-block: -0.096em;
}

#header-global .div-menu .nav-header .ul-content > li > a {
  display: block;
  width: 100%;
  padding-block: 0.8rem;
}

#header-global .div-menu .nav-header .dl-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--grid);
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  padding-top: var(--grid);
}

#header-global .div-menu .nav-header .dl-contact > dt {
  font-family: var(--font-sans-serif);
  font-size: 1.04rem;
  letter-spacing: 0.064em;
  line-height: 1.44;
  margin-block: -0.22em;
}

#header-global .div-menu .nav-header .dl-contact > dd .ul-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--grid);
  width: 100%;
}

#header-global .div-menu .div-online {
  aspect-ratio: 3 / 2;
  width: 100%;
}

#header-global .div-menu .div-online .div-image {
  height: auto;
  overflow: hidden;
  z-index: 1;
}

#header-global .div-menu .div-online .div-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  height: var(--grid-3);
  padding-right: var(--grid-3);
  position: relative;
  z-index: 0;
}

#header-global .div-menu .div-online .div-heading .p-catchline {
  color: var(--color-gold);
  font-family: var(--font-sans-serif);
  font-size: 1.04rem;
  letter-spacing: 0.04em;
  margin-block: -0.096em;
}

#header-global .div-menu .div-online .div-heading .p-title {
  color: var(--color-gold);
  font-family: var(--font-serif);
  font-size: 1.84rem;
  margin-block: -0.096em;
}

#header-global .div-menu .div-online .div-heading .p-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.64rem;
  width: var(--grid-3);
  height: calc(var(--grid-3) + 2px);
  color: var(--color-white);
  font-family: var(--font-sans-serif);
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  background-color: var(--color-green);
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

#header-global .div-menu .div-online .div-heading .p-label .icon-arrow {
  fill: none;
  stroke: var(--color-white);
  width: 1.2rem;
  height: auto;
  transform: rotate(90deg);
}

#header-global .div-menu .button-menu {
  display: flex;
  flex-direction: column;
  align-content: space-between;
  align-items: center;
  gap: 0.8rem;
  width: 3.2rem;
  height: 3.2rem;
  position: relative;
  z-index: 1;
}

#header-global .div-menu .button-menu .bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}

#header-global .div-menu .button-menu .bar::before,
#header-global .div-menu .button-menu .bar::after {
  content: "";
  display: block;
  width: 3.2rem;
  height: 1px;
  background-color: var(--color-black);
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

#header-global .div-menu .button-menu .bar svg {
  fill: none;
  stroke: var(--color-black);
  stroke-width: 1px;
  width: 100%;
  height: auto;
}

#header-global .div-menu .button-menu .bar::before {
  transform: translateY(-0.48rem);
}

#header-global .div-menu .button-menu .bar::after {
  transform: translateY(0.48rem);
}

#header-global .div-menu .button-menu.active .bar::before {
  transform: rotate(24deg);
}

#header-global .div-menu .button-menu.active .bar::after {
  transform: rotate(-24deg);
}

#header-global .div-menu .button-menu.active .bar svg {
  display: none;
}

#header-global .div-menu .button-menu .text {
  font-family: var(--font-sans-serif);
  font-size: 0.8rem;
  margin-block: -0.096em;
}

@media (hover: hover) {
  #header-global .div-menu .nav-header .ul-content > li > a:hover {
    opacity: 0.64;
  }

  #header-global .div-menu .div-online a {
    display: block;
  }

  #header-global .div-menu .div-online a:hover {
    filter: brightness(104%);
  }
}

@media (orientation: landscape), (min-width: 769px) and (orientation: portrait) {
  #header-global {
    overflow: hidden;
  }

  #header-global .div-menu .button-menu {
    display: none;
  }
}

@media (max-width: 768px) and (orientation: portrait) {
  #header-global {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: var(--grid-12);
    border-bottom-left-radius: 0;
    padding-inline: var(--grid-2);
  }

  #header-global .div-title {
    display: inline-flex;
    flex-direction: column-reverse;
    gap: var(--grid-2);
    margin-inline: 0;
    margin-block: 0;
    padding-top: 0;
    width: auto;
  }

  #header-global .div-title .p-tagline {
    font-size: 0.8rem;
  }

  #header-global .div-title .h-title > a {
    gap: 0.8rem;
  }

  #header-global .div-title .h-title .en {
    font-size: 1.6rem;
  }

  #header-global .div-title .h-title .jp {
    font-size: 2.4rem;
  }

  #header-global .div-menu {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: var(--grid-2);
  }

  #header-global .div-menu .nav-header {
    gap: var(--grid-2);
    margin-inline: 0;
    margin-block: 0;
    background-color: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(0.8rem);
    backdrop-filter: blur(0.8rem);
    border-bottom-left-radius: 0.8rem;
    border-bottom-right-radius: 0.8rem;
    padding-inline: var(--grid-2);
    padding-block: var(--grid-2);
    position: absolute;
    right: -100%;
    top: var(--grid-12);
  }

  #header-global .div-menu .nav-header.active {
    right: 0;
  }

  #header-global .div-menu .nav-header .ul-content {
    gap: var(--grid);
    margin-block: calc(var(--grid) * -1.5);
  }

  #header-global .div-menu .nav-header .ul-content > li {
    font-size: 1.44rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  #header-global .div-menu .nav-header .ul-content > li > a {
    padding-block: calc(var(--grid) * 1.5);
  }

  #header-global .div-menu .nav-header .dl-contact {
    align-items: center;
    gap: var(--grid-2);
    border-top: none;
    padding-top: var(--grid-2);
  }

  #header-global .div-menu .nav-header .dl-contact > dd .ul-contact {
    align-items: center;
    gap: var(--grid-2);
  }

  #header-global .div-menu .div-online {
    aspect-ratio: unset;
    width: var(--grid-20);
    height: var(--grid-6);
  }

  #header-global .div-menu .div-online > a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    height: 100%;
  }

  #header-global .div-menu .div-online .div-image {
    aspect-ratio: 1 / 1;
    width: var(--grid-6);
    height: var(--grid-6);
  }

  #header-global .div-menu .div-online .div-heading {
    flex: 1;
    align-items: flex-start;
    height: auto;
    padding-right: 0;
  }

  #header-global .div-menu .div-online .div-heading .p-catchline {
    font-size: 0.8rem;
  }

  #header-global .div-menu .div-online .div-heading .p-title {
    font-size: 1.2rem;
  }

  #header-global .div-menu .div-online .div-heading .p-label {
    width: auto;
    height: var(--grid-2);
    font-size: 0.8rem;
    margin: 0;
    padding-inline: 0.6rem;
    position: static;
  }

  #header-global .div-menu .div-online .div-heading .p-label .icon-arrow {
    display: none;
  }
}


/*============================================================
  footer-global
============================================================*/
#footer-global {
  padding-block: var(--grid-4);
  position: relative;
  z-index: 0;
}

#footer-global .div-body {
  flex-direction: row;
  justify-content: space-between;
  padding-right: var(--grid-12);
  position: relative;
}

#footer-global .h-title-section .en {
  font-size: 2.4rem;
}

#footer-global .h-title-section .jp {
  font-size: 1.52rem;
}

#footer-about {
  display: flex;
  flex-direction: column;
  gap: var(--grid-3);
  width: var(--grid-22);
  padding-bottom: var(--grid-26);
}

#footer-about .dl-about {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin-block-start: calc(var(--grid) * -1);
}

#footer-about .dl-about > dt,
#footer-about .dl-about > dd {
  font-family: var(--font-sans-serif);
  font-size: 1.28rem;
  letter-spacing: 0.08em;
  line-height: 1.84;
  padding-block: var(--grid);
  padding-inline: 0 0.8rem;
}

#footer-about .dl-about > dt:not(:first-of-type),
#footer-about .dl-about > dd:not(:first-of-type) {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

#footer-about .dl-about > dt {
  width: var(--grid-6);
}

#footer-about .dl-about > dd {
  width: calc(100% - var(--grid-6));
}

#footer-about .dl-telephone {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-end;
  width: 100%;
}

#footer-about .dl-telephone > dt {
  width: var(--grid-6);
  font-size: 1.04rem;
}

#footer-about .dl-telephone > dd {
  width: calc(100% - var(--grid-6));
}

#footer-consultation {
  display: flex;
  flex-direction: column;
  gap: var(--grid-3);
  width: var(--grid-46);
}

#footer-consultation .div-content {
  display: flex;
  flex-direction: column;
  gap: var(--grid-3);
}

#footer-consultation .ul-consultation {
  display: flex;
  flex-direction: column;
  width: 100%;
}

#footer-consultation .ul-consultation > li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin-top: var(--grid-2);
  padding-top: var(--grid-2);
}

#footer-consultation .dl-consultation {
  display: flex;
  flex-direction: column;
  gap: var(--grid);
  width: 100%;
}

#footer-consultation .dl-consultation > dt {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  position: relative;
}

#footer-consultation .dl-consultation > dt::before {
  content: "";
  display: inline-block;
  width: 0.6rem;
  height: 1.2rem;
  background-color: var(--color-black);
  border-radius: 0.1rem;
}

#footer-consultation .dl-consultation > dt .p-title {
  font-family: var(--font-serif);
  font-size: 1.44rem;
  letter-spacing: 0.04em;
  line-height: 1.44;
  margin-block: -0.22em;
  white-space: nowrap;
}

#footer-consultation .dl-consultation > dt .p-closed {
  font-family: var(--font-sans-serif);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  line-height: 1.44;
  margin-block: -0.22em;
  white-space: nowrap;
}

#footer-consultation .dl-consultation > dd {
  display: flex;
  flex-direction: column;
  gap: var(--grid);
  width: 100%;
}

#footer-consultation .div-map {
  aspect-ratio: 8 / 5;
  width: 100%;
}

#footer-consultation .div-map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.8rem;
}

#footer-global .div-signature {
  display: flex;
  flex-direction: column;
  gap: var(--grid-2);
  width: var(--grid-22);
  position: absolute;
  left: 0;
  bottom: 0;
}

#footer-global .div-signature .div-title {
  display: flex;
  flex-direction: column;
  gap: var(--grid-2);
  width: 100%;
}

#footer-global .div-signature .div-title .p-tagline {
  font-family: var(--font-sans-serif);
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  margin-block: -0.096em;
}

#footer-global .div-signature .div-title .h-title > a {
  display: flex;
  flex-direction: column;
  gap: calc(var(--grid) * 1.5);
  width: 100%;
}

#footer-global .div-signature .div-title .h-title .en {
  color: var(--color-gold);
  font-family: var(--font-bodoni);
  font-size: 6.4rem;
  line-height: 1.12;
  margin-block: -0.12em;
}

#footer-global .div-signature .div-title .h-title .jp {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  margin-block: -0.096em;
}

#footer-global .div-signature .div-copyright {
  display: flex;
  flex-direction: column;
  gap: var(--grid);
  width: 100%;
}

#footer-global .div-signature .div-copyright .small-copyright,
#footer-global .div-signature .div-copyright .p-produced {
  font-family: var(--font-sans-serif);
  font-size: 1.04rem;
  letter-spacing: 0.04em;
  margin-block: -0.096em;
}

#footer-global .div-signature .div-copyright .p-produced a {
  text-decoration: underline;
  text-decoration-thickness: 0.1px;
  text-underline-offset: 0.2em;
}

@media (max-width: 768px) and (orientation: portrait) {
  #footer-global {
    padding-block: var(--grid-4);
    padding-inline: var(--grid-2);
  }

  #footer-global .div-body {
    flex-direction: column;
    justify-content: flex-start;
    gap: var(--grid-6);
    padding-right: 0;
  }

  #footer-global .h-title-section .en {
    font-size: 2rem;
  }

  #footer-global .h-title-section .jp {
    font-size: 1.44rem;
  }

  #footer-about {
    width: 100%;
    padding-bottom: 0;
  }

  #footer-about .dl-about {
    margin-block-start: calc(var(--grid) * -1.5);
  }

  #footer-about .dl-about > dt,
  #footer-about .dl-about > dd {
    padding-block: calc(var(--grid) * 1.5);
  }

  #footer-about .dl-about > dt {
    width: var(--grid-12);
  }

  #footer-about .dl-about > dd {
    width: calc(100% - var(--grid-12));
  }

  #footer-about .dl-telephone {
    align-items: center;
  }

  #footer-about .dl-telephone > dt {
    width: var(--grid-12);
  }

  #footer-about .dl-telephone > dd {
    width: calc(100% - var(--grid-12));
  }

  #footer-consultation {
    gap: var(--grid-4);
    width: 100%;
  }

  #footer-consultation .div-content {
    gap: var(--grid-4);
  }

  #footer-consultation .dl-consultation {
    gap: var(--grid-2);
  }

  #footer-consultation .dl-consultation > dd {
    gap: var(--grid-2);
  }

  #footer-consultation .div-map {
    aspect-ratio: 3 / 4;
  }

  #footer-global .div-signature {
    gap: var(--grid-3);
    width: 100%;
    position: static;
  }

  #footer-global .div-signature .div-title {
    gap: var(--grid-3);
  }

  #footer-global .div-signature .div-title .p-tagline {
    font-size: 0.96rem;
  }

  #footer-global .div-signature .div-title .h-title > a {
    gap: calc(var(--grid) * 1.5);
  }

  #footer-global .div-signature .div-title .h-title .en {
    font-size: 4.8rem;
  }

  #footer-global .div-signature .div-title .h-title .jp {
    font-size: 2.4rem;
  }

  #footer-global .div-signature .div-copyright {
    gap: calc(var(--grid) * 1.5);
  }
}


