@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul, summary {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

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

a {
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.pc {
  display: initial !important;
}

.sp {
  display: none !important;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: initial !important;
  }
}
:root {
  --primary: #A31819;
  --primary-pale: #c76868;
  --accent: #0C3659;
  --accent-pale: #617c8f;
  --success: #4caf50;
  --warning: #ff9800;
  --error: #f44336;
  --disabled: #999;
  --emphasis: #cc3300;
  --text: #2C2A2A;
  --text-pale:#898989;
  --text-light: #CCCCCC;
  --border:#EBD8C7;
  --bg:#f5efe6;
  --bg-pale:#fcf8f3;
  --highlight: #f8f882;
  --white: #fff;
  --black: #000;
  --header-height-sp:60px;
}

:root {
  --fs-page-title: clamp(2.25rem, 0.1071428571rem + 8.5714285714vw, 3rem);
  --fs-section-heading: clamp(1.5rem, 0.0714285714rem + 5.7142857143vw, 2rem);
  --fs-subsection-heading: clamp(1.25rem, -0.1785714286rem + 5.7142857143vw, 1.75rem);
  --fs-card-heading: clamp(1.125rem, 0.4107142857rem + 2.8571428571vw, 1.375rem);
  --fs-inline-heading: clamp(1rem, 0.6428571429rem + 1.4285714286vw, 1.125rem);
  --fs-lead: clamp(1rem, 0.2857142857rem + 2.8571428571vw, 1.25rem);
  --fs-body: clamp(0.875rem, 0.5178571429rem + 1.4285714286vw, 1rem);
  --fs-note: clamp(0.75rem, 0.3928571429rem + 1.4285714286vw, 0.875rem);
  --fs-small: clamp(0.625rem, 0.2678571429rem + 1.4285714286vw, 0.75rem);
}

@-webkit-keyframes navfadein {
  0% {
    transform: translateX(-24px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes navfadein {
  0% {
    transform: translateX(-24px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes bigTextMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes bigTextMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@-webkit-keyframes photoAnim {
  0% {
    -webkit-mask-size: 0% 50%;
            mask-size: 0% 50%;
    opacity: 0;
  }
  100% {
    -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
    opacity: 1;
  }
}
@keyframes photoAnim {
  0% {
    -webkit-mask-size: 0% 50%;
            mask-size: 0% 50%;
    opacity: 0;
  }
  100% {
    -webkit-mask-size: 100% 100%;
            mask-size: 100% 100%;
    opacity: 1;
  }
}
@-webkit-keyframes bgMove {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes bgMove {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes fadePhoto1 {
  0% {
    transform: translateX(-20%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fadePhoto1 {
  0% {
    transform: translateX(-20%);
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes fadePhoto2 {
  0% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fadePhoto2 {
  0% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes fadePhoto3 {
  0% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fadePhoto3 {
  0% {
    transform: translateX(20%);
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes fadePhoto4 {
  0% {
    transform: translateY(-20%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fadePhoto4 {
  0% {
    transform: translateY(-20%);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes fadePhoto5 {
  0% {
    transform: translateY(20%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fadePhoto5 {
  0% {
    transform: translateY(20%);
  }
  100% {
    transform: translateY(0);
  }
}
.ff-mincho {
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
}

.page-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 0.25em;
}
.page-title h1 {
  font-size: clamp(1.75rem, 1.0357142857rem + 2.8571428571vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.page-title p {
  font-size: clamp(0.75rem, 0.3928571429rem + 1.4285714286vw, 0.875rem);
  color: var(--primary);
  line-height: 1.8;
}

.section-heading {
  font-size: clamp(1.75rem, 1.0357142857rem + 2.8571428571vw, 2rem);
  font-weight: 700;
  margin-bottom: 1em;
  line-height: 1.4;
}

.menu-heading {
  font-size: clamp(1.375rem, 0.6607142857rem + 2.8571428571vw, 1.625rem);
  font-weight: 700;
  line-height: 1.4;
}
.menu-heading span {
  font-size: 0.6em;
  padding-left: 1em;
}

.block-heading {
  font-size: clamp(1.375rem, 0.6607142857rem + 2.8571428571vw, 1.625rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--primary);
  font-size: clamp(1.375rem, 0.6607142857rem + 2.8571428571vw, 1.625rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--primary);
}

.small-heading {
  font-size: clamp(1.125rem, 0.4107142857rem + 2.8571428571vw, 1.375rem);
  font-weight: 500;
  line-height: 1.4;
}
.small-heading span {
  font-size: 0.75em;
}

.lead {
  font-size: clamp(0.875rem, 0.1607142857rem + 2.8571428571vw, 1.125rem);
  line-height: 1.6;
}

.text-xl {
  font-size: clamp(1.25rem, 0.5357142857rem + 2.8571428571vw, 1.5rem);
  line-height: 1.5;
}

.text-l {
  font-size: clamp(1rem, 0.2857142857rem + 2.8571428571vw, 1.25rem);
  line-height: 1.6;
}

.text-name {
  font-size: clamp(1.125rem, 0.4107142857rem + 2.8571428571vw, 1.375rem);
  line-height: 1.6;
  color: var(--primary);
}

.text {
  font-size: clamp(0.875rem, 0.5178571429rem + 1.4285714286vw, 1rem);
  line-height: 1.8;
  color: var(--text);
}

.note {
  font-size: clamp(0.75rem, 0.3928571429rem + 1.4285714286vw, 0.875rem);
  line-height: 1.6;
}

.text-s {
  font-size: clamp(0.625rem, 0.2678571429rem + 1.4285714286vw, 0.75rem);
  line-height: 1;
}

.text-tel {
  font-size: clamp(1.25rem, -0.1785714286rem + 5.7142857143vw, 1.75rem);
  color: var(--text);
  line-height: 1.4;
}

.c-primary {
  color: var(--primary);
}

.c-accent {
  color: var(--accent);
}

.c-white {
  color: var(--white);
}

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

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

.bold {
  font-weight: 700;
}

.marker {
  background: linear-gradient(to top, var(--highlight) 50%, transparent 50%);
}

.underline {
  text-decoration: underline;
  text-underline-offset: 0.1em;
}

.kome {
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
}
.kome::before {
  content: "※";
}

.header {
  position: fixed;
  padding-inline: 24px;
  top: 0;
  left: auto;
  right: auto;
  width: min(540px, 100%);
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  background: var(--bg);
}
@media (max-width: 1024px) {
  .header {
    height: var(--header-height-sp);
    justify-content: flex-start;
  }
}
.header .site-title {
  position: relative;
  z-index: 99;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.header .site-title a {
  font-size: clamp(1.5625rem, 0.3125rem + 5vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1024px) {
  .header .site-title a {
    flex-direction: row;
    gap: 1rem;
  }
}
.header .site-title a .eng {
  font-size: clamp(0.625rem, -0.0892857143rem + 2.8571428571vw, 0.875rem);
  color: var(--text);
  letter-spacing: 0.2em;
}
.header:has(.is-open) .site-title a {
  color: var(--white);
}
.header:has(.is-open) .site-title a .eng {
  color: var(--white);
}

.site-title-pc {
  position: fixed;
  left: 5vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.site-title-pc a {
  font-size: clamp(1.5625rem, 0.3125rem + 5vw, 2rem);
  font-weight: 700;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
@media (max-width: 1024px) {
  .site-title-pc a {
    flex-direction: row;
    gap: 1rem;
  }
}
.site-title-pc a .eng {
  font-size: clamp(0.625rem, -0.0892857143rem + 2.8571428571vw, 0.875rem);
  color: var(--text);
  letter-spacing: 0.2em;
}
@media (max-width: 1024px) {
  .site-title-pc {
    display: none;
  }
}

.toggle {
  display: none;
}
@media (max-width: 540px) {
  .toggle {
    width: 32px;
    aspect-ratio: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    border-radius: 5px;
    position: absolute;
    right: 24px;
    top: calc(50% - 16px);
  }
  .toggle span {
    width: 80%;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    position: relative;
    transition: all 0.3s ease-out;
  }
  .toggle span::before, .toggle span::after {
    content: "";
    width: 100%;
    height: 2px;
    border-radius: 1px;
    background: var(--primary);
    position: absolute;
    transition: all 0.3s ease-out;
  }
  .toggle span::before {
    top: -8px;
    left: 0;
  }
  .toggle span::after {
    top: 8px;
    left: 0;
  }
  .toggle.is-active {
    --primary:#fff;
  }
  .toggle.is-active span {
    height: 0;
  }
  .toggle.is-active span::before, .toggle.is-active span::after {
    top: initial;
  }
  .toggle.is-active span::before {
    transform: rotate(45deg);
  }
  .toggle.is-active span::after {
    transform: rotate(-45deg);
  }
}

@media (min-width: 1025px) {
  .gnav {
    position: fixed;
    right: 5vw;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
  }
  .gnav > ul {
    display: flex;
    flex-direction: column;
    gap: 2em;
  }
  .gnav > ul > li > a {
    display: block;
    color: var(--text);
    padding-left: 2em;
    font-size: 1.25rem;
    position: relative;
  }
  .gnav > ul > li > a::before {
    content: "";
    width: 1.5em;
    aspect-ratio: 1;
    -webkit-mask: url(../images/fudemaru.svg) no-repeat center/contain;
            mask: url(../images/fudemaru.svg) no-repeat center/contain;
    background: var(--primary);
    position: absolute;
    left: 0;
    top: -0.125em;
  }
  .gnav > ul .nav-cta-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
  }
}
@media (max-width: 1024px) {
  .gnav {
    display: block;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-out;
    width: 100vw;
    height: 100dvh;
    position: fixed;
    inset: 0;
    background: var(--primary);
  }
  .gnav > ul {
    height: 100%;
    padding: 40px;
    padding-top: var(--header-height-sp);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .gnav > ul > li {
    margin-top: 1rem;
  }
  .gnav > ul > li a {
    color: var(--white);
    font-size: 1.25rem;
    padding-block: 0.75rem;
    display: inline-block;
  }
  .gnav > ul .nav-cta-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .gnav.is-open {
    pointer-events: all;
    visibility: visible;
    opacity: 1;
  }
}

.aioseo-breadcrumbs {
  width: min(540px, 100%);
  margin-inline: auto;
  padding: 8px 24px;
  font-size: clamp(0.625rem, 0.2678571429rem + 1.4285714286vw, 0.75rem);
  background: #ebe5db;
}
.aioseo-breadcrumbs a {
  color: var(--text-pale);
}
.aioseo-breadcrumbs span {
  color: var(--text);
}

.list-normal > li {
  position: relative;
  padding-left: 1em;
}
.list-normal > li::before {
  content: "";
  width: 1em;
  height: 1lh;
  background: radial-gradient(var(--text) 0.2em, transparent 0.2em) no-repeat center/1em 1em;
  position: absolute;
  inset: 0;
}

.list-counter {
  counter-reset: list-counter;
}
.list-counter > li {
  counter-increment: list-counter;
  position: relative;
  padding-left: 1em;
}
.list-counter > li::before {
  content: counter(list-counter) ". ";
  position: absolute;
  inset: 0;
}

.link-text {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.link-text-outside {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.25em;
  padding-right: 1.25em;
  position: relative;
  display: inline-block;
}
.link-text-outside::after {
  content: "";
  width: 1em;
  height: 1lh;
  background: url(../images/outside-link.svg) no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 0;
}

.btn {
  font-size: clamp(1rem, 0.6428571429rem + 1.4285714286vw, 1.125rem);
  font-weight: 700;
  border-radius: 99px;
  width: 70%;
  height: 50px;
  display: grid;
  place-items: center;
  margin-inline: auto;
  color: var(--primary);
}
.btn.btn-primary {
  border: 1px solid var(--primary);
  width: 85%;
}
.btn.btn-tel {
  border: 1px solid var(--primary);
  width: 100%;
  background: var(--white);
}
.btn.btn-tel span {
  font-size: 1.125rem;
  padding-left: 1.5rem;
  position: relative;
}
.btn.btn-tel span::after {
  content: "";
  width: 1.25em;
  aspect-ratio: 1;
  -webkit-mask: url(../images/icon-phone.svg) no-repeat center/contain;
          mask: url(../images/icon-phone.svg) no-repeat center/contain;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
}
.btn.btn-calendar {
  border: 1px solid var(--primary);
  width: 100%;
  background: var(--white);
}
.btn.btn-calendar span {
  padding-left: 1.5rem;
  position: relative;
}
.btn.btn-calendar span::after {
  content: "";
  width: 1.25em;
  aspect-ratio: 1;
  -webkit-mask: url(../images/icon-calendar.svg) no-repeat center/contain;
          mask: url(../images/icon-calendar.svg) no-repeat center/contain;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
}
.btn.btn-cta {
  border: 1px solid var(--primary);
  width: 85%;
  background: var(--white);
}
.btn.btn-cta span {
  padding-right: 1.5rem;
  position: relative;
}
.btn.btn-cta span::after {
  content: "";
  width: 1.25em;
  aspect-ratio: 1;
  -webkit-mask: url(../images/icon-next.svg) no-repeat center/contain;
          mask: url(../images/icon-next.svg) no-repeat center/contain;
  background: var(--primary);
  position: absolute;
  right: 0;
  top: 0;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}

.sec {
  container-type: inline-size;
  padding: clamp(32px, 11.8518518519vw, 64px) 0;
}
.sec .container {
  width: min(540px, 88%);
  margin-inline: auto;
  position: relative;
}

.grid {
  display: grid;
}
.grid.grid21 {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 540px) {
  .grid.grid21 {
    grid-template-columns: 1fr;
  }
}
.grid.grid31 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 540px) {
  .grid.grid31 {
    grid-template-columns: 1fr;
  }
}
.grid.grid32 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 540px) {
  .grid.grid32 {
    grid-template-columns: 1fr 1fr;
  }
}
.grid.grid41 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 540px) {
  .grid.grid41 {
    grid-template-columns: 1fr;
  }
}
.grid.grid42 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 540px) {
  .grid.grid42 {
    grid-template-columns: 1fr 1fr;
  }
}
.grid.grid12fr {
  grid-template-columns: 1fr 2fr;
}
@media (max-width: 540px) {
  .grid.grid12fr {
    grid-template-columns: 1fr;
  }
}
.grid.grid13fr {
  grid-template-columns: 1fr 3fr;
}
@media (max-width: 540px) {
  .grid.grid13fr {
    grid-template-columns: 1fr;
  }
}
.grid.grid21fr {
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 540px) {
  .grid.grid21fr {
    grid-template-columns: 1fr;
  }
}
.grid.grid31fr {
  grid-template-columns: 3fr 1fr;
}
@media (max-width: 540px) {
  .grid.grid31fr {
    grid-template-columns: 1fr;
  }
}
.grid.grid64fr {
  grid-template-columns: 6fr 4fr;
}
@media (max-width: 540px) {
  .grid.grid64fr {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: flex;
}

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

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

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

.flex1 {
  flex: 1;
}

.gap80 {
  gap: clamp(16px, 14.8148148148vw, 80px);
}

.gap48 {
  gap: clamp(16px, 8.8888888889vw, 48px);
}

.gap40 {
  gap: clamp(16px, 7.4074074074vw, 40px);
}

.gap32 {
  gap: clamp(16px, 5.9259259259vw, 32px);
}

.gap24 {
  gap: clamp(16px, 4.4444444444vw, 24px);
}

.gap16 {
  gap: clamp(8px, 2.962962963vw, 16px);
}

.gap8 {
  gap: 8px;
}

.mt120 {
  margin-top: clamp(64px, 22.2222222222vw, 120px);
}

.mt96 {
  margin-top: clamp(64px, 17.7777777778vw, 96px);
}

.mt80 {
  margin-top: clamp(56px, 14.8148148148vw, 80px);
}

.mt64 {
  margin-top: clamp(40px, 11.8518518519vw, 64px);
}

.mt48 {
  margin-top: clamp(36px, 8.8888888889vw, 48px);
}

.mt40 {
  margin-top: clamp(32px, 7.4074074074vw, 40px);
}

.mt32 {
  margin-top: clamp(24px, 5.9259259259vw, 32px);
}

.mt24 {
  margin-top: clamp(16px, 4.4444444444vw, 24px);
}

.mt16 {
  margin-top: clamp(12px, 2.962962963vw, 16px);
}

.mt8 {
  margin-top: 8px;
}

.mt4 {
  margin-top: 4px;
}

.tab-primary {
  display: flex;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid var(--text);
}
.tab-primary > li {
  flex: 1 1 auto;
  cursor: pointer;
}

.tab-primary-content > li {
  display: none;
}
.tab-primary-content > li.is-active {
  display: initial;
}

.js-accordion {
  cursor: pointer;
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: all 0.3s ease-out;
}
.accordion-content.open {
  grid-template-rows: 1fr;
}
.accordion-content > div {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media (max-width: 540px) {
  html {
    scroll-padding-top: 60px;
  }
}
html.lock {
  overflow: hidden;
}

body {
  font-feature-settings: "palt";
  font-size: clamp(0.875rem, 0.5178571429rem + 1.4285714286vw, 1rem);
  line-height: 1.15;
  font-optical-sizing: auto;
  color: var(--text);
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: normal;
  background: var(--white);
  padding-top: 80px;
  background: url(../images/bg-pc-b.webp) no-repeat top center/cover fixed;
}
@media (max-width: 1024px) {
  body {
    padding-top: var(--header-height-sp);
  }
}

.lp-container {
  position: relative;
  width: min(540px, 100%);
  margin-inline: auto;
  height: 100%;
  background: var(--bg);
  box-shadow: 0 0 64px white;
}

.hero-sec {
  width: min(540px, 100%);
  margin-inline: auto;
  height: 960px;
  position: relative;
  background: linear-gradient(to top, var(--bg), transparent 25%), linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 35%), url(../images/hero-image.webp) no-repeat center/cover;
}
.hero-sec::before {
  content: "";
  width: 64%;
  aspect-ratio: 37/24;
  background: url(../images/fv-illust.webp) no-repeat bottom right/contain;
  position: absolute;
  right: 0;
  bottom: -4%;
}
@media (max-width: 540px) {
  .hero-sec::before {
    bottom: 0;
  }
}
@media (max-width: 540px) {
  .hero-sec {
    height: calc(100dvh - 50px);
  }
}
.hero-sec .catch-wrap {
  width: 88%;
  position: absolute;
  top: 8%;
  left: 6%;
  text-shadow: 0 0 4px rgb(0, 0, 0);
}
.hero-sec .catch-wrap h2 {
  font-size: clamp(1.875rem, 0.0892857143rem + 7.1428571429vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
}
.hero-sec .catch-wrap .sub-text {
  font-size: clamp(1rem, 0.2857142857rem + 2.8571428571vw, 1.25rem);
  line-height: 2;
  color: var(--white);
}

.bnr-list {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 4.4444444444vw, 24px);
}
.bnr-list figure {
  overflow: hidden;
  border-radius: 16px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 4.4444444444vw, 24px);
}
.feature-list > li {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1em;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
}
.feature-list > li .icon {
  width: 100%;
  aspect-ratio: 1;
  background: var(--primary);
}
.feature-list > li .icon.kotatsu {
  -webkit-mask: url(../images/icon-kotatsu.svg) no-repeat center/contain;
          mask: url(../images/icon-kotatsu.svg) no-repeat center/contain;
}
.feature-list > li .icon.kids {
  -webkit-mask: url(../images/icon-kids.svg) no-repeat center/contain;
          mask: url(../images/icon-kids.svg) no-repeat center/contain;
}
.feature-list > li .icon.babycar {
  -webkit-mask: url(../images/icon-babycar.svg) no-repeat center/contain;
          mask: url(../images/icon-babycar.svg) no-repeat center/contain;
}
.feature-list > li .icon.senior {
  -webkit-mask: url(../images/icon-senior.svg) no-repeat center/contain;
          mask: url(../images/icon-senior.svg) no-repeat center/contain;
}
.feature-list > li h3 {
  color: var(--primary);
  font-weight: 700;
  font-size: clamp(1rem, 0.2857142857rem + 2.8571428571vw, 1.25rem);
}

.news-list {
  display: flex;
  flex-direction: column;
}
.news-list > a {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

time {
  font-size: clamp(0.75rem, 0.3928571429rem + 1.4285714286vw, 0.875rem);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 4.4444444444vw, 24px);
}
.menu-list > li {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.menu-list > li > figure {
  overflow: hidden;
  border-radius: clamp(8px, 2.962962963vw, 16px);
}
.menu-list > li > div {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.menu-list > li > div .menu-name {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}

.price {
  text-align: right;
  font-size: 1rem;
  font-weight: 700;
  padding-bottom: 0.25em;
}
.price span {
  font-size: 0.75em;
  color: var(--text);
}

.bg-pale {
  background: var(--bg-pale);
}

.photo-image {
  border-radius: clamp(8px, 2.962962963vw, 16px);
  overflow: hidden;
}
.photo-image img {
  width: 100%;
}

.map-wrap {
  aspect-ratio: 3/2;
  border-radius: clamp(8px, 2.962962963vw, 16px);
  overflow: hidden;
  border: 2px solid var(--border);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
}

.contact-wrap {
  width: min(540px, 90%);
  background: var(--primary);
  padding: 1.5rem;
  border-radius: 16px;
  color: var(--white);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 4px 16px var(--border);
}
.contact-wrap h3 {
  text-align: center;
  font-size: clamp(1.25rem, 0.5357142857rem + 2.8571428571vw, 1.5rem);
  line-height: 1.4;
}
.contact-wrap .c-tel {
  text-align: center;
  font-size: clamp(2.5rem, -0.3571428571rem + 11.4285714286vw, 3.5rem);
  color: var(--white);
  letter-spacing: 0.1em;
}

.shop-info-list {
  margin-top: clamp(16px, 5.9259259259vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.shop-info-list > li {
  display: grid;
  grid-template-columns: clamp(24px, 5.9259259259vw, 32px) 1fr;
  gap: 1rem;
}
.shop-info-list > li .icon {
  width: 100%;
  aspect-ratio: 1;
  background: var(--primary);
}
.shop-info-list > li .icon.map {
  -webkit-mask: url(../images/icon-map.svg) no-repeat center/contain;
          mask: url(../images/icon-map.svg) no-repeat center/contain;
}
.shop-info-list > li .icon.phone {
  -webkit-mask: url(../images/icon-phone.svg) no-repeat center/contain;
          mask: url(../images/icon-phone.svg) no-repeat center/contain;
}
.shop-info-list > li .icon.hour {
  -webkit-mask: url(../images/icon-time.svg) no-repeat center/contain;
          mask: url(../images/icon-time.svg) no-repeat center/contain;
}
.shop-info-list > li .icon.holiday {
  -webkit-mask: url(../images/icon-calendar.svg) no-repeat center/contain;
          mask: url(../images/icon-calendar.svg) no-repeat center/contain;
}

.f-bottom {
  padding: 28% 0 16px;
  background: url(../images/f-bg-image.webp) no-repeat top center/cover;
}

.copyright {
  text-align: center;
  font-size: clamp(0.6875rem, 0.5089285714rem + 0.7142857143vw, 0.75rem);
}

.bg-wave {
  position: relative;
}
.bg-wave::before {
  content: "";
  width: 36%;
  aspect-ratio: 1;
  background: url(../images/heading-right.svg) no-repeat right center/contain;
  position: absolute;
  top: -3%;
  right: 0;
}

.page-title-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 150px;
  background: url(../images/bg-page-title.webp) no-repeat bottom/contain;
  padding: 24px 24px 8vw;
}

.post-title {
  font-size: clamp(1.5rem, 0.7857142857rem + 2.8571428571vw, 1.75rem);
  font-weight: 700;
  line-height: 1.4;
}

.post-content {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
  font-weight: 700;
  line-height: 1.4;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.post-content h1 {
  font-size: clamp(1.5rem, 0.7857142857rem + 2.8571428571vw, 1.75rem);
}
.post-content h2 {
  font-size: clamp(1.375rem, 0.6607142857rem + 2.8571428571vw, 1.625rem);
}
.post-content h3 {
  font-size: clamp(1.25rem, 0.5357142857rem + 2.8571428571vw, 1.5rem);
}
.post-content h4 {
  font-size: clamp(1.125rem, 0.4107142857rem + 2.8571428571vw, 1.375rem);
}
.post-content h5 {
  font-size: clamp(1rem, 0.2857142857rem + 2.8571428571vw, 1.25rem);
}
.post-content h6 {
  font-size: clamp(0.875rem, 0.1607142857rem + 2.8571428571vw, 1.125rem);
}
.post-content p {
  font-size: clamp(0.875rem, 0.5178571429rem + 1.4285714286vw, 1rem);
  line-height: 2;
}
.post-content img {
  margin-block: 1em;
}
.post-content table {
  margin-block: 1em;
}

.menu-list-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.menu-list-text > li {
  display: grid;
  grid-template-columns: 1fr -webkit-max-content;
  grid-template-columns: 1fr max-content;
  gap: 1rem;
  border-bottom: 1px solid var(--border);
}

.menu-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.menu-list-grid p {
  font-size: clamp(0.875rem, 0.5178571429rem + 1.4285714286vw, 1rem);
  line-height: 1.8;
}
.menu-list-grid p::before {
  content: "・";
}

.menu-box {
  padding: 1rem;
  border-radius: 16px;
  background: var(--white);
}

.pagination {
  text-align: right;
}
.pagination a, .pagination span {
  padding: 0.5em;
  color: var(--text);
  font-size: clamp(0.875rem, 0.5178571429rem + 1.4285714286vw, 1rem);
}
.pagination a {
  color: var(--primary);
}

.post-content h1 {
  font-size: clamp(1.75rem, 1.0357142857rem + 2.8571428571vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
  margin-top: 1em;
}
.post-content h2 {
  font-size: clamp(1.5rem, 0.7857142857rem + 2.8571428571vw, 1.75rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
  margin-top: 1em;
}
.post-content h3 {
  font-size: clamp(1.25rem, 0.5357142857rem + 2.8571428571vw, 1.5rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
  margin-top: 1em;
}
.post-content h4 {
  font-size: clamp(1.125rem, 0.7678571429rem + 1.4285714286vw, 1.25rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
  margin-top: 1em;
}
.post-content h5 {
  font-size: clamp(1rem, 0.6428571429rem + 1.4285714286vw, 1.125rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1rem;
  margin-top: 1em;
}
.post-content h6 {
  font-size: clamp(0.875rem, 0.5178571429rem + 1.4285714286vw, 1rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 1rem;
  margin-top: 1em;
}
.post-content p {
  font-size: clamp(0.875rem, 0.5178571429rem + 1.4285714286vw, 1rem);
  line-height: 1.8;
}
.post-content p + p {
  margin-top: 1rem;
}
.post-content a {
  text-decoration: underline;
  text-underline-offset: 0.1em;
}
.post-content img {
  margin-block: 1rem;
}
/*# sourceMappingURL=style.css.map */