@charset "UTF-8";
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.3;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
table,
th,
td,
ul,
li,
ol,
dl,
dt,
dd,
form,
p {
  margin: 0;
  padding: 0;
  font-weight: normal;
  border-style: none;
  list-style-type: none;
  line-height: normal;
  letter-spacing: 0.05em;
}

input,
textarea,
select,
button {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

button {
  cursor: pointer;
}

figure {
  margin: 0;
}

img,
iframe {
  width: 100%;
  height: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
}

a {
  text-decoration: none;
  cursor: pointer;
}

/***** COLOR *****/
/***** FONT *****/
/***** SIZE *****/
/***** WEIGHT *****/
/***** MAX WIDTH *****/
/***** RESPONSIVE *****/
html {
  overflow-y: scroll;
  scroll-padding-top: 90px;
}

body {
  font-size: 20px;
}

body.is-nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.l-section {
  max-width: 1200px;
  padding: 75px 40px;
  text-align: center;
  margin: 0 auto;
}

.p-section-title {
  margin-bottom: 50px;
}
.p-section-title__en {
  display: block;
  font-size: 32px;
  letter-spacing: 0.05em;
  color: #000;
  font-family: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
}
.p-section-title__ja {
  display: block;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: #707070;
  font-family: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", sans-serif;
}

.p-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 46px;
  height: 24px;
  margin-right: 10px;
  border-radius: 999px;
  background-color: #b8860b;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

.p-btn {
  display: inline-block;
  width: 300px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  outline: none;
  color: #fff;
  font-weight: 700;
  background-color: #b8860b;
  position: relative;
  border: 1px solid #b8860b;
  transition: color 1.25s ease;
}
.p-btn--slide:hover {
  color: #b8860b;
}
.p-btn--slide:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.p-btn--slide::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 1.5s ease;
  transition-property: transform;
}
.p-btn__text {
  position: relative;
}

.u-scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.5s ease, transform 2s ease;
}

.u-scroll-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}

.u-scroll-fade--delay {
  transition-delay: 0.3s;
}

.u-bleed-bg {
  position: relative;
  z-index: 0;
}
.u-bleed-bg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #eee;
  z-index: -1;
}

.u-xs-only-break {
  display: none;
}

.p-splash {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  opacity: 1;
  transition: opacity 1.5s ease;
}
.p-splash.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.p-splash__logo {
  width: 200px;
  height: auto;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1s ease, transform 1s ease;
}
.p-splash.is-visible .p-splash__logo {
  opacity: 1;
  transform: scale(1);
}

.l-hd {
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  z-index: 100;
  background-color: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}
