@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
  background: #FFFFFF;
  color: #2C3142;
  font-family: "Zen Maru Gothic", "YakuHanJP", "Hiragino Maru Gothic ProN", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.85;
  letter-spacing: 0.04em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
}
a:focus-visible {
  outline: 2px solid rgba(181, 84, 122, 0.35);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  font-size: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Zen Maru Gothic", "YakuHanJP", "Hiragino Maru Gothic ProN", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 900;
  line-height: 1.5;
  color: #243A6D;
  letter-spacing: 0.06em;
}

h1 {
  font-size: clamp(2.8rem, 3.8vw, 4.8rem);
}

h2 {
  font-size: clamp(2.6rem, 3.4vw, 3.8rem);
}

h3 {
  font-size: clamp(2rem, 2.4vw, 2.6rem);
}

h4 {
  font-size: clamp(1.8rem, 2vw, 2rem);
}

h5 {
  font-size: 1.8rem;
}

#wrapper {
  position: relative;
  overflow: hidden;
}

hr {
  border: none;
  border-top: 1px solid #E0E5F0;
  margin: 0;
  opacity: 0.6;
}

.site-header {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand .brand-logo {
  height: 70px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #243A6D;
  font-weight: 700;
  line-height: 1.2;
  transition: color 0.2s ease, transform 0.2s ease;
}
.nav a .ico {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #243A6D;
  transition: transform 0.25s ease, color 0.2s ease;
}
.nav a .ico i {
  font-size: 22px;
  line-height: 1;
}
.nav a:hover {
  color: #8C3958;
}
.nav a:hover .ico {
  transform: translateY(-3px) scale(1.08);
  color: #B5547A;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: #243A6D;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  min-height: 44px;
  box-shadow: 0 4px 0 0 #738CBA;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.header-cta i {
  font-size: 16px;
}
.header-cta:hover {
  transform: translateY(2px);
  box-shadow: 0 1px 0 0 #475886;
  color: #fff;
}

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #243A6D;
  color: #fff;
  align-items: center;
  justify-content: center;
  border: 0;
}
.menu-btn .bars {
  position: relative;
  inline-size: 20px;
  block-size: 14px;
  display: grid;
  align-content: space-between;
}
.menu-btn .bars i {
  display: block;
  inline-size: 100%;
  block-size: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.menu-btn.is-active .bars i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.menu-btn.is-active .bars i:nth-child(2) {
  opacity: 0;
}
.menu-btn.is-active .bars i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

#sp-nav {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.25s ease;
  z-index: -10;
  pointer-events: none;
}
#sp-nav.open {
  opacity: 1;
  pointer-events: auto;
  z-index: 110;
}
#sp-nav #sp-logo {
  width: 200px;
  margin-bottom: 12px;
}
#sp-nav .globalNav {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  min-width: 260px;
}
#sp-nav .globalNav li:not(:first-child) {
  margin-top: 1em;
}
#sp-nav .globalNav a {
  display: block;
  padding: 12px;
  color: #243A6D;
  font-weight: 700;
  border-bottom: 1px solid rgba(36, 58, 109, 0.2);
}

