/* Reset
----------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border: none;
  background: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

:where(a) {
  text-underline-offset: 0.1ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg) {
  max-inline-size: 100%;
  block-size: auto;
  vertical-align: bottom;
}

:where(p, li, dt, dd, th, td, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
}

:where(picture) {
  display: block;
}

:where(i, em) {
  font-style: normal;
}

/* Utillity
----------------------------------------------- */
.ul-disc > li {
  list-style: disc;
  margin-left: 1.2em;
}

.ol-decimal > li {
  list-style: decimal;
  margin-left: 1.2em;
}

.hidden {
  display: none;
}

.hidden-pc {
  display: none;
}

@media (width <= 768px) {
  .hidden-pc {
    display: block;
  }
  .hidden-pc.inline {
    display: inline-block;
  }
  .hidden-tab {
    display: none;
  }
}
@media (width <= 520px) {
  .hidden-tab {
    display: block;
  }
  .hidden-tab.inline {
    display: inline-block;
  }
  .hidden-sp {
    display: none;
  }
}
.taR {
  text-align: right;
}

.taL {
  text-align: left;
}

.taC {
  text-align: center;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

a img {
  backface-visibility: hidden;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  a:hover img {
    opacity: 0.8;
  }
}

*[class|=logo] a {
  text-decoration: none;
}
*[class|=logo] a:hover {
  text-decoration: none;
}
*[class|=logo] a:hover img {
  opacity: 1;
}

a.tel {
  text-decoration: none;
}
a.tel img {
  opacity: 1;
}

/* Modules
----------------------------------------------- */
.intersection.group {
  opacity: 1;
}
.intersection.group > * {
  opacity: 0;
  transform: translateY(1em);
}
.intersection.group > *:nth-child(1) {
  transition: opacity 1.4s ease-out, transform 1.4s ease-out;
  transition-delay: 0.2s;
}
.intersection.group > *:nth-child(2) {
  transition: opacity 1.4s ease-out, transform 1.4s ease-out;
  transition-delay: 0.8s;
}
.intersection.group > *:nth-child(3) {
  transition: opacity 1.4s ease-out, transform 1.4s ease-out;
  transition-delay: 1.4s;
}
.intersection.group > *:nth-child(4) {
  transition: opacity 1.4s ease-out, transform 1.4s ease-out;
  transition-delay: 2s;
}
.intersection.group > *:nth-child(5) {
  transition: opacity 1.4s ease-out, transform 1.4s ease-out;
  transition-delay: 2.6s;
}
.intersection.group > *:nth-child(6) {
  transition: opacity 1.4s ease-out, transform 1.4s ease-out;
  transition-delay: 3.2s;
}
.intersection.group > *:nth-child(7) {
  transition: opacity 1.4s ease-out, transform 1.4s ease-out;
  transition-delay: 3.8s;
}
.intersection.group > *:nth-child(8) {
  transition: opacity 1.4s ease-out, transform 1.4s ease-out;
  transition-delay: 4.4s;
}
.intersection.group > *:nth-child(9) {
  transition: opacity 1.4s ease-out, transform 1.4s ease-out;
  transition-delay: 5s;
}
.intersection.group > *:nth-child(10) {
  transition: opacity 1.4s ease-out, transform 1.4s ease-out;
  transition-delay: 5.6s;
}
.intersection.fade {
  opacity: 0;
  translate: 0 10px;
  transition: opacity 1.4s 0.1s ease-out, translate 1.4s 0.1s ease-out;
}
.intersection.view.group > * {
  opacity: 1;
  transform: translateY(0);
}
.intersection.view.fade {
  opacity: 1;
  translate: 0 0;
}

figure {
  margin-bottom: 0;
}

/*
Light 300
Regular 400
Medium 500
SemiBold 600
Bold 700
Black 900
*/
/*

  FONT
----------------------------------------------- */
:root {
  font-size: 1px;
  --color-font-base: #101828;
}

body {
  color: var(--color-font-base);
  font-size: 16rem;
}
:is(p) {
  line-height: 1.7;
}

:is(li, dt, dd, th, td, address) {
  line-height: 1.5;
}

:is(input, textarea, select) {
  font-size: 16px;
}

:where(a) {
  color: inherit;
}
:where(a):hover {
  text-decoration: none;
}

/*

  LAYOUT
----------------------------------------------- */
@media (width <= 768px) {
  body.isOpenMenu {
    overflow: hidden;
  }
}

.mainContents {
  padding-inline: calc(50dvw - 510px);
}
@media (width < 1100px) {
  .mainContents {
    padding-inline: 40px;
  }
}
.mainContents {
  padding-block: 100px;
}
.sec {
  margin-block: 50px;
}
.sec h2 {
  margin-bottom: 0.6em;
}

#bookWidget-90517-165111-0-1775121731 {
  padding-inline: 60px;
}
#bookWidget-90517-165111-0-1775121731 .book-widget-size-all {
  box-shadow: none !important;
}
#bookWidget-90517-165111-0-1775121731 .book-btn {
  background: #0d0b42 !important;
  border-color: #000 !important;
}