.l-hd.is-scrolled:not(.l-hd--solid) {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.l-hd__inr {
  height: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.p-hd__logo {
  flex-shrink: 0;
}
.p-hd__logo-inr {
  display: flex;
  align-items: center;
}
.p-hd__logo-img {
  display: block;
  width: auto;
  height: 60px;
}
.p-hd__logo-img img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-hd__nav {
  margin-left: auto;
}

.p-hd__main {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-hd__item + .p-hd__item {
  margin-left: 30px;
}

.p-hd__link {
  display: inline-block;
  color: #000;
  font-size: 18px;
  text-decoration: none;
  line-height: 1;
}

.u-hover-line {
  position: relative;
}
.u-hover-line-child {
  display: inline-block;
  position: relative;
}
.u-hover-line-child::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.7s ease;
}
.u-hover-line:hover .u-hover-line-child::after {
  transform: scaleX(1);
  transform-origin: center;
}

.p-hd__sns {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 30px;
  transform: translateY(-3px);
}
.p-hd__sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  text-decoration: none;
  font-size: 0;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
.p-hd__sns a img {
  width: 19px;
  height: 19px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-hd__sns a:hover {
  opacity: 0.5;
}

.p-hd__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 24px;
  margin-left: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 110;
}

.p-hd__toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.p-hd__toggle-line + .p-hd__toggle-line {
  margin-top: 8px;
}

.p-hd__toggle.is-active .p-hd__toggle-line {
  background-color: #fff;
}
.p-hd__toggle.is-active .p-hd__toggle-line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.p-hd__toggle.is-active .p-hd__toggle-line:nth-child(2) {
  opacity: 0;
}
.p-hd__toggle.is-active .p-hd__toggle-line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.p-hd__reserve {
  display: none;
}

body.is-nav-open {
  overflow: hidden;
}

.p-kv {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}
.p-kv__swiper {
  width: 100%;
  height: 100%;
}
.p-kv .swiper-wrapper {
  height: 100%;
}
.p-kv .swiper-slide {
  width: 100%;
  height: 100%;
}
.p-kv img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.p-news {
  padding-top: 100px;
}
.p-news__list {
  max-width: 900px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  border-top: 1px #000;
}
.p-news__item {
  border-bottom: 1px solid #000;
  text-align: left;
}
.p-news__item:first-child {
  border-top: 1px solid #000;
}
.p-news__link {
  display: flex;
  gap: 40px;
  padding: 20px;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-news__link:hover {
  opacity: 0.6;
}
.p-news__link .p-news__date {
  flex: 0 0 auto;
  width: 130px;
  color: #000;
  text-align: left;
  font-variant-numeric: tabular-nums;
}
.p-news__link .p-news__title {
  color: #000;
}
.p-news__sns {
  max-width: 900px;
  margin: 20px auto 0;
  display: flex;
  justify-content: flex-end;
}
.p-news__sns .u-icon-instagram {
  display: inline-flex;
  width: 24px;
  height: 24px;
  transition: opacity 0.3s ease;
}
.p-news__sns .u-icon-instagram:hover {
  opacity: 0.6;
}
.p-news__sns .u-icon-instagram img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-schedule__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto;
}
.p-schedule__calendar-wrapper {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  order: 1;
}
.p-schedule__business-hours {
  display: flex;
  flex-direction: column;
  gap: 24px;
  order: 2;
}
.p-schedule__hours-table {
  width: 100%;
  border-collapse: collapse;
}
.p-schedule__hours-table th,
.p-schedule__hours-table td {
  padding: 14px 8px;
  text-align: center;
  font-weight: normal;
  color: #000;
}
.p-schedule__hours-table thead th {
  font-weight: 700;
  padding-bottom: 12px;
}
.p-schedule__hours-table-label {
  text-align: left !important;
}
.p-schedule__hours-table tbody th {
  text-align: left;
  font-weight: normal;
  white-space: nowrap;
}
.p-schedule__hours-table thead tr {
  border-bottom: 1px solid #000;
}
.p-schedule__hours-table tbody tr:last-child {
  border-bottom: 1px solid #000;
}
.p-schedule__hours-table .p-schedule__dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #b8860b;
}
.p-schedule__hours-note {
  color: #000;
  font-size: 18px;
}
.p-schedule__reserve {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  border: 1px solid #000;
}
.p-schedule__reserve .p-schedule__reserve-label {
  line-height: 2;
  color: #000;
  text-align: center;
  font-size: 18px;
}
.p-schedule__reserve .p-schedule__reserve-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.p-schedule__reserve .p-schedule__reserve-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #000;
  text-decoration: none;
  font-size: 18px;
  opacity: 1;
  transition: 0.5s ease;
}
.p-schedule__reserve .p-schedule__reserve-links li a:hover {
  color: #b8860b;
}
.p-schedule__reserve .p-schedule__reserve-links li a img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.fc {
  font-size: 16px;
}

.p-schedule__calendar-scroll-area {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

#js-calendar {
  width: 100%;
}