.footer {
  position: relative;
  background: #172547;
  color: rgba(255, 255, 255, 0.85);
  padding: 40px 15px 80px;
  margin-top: 80px;
}
.footer::before {
  content: "";
  position: absolute;
  top: -79px;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 80' preserveAspectRatio='none'><path d='M0 80 Q 600 -40 1200 80 Z' fill='%23172547'/></svg>") no-repeat bottom/100% 100%;
  pointer-events: none;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.fbrand {
  display: inline-block;
  margin-bottom: 20px;
}
.fbrand .fbrand-img {
  height: 64px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.finfo {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
}
.finfo a {
  color: inherit;
  text-decoration: underline;
}

.fsoc {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.fsl {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.fsl i {
  font-size: 22px;
  color: #fff;
}
.fsl:hover {
  background: rgba(255, 255, 255, 0.22);
}

.fnav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 18px;
}
.fnav a {
  color: rgba(255, 255, 255, 0.85);
  padding: 8px 0;
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.fnav a:hover {
  color: #fff;
}
.fnav a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.22);
}

.cp {
  color: rgba(255, 255, 255, 0.6);
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section {
  position: relative;
  overflow: hidden;
}
.section--rounded {
  border-radius: 120px;
}
.section--rounded-lg {
  border-radius: 240px;
}
.section--narrow {
  max-width: 97%;
  margin-inline: auto;
}
.section--narrow-95 {
  max-width: 95%;
  margin-inline: auto;
}
@media (max-width: 980px) {
  .section--rounded {
    border-radius: 80px;
  }
  .section--rounded-lg {
    border-radius: 120px;
  }
}
@media (max-width: 768px) {
  .section--rounded {
    border-radius: 60px;
  }
  .section--rounded-lg {
    border-radius: 80px;
  }
}
@media (max-width: 520px) {
  .section--rounded {
    border-radius: 40px;
  }
  .section--rounded-lg {
    border-radius: 40px;
  }
  .section--narrow-95 {
    max-width: 98%;
  }
}

.container {
  --container-max: 1200px;
  --container-pb: 80px;
  --container-pi: 15px;
  position: relative;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-block: var(--container-pb);
  padding-inline: var(--container-pi);
}
.container--wide {
  --container-max: 1400px;
}
.container--full {
  --container-max: 100vw;
  padding-left: 0;
  padding-right: 0;
}
.container--p-xl {
  --container-pb: 120px;
}
.container--p-l {
  --container-pb: 80px;
}
.container--p-m {
  --container-pb: 60px;
}
.container--p-s {
  --container-pb: 40px;
}
.container--top-only {
  padding-block-end: 0 !important;
}
.container--btm-only {
  padding-block-start: 0 !important;
}
@media (max-width: 980px) {
  .container--p-xl {
    --container-pb: 80px;
  }
  .container--p-l {
    --container-pb: 60px;
  }
  .container--p-m {
    --container-pb: 40px;
  }
}

.inner {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 32px;
}
@media (max-width: 768px) {
  .inner {
    padding-inline: 20px;
  }
}

.l-column {
  --gap: 24px;
  --cols: 3;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
}
.l-column > li,
.l-column .col-item {
  flex: 0 1 calc((100% - var(--gap) * (var(--cols) - 1)) / var(--cols));
  max-width: calc((100% - var(--gap) * (var(--cols) - 1)) / var(--cols));
  min-width: 0;
}
.l-column.col2 {
  --cols: 2;
}
.l-column.col3 {
  --cols: 3;
}
.l-column.col4 {
  --cols: 4;
}
@media (max-width: 980px) {
  .l-column.col4 {
    --cols: 2;
  }
}
@media (max-width: 768px) {
  .l-column.col4 {
    --cols: 2;
  }
  .l-column.col3 {
    --cols: 2;
  }
}
@media (max-width: 520px) {
  .l-column.col4 {
    --cols: 1;
  }
  .l-column.col3 {
    --cols: 1;
  }
  .l-column.col2 {
    --cols: 1;
  }
}

.box {
  position: relative;
  margin-inline: auto;
  z-index: 3;
}
.box--bwidth {
  max-width: 1200px;
}
.box--small {
  max-width: 1100px;
}
.box--small2 {
  max-width: 1000px;
}
.box--small3 {
  max-width: 900px;
}
.box--small4 {
  max-width: 800px;
}

.title {
  margin: 0 auto 50px;
  text-align: center;
  position: relative;
}
.title .en {
  display: block;
  color: #B5547A;
  font-family: "Zen Maru Gothic", "YakuHanJP", "Hiragino Maru Gothic ProN", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 0.55em;
  font-weight: 500;
  letter-spacing: 0.45em;
  margin-bottom: 8px;
}
.title .ja {
  display: block;
}
.title .ja p {
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}
.title .ja .ul {
  padding: 0 4px;
  color: #8C3958;
}
.title--left {
  text-align: left;
}
.title--right {
  text-align: right;
}
.title--slim {
  margin: 0 auto 24px;
}
.title--m0 {
  margin-bottom: 0;
}
.title--m20 {
  margin-bottom: 20px;
}
.title--white .en {
  color: #F5D27A;
}
.title--white .ja {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 48px;
  background: #243A6D;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: none;
  min-height: 44px;
  box-shadow: 0 6px 0 0 #738CBA;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn i {
  font-size: 18px;
  line-height: 1;
}
.btn:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 0 #475886;
}
.btn:active {
  transform: translateY(4px);
  box-shadow: 0 0 0 0 #475886;
}
.btn--primary {
  background: #243A6D;
  color: #fff;
}
.btn--primary:hover {
  color: #fff;
}
.btn--outline {
  background: #fff;
  color: #243A6D;
  border: 2px solid #243A6D;
  box-shadow: 0 6px 0 0 #243A6D;
}
.btn--outline:hover {
  background: #243A6D;
  color: #fff;
}
.btn--accent {
  background: #B5547A;
  color: #fff;
}
.btn--accent:hover {
  color: #fff;
}
.btn--invert {
  background: #fff;
  color: #243A6D;
  box-shadow: 0 6px 0 0 #738CBA;
}
.btn--invert:hover {
  background: #FFFCF2;
  color: #243A6D;
}
.btn--lg {
  padding: 22px 56px;
  font-size: 1.6rem;
}
.btn--block {
  display: flex;
  width: 100%;
  justify-content: center;
}

.btn-wrap {
  text-align: center;
  margin-top: 30px;
}
.btn-wrap--left {
  text-align: left;
}
.btn-wrap--right {
  text-align: right;
}

.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease;
  padding: 10px;
}
.card__img {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 16px;
}
.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__body {
  padding: 20px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.card__text p.tag-row {
  text-align: center;
  margin-top: 12px;
}
.card__title {
  color: #243A6D;
}
.card__title--bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1.5px dashed #D7DEED;
}
.card__title-sub {
  margin-left: auto;
  font-size: 0.55em;
  color: #6F7388;
  font-weight: 700;
}
.card__text {
  color: #2C3142;
  line-height: 1.95;
}
.card--ratio-1x1 .card__img {
  aspect-ratio: 1/1;
}
.card--ratio-3x2 .card__img {
  aspect-ratio: 3/2;
}
.card--ratio-4x3 .card__img {
  aspect-ratio: 4/3;
}
.card--hover:hover {
  transform: translateY(-4px);
}
.card--center {
  text-align: center;
}
.card--bordered {
  border: 1.5px solid #D7DEED;
}
.card--bare {
  background: transparent;
  border-radius: 0;
  overflow: visible;
}
.card__head {
  color: #8C3958;
  font-weight: 700;
  font-size: 0.85em;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 0;
}
.card__name {
  color: #243A6D;
  text-align: center;
  font-weight: 900;
  font-size: 1.3em;
  letter-spacing: 0.04em;
  margin: 0;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list--disc li {
  position: relative;
  padding-left: 1.2em;
}
.list--disc li:not(:last-child) {
  margin-bottom: 6px;
}
.list--disc li::before {
  content: "●";
  color: #B5547A;
  font-size: 0.7em;
  position: absolute;
  left: 0;
  top: 0.35em;
}
.list--check li {
  position: relative;
  padding-left: 1.6em;
  line-height: 1.8;
}
.list--check li:not(:last-child) {
  margin-bottom: 8px;
}
.list--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 8px;
  border-left: 2px solid #B5547A;
  border-bottom: 2px solid #B5547A;
  transform: rotate(-45deg);
}
.list--note li {
  font-size: 0.85em;
  color: #6F7388;
  line-height: 1.85;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  background: #B5547A;
  letter-spacing: 0.04em;
}
.tag--navy {
  background: #243A6D;
}
.tag--plum {
  background: #B5547A;
}
.tag--plum-d {
  background: #8C3958;
}
.tag--gold {
  background: #E5B43B;
}
.tag--purple {
  background: #9B7FB8;
}
.tag--ribbon {
  padding: 7px 18px 9px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 8px 100%);
  transform: rotate(-2deg);
}

