@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap");
/* 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: #cc3300;
  --primary-hover: #dd4411;
  --accent: #e2a115;
  --accent-hover: #ab7a10;
  --success: #4caf50;
  --warning: #ff9800;
  --error: #f44336;
  --disabled: #999;
  --emphasis: #cc3300;
  --text: #252525;
  --text-pale: #757575;
  --border: #ccc;
  --border-light: #e5e5e5;
  --border-dark: #999;
  --bg-base: #f0f5f5;
  --bg-primary: #cc3300;
  --bg-secondary: #e2a115;
  --cell: #e5e5e5;
  --highlight: #f8f882;
  --white: #fff;
  --black: #000;
}

html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: clip;
}

body {
  font-feature-settings: "palt";
  font-size: clamp(0.875rem, 0.7321428571rem + 0.3571428571vw, 1rem);
  letter-spacing: 0.05em;
  line-height: 1.15;
  font-optical-sizing: auto;
  color: var(--text);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: normal;
}

.main {
  display: grid;
  grid-template-columns: 1fr min(450px, 100%) 1fr;
  background: url(../images/bg-base.webp) no-repeat top center fixed;
  background-size: cover;
}
@media (max-width: 1024px) {
  .main {
    display: block;
    width: 100%;
  }
}

.side-area,
.cta-area {
  position: relative;
}
@media (max-width: 1024px) {
  .side-area,
.cta-area {
    display: contents;
  }
}

.side-area figure {
  width: 315px;
  height: calc(100dvh - 220px);
  margin-inline: auto;
  position: -webkit-sticky;
  position: sticky;
  top: 220px;
}
@media (max-width: 1024px) {
  .side-area figure {
    display: none;
  }
}

.cta-area figure {
  width: 324px;
  height: calc(100dvh - 220px);
  margin-inline: auto;
  position: -webkit-sticky;
  position: sticky;
  top: 220px;
}
@media (max-width: 1024px) {
  .cta-area figure {
    display: none;
  }
}

.cta-btn-list {
  position: -webkit-sticky;
  position: sticky;
  top: 64px;
  margin-inline: auto;
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1024px) {
  .cta-btn-list {
    position: fixed;
    top: initial;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    flex-direction: row;
    width: min(560px, 100%);
    gap: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
}
.cta-btn-list .cta-btn {
  display: grid;
  place-items: center;
  width: 100%;
  height: 50px;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  position: relative;
  padding-left: 1em;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1024px) {
  .cta-btn-list .cta-btn {
    box-shadow: none;
    height: 60px;
  }
}
.cta-btn-list .cta-btn::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 27px;
  height: 29px;
  background: #fff;
}
.cta-btn-list .cta-btn.cta-reserve {
  background: #F63A73;
}
.cta-btn-list .cta-btn.cta-reserve::before {
  -webkit-mask: url(../images/icon/calendar.svg) no-repeat center/contain;
          mask: url(../images/icon/calendar.svg) no-repeat center/contain;
}
.cta-btn-list .cta-btn.cta-tel {
  background: #389AAC;
}
.cta-btn-list .cta-btn.cta-tel::before {
  -webkit-mask: url(../images/icon/phone.svg) no-repeat center/contain;
          mask: url(../images/icon/phone.svg) no-repeat center/contain;
}

.main-content {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
}
@media (max-width: 1024px) {
  .main-content {
    width: min(560px, 100%);
    margin-inline: auto;
  }
}

.sec-plan {
  padding: 40px 20px;
  background: linear-gradient(15deg, #FFC7D8, #F98EA2 27%, #F6DBA3);
}

.plan-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.plan-list a {
  display: block;
  box-shadow: 0 4px 10px rgba(238, 107, 147, 0.2);
}

.sec-banner {
  padding: 30px 20px;
  background: #fff;
}
.sec-banner.bg-banner {
  background: url(../images/bg-banner.webp) no-repeat top center/cover;
}

.tokuten-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.accordion-content.open {
  grid-template-rows: 1fr;
}
.accordion-content.open .tokuten-list {
  margin-top: 20px;
}

.photo-collection {
  padding: 25px 20px 40px;
  background: #fff;
}

.heading-gradation {
  text-align: center;
  font-size: clamp(1.375rem, 1.0892857143rem + 0.7142857143vw, 1.625rem);
  font-weight: 700;
  letter-spacing: 0;
  background: linear-gradient(90deg, #F9729A, #FFBA46);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.collection-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.footer {
  background: #FFEAEB;
  padding: 40px 0 0;
}
.footer .inner {
  width: clamp(300px, 30vw, 360px);
  margin-inline: auto;
  padding-bottom: 40px;
}

.f-logo {
  width: clamp(150px, 14.1666666667vw, 170px);
  margin-inline: auto;
}

.f-comment {
  background: #fff;
  border-radius: 99px;
  padding: 0.5em;
  color: #EE6B93;
  margin-block: 24px;
  text-align: center;
  font-size: clamp(1.125rem, 0.9107142857rem + 0.5357142857vw, 1.3125rem);
  font-weight: 700;
}

.f-info {
  text-align: center;
  font-size: clamp(0.875rem, 0.6607142857rem + 0.5357142857vw, 1.0625rem);
  line-height: 1.8;
}
.f-info a[href^="tel:"] {
  color: #333;
}

.mt16 {
  margin-top: 16px;
}

.copyright {
  background: #EE6B93;
  color: #fff;
  font-size: clamp(0.75rem, 0.6071428571rem + 0.3571428571vw, 0.875rem);
  text-align: center;
  padding: 1em;
}
@media (max-width: 1024px) {
  .copyright {
    padding-bottom: 80px;
  }
}

.cta-link-area {
  padding: 30px 20px;
  background: url(../images/bg-dots.webp) no-repeat center/cover, #fff;
}

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

.text {
  font-size: clamp(0.8125rem, 0.6696428571rem + 0.3571428571vw, 0.9375rem);
  line-height: 1.8;
}
/*# sourceMappingURL=style.css.map */