.p-schedule__calendar-wrapper::after {
  content: "";
  position: absolute;
  z-index: 10;
  top: 100px;
  right: 0;
  bottom: 80px;
  width: 35px;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.p-schedule__calendar-wrapper.is-scrollable:not(.is-at-end)::after {
  opacity: 1;
}

.p-schedule__calendar-scroll-hint {
  display: none;
}

.p-schedule__calendar-wrapper {
  position: relative;
  max-width: 550px;
}

.p-schedule__calendar-scroll-area {
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

.fc .fc-toolbar-title {
  font-size: 20px;
}

.fc .fc-button:focus,
.fc .fc-button-primary:focus,
.fc .fc-button:focus-visible,
.fc .fc-button-primary:not(:disabled):active:focus {
  box-shadow: none !important;
  outline: none !important;
}
.fc .fc-button-primary:not(:disabled):active {
  box-shadow: none !important;
}

.p-prices__lead {
  text-align: center;
  font-size: 20px;
}
.p-prices__table {
  width: auto;
  margin: 40px auto;
  border-collapse: collapse;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.p-prices__table th,
.p-prices__table td {
  padding: 10px;
  text-align: left;
  font-weight: normal;
  font-size: 20px;
  vertical-align: top;
}
.p-prices__table th {
  white-space: nowrap;
  padding-right: 40px;
}
.p-prices__table tr:first-child th,
.p-prices__table tr:first-child td {
  padding-top: 30px;
}
.p-prices__table tr:last-child th,
.p-prices__table tr:last-child td {
  padding-bottom: 30px;
}
.p-prices__examples {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.p-prices__examples li {
  display: flex;
  align-items: flex-start;
  padding: 10px 0;
  font-size: 18px;
  text-align: left;
}

.p-access {
  padding-bottom: 100px;
}
.p-access__map {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: 600px;
}
.p-access__map iframe,
.p-access__map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border: none;
}
.p-access__info {
  margin: 0 auto;
  text-align: center;
}
.p-access__name {
  margin-top: 40px;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}
.p-access__address, .p-access__tel {
  font-weight: 700;
}
.p-access__route {
  margin-top: 40px;
  font-size: 18px;
  line-height: 1.8;
  color: #000;
}
.p-access__route-line {
  display: block;
}
.p-access__buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 60px;
}

.l-ft {
  background-color: #000;
  color: #fff;
  padding: 50px 40px 20px;
}
.l-ft__inr {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "logo    nav" "address sns";
  row-gap: 40px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: start;
}

.p-ft__logo {
  grid-area: logo;
}
.p-ft__logo img {
  display: block;
  width: auto;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-ft__nav {
  grid-area: nav;
  justify-self: end;
}

.p-ft__main {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-ft__item {
  flex-shrink: 0;
}
.p-ft__item + .p-ft__item {
  margin-left: 30px;
}

.p-ft__link {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.p-ft__link:hover {
  opacity: 0.7;
}

.p-ft__address {
  grid-area: address;
  align-self: end;
}
.p-ft__address p {
  margin: 0;
}

.p-ft__sns {
  grid-area: sns;
  justify-self: end;
  align-self: end;
  display: flex;
  align-items: center;
}
.p-ft__sns a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.p-ft__sns a img {
  width: 25px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-ft__sns a:hover {
  opacity: 0.5;
}

.p-ft__copyright {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  font-size: 16px;
}

.l-hd--solid {
  background-color: rgba(255, 255, 255, 0.9);
  transition: box-shadow 0.4s ease;
}
.l-hd--solid.is-scrolled {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.l-hd--solid .p-hd__logo {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.l-hd--solid.is-hero-passed .p-hd__logo {
  opacity: 1;
}

@media (min-width: 1201px) {
  .p-page-hero {
    display: flex;
    flex-direction: column;
    height: 100vh;
  }
  .p-page-header {
    flex: 0 0 auto;
  }
  .p-page-kv {
    flex: 1 1 0;
    min-height: 0;
  }
}
@media (min-width: 1201px) {
  .p-page-hero--side {
    flex-direction: row;
    padding-top: 90px;
  }
  .p-page-hero--side .p-page-header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 60px;
  }
}
.p-page-header {
  padding: 110px 40px 15px;
  text-align: left;
}
.p-page-header.u-scroll-fade {
  transform: none;
}
.p-page-header__eyebrow {
  display: block;
  font-size: 18px;
  color: #b8860b;
}
.p-page-header__title {
  display: block;
  margin: 0;
  font-family: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #000;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.p-page-header__title.is-font-ready {
  opacity: 1;
}

.p-page-kv {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.p-page-kv__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  display: block;
}
.p-page-kv__image.u-scroll-fade {
  opacity: 1;
  transform: none;
  filter: brightness(0.8);
  transition: filter 4s ease;
}
.p-page-kv__image.u-scroll-fade.is-show {
  filter: brightness(1);
}
.p-page-kv__catch {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
  color: #fff;
}
.p-page-kv__catch.u-scroll-fade {
  transform: translate(-50%, -50%);
  transition-duration: 2.5s;
}
.p-page-kv__catch-en {
  display: block;
  font-family: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 900;
  font-size: 50px;
  letter-spacing: 0.03em;
}
.p-page-kv__catch-ja {
  display: block;
  margin-top: 8px;
  font-family: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.1em;
}
.p-page-kv__logo {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: 260px;
  height: auto;
}

.p-content-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #b8860b;
}
.p-content-label::after {
  content: "";
  flex: 0 0 auto;
  width: 30vw;
  max-width: 100%;
  height: 1px;
  background-color: #b8860b;
}

.p-dot-divider {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.p-dot-divider span {
  display: block;
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  background-color: #bfbfbf;
}

.p-info-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid #000;
  text-align: left;
}
.p-info-table__row {
  display: flex;
  gap: 30px;
  padding: 20px 0;
  border-bottom: 1px solid #000;
}
.p-info-table__label {
  flex: 0 0 100px;
  color: #000;
}
@media (min-width: 1201px) {
  .p-info-table__label {
    margin-left: 20px;
  }
}
.p-info-table__value {
  flex: 1 1 auto;
  color: #000;
}
.p-info-table__value p + p {
  margin-top: 4px;
}

.p-about-message {
  text-align: left;
}
.p-about-message__heading {
  margin-bottom: 24px;
  font-family: "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  color: #000;
}
.p-about-message__body {
  color: #000;
  font-size: 20px;
  line-height: 1.9;
}
.p-about-message__body p + p {
  margin-top: 24px;
}

.p-about-concept {
  text-align: left;
}
.p-about-concept .p-section-title {
  text-align: center;
}
.p-about-concept__body {
  color: #000;
  font-size: 20px;
  line-height: 1.9;
}
.p-about-concept p + p {
  margin-top: 24px;
}

.p-about-profile__card {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.p-about-profile__photo {
  flex: 0 0 260px;
}
.p-about-profile__photo img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-about-profile__body {
  flex: 1 1 auto;
  min-width: 0;
}
.p-about-profile__name {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}
.p-about-profile__name-en {
  margin-bottom: 24px;
  font-size: 18px;
  color: #707070;
}

.p-tp-intro {
  text-align: left;
}
.p-tp-intro__body {
  color: #000;
  font-size: 20px;
  line-height: 1.9;
}

.p-tp-item {
  text-align: left;
}
.p-tp-item + .p-tp-item {
  margin-top: 80px;
}
.p-tp-item__heading {
  display: inline-block;
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
  font-size: 24px;
  color: #000;
}
.p-tp-item__row {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
.p-tp-item__row--reverse {
  flex-direction: row-reverse;
}
.p-tp-item__body {
  flex: 2 1 0;
}
.p-tp-item__text {
  font-size: 20px;
  line-height: 1.9;
  color: #000;
}
.p-tp-item__photo {
  flex: 1.7 1 0;
}
.p-tp-item__photo img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-prices__examples {
  max-width: 900px;
}

.p-prices__photo {
  max-width: 900px;
  margin: 40px auto 0;
}
.p-prices__photo img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.p-tp-review-swiper {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}
.p-tp-review-swiper .swiper-slide {
  box-sizing: border-box;
}

.p-tp-review {
  text-align: left;
}
.p-tp-review__head {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 20px;
}
.p-tp-review__avatar {
  flex: 1 1 0;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}
.p-tp-review__avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-tp-review__body {
  flex: 3 1 0;
}
.p-tp-review__name {
  display: block;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #000;
  font-size: 20px;
  color: #000;
}
.p-tp-review__name span {
  margin-left: 16px;
  font-weight: normal;
  color: #707070;
}
.p-tp-review__program {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #000;
}
.p-tp-review__text {
  font-size: 20px;
  line-height: 1.9;
  color: #000;
}
.p-tp-review__photo {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.p-tp-review__photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 3s ease;
}
.p-tp-review__photo-img.is-active {
  opacity: 1;
}

.p-tp-review-carousel {
  position: relative;
}

.p-tp-review-nav__prev,
.p-tp-review-nav__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 40px;
  line-height: 1;
  color: #000;
}
.p-tp-review-nav__prev:hover,
.p-tp-review-nav__next:hover {
  opacity: 0.6;
}

.p-tp-review-nav__prev {
  left: -20px;
}

.p-tp-review-nav__next {
  right: -20px;
}

.p-tp-review-nav__prev.u-scroll-fade.is-show,
.p-tp-review-nav__next.u-scroll-fade.is-show {
  transform: translateY(-50%);
}

.p-tp-review-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.p-tp-review-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #000;
  opacity: 0.3;
}
.p-tp-review-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #b8860b;
}

.p-faq__group {
  text-align: left;
}
.p-faq__group + .p-faq__group {
  margin-top: 64px;
}
.p-faq__group .p-content-label {
  font-size: 24px;
}
.p-faq__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-faq__item {
  background-color: #eee;
  border-radius: 8px;
  overflow: hidden;
}
.p-faq__question {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 20px 24px 14px;
  border: none;
  background: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}
.p-faq__q-badge, .p-faq__a-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: #fff;
  font-weight: 700;
}
.p-faq__q-badge {
  background-color: #b8860b;
}
.p-faq__a-badge {
  background-color: #707070;
  margin-top: 9px;
}
.p-faq__question-text {
  flex: 1 1 auto;
  font-size: 20px;
  font-weight: 700;
  color: #000;
}
.p-faq__toggle {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.p-faq__toggle::before, .p-faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #000;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.p-faq__toggle::before {
  width: 18px;
  height: 2px;
}
.p-faq__toggle::after {
  width: 2px;
  height: 18px;
}
.p-faq__item.is-open .p-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.p-faq__item.is-open .p-faq__answer {
  grid-template-rows: 1fr;
}
.p-faq__answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  min-height: 0;
  overflow: hidden;
  padding: 0 24px;
}
.p-faq__item.is-open .p-faq__answer-inner {
  padding: 0 24px 24px;
}
.p-faq__answer-text {
  flex: 1 1 auto;
  font-size: 20px;
  line-height: 1.9;
  color: #000;
}

.p-privacy {
  text-align: left;
}
.p-privacy__inner {
  max-width: 900px;
  margin: 0 auto;
}
.p-privacy__lead-label {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 20px;
  color: #000;
}
.p-privacy__lead-text {
  margin-bottom: 56px;
  font-size: 18px;
  line-height: 1.9;
  color: #000;
}
.p-privacy__chapter {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  color: #000;
}
.p-privacy__chapter:not(:first-of-type) {
  margin-top: 32px;
}
.p-privacy__article + .p-privacy__article {
  margin-top: 14px;
}
.p-privacy__article-title {
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #000;
}
.p-privacy__article-body {
  font-size: 18px;
  line-height: 1.7;
  color: #000;
}
.p-privacy__contact-line {
  font-size: 18px;
  line-height: 1.9;
  color: #000;
}

.p-news-detail {
  text-align: left;
}
.p-news-detail__inner {
  max-width: 900px;
  margin: 0 auto;
}
.p-news-detail__date {
  margin-bottom: 4px;
  font-size: 18px;
  color: #707070;
}
.p-news-detail__title {
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid #707070;
  font-size: 24px;
  font-weight: 700;
  color: #000;
}
.p-news-detail__body {
  padding-bottom: 40px;
  border-bottom: 1px solid #707070;
  font-size: 20px;
  line-height: 1.9;
  color: #000;
}
.p-news-detail__body p + p {
  margin-top: 24px;
}
.p-news-detail__body h2,
.p-news-detail__body h3 {
  margin: 40px 0 8px;
  font-weight: 700;
  color: #000;
}
.p-news-detail__body h2 {
  font-size: 24px;
}
.p-news-detail__body h3 {
  font-size: 20px;
}
.p-news-detail__body ul,
.p-news-detail__body ol {
  margin: 24px 0;
  padding-left: 1.4em;
}
.p-news-detail__body li + li {
  margin-top: 8px;
}
.p-news-detail__body a {
  color: #b8860b;
  text-decoration: underline;
}
.p-news-detail__body img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
  display: block;
}
.p-news-detail__body strong {
  font-weight: 700;
}

@media screen and (max-width: 1200px) {
  .l-section {
    padding: 60px 32px;
  }
  .p-section-title__en {
    font-size: 28px;
  }
  .p-section-title__ja {
    font-size: 15px;
  }
  .u-pc-only-break {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 70px;
  }
  .l-section {
    padding: 48px 20px;
  }
  .p-section-title__en {
    font-size: 24px;
  }
  .p-section-title__ja {
    font-size: 14px;
  }
}
@media screen and (max-width: 430px) {
  .u-xs-only-break {
    display: inline;
  }
}
@media (min-width: 1201px) {
  .p-hd__item--home,
  .p-hd__item--privacy {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .l-hd__inr {
    padding: 0 20px;
  }
  .p-hd__sns {
    display: none;
  }
  .p-hd__toggle {
    display: flex;
    margin-left: auto;
  }
  .l-hd.is-scrolled:not(.l-hd--solid) {
    background-color: rgba(0, 0, 0, 0.9);
  }
  .l-hd.is-scrolled:not(.l-hd--solid) .p-hd__toggle-line {
    background-color: #fff;
  }
  .l-hd.is-scrolled:not(.l-hd--solid) .p-hd__logo-img img {
    filter: invert(1);
  }
  .p-hd__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    z-index: 105;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .p-hd__nav.is-transitionable {
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  .p-hd__nav.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .p-hd__main {
    flex-direction: column;
    align-items: center;
  }
  .p-hd__item + .p-hd__item {
    margin-left: 0;
    margin-top: 32px;
  }
  .p-hd__link {
    display: inline-block;
    color: #fff;
    font-size: 22px;
    padding-bottom: 6px;
    transition: color 0.3s ease;
  }
  .p-hd__link:hover {
    color: #b8860b;
  }
  .p-hd__link .u-hover-line-child::after {
    transform: scaleX(1);
  }
  .p-hd__reserve {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    padding: 24px 32px;
    border: 1px solid #fff;
  }
  .p-hd__reserve-label {
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.05em;
  }
  .p-hd__reserve-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .p-hd__reserve-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s ease;
  }
  .p-hd__reserve-links li a:hover {
    color: #b8860b;
  }
  .p-hd__reserve-links li a img {
    width: 18px;
    height: 18px;
    -o-object-fit: contain;
       object-fit: contain;
    flex-shrink: 0;
  }
  .p-news__list {
    font-size: 18px;
  }
  .p-schedule__inner {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
  .p-schedule__business-hours {
    order: 1;
    flex: 1 1 auto;
  }
  .p-schedule__calendar-wrapper {
    order: 2;
    width: 100%;
  }
  .p-schedule__hours-table th,
  .p-schedule__hours-table td {
    padding: 10px 3px;
    font-size: 18px;
    letter-spacing: 0;
  }
  .p-schedule__hours-table .p-schedule__dot {
    width: 9px;
    height: 9px;
  }
  .p-schedule__hours-note {
    text-align: center;
    font-size: 18px;
  }
  .p-schedule__reserve {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 24px 16px;
  }
  .p-schedule__reserve .p-schedule__reserve-label {
    font-size: 18px;
  }
  .p-schedule__reserve .p-schedule__reserve-links {
    align-items: center;
  }
  .p-schedule__reserve .p-schedule__reserve-links li a {
    font-size: 18px;
    justify-content: center;
  }
  /* 年月タイトル */
  .p-schedule__calendar-wrapper.is-scrollable .fc .fc-header-toolbar .fc-toolbar-chunk:first-child {
    position: sticky;
    left: 0;
    order: 1;
  }
  /* 前週・翌週・今日ボタン */
  .p-schedule__calendar-wrapper.is-scrollable .fc .fc-header-toolbar .fc-toolbar-chunk:last-child {
    order: 2;
    position: sticky;
    left: 0;
    z-index: 50;
    padding: 5px 10px 5px 0;
    background-color: #ffffff;
  }
  /* スクロール誘導 */
  .p-schedule__calendar-scroll-hint {
    position: absolute;
    z-index: 30;
    top: 40px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.78);
    border-radius: 20px;
    font-family: Meiryo, Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    white-space: nowrap;
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }
  /* スクロール後に案内を非表示 */
  .p-schedule__calendar-scroll-hint.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
  }
  /* 矢印を左右に動かす */
  .p-schedule__calendar-scroll-arrow {
    display: inline-block;
    font-size: 18px;
    animation: calendar-scroll-arrow 1.2s ease-in-out infinite;
  }
  @keyframes calendar-scroll-arrow {
    0%, 100% {
      transform: translateX(0);
    }
    50% {
      transform: translateX(6px);
    }
  }
  .fc .fc-toolbar {
    flex-wrap: wrap;
    gap: 8px;
  }
  .fc .fc-toolbar-title {
    font-size: 20px;
  }
  .fc .fc-col-header-cell-cushion {
    font-size: 13px;
  }
  .fc .fc-timegrid-slot-label-cushion {
    font-size: 12px;
  }
  .fc .fc-timegrid-axis-cushion {
    font-size: 12px;
  }
  .fc .fc-event-title {
    font-size: 12px;
    line-height: 1.3;
  }
  .p-schedule__calendar-wrapper.is-scrollable .fc .fc-header-toolbar {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start !important;
    gap: 8px;
  }
  /* カレンダー幅 */
  #js-calendar {
    min-width: 480px;
  }
  .p-prices__lead {
    font-size: 18px;
  }
  .p-prices__table th,
  .p-prices__table td {
    font-size: 18px;
  }
  .p-prices__examples li {
    font-size: 16px;
  }
  .p-access__name {
    font-size: 18px;
  }
  .p-access__address,
  .p-access__tel {
    font-size: 18px;
  }
  .p-access__route {
    font-size: 18px;
  }
  .p-access__buttons .p-btn {
    width: 240px;
    line-height: 48px;
    font-size: 16px;
  }
  .l-ft {
    padding: 40px 20px 25px;
  }
  .l-ft__inr {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 24px;
  }
  .p-ft__nav {
    display: none;
  }
  .p-ft__logo img {
    height: 90px;
  }
  .p-ft__address {
    align-self: center;
  }
  .p-ft__address p {
    font-size: 18px;
  }
  .p-ft__sns {
    align-self: center;
    justify-content: center;
  }
  .p-ft__link {
    font-size: 16px;
  }
  .p-ft__copyright {
    margin-top: 20px;
    padding-top: 16px;
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 48px 20px;
  }
  .l-hd {
    height: 70px;
  }
  .p-hd__logo-img {
    height: 44px;
  }
  .p-hd__link {
    font-size: 18px;
  }
  .p-hd__reserve-label {
    font-size: 14px;
  }
  .p-hd__reserve-links li a {
    font-size: 16px;
  }
  .p-schedule__hours-table th,
  .p-schedule__hours-table td {
    font-size: 15px;
  }
  .p-schedule__hours-note {
    font-size: 16px;
  }
  .p-schedule__reserve-label {
    font-size: 16px;
  }
  .p-schedule__reserve-links li a {
    font-size: 16px;
  }
  .p-schedule__calendar-scroll-hint {
    font-size: 11px;
  }
  .fc .fc-toolbar-title {
    font-size: 18px;
  }
  .fc .fc-col-header-cell-cushion {
    font-size: 12px;
  }
  .fc .fc-timegrid-slot-label-cushion {
    font-size: 11px;
  }
  .fc .fc-timegrid-axis-cushion {
    font-size: 11px;
  }
  .fc .fc-event-title {
    font-size: 11px;
  }
  .p-prices__lead {
    font-size: 16px;
  }
  .p-prices__table th,
  .p-prices__table td {
    font-size: 16px;
  }
  .p-prices__examples li {
    font-size: 16px;
  }
  .p-access__buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .p-access__name {
    font-size: 16px;
  }
  .p-access__address,
  .p-access__tel {
    font-size: 16px;
  }
  .p-access__route {
    font-size: 16px;
  }
  .p-access__buttons .p-btn {
    width: 220px;
    line-height: 44px;
    font-size: 15px;
  }
  .p-news__link {
    flex-direction: column;
    gap: 8px;
  }
  .p-news__date,
  .p-news__title {
    font-size: 16px;
  }
  .p-ft__address p {
    font-size: 16px;
  }
  .p-ft__link {
    font-size: 14px;
  }
  .p-ft__copyright {
    font-size: 14px;
  }
}
@media screen and (max-width: 430px) {
  .p-news__list {
    font-size: 15px;
  }
  .p-prices__lead {
    text-align: left;
  }
  .p-prices__table {
    margin: 20px auto;
  }
  .p-access__name,
  .p-access__address,
  .p-access__tel {
    text-align: left;
  }
  .p-access__route {
    font-size: 16px;
  }
  .p-access__route-line + .p-access__route-line {
    margin-top: 12px;
  }
  .p-hd__logo-img {
    height: 36px;
  }
  .p-ft__logo img {
    height: 70px;
  }
}
@media screen and (max-width: 1200px) {
  .l-hd--solid {
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: none;
  }
  .l-hd--solid .p-hd__toggle-line {
    background-color: #fff;
  }
  .l-hd--solid .p-hd__logo-img img {
    filter: invert(1);
  }
  .l-hd--solid .p-hd__logo {
    opacity: 1;
  }
  .p-page-hero {
    position: relative;
    padding-top: 90px;
    background-color: rgba(0, 0, 0, 0.9);
  }
  .p-page-header {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 2;
    padding: 0;
  }
  .p-page-header__eyebrow {
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
  }
  .p-page-header__title {
    font-size: 40px;
    color: #fff;
  }
  .p-page-kv {
    height: auto;
  }
  .p-page-kv__image {
    height: auto;
    -o-object-fit: unset;
       object-fit: unset;
    -o-object-position: unset;
       object-position: unset;
  }
  .p-page-kv__catch, .p-page-kv__logo {
    display: none;
  }
  .p-content-label {
    font-size: 16px;
  }
  .p-info-table__row {
    gap: 20px;
  }
  .p-info-table__label {
    flex-basis: 110px;
  }
}
@media screen and (max-width: 767px) {
  .p-page-hero {
    padding-top: 70px;
  }
  .p-page-header {
    left: 20px;
    bottom: 20px;
  }
  .p-page-header__eyebrow {
    font-size: 16px;
  }
  .p-page-header__title {
    font-size: 32px;
  }
  .p-content-label {
    font-size: 14px;
  }
  .p-info-table__row {
    flex-direction: column;
    gap: 4px;
  }
  .p-info-table__label {
    flex-basis: auto;
    font-weight: 700;
  }
}
@media screen and (max-width: 1200px) {
  .p-about-message__heading {
    font-size: 21px;
  }
  .p-about-message__body {
    font-size: 18px;
  }
  .p-about-concept__body {
    font-size: 18px;
  }
  .p-info-table {
    font-size: 18px;
  }
  .p-about-profile__card {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .p-about-profile__photo {
    flex-basis: auto;
    width: 260px;
  }
  .p-about-profile__body {
    width: 100%;
    text-align: center;
    font-size: 18px;
  }
  .p-about-profile__name, .p-about-profile__name-en {
    text-align: center;
  }
  .p-about-profile .p-info-table {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .p-about-message__heading {
    font-size: 18px;
  }
  .p-about-message__body {
    font-size: 16px;
  }
  .p-about-concept__body {
    font-size: 16px;
  }
  .p-info-table {
    font-size: 16px;
  }
  .p-about-profile__body {
    font-size: 16px;
  }
  .p-about-profile__name {
    font-size: 18px;
  }
  .p-about-profile__name-en {
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) {
  .p-tp-review-carousel {
    padding: 0 44px;
  }
  .p-tp-review-nav__prev {
    left: 0;
  }
  .p-tp-review-nav__next {
    right: 0;
  }
  .p-tp-intro__body {
    font-size: 18px;
  }
  .p-tp-item + .p-tp-item {
    margin-top: 48px;
  }
  .p-tp-item__heading {
    font-size: 21px;
  }
  .p-tp-item__text {
    font-size: 18px;
  }
  .p-tp-review__name {
    font-size: 18px;
  }
  .p-tp-review__program, .p-tp-review__text {
    font-size: 18px;
  }
}
@media screen and (max-width: 900px) {
  .p-tp-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .p-tp-item__heading {
    display: block;
    order: 2;
    margin-bottom: 4px;
    padding-bottom: 4px;
    text-align: center;
  }
  .p-tp-item__row {
    display: contents;
  }
  .p-tp-item__photo {
    order: 1;
  }
  .p-tp-item__body {
    order: 3;
    margin-top: -12px;
  }
}
@media screen and (max-width: 767px) {
  .p-tp-intro__body {
    font-size: 16px;
  }
  .p-tp-item__heading {
    margin-bottom: 10px;
    padding-bottom: 4px;
    font-size: 18px;
  }
  .p-tp-item__text {
    font-size: 16px;
  }
  .p-tp-review__head {
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
  }
  .p-tp-review__body {
    display: contents;
  }
  .p-tp-review__avatar {
    flex: 1 1 0;
    width: 100%;
    height: auto;
  }
  .p-tp-review__name {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 3 1 0;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    font-size: 16px;
  }
  .p-tp-review__name span {
    display: block;
    margin-left: 0;
    margin-top: 4px;
  }
  .p-tp-review__program {
    flex: 0 0 100%;
    width: 100%;
    margin-top: -8px;
    margin-bottom: -8px;
    padding-top: 16px;
    border-top: 1px solid #000;
    font-size: 16px;
  }
  .p-tp-review__text {
    flex: 0 0 100%;
    width: 100%;
    font-size: 16px;
  }
}
@media screen and (max-width: 430px) {
  .p-tp-review-carousel {
    padding: 0 24px;
  }
  .p-tp-review__avatar {
    flex: 1 1 0;
  }
  .p-tp-review__name {
    flex: 1.5 1 0;
  }
  .p-tp-review__program {
    margin-top: -12px;
    margin-bottom: -12px;
  }
  .p-tp-review-nav__prev,
  .p-tp-review-nav__next {
    width: auto;
  }
}
@media screen and (max-width: 1200px) {
  .p-faq__group + .p-faq__group {
    margin-top: 48px;
  }
  .p-faq__group .p-content-label {
    font-size: 22px;
  }
  .p-faq__question {
    gap: 16px;
    padding: 16px 20px;
  }
  .p-faq__question-text {
    font-size: 18px;
  }
  .p-faq__answer-inner {
    padding: 0 20px;
    gap: 16px;
  }
  .p-faq__item.is-open .p-faq__answer-inner {
    padding: 0 20px 20px;
  }
  .p-faq__answer-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__group .p-content-label {
    font-size: 20px;
    white-space: nowrap;
  }
  .p-faq__group .p-content-label::after {
    flex: 1 1 auto;
    width: auto;
  }
  .p-faq__question {
    padding: 14px 16px;
  }
  .p-faq__question-text {
    font-size: 16px;
  }
  .p-faq__answer-inner {
    padding: 0 16px;
  }
  .p-faq__item.is-open .p-faq__answer-inner {
    padding: 0 16px 16px;
  }
  .p-faq__answer-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) {
  .p-privacy__lead-label {
    font-size: 18px;
  }
  .p-privacy__lead-text {
    font-size: 16px;
  }
  .p-privacy__chapter {
    font-size: 18px;
  }
  .p-privacy__article-title, .p-privacy__article-body, .p-privacy__contact-line {
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) {
  .p-news-detail__date {
    font-size: 16px;
  }
  .p-news-detail__title {
    font-size: 21px;
  }
  .p-news-detail__body {
    font-size: 18px;
  }
  .p-news-detail__body h2 {
    font-size: 21px;
  }
  .p-news-detail__body h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .p-news-detail__date {
    font-size: 14px;
  }
  .p-news-detail__title {
    padding-bottom: 16px;
    margin-bottom: 24px;
    font-size: 18px;
  }
  .p-news-detail__body {
    padding-bottom: 24px;
    font-size: 16px;
  }
  .p-news-detail__body h2 {
    font-size: 18px;
  }
  .p-news-detail__body h3 {
    font-size: 16px;
  }
}/*# sourceMappingURL=style.css.map */