.accordion {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}
.accordion__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  min-height: 44px;
  transition: background 0.2s;
}
.accordion__head:hover {
  background: rgba(181, 84, 122, 0.05);
}
.accordion__mark {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #B5547A;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.accordion__text {
  flex: 1;
  font-weight: 900;
  color: #243A6D;
  line-height: 1.6;
}
.accordion__toggle {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #F5E2EC;
  color: #8C3958;
  display: grid;
  place-items: center;
  transition: transform 0.25s ease, background 0.2s;
}
.accordion__toggle i {
  font-size: 12px;
}
.accordion__body {
  display: none;
  gap: 16px;
  padding: 0 26px 24px;
  animation: accFade 0.25s ease;
}
.accordion.is-open .accordion__toggle {
  transform: rotate(180deg);
  background: #B5547A;
  color: #fff;
}
.accordion.is-open .accordion__body {
  display: flex;
}
.accordion__a-mark {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #243A6D;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.accordion__a-text {
  flex: 1;
  color: #2C3142;
  line-height: 1.95;
  padding-top: 6px;
}

@keyframes accFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.tabs {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.tabs__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.tabs__btn {
  padding: 18px;
  background: #243A6D;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  border: none;
  font-weight: 900;
  letter-spacing: 0.04em;
  min-height: 44px;
  transition: background 0.2s, color 0.2s;
}
.tabs__btn i {
  font-size: 16px;
}
.tabs__btn.is-active {
  background: #B5547A;
  color: #fff;
}
.tabs__panel {
  padding: 36px 40px;
  border: 1px solid #ddd;
  border-radius: 0 0 24px 24px;
}
@media (max-width: 980px) {
  .tabs__panel {
    padding: 24px 22px;
  }
}

.form__section {
  margin-bottom: 30px;
}
.form__section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: #243A6D;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid #ddd;
  letter-spacing: 0.05em;
}
.form__intro {
  text-align: center;
  color: #2C3142;
  line-height: 2;
  margin-bottom: 34px;
}
.form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
}
.form__grid--three {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .form__grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__field label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2C3142;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form__field input[type=date],
.form__field input[type=text],
.form__field input[type=tel],
.form__field input[type=email],
.form__field input[type=number],
.form__field select,
.form__field textarea {
  padding: 12px 14px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font-size: 1.6rem;
  color: #2C3142;
  font-family: inherit;
  min-height: 44px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form__field input[type=date]::placeholder,
.form__field input[type=text]::placeholder,
.form__field input[type=tel]::placeholder,
.form__field input[type=email]::placeholder,
.form__field input[type=number]::placeholder,
.form__field select::placeholder,
.form__field textarea::placeholder {
  color: #B0AC9D;
}
.form__field input[type=date]:focus,
.form__field input[type=text]:focus,
.form__field input[type=tel]:focus,
.form__field input[type=email]:focus,
.form__field input[type=number]:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-color: #B5547A;
  box-shadow: 0 0 0 3px rgba(181, 84, 122, 0.15);
}
.form__field textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.6;
}
.form__req {
  display: inline-block;
  padding: 2px 8px;
  background: #B5547A;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 4px;
  font-weight: 700;
}
.form__note {
  font-size: 1.2rem;
  color: #6F7388;
  line-height: 1.6;
  margin: 0;
}
.form__note--center {
  text-align: center;
}
.form__submit {
  text-align: center;
  margin-top: 30px;
}
.form__submit .btn {
  margin-bottom: 16px;
}
.form__error {
  font-size: 1.2rem;
  color: #8C3958;
  line-height: 1.6;
  margin: 0;
  font-weight: 700;
}
.form__field input.is-invalid, .form__field select.is-invalid, .form__field textarea.is-invalid {
  border-color: #8C3958;
  box-shadow: 0 0 0 3px rgba(140, 57, 88, 0.15);
}

.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
  color: rgba(0, 0, 0, 0.15) !important;
  background: transparent !important;
  cursor: not-allowed !important;
  text-decoration: line-through;
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected:hover {
  background: #B5547A !important;
  border-color: #B5547A !important;
  color: #fff !important;
}
.flatpickr-day.today {
  border-color: #B5547A;
}
.flatpickr-day:hover:not(.flatpickr-disabled):not(.selected) {
  background: rgba(181, 84, 122, 0.12);
  border-color: rgba(181, 84, 122, 0.3);
}
.flatpickr-day__choice {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}
.flatpickr-day__choice label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  cursor: pointer;
  min-height: 32px;
}
.flatpickr-day__choice input {
  accent-color: #B5547A;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.flatpickr-day__submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}
.flatpickr-day__submit-btn {
  padding: 18px 60px;
  background: #B5547A;
  color: #fff;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  box-shadow: 0 6px 0 0 #475886;
  border: none;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.flatpickr-day__submit-btn i {
  font-size: 14px;
}
.flatpickr-day__submit-btn:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 0 #475886;
}
.flatpickr-day__note {
  font-size: 1.2rem;
  color: #6F7388;
}

.map {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #E8F2DE;
  height: 100%;
  min-height: 480px;
  display: flex;
}
.map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
  flex: 1;
}
.map__card {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #fff;
  border-radius: 8px;
  padding: 14px 18px;
  max-width: 280px;
  font-size: 1.3rem;
  color: #2C3142;
  line-height: 1.55;
  z-index: 2;
}
.map__card strong {
  display: block;
  color: #243A6D;
  font-weight: 700;
  margin-bottom: 4px;
}
.map__card a {
  display: block;
  color: #1A73E8;
  font-size: 1.2rem;
  margin-top: 8px;
  font-weight: 500;
}
@media (max-width: 980px) {
  .map {
    min-height: 340px;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-grid {
  display: grid;
}

.d-none {
  display: none !important;
}

.flex {
  display: flex;
}
.flex.fd-row {
  flex-direction: row;
}
.flex.fd-col {
  flex-direction: column;
}

.ai-start {
  align-items: flex-start;
}

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

.ai-end {
  align-items: flex-end;
}

.ai-stretch {
  align-items: stretch;
}

.jc-start {
  justify-content: flex-start;
}

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

.jc-end {
  justify-content: flex-end;
}

.jc-between {
  justify-content: space-between;
}

.fw-wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid--cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid--cols-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gap-4 {
  gap: 4px;
  --gap: 4px;
}

.gap-8 {
  gap: 8px;
  --gap: 8px;
}

.gap-10 {
  gap: 10px;
  --gap: 10px;
}

.gap-12 {
  gap: 12px;
  --gap: 12px;
}

.gap-16 {
  gap: 16px;
  --gap: 16px;
}

.gap-20 {
  gap: 20px;
  --gap: 20px;
}

.gap-24 {
  gap: 24px;
  --gap: 24px;
}

.gap-32 {
  gap: 32px;
  --gap: 32px;
}

.gap-40 {
  gap: 40px;
  --gap: 40px;
}

.gap-50 {
  gap: 50px;
  --gap: 50px;
}

.gap-60 {
  gap: 60px;
  --gap: 60px;
}

.gap-80 {
  gap: 80px;
  --gap: 80px;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.ml-5 {
  margin-left: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.pt-5 {
  padding-top: 5px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pl-5 {
  padding-left: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.mt-8 {
  margin-top: 8px;
}

.mb-8 {
  margin-bottom: 8px;
}

.ml-8 {
  margin-left: 8px;
}

.mr-8 {
  margin-right: 8px;
}

.pt-8 {
  padding-top: 8px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pl-8 {
  padding-left: 8px;
}

.pr-8 {
  padding-right: 8px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.mt-12 {
  margin-top: 12px;
}

.mb-12 {
  margin-bottom: 12px;
}

.ml-12 {
  margin-left: 12px;
}

.mr-12 {
  margin-right: 12px;
}

.pt-12 {
  padding-top: 12px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pl-12 {
  padding-left: 12px;
}

.pr-12 {
  padding-right: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.ml-16 {
  margin-left: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.pt-16 {
  padding-top: 16px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pl-16 {
  padding-left: 16px;
}

.pr-16 {
  padding-right: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.ml-24 {
  margin-left: 24px;
}

.mr-24 {
  margin-right: 24px;
}

.pt-24 {
  padding-top: 24px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pl-24 {
  padding-left: 24px;
}

.pr-24 {
  padding-right: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.ml-32 {
  margin-left: 32px;
}

.mr-32 {
  margin-right: 32px;
}

.pt-32 {
  padding-top: 32px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pl-32 {
  padding-left: 32px;
}

.pr-32 {
  padding-right: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.ml-60 {
  margin-left: 60px;
}

.mr-60 {
  margin-right: 60px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pl-60 {
  padding-left: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-80 {
  margin-left: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pl-80 {
  padding-left: 80px;
}

.pr-80 {
  padding-right: 80px;
}

.b-m10 {
  margin-bottom: 10px;
}

.b-m20 {
  margin-bottom: 20px;
}

.b-m30 {
  margin-bottom: 30px;
}

.b-m40 {
  margin-bottom: 40px;
}

.b-m60 {
  margin-bottom: 60px;
}

.t-m20 {
  margin-top: 20px;
}

.t-m40 {
  margin-top: 40px;
}

.w-100pe {
  width: 100%;
}

.h-100pe {
  height: 100%;
}

.asp-1-1 {
  aspect-ratio: 1/1;
}

.asp-4-3 {
  aspect-ratio: 4/3;
}

.asp-3-2 {
  aspect-ratio: 3/2;
}

.asp-16-9 {
  aspect-ratio: 16/9;
}

.img-cover {
  object-fit: cover;
}

.img-contain {
  object-fit: contain;
}

.rounded-4 {
  border-radius: 4px;
}

.rounded-8 {
  border-radius: 8px;
}

.rounded-12 {
  border-radius: 12px;
}

.rounded-16 {
  border-radius: 16px;
}

.rounded-24 {
  border-radius: 24px;
}

.rounded-32 {
  border-radius: 32px;
}

.b-r8 {
  border-radius: 8px;
}

.b-r16 {
  border-radius: 16px;
}

.b-r24 {
  border-radius: 24px;
}

.b-r50pe {
  border-radius: 50%;
}

.text-center,
.tcenter,
.tcenter_pc {
  text-align: center;
}

.text-right,
.tright {
  text-align: right;
}

.text-left,
.tleft {
  text-align: left;
}

.bold {
  font-weight: 700;
}

.bold2 {
  font-weight: 900;
}

.underline {
  text-decoration: underline;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.line-h160 {
  line-height: 1.6;
}

.line-h180 {
  line-height: 1.8;
}

.line-h200 {
  line-height: 2;
}

.lead {
  font-size: 1.1em;
}

.smaller {
  font-size: 0.85em;
}

.color01 {
  color: #243A6D;
}

.color02 {
  color: #B5547A;
}

.color-w {
  color: #fff !important;
}

.color-m {
  color: #6F7388;
}

.en {
  font-family: "Caveat", "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.spbr {
  display: none;
}

.hidden {
  overflow: hidden;
}

.bg--w {
  background: #fff;
}

.bg--cream {
  background: #EFF2F8;
}

.bg--cream2 {
  background: #E8ECF4;
}

.bg--navy {
  background: #243A6D;
}

.bg--navy-d {
  background: #172547;
}

.bg--plum {
  background: #B5547A;
}

.bg--plum-d {
  background: #8C3958;
}

.bg--gray {
  background: #f5f5f5;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z--1 {
  z-index: -1;
}

.z-1 {
  z-index: 1;
}

.z-5 {
  z-index: 5;
}

.z-10 {
  z-index: 10;
}

.shadow {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.1);
}

.shadow-md {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.shadow-lg {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

[data-ani] {
  --a-duration: 1.2s;
  --a-delay: 0s;
  --a-distance: 24px;
  --a-ease: cubic-bezier(.2, .7, .2, 1);
  --a-blur: 0px;
  transition: opacity var(--a-duration) var(--a-ease) var(--a-delay), transform var(--a-duration) var(--a-ease) var(--a-delay), filter var(--a-duration) var(--a-ease) var(--a-delay);
  will-change: opacity, transform, filter;
}

[data-ani*=fade]:not(.is-visible) {
  opacity: 0;
}

[data-ani*=up]:not(.is-visible) {
  transform: translate3d(0, var(--a-distance), 0);
}

[data-ani*=down]:not(.is-visible) {
  transform: translate3d(0, calc(var(--a-distance) * -1), 0);
}

[data-ani*=left]:not(.is-visible) {
  transform: translate3d(var(--a-distance), 0, 0);
}

[data-ani*=right]:not(.is-visible) {
  transform: translate3d(calc(var(--a-distance) * -1), 0, 0);
}

[data-ani*=zoom-in]:not(.is-visible) {
  transform: scale(0.94);
}

[data-ani*=blur]:not(.is-visible) {
  filter: blur(var(--a-blur, 8px));
}

@media (prefers-reduced-motion: reduce) {
  [data-ani] {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
.fv-hero {
  position: relative;
  width: 100%;
  height: 720px;
}
@media (max-width: 980px) {
  .fv-hero {
    height: 620px;
  }
}
@media (max-width: 768px) {
  .fv-hero {
    height: 520px;
  }
}
@media (max-width: 520px) {
  .fv-hero {
    height: 420px;
  }
}

.fv-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 80px;
  border: 5px solid #243A6D;
  padding: 10px;
}
@media (max-width: 768px) {
  .fv-bg-img {
    border-radius: 32px;
    border-width: 3px;
    padding: 6px;
  }
}
@media (max-width: 520px) {
  .fv-bg-img {
    object-position: 45% 0%;
  }
}

.fv-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6vw;
  pointer-events: none;
}
.fv-overlay > * {
  pointer-events: auto;
}
@media (max-width: 520px) {
  .fv-overlay {
    padding: 0 3vw;
  }
}

.catch {
  position: relative;
  max-width: 100%;
  background: url("../img/frame.png") no-repeat center/contain;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px;
  text-align: center;
  margin-left: -210px;
  margin-top: -80px;
  width: fit-content;
}
.catch__inner {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .catch {
    margin-left: -110px;
  }
  .catch .lead {
    font-size: 1em;
  }
  .catch .btn {
    padding: 12px 24px;
  }
}
@media (max-width: 520px) {
  .catch {
    padding: 60px 80px;
    margin-left: -85px;
  }
  .catch .lead {
    margin-top: 10px !important;
    font-size: 1rem;
  }
  .catch .btn-wrap {
    margin-top: 10px !important;
  }
  .catch .btn {
    font-size: 1.2rem;
  }
}

.catch h1 {
  letter-spacing: 0.04em;
  color: #243A6D;
  line-height: 1.4;
}
.catch h1 .l1 {
  display: block;
  font-size: 0.6em;
  font-weight: 700;
  margin-bottom: 6px;
  padding-left: 22px;
}
.catch h1 .l2 {
  display: block;
  margin: 6px 0;
  white-space: nowrap;
  color: #8C3958;
}
.catch h1 .l2 .mini {
  font-size: 0.7em;
}
.catch h1 .l2 .ul {
  padding: 0 6px;
  color: #8C3958;
}
.catch h1 .l3 {
  display: block;
  padding-left: 22px;
}
@media (max-width: 768px) {
  .catch h1 .l1,
  .catch h1 .l3 {
    padding-left: 0;
  }
  .catch h1 .l2 {
    white-space: normal;
  }
}
@media (max-width: 520px) {
  .catch h1 {
    font-size: 2rem;
  }
  .catch h1 .l3 {
    font-size: 1.6rem;
  }
}

.bb-deco,
.bb-deco-2 {
  position: absolute;
  pointer-events: none;
  z-index: 7;
}

.bb-deco {
  right: 40px;
  bottom: 60px;
  width: 80px;
  height: 80px;
  background: url("../img/illust-blueberry06.png") no-repeat center/contain;
}
@media (max-width: 768px) {
  .bb-deco {
    width: 60px;
    height: 60px;
    bottom: 80px;
  }
}
@media (max-width: 520px) {
  .bb-deco {
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 40px;
  }
}

.bb-deco-2 {
  right: 80px;
  top: 50px;
  width: 130px;
  height: 130px;
  background: url("../img/illust-blueberry03.png") no-repeat center/contain;
  transform: rotate(-15deg);
}
@media (max-width: 768px) {
  .bb-deco-2 {
    width: 80px;
    height: 80px;
    top: 80px;
  }
}
@media (max-width: 520px) {
  .bb-deco-2 {
    width: 50px;
    height: 50px;
    right: 20px;
  }
}

.fv-points {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: -120px;
  padding: 60px 80px 80px;
  text-align: center;
  position: relative;
  background: #fefefe;
  border-radius: 100%;
  list-style: none;
}
.fv-points > li img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-inline: auto;
  margin-bottom: 10px;
}
.fv-points > li .ttl {
  color: #243A6D;
  font-size: 1.1em;
  font-weight: 700;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .fv-points {
    padding: 60px 20px 40px;
  }
  .fv-points > li img {
    width: 90px;
    height: 90px;
  }
  .fv-points > li .ttl {
    font-size: 1em;
  }
  .fv-points > li p {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
@media (max-width: 520px) {
  .fv-points {
    gap: 12px;
  }
  .fv-points > li img {
    width: 65px;
    height: 65px;
  }
  .fv-points > li .ttl {
    font-size: 1.4rem;
  }
  .fv-points > li p {
    font-size: 1.2rem;
  }
}

.deco-illust {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.deco-illust--berry1 {
  background-image: url("../img/illust-blueberry01.png");
}
.deco-illust--berry2 {
  background-image: url("../img/illust-blueberry02.png");
}
.deco-illust--berry3 {
  background-image: url("../img/illust-blueberry03.png");
}
.deco-illust--berry4 {
  background-image: url("../img/illust-blueberry04.png");
}
.deco-illust--berry5 {
  background-image: url("../img/illust-blueberry05.png");
}
.deco-illust--berry6 {
  background-image: url("../img/illust-blueberry06.png");
}
.deco-illust--berry7 {
  background-image: url("../img/illust-blueberry07.png");
}
.deco-illust--sm {
  width: 120px;
}
.deco-illust--md {
  width: 160px;
}
.deco-illust--lg {
  width: 180px;
}
.deco-illust--xl {
  width: 220px;
}
.deco-illust--tl {
  top: 100px;
  left: 20px;
}
.deco-illust--tr {
  top: 100px;
  right: 20px;
}
.deco-illust--tl-mid {
  top: 150px;
  left: 10px;
}
.deco-illust--tr-mid {
  top: 150px;
  right: 10px;
}
.deco-illust--bl {
  bottom: 30px;
  left: 30px;
}
.deco-illust--br {
  bottom: 30px;
  right: 30px;
}
.deco-illust--rot-l {
  transform: rotate(-10deg);
}
.deco-illust--rot-l-md {
  transform: rotate(-15deg);
}
.deco-illust--rot-l-lg {
  transform: rotate(-20deg);
}
.deco-illust--rot-r {
  transform: rotate(10deg);
}
.deco-illust--rot-r-md {
  transform: rotate(15deg);
}
@media (max-width: 980px) {
  .deco-illust--sm {
    width: 80px;
  }
  .deco-illust--md {
    width: 100px;
  }
  .deco-illust--lg {
    width: 120px;
  }
  .deco-illust--xl {
    width: 140px;
  }
}
@media (max-width: 768px) {
  .deco-illust {
    width: 80px;
  }
  .deco-illust--tl, .deco-illust--tl-mid {
    top: 10px;
    left: 8px;
  }
  .deco-illust--tr, .deco-illust--tr-mid {
    top: 10px;
    right: 8px;
  }
}
@media (max-width: 520px) {
  .deco-illust--sm {
    width: 40px;
  }
  .deco-illust--md {
    width: 60px;
  }
  .deco-illust--lg {
    width: 80px;
  }
  .deco-illust--xl {
    width: 100px;
  }
}

.deco-band {
  position: relative;
}
.deco-band::before, .deco-band::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: url("../img/illust-blueberry08.png") no-repeat center/contain;
  opacity: 0.3;
  filter: invert(1);
  pointer-events: none;
}
.deco-band::before {
  top: 0;
  left: 0;
  z-index: 1;
}
.deco-band::after {
  bottom: 0;
  right: 0;
  transform: scale(-1, 1);
}
@media (max-width: 768px) {
  .deco-band::before, .deco-band::after {
    width: 120px;
    height: 120px;
  }
}

.badge-circle {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: url("../img/badge.png") no-repeat center/contain;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: "Zen Maru Gothic", "YakuHanJP", "Hiragino Maru Gothic ProN", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  transform: rotate(-6deg);
}
.badge-circle .big {
  font-size: 5rem;
  font-weight: 900;
  color: #243A6D;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  padding-bottom: 1em;
}
.badge-circle .big .u {
  font-size: 1.6rem;
  margin-left: 2px;
}

.num-big {
  font-family: "Zen Maru Gothic", "YakuHanJP", "Hiragino Maru Gothic ProN", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #243A6D;
  font-weight: 700;
  line-height: 1.6;
}
.num-big .n {
  font-size: 5.6rem;
  font-weight: 900;
  color: #B5547A;
  line-height: 0.9;
}
.num-big .u {
  font-weight: 900;
  color: #B5547A;
}

.harvest-title {
  text-align: center;
  margin-bottom: 32px;
}
.harvest-title h3 {
  display: inline-block;
  color: #243A6D;
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .harvest-title {
    margin-bottom: 24px;
  }
  .harvest-title h3 {
    font-size: 2.4rem;
  }
}

.var-note {
  margin-top: 48px;
  padding: 28px 32px;
  background: #E8ECF4;
  border-radius: 12px;
  color: #243A6D;
  text-align: center;
  line-height: 2;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .var-note {
    margin-top: 32px;
    padding: 20px 18px;
    font-size: 1.4rem;
    line-height: 1.9;
  }
}

.harvest {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
  border: 1.5px solid #D7DEED;
}
.harvest > div {
  padding: 8px 4px;
  text-align: center;
  font-weight: 600;
  border-radius: 5px;
  color: #2C3142;
}
.harvest .h-on {
  background: #243A6D;
  color: #fff;
  font-weight: 900;
}
@media (max-width: 980px) {
  .harvest {
    grid-template-columns: repeat(6, 1fr);
  }
}

.fc-num {
  position: absolute;
  top: 0;
  left: 60px;
  z-index: 10;
  font-family: "Zen Maru Gothic", "YakuHanJP", "Hiragino Maru Gothic ProN", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 4.4rem;
  font-weight: 900;
  background: #243A6D;
  color: #fff;
  border-radius: 50%;
  line-height: 1;
  width: 1.5em;
  height: 1.5em;
  display: grid;
  place-items: center;
}
.type2 .fc-num {
  background: #8C3958;
}
@media (max-width: 768px) {
  .fc-num {
    font-size: 3.6rem;
    left: 20px;
  }
}

.fc-img-circle {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  border: 3px dashed #738CBA;
  padding: 8px;
}
.fc-img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 980px) {
  .fc-img-circle {
    width: 220px;
    height: 220px;
  }
}
@media (max-width: 520px) {
  .fc-img-circle {
    width: 180px;
    height: 180px;
  }
}

.menu-item-name {
  display: inline-block;
  font-weight: 900;
  color: #243A6D;
  padding-bottom: 0.5em;
  border-bottom: 3px dashed #D7DEED;
}

.step-num {
  display: inline-block;
  font-family: "Zen Maru Gothic", "YakuHanJP", "Hiragino Maru Gothic ProN", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
  padding: 0 16px;
  color: #243A6D;
}
.s2 .step-num, .s4 .step-num {
  color: #B5547A;
}

.step-circle {
  position: relative;
  aspect-ratio: 1/1;
  margin: 0 auto 18px;
}
.step-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff;
  box-sizing: border-box;
}

.step-badge {
  position: absolute;
  left: 8px;
  bottom: 8px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 3px solid #fff;
  z-index: 2;
}
.step-badge i {
  font-size: 24px;
  color: #fff;
}
.s1 .step-badge {
  background: #3A6FB8;
}
.s2 .step-badge {
  background: #8C3958;
}
.s3 .step-badge {
  background: #9B7FB8;
}
.s4 .step-badge {
  background: #E5B43B;
}

.price-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid #F0EBDC;
  gap: 16px;
}
.price-row:last-of-type {
  border-bottom: none;
}
.price-row .ppl {
  width: 100px;
  height: 80px;
  background: #EFF2F8;
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.price-row .ppl img {
  width: auto;
  height: 75%;
  max-width: 80%;
  object-fit: contain;
  margin: 0 auto;
}
.price-row .label {
  font-weight: 700;
  color: #2C3142;
}
.price-row .amount {
  font-weight: 900;
  color: #243A6D;
  line-height: 1;
  font-size: 1.6em;
}
.price-row .amount .t {
  font-size: 0.55em;
  color: #6F7388;
  font-weight: 700;
  margin-left: 6px;
}
.price-row .amount.free {
  color: #243A6D;
}
@media (max-width: 768px) {
  .price-row {
    grid-template-columns: 60px 1fr auto;
    gap: 8px;
  }
  .price-row .ppl {
    width: 60px;
    height: 50px;
  }
  .price-row .label {
    font-size: 0.8em;
  }
  .price-row .amount {
    font-size: 1.3em;
  }
}

.ops-row {
  display: grid;
  grid-template-columns: 50px 110px 1fr;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #F0EBDC;
  gap: 8px;
}
.ops-row:last-of-type {
  border-bottom: none;
}
.ops-row .ops-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F5E2EC;
  display: grid;
  place-items: center;
}
.ops-row .ops-icon i {
  font-size: 16px;
  color: #8C3958;
}
.ops-row .ops-label {
  font-weight: 900;
  color: #243A6D;
}
.ops-row .ops-value {
  color: #2C3142;
  line-height: 1.5;
}

.cal-embed {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E5E2D5;
}
.cal-embed iframe {
  width: 100%;
  height: 600px;
  border: 0;
  display: block;
}
@media (max-width: 980px) {
  .cal-embed iframe {
    height: 520px;
  }
}
@media (max-width: 768px) {
  .cal-embed iframe {
    height: 480px;
  }
}

.loc-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  list-style: none;
  padding: 0;
}
.loc-grid__main {
  grid-row: 1/span 2;
}
@media (min-width: 769px) {
  .access-layout .access-map-col {
    flex: 1.4;
  }
  .access-layout .access-info-col {
    flex: 1;
  }
}

.access-info {
  background: #fff;
  border-radius: 18px;
  padding: 30px 32px 26px;
  border: 1.5px solid #D7DEED;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.access-name {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #243A6D;
  padding-bottom: 18px;
  border-bottom: 1.5px solid #E8DEC6;
}
.access-name i {
  font-size: 24px;
  color: #243A6D;
}

.access-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #2C3142;
  line-height: 1.7;
}
.access-row i {
  font-size: 18px;
  color: #8C3958;
  margin-top: 4px;
}
.access-row__h {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: #243A6D;
}
.access-row__h i {
  font-size: 20px;
}
.access-row__t {
  color: #2C3142;
  line-height: 1.85;
  padding-left: 36px;
}

.access-divider {
  height: 1px;
  border-top: 1px dashed #F5E2EC;
}

.access-parking {
  margin-top: auto;
  padding: 14px 18px;
  background: #F5E2EC;
  border-radius: 5px;
  color: #8C3958;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.access-parking i {
  font-size: 18px;
  color: #8C3958;
}

.thanks-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #F5E2EC;
  color: #8C3958;
  margin: 0 auto 24px;
}
.thanks-icon i {
  font-size: 44px;
  line-height: 1;
}

.tel-card {
  border-radius: 18px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  border: 1.5px solid #243A6D;
  max-width: 600px;
  margin-inline: auto;
}
.tel-card .tel-num {
  font-weight: 900;
  color: #243A6D;
  line-height: 1;
  font-size: 3.4rem;
}
.tel-card .tel-num a {
  color: inherit;
}
.tel-card .tel-hr {
  display: inline-block;
  color: #243A6D;
  font-weight: 700;
  background: #D7DEED;
  padding: 5px 18px;
  border-radius: 50px;
  font-size: 1.3rem;
}

.instagram-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.instagram-gallery li {
  width: calc((100% - 60px) / 4);
}
@media (max-width: 520px) {
  .instagram-gallery {
    gap: 10px;
    margin-bottom: 20px;
  }
  .instagram-gallery li {
    width: calc((100% - 10px) / 2);
  }
}

.concept-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.concept-gallery li {
  width: calc((100% - 40px) / 3);
}
@media (max-width: 520px) {
  .concept-gallery {
    gap: 10px;
  }
  .concept-gallery li {
    width: calc((100% - 20px) / 3);
  }
}

.variety-text strong {
  font-size: 1.2em;
  color: #243A6D;
}
.variety-text .num-big {
  color: #B5547A;
  font-size: 3em;
}
.variety-text .color {
  color: #B5547A;
}

@media (max-width: 1100px) {
  .nav {
    gap: 18px;
  }
  .header-inner {
    padding: 18px 24px;
  }
}
@media (max-width: 980px) {
  .header-inner {
    padding: 14px 20px;
  }
  .nav {
    display: none;
  }
  .menu-btn {
    display: inline-flex;
  }
  .brand .brand-logo {
    height: 44px;
    width: auto;
  }
  .header-cta {
    padding: 10px 18px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 50px 20px 26px;
    margin-top: 40px;
  }
  .fnav {
    gap: 0 16px;
    padding-top: 16px;
  }
  .spbr {
    display: block;
  }
}
@media (max-width: 520px) {
  .footer {
    padding: 20px 20px 26px;
  }
  .fnav {
    display: none;
  }
  .cp {
    font-size: 1rem;
  }
  .btn-wrap {
    margin-top: 20px;
    font-size: 1.3rem;
  }
  .btn-wrap .btn {
    padding: 16px 24px;
  }
  .map iframe {
    min-height: 200px;
  }
  .tcenter_pc {
    text-align: left;
  }
  .spbr {
    display: block;
  }
  .b-r24 {
    border-radius: 16px;
  }
  .mb-80 {
    margin-bottom: 60px;
  }
  .pcbr {
    display: none;
  }
  body,
  p {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .title {
    margin: 0 auto 25px;
  }
  h1 {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2.2rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.7rem;
  }
  h5 {
    font-size: 1.5rem;
  }
  .header-inner {
    padding: 12px 16px;
    gap: 12px;
  }
  .brand .brand-logo {
    height: 36px;
  }
  .header-cta {
    padding: 8px 14px;
    font-size: 1.3rem;
  }
}
@media print {
  a {
    text-decoration: underline;
  }
  .btn,
  .header-cta,
  .footer {
    background: transparent;
    box-shadow: none;
  }
}