@charset "UTF-8";
/* =========================
   min-width
========================= */
/* =========================
   max-width
========================= */
:root {
  /* Brand */
  --c-primary: #870E3C;
  --c-on-primary: #fff;
  --c-primary--light: #008573;
  --c-primary-dark: #004A40;
  --c-primary-muted: #7BB9B1;
  /* ===== Gradient ===== */
  --c-gradient-primary: linear-gradient(
    90deg,
    #008573 0%,
    #004A40 100%
  );
  --c-secondary: #004A40;
  --c-on-secondary: #fff;
  --c-accent: #B19962;
  --c-on-accent: #fff;
  --c-accent-muted: #FFEA95;
  --c-line: #06C755;
  --c-on-line: #fff;
  /* Text */
  --c-text-main: #333;
  /* Background */
  --c-bg-main: #F7F3E9;
  --c-bg-inverted: #EDF8F6;
  /* Border */
  --c-border: #D5D5D5;
  --c-border-secondary: #CCC;
  --c-surface: #F5F5F5;
  --c-action: #ff0000;
  --c-action-hover: #ff0000;
}

:root {
  --fs-base: clamp(1.125rem, 1vw + 0.5rem, 1.125rem);
  --fs-h1: clamp(1.8rem, 3vw, 2.6rem);
  --fs-h2: clamp(1.5rem, 2.5vw, 2rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.8rem);
  --fs-h4: clamp(1.15rem, 2vw, 1.25rem);
  --lh-base: 1.7;
  --fs-ja: "Zen Maru Gothic", sans-serif;
  --fs-ja2: "Zen Kaku Gothic New", sans-serif;
  --fs-en: "Josefin Sans", sans-serif;
}

body {
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  -webkit-text-size-adjust: 100%;
}

h1 {
  font-size: var(--fs-h1);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
}

:root {
  --space-1: clamp(0.5rem, 1vw, 0.75rem);
  --space-2: clamp(0.75rem, 1.5vw, 1.25rem);
  --space-3: clamp(1rem, 2vw, 1.75rem);
  --space-4: clamp(1.5rem, 3vw, 2.5rem);
  --space-5: clamp(2rem, 4vw, 3.5rem);
  --space-6: clamp(2.5rem, 5vw, 4.5rem);
  --space-7: clamp(3rem, 6vw, 5.5rem);
  --space-8: clamp(3.5rem, 7vw, 6.5rem);
  --space-9: clamp(4rem, 8vw, 7.5rem);
  --space-media-text: clamp(60px, 8vw, 80px);
  --space-column-sm: clamp(20px, 8vw, 30px);
  --space-column-md: clamp(40px, 8vw, 60px);
  --space-section: clamp(90px, 8vw, 120px);
}

:root {
  --radius-sm: clamp(8px, 1vw, 10px);
  --radius-md: clamp(10px, 2vw, 20px);
  --radius-lg: clamp(16px, 3vw, 32px);
}

/* contain */
/* ===============================
   HEADER
=============================== */
.l-page-main {
  overflow-x: hidden;
}

/* =================================
   XL (Large PC)
================================= */
.l-header {
  padding-block: var(--space-2) 0;
  padding-inline: 2%;
  z-index: 10;
  width: 100%;
  position: relative;
}

/* =================================
   TB
================================= */
/* =================================
   SP
================================= */
.l-header__inner {
  width: min(100%, 79rem);
  margin-inline: auto;
  padding-inline: clamp(1rem, 2vw, 1.9rem);
  box-sizing: border-box;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2em;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "logo utility" "logo nav";
}

.c-header-brand {
  grid-area: logo;
}

.c-header-utility {
  grid-area: utility;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.c-global-nav {
  grid-area: nav;
  display: flex;
  justify-content: flex-end;
}

.l-header__menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-2);
}

.l-header .c-header-brand {
  padding: 0;
  margin-right: auto;
  flex-shrink: 0;
}

.contact-page .l-header .c-header-brand {
  margin-inline: auto;
}

.contact-page .l-header__inner {
  display: flex;
  justify-content: center;
}

.contact-page .l-section {
  padding-block: 0;
}

.l-header .c-header-brand img {
  height: 140px;
  width: auto;
}

.c-header-utility {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.7em;
}

.c-header-utility__info {
  display: block;
}

.c-header-utility__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.c-header-utility__item .c-button {
  margin-block-start: 0;
}

.c-header-utility__tel {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.c-header-utility__tel time {
  display: block;
  width: 100%;
  font-size: 0.88em;
  font-weight: 700;
  color: var(--c-primary);
  padding-left: 2.1rem;
}

.c-header-utility__tel a {
  color: var(--c-primary);
  font-family: var(--fs-en);
  font-size: 2em;
  font-weight: 700;
  letter-spacing: normal;
}

.c-header-utility__tel a.c-icon-before::before {
  background-color: var(--c-primary);
  width: 1.4rem;
  height: 1.4rem;
  position: relative;
  top: -0.1em;
}

.c-header-utility__actions {
  display: flex;
  gap: 1em;
}

/* =================================
   LG (Small PC)
================================= */
@media (max-width: calc(87.5rem - 0.01rem)) {
  .l-header {
    padding-inline: 2%;
  }
  .l-header__inner {
    gap: 1.9em;
  }
  .l-header .c-header-brand img {
    height: 38px;
  }
  .c-header-utility {
    gap: 1em;
  }
}
/* =================================
   TB (Tablet)
================================= */
@media (max-width: calc(64rem - 0.01rem)) {
  .l-header {
    height: 140px;
    padding-inline: 0;
  }
  .l-header__menu {
    display: flex;
  }
  .c-header-brand__logo {
    padding: 2vw;
  }
  .l-header .c-header-brand img {
    height: 140px;
  }
  .c-header-utility__info,
  .c-header-utility__actions {
    display: none;
  }
}
/* =================================
   SP (Mobile)
================================= */
@media (max-width: calc(48rem - 0.01rem)) {
  .l-header {
    height: clamp(22vw, 8vw, 100px);
  }
  .l-header__inner {
    display: block;
    padding: 0;
  }
  .l-header__menu {
    display: none;
  }
  .l-header .c-header-brand img {
    height: 22vw;
  }
  .c-header-utility__actions .c-button--s {
    width: 12.27vw;
    height: 12.27vw;
    font-size: 0;
    border-radius: var(--radius-sm);
    gap: 0;
  }
  .l-header .c-button.c-icon-mail.c-icon-before::before {
    width: 5.33vw;
    height: 5.33vw;
    margin-inline: 3.47vw;
  }
}
/* ===============================
   hover
=============================== */
@media (hover: hover) {
  .l-header .c-header-brand a:hover {
    opacity: 0.8;
  }
}
/* ===============================
   GLOBAL NAV
=============================== */
/* =================================
   XL
================================= */
.c-global-nav {
  display: block;
}

.c-global-nav__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-weight: 800;
  gap: 2.5em;
}

/* =================================
   LG
================================= */
@media (max-width: calc(87.5rem - 0.01rem)) {
  .c-global-nav {
    display: block;
  }
}
/* =================================
   TB
================================= */
@media (max-width: calc(64rem - 0.01rem)) {
  .c-global-nav {
    display: none;
  }
}
/* =================================
   SP
================================= */
@media (max-width: calc(48rem - 0.01rem)) {
  .c-global-nav {
    display: none;
  }
}
/* ===============================
   hover
=============================== */
@media (hover: hover) {
  .c-global-nav__list a:hover {
    color: var(--c-primary);
  }
}
/* ===============================
   SECTION / CONTAINER
=============================== */
/* XL */
.l-section {
  padding-block: var(--space-4);
}

.l-section--inverted {
  background: #f5f5f5;
}

.l-container {
  width: min(100%, 79rem);
  margin-inline: auto;
  padding-inline: clamp(1rem, 2vw, 1.9rem);
  box-sizing: border-box;
}

.l-entry-content p {
  margin-block-start: 1.8em;
}

/* ===============================
   MEDIA TEXT
=============================== */
/* =================================
   XL
================================= */
.c-media-text {
  display: grid;
  gap: var(--space-column-md);
  grid-template-columns: 1fr 1fr;
  align-items: flex-end;
}

.c-media-text__content {
  order: 2;
  width: 100%;
}

.c-media-text__media {
  order: 1;
  width: 100%;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.c-media-text__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-media-text__media *:first-child,
.c-media-text__content *:first-child {
  margin-block-start: 0;
}

.c-media-text.is-style-inverted-background {
  background-color: var(--c-bg-inverted);
}

.c-media-text + .c-media-text {
  margin-block-start: 80px;
}

.c-media-text--img-sm {
  grid-template-columns: 37.5% 1fr;
}

.c-media-text--img-md {
  grid-template-columns: 35% 1fr;
}

.c-media-text.alignfull {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.c-media-text.alignfull .c-media-text__media {
  border-radius: 0;
  width: calc(100% - 30px);
}

.c-media-text.alignfull .c-media-text__content {
  width: calc(100% + 30px);
  margin-inline-start: -30px;
}

/* ===============================
   MEDIA TEXT reverse
=============================== */
.c-media-text--reverse .c-media-text__content {
  order: 1;
}

.c-media-text--reverse .c-media-text__media {
  order: 2;
}

/* ===============================
   MEDIA TEXT overlap
=============================== */
.c-media-text--overlap {
  position: relative;
  align-items: flex-end;
}

.c-media-text--overlap .c-media-text__media {
  margin-inline-end: calc(var(--space-column-md) * -1);
  width: calc(100% + var(--space-column-md));
}

.c-media-text--overlap .c-media-text__content {
  position: relative;
  z-index: 2;
  margin-inline-start: calc(var(--space-column-md) * -1);
  border-radius: var(--radius-sm);
  border-bottom-left-radius: 0;
  background-color: var(--c-bg-main);
  width: calc(100% + var(--space-column-md));
  padding: var(--space-column-md) 0 var(--space-column-md) var(--space-column-md);
}

/* ===============================
   MEDIA COVER
=============================== */
.c-media-cover {
  position: relative;
  overflow: hidden;
}

.c-media-cover__media {
  position: absolute;
  inset: 0;
}

.c-media-cover__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.c-media-cover__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(4rem, 10vw, 8rem);
  padding-inline: clamp(1.5rem, 5vw, 4rem);
}

.c-media-cover--overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

/* =================================
   TB
================================= */
@media (max-width: calc(64rem - 0.01rem)) {
  .c-media-text {
    gap: var(--space-column-sm);
  }
}
/* =================================
   SP
================================= */
@media (max-width: calc(48rem - 0.01rem)) {
  .c-media-text {
    grid-template-columns: 1fr;
  }
  .c-media-text__content {
    order: 2;
  }
  .c-media-text__media {
    order: 1;
  }
  .c-media-text + .c-media-text {
    margin-block-start: 16vw;
  }
}
/* ===============================
   SECTION CONTAINER
=============================== */
/* =================================
   XL
================================= */
.l-section .l-container {
  padding-block: 80px;
  padding-inline: clamp(1rem, 2vw, 1.9rem);
}

/* =================================
   LG
================================= */
@media (max-width: calc(87.5rem - 0.01rem)) {
  .l-section .l-container {
    padding-block: 80px;
    padding-inline: clamp(1rem, 2vw, 1.9rem);
  }
}
/* =================================
   TB
================================= */
@media (max-width: calc(64rem - 0.01rem)) {
  .l-section .l-container {
    padding-block: 80px;
    padding-inline: clamp(1rem, 2vw, 1.9rem);
  }
}
/* =================================
   SP
================================= */
@media (max-width: calc(48rem - 0.01rem)) {
  .l-section .l-container {
    padding-block: var(--space-6);
  }
}
/* ===============================
   SECTION BACKGROUND
=============================== */
.l-section.is-style-inverted-background {
  background: var(--c-gradient-primary);
}

.l-section.is-style-inverted-background > *,
.l-section.is-style-inverted-background .c-section-title,
.l-section.is-style-inverted-background .c-section-title02,
.l-section.is-style-inverted-background .c-section-title03,
.l-section.is-style-inverted-background .c-section-title04,
.l-section.is-style-inverted-background .c-section-title05 {
  color: var(--c-on-primary);
}

.l-section.is-style-inverted-nuted-background {
  background: var(--c-bg-inverted);
}

/* ===============================
   SECTION TITLE 01
=============================== */
/* XL */
.c-section-title {
  text-align: center;
  color: var(--c-primary);
  font-size: clamp(24px, 5vw, 40px);
  font-weight: 700;
  margin-block-end: clamp(40px, 5vw, 60px);
  text-box-trim: trim-both;
}

.c-section-title strong {
  font-size: clamp(38px, 6vw, 60px);
  font-weight: 700;
}

.c-section-title::after {
  content: attr(data-subtitle);
  display: block;
  font-size: clamp(15px, 3vw, 22px);
  text-transform: uppercase;
  color: var(--c-accent);
  letter-spacing: normal;
  text-box-trim: trim-both;
  font-family: var(--fs-en);
  margin-block-start: 0.4em;
}

/* ===============================
   FOOTER CTA LEAD
=============================== */
/* =================================
   XL
================================= */
.c-lead__cta {
  text-align: center;
  background: var(--c-gradient-primary);
  color: var(--c-on-primary);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.8;
  padding-block: var(--space-media-text);
  padding-inline: 0;
}

/* =================================
   TB
================================= */
@media (max-width: calc(64rem - 0.01rem)) {
  .c-lead__cta {
    font-size: 1.025em;
    padding-inline: 5.2vw;
  }
}
/* ===============================
   FOOTER MAIN
=============================== */
/* =================================
   XL
================================= */
.l-footer__inner {
  background-color: var(--c-primary);
  color: var(--c-on-primary);
}

.l-footer__main {
  display: flex;
  flex-direction: column;
  width: min(100%, 79rem);
  margin-inline: auto;
  padding-inline: clamp(1rem, 2vw, 1.9rem);
  box-sizing: border-box;
  padding-block: clamp(60px, 8vw, 80px) 0;
}

/* =================================
   TB
================================= */
@media (max-width: calc(64rem - 0.01rem)) {
  .l-footer__main {
    justify-content: center;
    padding-block: 10.67vw;
  }
}
/* ===============================
   FOOTER BRAND
=============================== */
/* =================================
   XL
================================= */
.c-footer-brand__logo {
  text-align: center;
}

.c-footer-brand__logo img {
  width: 90px;
  height: auto;
  margin-inline: auto;
  filter: brightness(0) invert(1);
}

/* =================================
   TB
================================= */
@media (max-width: calc(64rem - 0.01rem)) {
  .c-footer-brand__logo img {
    width: 30vw;
    height: auto;
    margin-inline: auto;
  }
}
/* ===============================
   FOOTER NAV
=============================== */
/* =================================
   XL
================================= */
.c-footer-nav {
  display: block;
}

.c-footer-nav__list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  gap: 1.5rem 4rem;
  font-size: 1em;
  width: fit-content;
  margin: 4em auto;
}

.c-footer-nav__item {
  display: flex;
  align-items: center;
}

.c-footer-nav__item::before {
  content: "";
  background: url(../img/chevron.svg) no-repeat left center/auto 0.6em;
  width: 1em;
  height: 1em;
  display: block;
}

.c-footer-nav__item a {
  color: var(--c-on-primary);
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
@media (hover: hover) and (pointer: fine) {
  .c-footer-nav__item a:hover {
    text-decoration-color: currentColor;
  }
}

.c-footer-nav__item:nth-child(-n+4) {
  grid-column: 1;
}

.c-footer-nav__item:nth-child(n+5) {
  grid-column: 2;
}

/* =================================
   TB
================================= */
@media (max-width: calc(64rem - 0.01rem)) {
  .c-footer-nav {
    display: none;
  }
}
/* ===============================
   PAGE TOP
=============================== */
/* =================================
   XL
================================= */
.c-page-top {
  position: fixed;
  right: 0;
  bottom: 0;
  transform: translateY(100%);
  transition: 0.5s;
  display: none;
}

.is-scrolled .c-page-top {
  transform: translateY(0%);
}

.c-page-top__link {
  display: block;
  background-color: var(--c-primary);
  width: 80px;
  height: 80px;
}

.c-page-top__link::before {
  content: "";
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--c-on-primary);
  transform: rotate(-90deg);
}

/* =================================
   SP
================================= */
@media (max-width: calc(48rem - 0.01rem)) {
  .c-page-top__link {
    width: 100%;
    height: 13.33vw;
  }
}
/* ===============================
   FOOTER SUB
=============================== */
/* =================================
   XL
================================= */
.l-footer__sub {
  background-color: var(--c-primary);
  color: var(--c-on-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: var(--space-6);
  font-size: clamp(12px, 1.5vw, 14px);
}

/* =================================
   SP
================================= */
@media (max-width: calc(48rem - 0.01rem)) {
  .l-footer__sub {
    height: auto;
    padding-block: 10.67vw;
    letter-spacing: normal;
  }
}
/* ===============================
   FOOTER CTA
=============================== */
/* =================================
   XL
================================= */
.c-footer-cta {
  position: fixed;
  left: 0;
  width: 100%;
  transition: 0.5s;
  z-index: 8;
  bottom: -1000px;
}

.is-scrolled .c-footer-cta {
  bottom: 0;
}

.c-footer-cta.is-stop {
  position: static; /* ← フッター内に戻す */
}

.c-footer-cta__inner {
  padding-block-end: var(--space-4);
}

.c-footer-cta__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
  width: fit-content;
  margin-inline: auto;
  padding: var(--space-2) var(--space-4);
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 1em;
  border: 4px solid var(--c-primary);
}

.c-footer-cta__item {
  text-align: center;
}

.c-footer-cta__item .c-button {
  margin-block-start: 0;
}

.c-footer-cta__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
  color: var(--c-on-primary);
  height: 300px;
}

.c-footer-cta__link::before,
.c-footer-cta__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.c-footer-cta__link::before {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -2;
}

.c-footer-cta__link::after {
  background-color: rgba(0, 38, 33, 0.4);
  transition: 0.5s;
  z-index: -1;
}

.c-footer-cta__link.tel::before {
  background-image: url(../img/common/bg_cta_tel.jpg);
}

.c-footer-cta__link.mail::before {
  background-image: url(../img/common/bg_cta_mail.jpg);
}

.c-footer-cta__link.tel {
  font-size: clamp(37px, 4vw, 45px);
  font-family: var(--fs-en);
  font-weight: 700;
  letter-spacing: normal;
}

.footer-cta-contact--time {
  font-size: clamp(16px, 2vw, 18px);
  font-family: var(--fs-ja);
  font-weight: normal;
}

.c-footer-cta__link.mail {
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 700;
}

.c-footer-cta__link .c-icon-before::before {
  background-color: var(--c-on-primary);
  width: 46px;
  height: 36px;
}

.c-footer-cta__link .c-icon-mail.c-icon-before::before {
  width: 46px;
  height: 36px;
}

/* =================================
   TB
================================= */
@media (max-width: calc(64rem - 0.01rem)) {
  .c-footer-cta__inner {
    padding-block-end: var(--space-2);
  }
  .c-footer-cta__list {
    gap: var(--space-1);
    padding: var(--space-2) var(--space-2);
  }
  .c-footer-cta .c-icon-tel::before {
    width: 0.6em;
    height: 0.6em;
  }
  .c-footer-cta .c-button--l {
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0.5em 1em;
    height: auto;
    font-size: 1em;
  }
}
/* =================================
   SP
================================= */
@media (max-width: calc(48rem - 0.01rem)) {
  .c-footer-cta__list {
    padding: var(--space-1) var(--space-1);
    flex-direction: column;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: var(--space-1);
    grid-row-gap: var(--space-1);
  }
  .c-footer-cta__tel {
    grid-area: 1/1/2/3;
  }
  .c-footer-cta__line {
    grid-area: 2/1/3/2;
  }
  .c-footer-cta__contact {
    grid-area: 2/2/3/3;
  }
  .c-footer-cta__link {
    height: 53.33vw;
  }
  .c-footer-cta__link .c-icon-mail.c-icon-before::before {
    width: 38px;
    height: 32px;
  }
}
/* ===============================
   HOVER
=============================== */
@media (hover: hover) {
  .c-footer-cta__link:hover::after {
    background-color: rgba(0, 38, 33, 0.6);
  }
  .c-page-top__link:hover {
    opacity: 0.8;
  }
}
/* ===============================
   HAMBURGER NAV CONTROL
=============================== */
.c-hamburger-nav__control {
  display: none;
}

.c-hamburger-subnav__control {
  display: none;
}

.l-footer-sns {
  padding-block: var(--space-4) 0;
}

.l-footer-sns__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-block: clamp(60px, 8vw, 80px) 0;
  width: min(100%, 79rem);
  margin-inline: auto;
  padding-inline: clamp(1rem, 2vw, 1.9rem);
  box-sizing: border-box;
}

.l-footer-sns a::before {
  background-color: #fff;
  width: 1.5em;
  height: 1.5em;
}

/* ===============================
   HAMBURGER TOGGLE
=============================== */
/* =================================
   XL
================================= */
.c-hamburger-nav__toggle {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 11;
  justify-content: center;
  cursor: pointer;
  background-image: url(../img/mv/circle2.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.c-hamburger-nav__toggle::after {
  content: "メニュー";
  color: var(--c-on-primary);
  position: absolute;
  bottom: 10px;
  width: 100%;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  letter-spacing: normal;
}

.c-hamburger-nav__toggle span,
.c-hamburger-nav__toggle span::before,
.c-hamburger-nav__toggle span::after {
  content: "";
  position: absolute;
  left: 50%;
  height: 4px;
  border-radius: 2px;
  background-color: var(--c-on-primary);
  transform: translateX(-50%);
  transition: 0.4s;
}

.c-hamburger-nav__toggle span {
  width: 100%;
  width: 50%;
  transform: translate(-50%, -8px);
}

.c-hamburger-nav__toggle span::before,
.c-hamburger-nav__toggle span::after {
  width: 100%;
}

.c-hamburger-nav__toggle span::before {
  top: calc(50% - 12px);
}

.c-hamburger-nav__toggle span::after {
  top: calc(50% + 8px);
}

/* =================================
   TB
================================= */
@media (max-width: calc(64rem - 0.01rem)) {
  .c-hamburger-nav__toggle {
    top: 20px;
    right: 40px;
  }
}
/* =================================
   SP
================================= */
@media (max-width: calc(48rem - 0.01rem)) {
  .c-hamburger-nav__toggle {
    width: 18vw;
    height: 18vw;
    top: 1.5vw;
    right: 2.5vw;
  }
  .c-hamburger-nav__toggle span,
  .c-hamburger-nav__toggle span:before,
  .c-hamburger-nav__toggle span::after {
    content: "";
    position: absolute;
    left: 0%;
    width: 8vw;
    height: 3px;
    background-color: var(--c-on-primary);
    transform: translateX(0%);
    transition: 0.4s;
  }
  .c-hamburger-nav__toggle span {
    transform: translate(5vw, -10px);
  }
  .c-hamburger-nav__toggle span::before {
    top: calc(40% - 10px);
  }
  .c-hamburger-nav__toggle span::after {
    top: calc(40% + 8px);
  }
}
/* ===============================
   HAMBURGER WRAPPER
=============================== */
/* =================================
   TB
================================= */
.c-hamburger-nav__wrapper {
  position: fixed;
  padding: var(--space-2);
  top: 0;
  right: 0;
  width: 100%;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.95);
  height: 100svh;
}

.c-hamburger-nav__main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-6);
}

@media (max-width: calc(64rem - 0.01rem)) {
  .c-hamburger-nav__main {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: flex-start;
    height: 100svh;
    overflow-y: scroll;
  }
  .c-hamburger-nav {
    width: 100%;
  }
}
/* ===============================
   HAMBURGER OPEN STATE
=============================== */
.c-hamburger-nav__control:checked + .c-hamburger-nav__toggle span::before {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.c-hamburger-nav__control:checked + .c-hamburger-nav__toggle span::after {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.c-hamburger-nav__control:checked + .c-hamburger-nav__toggle span {
  background-color: transparent;
}

.c-hamburger-nav__control:checked + .c-hamburger-nav__toggle + .c-hamburger-nav__wrapper {
  transform: translateX(0);
}

.c-hamburger-nav__control:checked + .c-hamburger-nav__toggle::after {
  content: "閉じる";
}

/* =================================
   SP
================================= */
@media (max-width: calc(48rem - 0.01rem)) {
  .c-hamburger-nav__control:checked + .c-hamburger-nav__toggle span::before {
    top: 50%;
    transform: translateX(0) rotate(45deg);
  }
  .c-hamburger-nav__control:checked + .c-hamburger-nav__toggle span::after {
    top: 50%;
    transform: translateX(0) rotate(-45deg);
  }
}
/* ===============================
   HAMBURGER NAV LIST
=============================== */
.c-hamburger-nav__list {
  background-color: var(--c-primary);
  color: var(--c-on-primary);
  border-radius: 1em;
  width: 300px;
}

.c-hamburger-nav__item {
  position: relative;
}

.c-hamburger-nav__item + .c-hamburger-nav__item {
  border-top: 2px dotted rgba(255, 255, 255, 0.3);
}

.c-hamburger-nav__item > a {
  padding: 1.3em 2em;
  justify-content: center;
  display: flex;
  align-items: center;
  color: var(--c-on-primary);
  font-weight: 700;
  height: 100%;
  max-height: calc((100svh - var(--space-2) - var(--space-2)) / 8);
}

@media (max-width: calc(64rem - 0.01rem)) {
  .c-hamburger-nav__list {
    width: 100%;
  }
}
/* ===============================
   HAMBURGER SUBNAV
=============================== */
.c-hamburger-subnav__toggle {
  width: 16vw;
  height: 16vw;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-hamburger-subnav__list {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.c-hamburger-subnav__toggle::before,
.c-hamburger-subnav__toggle::after {
  width: 4.8vw;
  content: "";
  height: 2px;
  background-color: var(--c-primary);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.c-hamburger-subnav__toggle::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

.c-hamburger-subnav__control:checked + .c-hamburger-subnav__toggle + .c-hamburger-subnav__list {
  max-height: 800px;
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 4vw;
  padding-block: 2.67vw 10.67vw;
}

.c-hamburger-subnav__control:checked + .c-hamburger-subnav__toggle::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.c-hamburger-subnav__item a {
  padding-inline: 5.33vw;
  color: var(--c-primary);
  display: block;
  font-size: 0.88em;
}

/* ===============================
   HAMBURGER CTA
=============================== */
.c-hamburger-cta {
  margin-block-start: 0;
}

.c-hamburger-cta::before {
  content: "";
  width: 200px;
  height: 200px;
  background-image: url(../img/common/logo.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60% auto;
  display: block;
  margin-inline: auto;
  margin-block-end: 2em;
  transform: translateY(-2em);
}

@media (max-width: calc(64rem - 0.01rem)) {
  .c-hamburger-cta {
    margin-block-start: auto;
    display: none;
  }
  .c-hamburger-cta::before {
    display: none;
  }
}
.c-hamburger-cta__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.c-hamburger-cta__item .c-button--s {
  width: 100%;
  height: 80px;
  margin-block-start: 10px;
}

.c-hamburger-cta__link {
  width: 100%;
  height: 40vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--c-primary);
  color: var(--c-on-primary);
}

.c-hamburger-cta__link .c-icon-before::before {
  background-color: var(--c-on-primary);
}

.c-icon-tel {
  font-size: 2.3125rem;
  font-family: var(--fs-en);
  font-weight: 700;
  color: var(--c-primary);
  line-height: 1;
}

.c-hamburger-cta__item.c-footer-cta__tel .c-icon-tel::before {
  width: 0.7em;
  height: 0.7em;
}

.c-icon-tel::before {
  width: 8.8vw;
  height: 8.8vw;
  background-color: var(--c-primary);
}

.c-footer-cta__tel time {
  display: block;
  text-align: center;
  color: var(--c-primary);
  font-weight: 700;
}

.c-hamburger-cta__link.mail {
  font-size: 1.5rem;
  font-weight: 700;
}

.c-hamburger-cta__link.mail .c-icon-before::before {
  width: 10.13vw;
  height: 10.13vw;
}

.footer-hamburger-contact--time {
  font-size: 1rem;
  font-family: var(--fs-ja);
  font-weight: normal;
}

/* ===============================
   ICON GAP
=============================== */
/* XL */
.c-hamburger-cta__link .c-icon-before {
  gap: 2.67vw;
}

/* SP */
@media (max-width: calc(48rem - 0.01rem)) {
  .c-hamburger-cta__link .c-icon-before {
    gap: 3vw;
  }
}
.c-icon-before,
.c-icon-after {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}

.c-icon-before::before,
.c-icon-after::after {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
}

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

/* ===== アイコン種別 ===== */
.c-icon-arrow.c-icon-before::before,
.c-icon-arrow.c-icon-after::after {
  mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg id='ico-arrow' data-name='ico-arrow' xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 11.1 8'%3E%3Cdefs%3E%3Cstyle%3E      .st0 {        fill: %23fff;      }    %3C/style%3E%3C/defs%3E%3Cpath id='arrow' class='st0' d='M7.1,0l-.7.7,2.6,2.6H0v1.4h9l-2.6,2.6.7.7,4-4L7.1,0Z'/%3E%3C/svg%3E");
}

.c-icon-mail.c-icon-before::before,
.c-icon-mail.c-icon-after::after {
  mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg id='ico-mail' data-name='ico-mail' xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 18.7 15'%3E%3Cdefs%3E%3Cstyle%3E      .st0 {        fill: %23fff;      }    %3C/style%3E%3C/defs%3E%3Cpath id='mail' class='st0' d='M2.8,15c-1.5,0-2.7-1.2-2.8-2.6v-.2S0,3.3,0,3.3l8.8,5.9h.1c.3.2.6.2.8,0h.1c0,0,8.8-6,8.8-6v8.9c0,1.5-1.2,2.7-2.6,2.8H2.8ZM.4,1.3C.9.6,1.7,0,2.6,0h.2S15.9,0,15.9,0c1,0,1.9.5,2.4,1.3l-8.9,6L.4,1.3Z'/%3E%3C/svg%3E");
}

.c-icon-tel.c-icon-before::before,
.c-icon-tel.c-icon-after::after {
  mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg id='ico-tel' data-name='ico-tel' xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 18.3 18.8'%3E%3Cdefs%3E%3Cstyle%3E      .st0 {        fill: %23fff;      }    %3C/style%3E%3C/defs%3E%3Cpath id='tel' class='st0' d='M15.6,18.8C7.1,18.2.4,11.3,0,2.8,0,1.3,1.2,0,2.7,0,2.7,0,2.7,0,2.7,0h4c.3,0,.6.2.7.5l2,5.1c.1.3,0,.7-.3.9l-1.9,1.2c.9,1.6,2.1,2.9,3.7,3.8l1.1-1.9c.2-.3.6-.5.9-.3l4.9,2c.3.1.5.4.5.7v4.1c0,1.5-1.2,2.8-2.7,2.8'/%3E%3C/svg%3E");
}

.c-icon-chevron.c-icon-before::before,
.c-icon-chevron.c-icon-after::after {
  mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg id='ico-chevron' data-name='ico-chevron' xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 8 14'%3E%3Cdefs%3E%3Cstyle%3E      .st0 {        fill: %23fff;      }    %3C/style%3E%3C/defs%3E%3Cpath id='ico-chevron' class='st0' d='M1,0L0,1.1l5.9,5.9L0,12.9l1,1.1,7-7L1,0Z'/%3E%3C/svg%3E");
}

.c-icon-line.c-icon-before::before,
.c-icon-line.c-icon-after::after {
  mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg id='ico-line' data-name='ico-line' xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 25.9 24.7'%3E%3Cdefs%3E%3Cstyle%3E      .st0 {        fill: %23fff;      }    %3C/style%3E%3C/defs%3E%3Cpath id='line' class='st0' d='M12.3,24.7c-.1,0-.3,0-.3-.1-.1-.2-.1-.5,0-.7h0c0-.2.2-1.1.2-1.1,0-.4,0-.8,0-1.2-.1-.4-.7-.5-1.1-.6-2.9-.3-5.6-1.6-7.8-3.5C1.2,15.6,0,13.1,0,10.5,0,4.7,5.8,0,13,0s13,4.7,13,10.5c0,2.4-1,4.8-2.8,6.5-2.7,3.1-8.7,6.9-10.2,7.5-.2.1-.5.2-.7.2ZM11.7,7.8c-.1,0-.2.1-.2.2v5.7c0,.1.1.2.2.2h.9c.1,0,.2-.1.2-.2h0v-3.4l2.6,3.5s0,0,0,0h0s0,0,0,0h0s0,0,0,0h.9c.1,0,.2-.1.2-.2v-5.6c0,0,0-.1,0-.2,0,0-.1,0-.2,0h-.9c-.1,0-.2.1-.2.2,0,0,0,0,0,0v3.4l-2.6-3.5s0,0,0,0h0s0,0,0,0h0s0,0,0,0h0s-1,0-1,0h0ZM18,7.7c-.1,0-.2.1-.2.2,0,0,0,0,0,0v5.7c0,.1.1.2.2.2h3.6c0,0,.1,0,.2,0,0,0,0-.1,0-.2v-.9c0-.1-.1-.2-.2-.2h-2.5v-1h2.5c.1,0,.2-.1.2-.2h0v-.9c0-.1-.1-.2-.2-.2h-2.5v-1h2.5c.1,0,.2-.1.2-.2t0,0v-.9c0-.1-.1-.2-.2-.2h-3.6ZM9.9,7.7c-.4,0-.7.3-.7.7v4.7c0,.4.3.7.7.7.4,0,.7-.3.7-.7v-4.7c0-.4-.3-.7-.7-.7h0ZM4.5,7.7c-.1,0-.2.1-.2.2v5.7c0,.1.1.2.2.2h3.7c.1,0,.2-.1.2-.2v-.9c0-.1-.1-.2-.2-.2h-2.5v-4.5c0-.1-.1-.2-.2-.2h-.9Z'/%3E%3C/svg%3E");
}

.c-icon-instagram.c-icon-before::before,
.c-icon-instagram.c-icon-after::after {
  mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg id='ico-instagram' data-name='ico-instagram' xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 20 20'%3E%3Cpath d='M10,0C7.3,0,6.9,0,5.9,0c-.8,0-1.7.2-2.4.5-1.3.5-2.4,1.6-2.9,2.9-.3.8-.4,1.6-.5,2.4,0,1.1,0,1.4,0,4.1s0,3.1,0,4.1c0,.8.2,1.6.5,2.4.5,1.3,1.6,2.4,2.9,2.9.8.3,1.6.4,2.4.5,1.1,0,1.4,0,4.1,0s3.1,0,4.1,0c.8,0,1.7-.2,2.4-.5,1.3-.5,2.4-1.6,2.9-2.9.3-.8.4-1.6.5-2.4,0-1.1,0-1.4,0-4.1s0-3.1,0-4.1c0-.8-.2-1.6-.5-2.4-.5-1.3-1.6-2.4-2.9-2.9-.8-.3-1.6-.4-2.4-.5C13.1,0,12.7,0,10,0h0ZM9.1,1.8h.9c2.7,0,3,0,4,0,.6,0,1.3.1,1.9.3.9.3,1.6,1,1.9,1.9.2.6.3,1.2.3,1.9,0,1.1,0,1.4,0,4s0,3,0,4c0,.6-.1,1.3-.3,1.9-.3.9-1,1.6-1.9,1.9-.6.2-1.2.3-1.9.3-1.1,0-1.4,0-4,0s-3,0-4,0c-.6,0-1.3-.1-1.9-.3-.9-.3-1.6-1-1.9-1.9-.2-.6-.3-1.2-.3-1.8,0-1.1,0-1.4,0-4s0-3,0-4c0-.6.1-1.3.3-1.9.3-.9,1-1.6,1.9-1.9.6-.2,1.2-.3,1.9-.3.9,0,1.3,0,3.1,0h0ZM15.3,3.5c-.7,0-1.2.5-1.2,1.2s.5,1.2,1.2,1.2,1.2-.5,1.2-1.2-.5-1.2-1.2-1.2h0ZM10,4.9c-2.8,0-5.1,2.3-5.1,5.1,0,2.8,2.3,5.1,5.1,5.1,2.8,0,5.1-2.3,5.1-5.1,0-2.8-2.3-5.1-5.1-5.1h0ZM10,6.7c1.8,0,3.3,1.5,3.3,3.3,0,1.8-1.5,3.3-3.3,3.3-1.8,0-3.3-1.5-3.3-3.3,0-1.8,1.5-3.3,3.3-3.3h0,0Z'/%3E%3C/svg%3E");
}

/* button */
.c-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  font-weight: 600;
  text-align: center;
  border-radius: 1em;
  transition: opacity 0.3s;
  width: clamp(270px, 65vw, 285px);
  margin-inline: auto;
  margin-block-start: 8vw;
}
@media (min-width: 48rem) {
  .c-button {
    margin-block-start: 40px;
    margin-inline-start: 0;
  }
}

@media (hover: hover) {
  .c-button:hover {
    opacity: 0.8;
  }
}
.c-button.c-icon-before::before {
  margin-inline-end: 0.2em;
}

.c-button.c-icon-after::after {
  margin-inline-start: 0.2em;
}

.c-button.c-icon-mail.c-icon-before::before,
.c-button.c-icon-mail.c-icon-after::after,
.c-button.c-icon-tel.c-icon-before::before,
.c-button.c-icon-tel.c-icon-after::after,
.c-button.c-icon-line.c-icon-before::before,
.c-button.c-icon-line.c-icon-after::after {
  width: 1.4rem;
  height: 1.4rem;
}

.c-button.c-icon-arrow {
  position: relative;
  justify-content: flex-start;
  padding: 0 1.8em;
}
@media (min-width: 48rem) {
  .c-button.c-icon-arrow {
    padding: 0 1.6em;
  }
}

.c-button.c-icon-arrow.c-icon-before::after,
.c-button.c-icon-arrow.c-icon-after::before,
.c-button.c-icon-arrow.c-icon-before::before,
.c-button.c-icon-arrow.c-icon-after::after {
  position: absolute;
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  height: 26px;
  width: 26px;
  content: "";
  display: block;
}
@media (min-width: 48rem) {
  .c-button.c-icon-arrow.c-icon-before::after,
  .c-button.c-icon-arrow.c-icon-after::before,
  .c-button.c-icon-arrow.c-icon-before::before,
  .c-button.c-icon-arrow.c-icon-after::after {
    height: 30px;
    width: 30px;
  }
}

.c-button.c-icon-arrow.c-icon-before::before,
.c-button.c-icon-arrow.c-icon-after::after {
  z-index: 1;
  background-color: var(--c-on-primary);
  mask-size: 12px auto;
}

.c-button.c-icon-arrow.c-icon-before::after,
.c-button.c-icon-arrow.c-icon-after::before {
  background-color: var(--c-primary);
  border-radius: 50%;
  z-index: 0;
}

/* ===== デザイン ===== */
.c-button--primary {
  background-color: var(--c-primary);
  color: var(--c-on-primary);
}
.c-button--primary.c-icon-before::before, .c-button--primary.c-icon-after::after {
  background-color: var(--c-on-primary);
}

.c-button--secondary {
  background-color: var(--c-secondary);
  color: var(--c-on-secondary);
}
.c-button--secondary.c-icon-before::before, .c-button--secondary.c-icon-after::after {
  background-color: var(--c-on-secondary);
}

.c-button--accent {
  background-color: var(--c-accent);
  color: var(--c-on-accent);
}
.c-button--accent.c-icon-before::before, .c-button--accent.c-icon-after::after {
  background-color: var(--c-on-accent);
}

.c-button--line {
  background-color: var(--c-line);
  color: var(--c-on-line);
}
.c-button--line.c-icon-before::before, .c-button--line.c-icon-after::after {
  background-color: var(--c-on-line);
}

/* ===== サイズ ===== */
.c-button--m {
  width: 255px;
}
@media (min-width: 48rem) {
  .c-button--m {
    width: 266px;
  }
}

.c-button--l {
  width: 300px;
  font-size: 1.125em;
}
@media (min-width: 48rem) {
  .c-button--l {
    width: 285px;
  }
}

.c-button--s {
  width: 200px;
}

.intro {
  position: fixed;
  inset: 0;
  background: #870E3C;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.logo {
  width: 180px;
  opacity: 0;
  transform: scale(0.95);
}

/* ===============================
   HERO
=============================== */
.c-mv {
  position: relative;
}

.c-mv__inner {
  position: relative;
  min-height: 720px;
}

/* =================================
   TB
================================= */
@media (max-width: calc(64rem - 0.01rem)) {
  .c-mv {
    margin-top: -140px;
  }
  .c-mv__inner {
    min-height: 90vh;
  }
}
/* =================================
   SP (Mobile)
================================= */
@media (max-width: calc(48rem - 0.01rem)) {
  .c-mv {
    margin-top: -22vw;
  }
  .c-mv__inner {
    min-height: 90vh;
  }
}
.c-mv__media {
  position: absolute;
  inset: 0;
  top: -30%;
}

.c-mv__slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.c-mv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 5;
  width: min(100%, 79rem);
  margin-inline: auto;
  padding-inline: clamp(1rem, 2vw, 1.9rem);
  box-sizing: border-box;
}

.c-mv__title {
  font-size: clamp(2rem, 3.5vw, 3.5em);
  line-height: 1.4;
}

.c-mv-circle {
  position: absolute;
  aspect-ratio: 1/1;
  overflow: visible;
  will-change: transform;
  left: 50%;
  top: 50%;
}

.c-mv-circle.photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.is-ios .c-mv-circle.photo::before {
  background: url(../../assets/img/mv/circle-line2.svg) no-repeat center/cover;
  z-index: 1;
}

.c-mv-circle.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: url(#circle-mask);
}

.large {
  width: 36vw;
  max-width: 600px;
  top: 28%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.medium {
  width: 18vw;
  top: 70%;
  left: 30%;
  transform: translate(-50%, -50%);
}

.small {
  width: 18vw;
  top: 75%;
  left: 84%;
  transform: translate(-50%, -50%);
}

.xsmall {
  width: 12vw;
  top: 70%;
  left: 10%;
  transform: translate(-50%, -50%);
}

.fill01, .fill02, .fill03, .fill04, .fill05, .fill06 {
  opacity: 0.06;
  clip-path: url(#circle-mask);
  aspect-ratio: 1/1;
  z-index: -1;
}

.fill01 {
  width: 220px;
  top: -60px;
  right: 80px;
}

.fill02 {
  width: 140px;
  top: 300px;
  left: -40px;
  opacity: 0.08;
}

.fill03 {
  width: 260px;
  left: 80%;
  opacity: 0.06;
  top: 30%;
}

.fill01, .fill02, .fill03 {
  background: var(--c-primary);
}

.fill04 {
  width: 260px;
  top: 0;
  left: 20%;
  opacity: 0.15;
}

.fill05 {
  width: 220px;
  top: 80%;
  left: 50%;
  opacity: 0.15;
}

.fill06 {
  width: 90px;
  top: 60px;
  left: 85%;
  opacity: 0.1;
}

.fill04, .fill05, .fill06 {
  background: var(--c-accent);
}

.line01, .line02 {
  border: none;
  background: transparent;
  z-index: -1;
}

.line01::after, .line02::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: url(../../assets/img/mv/circle-line.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 1px solid transparent;
}

.line01 {
  width: 420px;
  height: 420px;
  top: 80%;
  left: -2%;
}

.line02 {
  width: 260px;
  height: 260px;
  top: 80%;
  left: 70%;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
  100% {
    transform: translateY(0);
  }
}
.large {
  animation: float 8s ease-in-out infinite;
}

.medium {
  animation: float 10s ease-in-out infinite;
}

.small {
  animation: float 7s ease-in-out infinite;
}

.xsmall {
  animation: float 9s ease-in-out infinite;
}

@keyframes zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}
.photo img {
  animation: zoom 12s ease-in-out infinite alternate;
}

.is-ios .c-mv-circle.photo::before {
  animation: zoom 12s ease-in-out infinite alternate;
}

@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.line01 {
  animation: rotate 40s linear infinite;
}

/* =================================
   TB
================================= */
@media (max-width: calc(64rem - 0.01rem)) {
  .c-mv {
    width: 100%;
    overflow-x: hidden;
  }
  .c-mv__content {
    transform: translate(-50%, -70%);
  }
  .c-mv__title {
    font-size: 3rem;
    line-height: 1.4;
  }
  .is-not-ios .c-mv-circle:not(.line01):not(.line02) {
    -webkit-filter: drop-shadow(2px 0 0 var(--c-primary)) drop-shadow(-2px 0 0 var(--c-primary)) drop-shadow(0 2px 0 var(--c-primary)) drop-shadow(0 -2px 0 var(--c-primary));
    filter: drop-shadow(2px 0 0 var(--c-primary)) drop-shadow(-2px 0 0 var(--c-primary)) drop-shadow(0 2px 0 var(--c-primary)) drop-shadow(0 -2px 0 var(--c-primary));
  }
  .large {
    width: auto;
    height: 36%;
    top: 20%;
    left: 40%;
    transform: translate(0, 0);
    z-index: 1;
  }
  .medium {
    width: auto;
    height: 26%;
    top: 70%;
    left: -4%;
    z-index: 0;
  }
  .small {
    width: auto;
    height: 20%;
    top: 66%;
    left: 42%;
    z-index: 0;
  }
  .xsmall {
    width: auto;
    height: 16%;
    top: 72%;
    left: 78%;
    transform: translate(-50%, -50%);
  }
  .fill01 {
    width: auto;
    height: 16%;
    top: 50%;
    right: 2vw;
    left: auto;
  }
  .fill02 {
    width: auto;
    height: 20%;
    top: auto;
    bottom: 16%;
    left: 15%;
    opacity: 0.08;
    z-index: -1;
  }
  .fill03 {
    width: 20vw;
    left: 80%;
    opacity: 0.06;
    top: 30%;
  }
  .fill01, .fill02, .fill03 {
    background: var(--c-primary);
  }
  .fill04 {
    width: auto;
    height: 30%;
    top: 15%;
    left: 20%;
    opacity: 0.2;
  }
  .fill05 {
    width: 22vw;
    left: 90%;
    top: auto;
    bottom: 3%;
    right: -8%;
    left: auto;
    opacity: 0.15;
  }
  .fill06 {
    width: 90px;
    top: 60px;
    left: 85%;
    opacity: 0.1;
  }
  .line01 {
    width: 20vw;
    height: 20vw;
    top: 38%;
    left: -5%;
    opacity: 0.5;
    z-index: -1;
  }
  .line02 {
    width: 25vw;
    height: 25vw;
    top: auto;
    bottom: 4%;
    left: 50%;
  }
}
/* =================================
   SP (Mobile)
================================= */
@media (max-width: calc(48rem - 0.01rem)) {
  .c-mv__content {
    top: auto;
    bottom: 5.2vw;
    left: 0;
    transform: unset;
  }
  .c-mv__title {
    font-size: 2.2rem;
  }
  .c-mv__media {
    top: 0;
  }
  .large {
    height: 40%;
    top: 30px;
    left: 24%;
    transform: translate(0, 0);
    z-index: 1;
  }
  .medium {
    top: 34%;
    left: -6%;
    z-index: 0;
  }
  .small {
    top: 56%;
    left: 38%;
    z-index: -1;
  }
  .xsmall {
    top: 42%;
    left: 74%;
    transform: translate(-50%, -50%);
  }
  .fill01 {
    top: auto;
    bottom: 0;
    right: 2vw;
    left: auto;
  }
  .fill02 {
    top: auto;
    bottom: 26%;
    left: -3vw;
    opacity: 0.08;
  }
  .fill03 {
    left: 80%;
    opacity: 0.06;
    top: 30%;
  }
  .fill01, .fill02, .fill03 {
    background: var(--c-primary);
  }
  .fill04 {
    top: 15%;
    left: 10%;
    opacity: 0.2;
  }
  .fill05 {
    top: auto;
    bottom: 18%;
    right: -8%;
    left: auto;
    opacity: 0.15;
  }
  .fill06 {
    top: 60px;
    left: 85%;
    opacity: 0.1;
  }
  .line01 {
    width: 20vw;
    height: 20vw;
    top: -5%;
    left: 30%;
  }
  .line02 {
    width: 25vw;
    height: 25vw;
    top: auto;
    bottom: 24%;
    left: 5%;
  }
}
.l-section .l-container {
  text-align: center;
}

.c-section-title02 {
  background-color: var(--c-primary);
  color: var(--c-on-primary);
  text-align: center;
  font-weight: 700;
  font-size: 2em;
  width: fit-content;
  margin-inline: auto;
  padding: 0.2em 0.8em;
  border-radius: 0.5em;
  transform: translateY(50%);
}

/* =================================
   TB
================================= */
/* =================================
   SP
================================= */
@media (max-width: calc(48rem - 0.01rem)) {
  .c-section-title02 {
    font-size: 1.6em;
  }
}
/*　-------------------------------------
 FEATURES
--------------------------------------- */
.l-section--features {
  margin-block-start: var(--space-9);
}

.l-section--features .c-section-title01 {
  text-align: center;
  font-size: 3em;
  line-height: 1.5;
  color: var(--c-primary);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-box-trim: trim-both;
  position: relative;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 2em;
}

.l-section--features .c-section-title01::before, .l-section--features .c-section-title01::after {
  content: "";
  background: url(../img/feature-title01.svg) no-repeat center/cover;
  width: 68px;
  height: 110px;
  position: absolute;
  top: 50%;
}

.l-section--features .c-section-title01::before {
  transform: scale(-1, 1) translate(140%, -10%);
  left: 0;
}

.l-section--features .c-section-title01::after {
  right: 0;
  transform: translate(140%, -10%);
}

.l-section--features .c-section-title01 span {
  display: block;
  font-size: 0.68em;
  font-weight: 700;
  text-box-trim: trim-both;
}

.l-section--features .c-section-title01 strong {
  font-size: 2.2em;
  letter-spacing: normal;
  margin: 0 -0.15em;
  font-weight: 700;
  position: relative;
}

.l-section--features .c-section-title01 strong::before {
  content: "";
  background: url(../img/feature-title02.svg) no-repeat center/cover;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 70%);
  width: 48px;
  height: 22px;
}

.c-feature__list {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  counter-reset: feature;
  max-width: 800px;
  margin-inline: auto;
}

.c-feature__item {
  counter-increment: feature;
}

.c-feature__title {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.c-feature__title::before {
  content: counter(feature, decimal-leading-zero);
  font-family: var(--fs-en);
  color: #fff;
  background: url(../img/mv/circle2.svg) no-repeat center/cover;
  width: 90px;
  height: 90px;
  display: flex;
  font-size: 1.4em;
  justify-content: center;
  align-items: center;
  text-box-trim: trim-both;
  line-height: 1.5;
  padding-top: 0.2em;
}

.c-feature__title {
  font-weight: 700;
}

.c-feature__title strong {
  color: var(--c-primary);
  font-weight: 700;
  padding-bottom: 2px;
  background: linear-gradient(#B19962, #B19962) left bottom/100% 2px no-repeat;
}

.c-feature__content {
  font-weight: 700;
  padding-left: calc(90px + var(--space-2));
  line-height: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
}

.c-feature__content p:first-child {
  margin-block-start: 0;
}

.c-feature__content strong {
  color: var(--c-primary);
  font-weight: 700;
}

.c-feature__content::after {
  content: "";
  display: block;
  min-width: 100px;
  min-height: 100px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.c-feature__item:nth-child(1) .c-feature__content::after {
  background-image: url(../img/feature01.svg);
}

.c-feature__item:nth-child(2) .c-feature__content::after {
  background-image: url(../img/feature02.svg);
}

.c-feature__item:nth-child(3) .c-feature__content::after {
  background-image: url(../img/feature03.svg);
}

.c-feature__item:nth-child(4) .c-feature__content::after {
  background-image: url(../img/feature04.svg);
}

.c-feature__item:nth-child(5) .c-feature__content::after {
  background-image: url(../img/feature05.svg);
}

/* =================================
   TB
================================= */
@media (max-width: calc(64rem - 0.01rem)) {
  .l-section--features {
    margin-block-start: 0;
  }
  .l-section--features .c-section-title01 {
    font-size: 2em;
  }
  .l-section--features .c-section-title01 strong::before {
    transform: translate(-50%, 30%);
    width: 48px;
    height: 22px;
  }
  .l-section--features .c-section-title01::before, .l-section--features .c-section-title01::after {
    width: 46px;
    height: 80px;
  }
  .c-feature__title {
    display: block;
    position: relative;
    padding-left: 10vw;
    font-size: 1.75em;
  }
  .c-feature__title::before {
    width: 8vw;
    height: 8vw;
    font-size: 1em;
    background: url(../img/mv/circle2.svg) no-repeat center/100% auto;
    position: absolute;
    left: 0;
    top: 0;
  }
  .c-feature__content {
    padding: var(--space-4) 0 0 9vw;
    display: flex;
    flex-direction: row-reverse;
    font-size: 1em;
  }
  .c-feature__content::after {
    width: 8vw;
    height: 8vw;
    min-width: 8vw;
    min-height: 8vw;
    display: none;
  }
  .c-feature__list {
    gap: var(--space-8);
  }
}
/* =================================
   SP
================================= */
@media (max-width: calc(48rem - 0.01rem)) {
  .l-section--features {
    margin-block-start: 0;
  }
  .l-section--features .c-section-title01 {
    font-size: 2em;
  }
  .l-section--features .c-section-title01 strong::before {
    transform: translate(-50%, 30%);
    width: 48px;
    height: 22px;
  }
  .l-section--features .c-section-title01::before, .l-section--features .c-section-title01::after {
    width: 46px;
    height: 80px;
  }
  .c-feature__title {
    display: block;
    position: relative;
    padding-left: 14.5vw;
    font-size: 1.25em;
  }
  .c-feature__title::before {
    width: 12vw;
    height: 12vw;
    font-size: 1em;
    background: url(../img/mv/circle2.svg) no-repeat center/100% auto;
    position: absolute;
    left: 0;
    top: 0;
  }
  .c-feature__content {
    padding: var(--space-2) 0 0;
    display: flex;
    flex-direction: row-reverse;
    font-size: 0.92em;
  }
  .c-feature__content::after {
    width: 12vw;
    height: 12vw;
    min-width: 12vw;
    min-height: 12vw;
    display: none;
  }
  .c-feature__list {
    gap: var(--space-8);
  }
}
/*　-------------------------------------
 FLOW
--------------------------------------- */
.c-flow__list {
  max-width: 880px;
  margin-inline: auto;
  border: 4px solid var(--c-primary);
  border-radius: 1.2em;
  background-color: var(--c-on-primary);
  padding: var(--space-4);
  text-align: left;
  counter-reset: flow;
}

.c-flow__item {
  counter-increment: flow;
  position: relative;
  padding-block: var(--space-4);
}

.c-flow__title {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--c-primary);
  font-weight: 700;
  font-size: 2em;
}

.c-flow__title::before {
  content: "";
  display: block;
  min-width: 50px;
  min-height: 90px;
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.c-flow__item:nth-child(1) .c-flow__title::before {
  background-image: url(../img/flow1.svg);
}

.c-flow__item:nth-child(2) .c-flow__title::before {
  background-image: url(../img/flow2.svg);
}

.c-flow__item:nth-child(3) .c-flow__title::before {
  background-image: url(../img/flow3.svg);
}

.c-flow__item + .c-flow__item::before {
  content: "";
  background-image: url(../img/dashline.svg);
  background-repeat: repeat-x;
  background-repeat: auto 100%;
  display: block;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.c-flow__content {
  font-weight: 700;
  line-height: 2;
  padding: 0 0 0 calc(50px + var(--space-1));
}

.c-flow__content p:first-child {
  margin-block-start: 0;
}

.c-flow__content .notice {
  font-size: 0.88em;
  display: flex;
}

.c-flow__content .notice::before {
  content: "※";
}

.c-flow-cta {
  display: flex;
  align-items: center;
  margin-inline-start: calc((50px + var(--space-1)) * -1);
  padding: var(--space-2) var(--space-2) var(--space-2) var(--space-4);
  gap: var(--space-2);
}

.c-flow-cta .c-button {
  flex-direction: column;
  padding: 0.5em 0;
  height: auto;
  gap: 0;
  margin-block-start: 0;
}

.c-flow-cta .c-button::before,
.c-flow-cta .c-button.c-icon-line.c-icon-before::before,
.c-flow-cta .c-button.c-icon-mail.c-icon-before::before {
  width: 2em;
  height: 2em;
}

.c-flow-cta__item.c-flow__tel {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.c-flow-cta__item.c-flow__tel::before {
  content: "お電話でのお問い合わせ";
  display: block;
  text-align: center;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 0.8em;
}

.c-flow-cta__item.c-flow__tel time {
  display: block;
  width: 100%;
  font-size: 0.88em;
  font-weight: 700;
  color: var(--c-primary);
  text-align: center;
}

.c-flow-cta__item.c-flow__tel a {
  color: var(--c-primary);
  font-family: var(--fs-en);
  font-size: 2em;
  font-weight: 700;
  letter-spacing: normal;
}

.c-flow-cta__item.c-flow__tel a.c-icon-before::before {
  background-color: var(--c-primary);
  width: 1.4rem;
  height: 1.4rem;
  position: relative;
  top: -0.1em;
}

.c-flow-note {
  max-width: 880px;
  margin: var(--space-6) auto;
  background-color: var(--c-on-primary);
  text-align: left;
  border-radius: 1.2em;
  overflow: hidden;
}

.c-flow-note__title {
  background-color: var(--c-primary);
  color: var(--c-on-primary);
  text-align: center;
  font-weight: 700;
  font-size: 2em;
  margin-inline: auto;
  padding: 0.5em;
  width: 100%;
  border-radius: 0;
}

.c-flow-note__content {
  border: 4px solid var(--c-primary);
  border-bottom-left-radius: 1.2em;
  border-bottom-right-radius: 1.2em;
  font-weight: 700;
  line-height: 2;
  padding: 0 var(--space-4) var(--space-4);
}

/* =================================
   TB
================================= */
@media (max-width: calc(64rem - 0.01rem)) {
  .c-flow__title, .c-flow-note__title {
    font-size: 1.75em;
  }
  .c-flow__title {
    gap: var(--space-2);
  }
  .c-flow-note__title {
    font-size: 1.75em;
  }
  .c-flow__title::before {
    min-width: 50px;
    min-height: 90px;
  }
  .c-flow__content {
    padding: var(--space-2) 0 0;
  }
  .c-flow__content p {
    padding-left: 40px;
    font-size: 1.125em;
    line-height: 1.75;
  }
  .c-flow-cta {
    justify-content: center;
    padding: var(--space-4) 0 var(--space-2) 0;
    margin-inline: auto;
  }
  .c-flow-note__content {
    font-size: 0.92em;
  }
  .c-flow-note {
    max-width: 880px;
    margin: var(--space-4) auto 0;
  }
}
/* =================================
   SP
================================= */
@media (max-width: calc(48rem - 0.01rem)) {
  .c-flow__title {
    font-size: 1.25em;
    margin-bottom: var(--space-2);
  }
  .c-flow-note__title {
    font-size: 1.25em;
  }
  .c-flow__title::before {
    min-width: 30px;
    min-height: 60px;
  }
  .c-flow__content {
    padding: 0;
    font-size: 0.88em;
  }
  .c-flow-cta {
    flex-direction: column;
    margin-inline: auto;
    width: 100%;
    padding: var(--space-4) 0 var(--space-2);
    gap: var(--space-2);
  }
  .c-flow__content .notice {
    font-size: 0.78em;
  }
  .c-flow-note__content {
    font-size: 0.88em;
  }
  .c-flow-cta__item.c-flow__tel {
    padding-bottom: var(--space-2);
  }
  .c-flow-cta .c-button.c-button--s {
    width: 300px;
    font-size: 1.25em;
  }
  .c-flow-cta .c-button.c-button--s::before {
    width: 2em;
    height: 2em;
  }
}
/*　-------------------------------------
 EXAMPLE
--------------------------------------- */
.c-example-inner {
  max-width: 880px;
  margin-inline: auto;
  border: 4px solid var(--c-primary);
  border-radius: 1.2em;
  background-color: var(--c-on-primary);
  padding: var(--space-5) var(--space-4) var(--space-4);
  text-align: left;
  counter-reset: flow;
}

.c-example-head {
  background-color: #FEF1F6;
  border-radius: 1em;
  padding: var(--space-2) var(--space-3);
}

.c-example-head__title {
  font-size: 2em;
  letter-spacing: 0.1em;
  text-align: center;
}

.c-example-head__title span {
  font-size: 0.92em;
}

.c-example-head__title br {
  display: none;
}

.c-example-head__program {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1) var(--space-2);
}

.c-example-head__program dt {
  font-size: 0;
  width: 116px;
  height: 64px;
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.c-example-head__program dd {
  width: calc(100% - var(--space-2) - 120px);
  margin: 0;
  min-height: 64px;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.6em;
  letter-spacing: 0.1em;
}

.c-example-head__program dd span {
  font-size: 0.88em;
}

.is-destination {
  background-image: url(../img/destination.svg);
}

.is-purpuse {
  background-image: url(../img/purpuse.svg);
}

.c-example-body__title {
  font-size: 0;
  width: 158px;
  height: 86px;
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-block-start: var(--space-4);
}

.is-day1 {
  background-image: url(../img/day1.svg);
}

.is-day2 {
  background-image: url(../img/day2.svg);
}

.c-example-body__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-left: 1em;
  position: relative;
}

.c-example-body__list::before {
  content: "";
  background-color: #707070;
  width: 2px;
  height: 80%;
  display: block;
  top: 20px;
  left: 32px;
  position: absolute;
  z-index: 0;
}

.c-example-body__item {
  position: relative;
  z-index: 1;
}

.c-example-body__subtitle {
  font-size: 1.8em;
  letter-spacing: 0.1em;
  color: var(--c-primary);
  display: flex;
  align-items: flex-start;
  gap: 0.2em;
}

.c-example-body__subtitle::before {
  content: "●";
  color: var(--c-primary);
}

.l-entry-content .c-example-body__text {
  font-weight: 700;
  font-size: 1em;
  letter-spacing: 0.1em;
  margin-block-start: 0.5em;
  padding-left: 2.4em;
}

/* =================================
   TB
================================= */
@media (max-width: calc(64rem - 0.01rem)) {
  .c-example-inner {
    padding: var(--space-7) var(--space-4) var(--space-4);
  }
  .c-example-head__title {
    font-size: 1.75em;
  }
  .c-example-head__title span {
    font-size: 0.78em;
  }
  .c-example-head__program {
    margin-bottom: 0;
  }
  .c-example-head__program dt {
    width: 62px;
    height: 34px;
    margin-top: var(--space-1);
  }
  .c-example-head__program dd {
    padding-block: 0 var(--space-2);
    font-size: 1.25em;
  }
  .c-example-body__title {
    width: 100px;
    height: 54px;
  }
  .c-example-body__subtitle {
    font-size: 1.5em;
  }
  .c-example-body__list {
    padding-left: 0;
  }
  .c-example-body__list::before {
    left: 0.65em;
    height: 90%;
  }
  .l-entry-content .c-example-body__text {
    padding-left: 2em;
    font-size: 1em;
  }
  .c-example-body__list li:last-child {
    position: relative;
  }
  .c-example-body__list li:last-child::before {
    content: "";
    width: 1.1em;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    height: 80%;
    background-color: #fff;
  }
}
/* =================================
   SP
================================= */
@media (max-width: calc(48rem - 0.01rem)) {
  .c-example-head__title {
    font-size: 1.25em;
  }
  .c-example-head__title span {
    font-size: 0.58em;
  }
  .c-example-head__title br {
    display: block;
  }
  .c-example-head__program {
    display: block;
    margin-bottom: 0;
  }
  .c-example-head__program dt {
    width: 70px;
    height: 38px;
  }
  .c-example-head__program dd {
    padding-block: var(--space-2);
    font-size: 1.125em;
    display: block;
    width: 100%;
  }
  .c-example-body__title {
    width: 100px;
    height: 54px;
  }
  .c-example-body__subtitle {
    font-size: 1.2em;
  }
  .c-example-body__list {
    padding-left: 0;
  }
  .c-example-body__list::before {
    left: 0.5em;
    height: 95%;
  }
  .l-entry-content .c-example-body__text {
    padding-left: 1.8em;
    font-size: 0.88em;
  }
  .c-example-body__list li:last-child {
    position: relative;
  }
  .c-example-body__list li:last-child::before {
    content: "";
    width: 1.1em;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    height: 90%;
    background-color: #fff;
  }
}
/*　-------------------------------------
 PRICE
--------------------------------------- */
.c-price__wrap {
  margin-inline: auto;
  border: 4px solid var(--c-primary);
  border-radius: 1.2em;
  background-color: var(--c-on-primary);
  padding: var(--space-5) var(--space-4) var(--space-4);
}

.c-price__inner {
  background-color: #FEFAEF;
  border-radius: 1em;
  padding: var(--space-3) var(--space-3);
}

.c-price__title {
  font-size: 2em;
  font-weight: 700;
  padding-bottom: 3px;
  background: linear-gradient(#B19962, #B19962) left bottom/100% 3px no-repeat;
  width: fit-content;
  margin-inline: auto;
}

.c-price__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.c-price__item {
  text-align: center;
}

.c-price__item p {
  margin-block-start: 0;
}

.c-price__item:nth-child(1) {
  grid-column: 1/-1;
}

.c-price__subtitle {
  color: #A6874D;
  font-size: 1.8em;
  display: flex;
  gap: 0.1em;
  line-height: 1;
  justify-content: center;
  align-items: baseline;
}

.c-price__subtitle::before {
  content: "";
  display: block;
  min-width: 90px;
  min-height: 90px;
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: relative;
  top: 0.6em;
}

.c-price__item:nth-child(1) .c-price__subtitle::before {
  background-image: url(../img/plan-halfday.svg);
}

.c-price__item:nth-child(2) .c-price__subtitle::before {
  background-image: url(../img/plan-1day.svg);
}

.c-price__item:nth-child(3) .c-price__subtitle::before {
  background-image: url(../img/plan-2day.svg);
}

.c-price__item:nth-child(3) .c-price__subtitle {
  position: relative;
  align-items: anchor-center;
}

.c-price__item:nth-child(3) .c-price__subtitle strong {
  position: relative;
  top: -0.2em;
}

.c-price__item:nth-child(3) .c-price__subtitle span {
  position: absolute;
  right: 50%;
  bottom: -7%;
  transform: translateX(100%);
}

.c-price__subtitle strong {
  font-size: 1.2em;
  display: inline-block;
}

.c-price__subtitle strong::first-letter {
  font-size: 1.4em;
}

.c-price__subtitle span {
  font-size: 0.68em;
}

.c-tax--exclude {
  color: var(--c-primary);
  font-weight: 700;
  font-size: 4em;
  text-box-trim: trim-both;
  padding-block-start: 0.2em;
}

.c-tax--exclude::first-letter {
  font-size: 0.68em;
}

.c-tax--include {
  color: #666666;
  font-weight: 700;
  text-box-trim: trim-both;
  font-size: 1.4em;
}

.c-tax--include span {
  font-size: 0.68em;
  padding-left: 0.25em;
}

.c-price__item:nth-child(1) {
  position: relative;
  padding: var(--space-3) 0;
}

.c-price__item:nth-child(1)::after, .c-price__item:nth-child(2)::after {
  content: "";
  background-image: url(../img/dashline.svg);
  background-repeat: repeat-x;
  display: block;
  position: absolute;
}

.c-price__item:nth-child(1)::after {
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
}

.c-price__item:nth-child(2) {
  position: relative;
}

.c-price__item:nth-child(2)::after {
  transform: rotate(90deg);
  right: -25%;
  top: 50%;
  height: 2px;
  width: 50%;
}

.c-note__list {
  padding: var(--space-3) var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.c-note__item {
  display: flex;
  font-size: 0.88em;
  font-weight: 700;
}

.c-note__item::before {
  content: "※";
}

/* =================================
   TB
================================= */
@media (max-width: calc(64rem - 0.01rem)) {
  .c-price__wrap {
    border-radius: 1.2em;
    padding: var(--space-6) var(--space-4) var(--space-4);
  }
  .c-price__title {
    font-size: 1.45em;
  }
  .c-price__subtitle {
    display: inline-block;
    font-size: 1.25em;
  }
  .c-price__subtitle::before {
    width: 100%;
    height: 100%;
    min-width: 60px;
    max-width: 60px;
    min-height: 60px;
    max-height: 60px;
    margin: 0 auto 0.5em;
  }
  .c-price__list {
    gap: 0;
  }
  .c-price__item:nth-child(3) .c-price__subtitle strong {
    position: relative;
    top: 0em;
  }
  .c-price__item:nth-child(3) .c-price__subtitle span {
    position: relative;
    transform: unset;
    right: auto;
    bottom: auto;
    display: block;
    padding-top: 0.3em;
  }
  .c-tax--exclude {
    padding-block-start: 0em;
    font-size: 3em;
  }
  .c-tax--include {
    font-size: 1em;
  }
  .c-tax--include span {
    font-size: 0.68em;
  }
  .c-price__item:nth-child(1)::after, .c-price__item:nth-child(2)::after {
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
  }
  .c-price__item:nth-child(1) {
    padding: var(--space-4) 0;
  }
  .c-price__item:nth-child(2), .c-price__item:nth-child(3) {
    padding: 0 0 var(--space-4) 0;
  }
  .c-price__item:nth-child(2)::after {
    transform: rotate(90deg);
    right: -30%;
    top: 50%;
    height: 2px;
    width: 60%;
    left: auto;
  }
  .c-note__list {
    padding: var(--space-5) var(--space-3) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
  }
  .c-note__item {
    font-size: 0.78em;
    text-align: left;
  }
}
/* =================================
   SP
================================= */
@media (max-width: calc(48rem - 0.01rem)) {
  .c-price__list {
    flex-direction: column;
    display: flex;
  }
  .c-price__wrap {
    border-radius: 1.2em;
    padding: var(--space-6) var(--space-4) var(--space-4);
  }
  .c-price__title {
    font-size: 1.45em;
  }
  .c-price__subtitle {
    display: inline-block;
    font-size: 1.25em;
  }
  .c-price__subtitle::before {
    width: 100%;
    height: 100%;
    min-width: 60px;
    max-width: 60px;
    min-height: 60px;
    max-height: 60px;
    margin: 0 auto 0.5em;
  }
  .c-price__list {
    gap: 0;
  }
  .c-price__item:nth-child(3) .c-price__subtitle strong {
    position: relative;
    top: 0em;
  }
  .c-price__item:nth-child(3) .c-price__subtitle span {
    position: relative;
    transform: unset;
    right: auto;
    bottom: auto;
    display: block;
    padding-top: 0.3em;
  }
  .c-tax--exclude {
    padding-block-start: 0em;
    font-size: 3em;
  }
  .c-tax--include {
    font-size: 1em;
  }
  .c-tax--include span {
    font-size: 0.68em;
  }
  .c-price__item:nth-child(1)::after, .c-price__item:nth-child(2)::after {
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
  }
  .c-price__item:nth-child(1) {
    padding: var(--space-4) 0;
  }
  .c-price__item:nth-child(2), .c-price__item:nth-child(3) {
    padding: 0 0 var(--space-4) 0;
  }
  .c-price__item:nth-child(2)::after {
    transform: unset;
    right: auto;
    top: auto;
    height: 2px;
    width: 100%;
  }
  .c-note__list {
    padding: var(--space-5) var(--space-3) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
  }
  .c-note__item {
    font-size: 0.78em;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .parent {
    grid-template-columns: repeat(2, 1fr);
  }
  .parent > :first-child {
    grid-column: 1/-1;
  }
}
/*　-------------------------------------
 FAQ
--------------------------------------- */
.c-faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  text-align: left;
  margin-block-start: var(--space-8);
}

.c-faq__item {
  background-color: #fff;
  border-radius: 1em;
  border: 4px solid var(--c-primary);
  padding: var(--space-3) var(--space-3) var(--space-4);
}

.c-faq__title {
  font-weight: 700;
  color: var(--c-primary);
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.c-faq__title::before {
  background-image: url(../img/ico-q.svg);
  content: "";
  display: block;
  width: 64px;
  min-width: 64px;
  height: 64px;
  min-height: 64px;
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.c-faq__content {
  font-weight: 700;
  padding-left: calc(64px + var(--space-2));
}

/* =================================
   TB
================================= */
@media (max-width: calc(64rem - 0.01rem)) {
  .c-faq__content {
    padding: 0 0 0 70px;
  }
  .c-faq__content p {
    font-size: 1em;
    margin-block-start: 0.5em;
  }
  .c-faq__title {
    align-items: flex-start;
    font-size: 1.5em;
  }
  .c-faq__title::before {
    width: 60px;
    min-width: 60px;
    height: 60px;
    min-height: 60px;
    position: relative;
    top: -5px;
  }
}
/* =================================
   SP
================================= */
@media (max-width: calc(48rem - 0.01rem)) {
  .c-faq__content {
    padding: 0;
  }
  .c-faq__content p {
    font-size: 1em;
    margin-block-start: 1em;
  }
  .c-faq__title {
    align-items: flex-start;
    font-size: 1.25em;
  }
  .c-faq__title::before {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    position: relative;
    top: 3px;
  }
}
/*　-------------------------------------
CONTACT
--------------------------------------- */
.c-contact__wrap {
  margin-inline: auto;
  border: 4px solid var(--c-primary);
  border-radius: 1.2em;
  background-color: var(--c-on-primary);
  padding: var(--space-5) var(--space-4) var(--space-4);
}

.c-contact__inner {
  background-color: #FEFAEF;
  border-radius: 1em;
  padding: var(--space-3) var(--space-3);
}

/* =========================
   フォーム全体
========================= */
dl, dt, dd {
  margin: 0;
  padding: 0;
}

/* =========================
   dlレイアウト共通
========================= */
.c-contact-form,
.formTable {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.c-contact-form dt,
.formTable dt {
  font-weight: 600;
  font-size: 1em;
  color: #333;
  display: flex;
  justify-content: flex-start;
}

.c-contact-form dd,
.formTable dd {
  margin: 0;
}

/* =========================
   入力系
========================= */
input[type=text], input[type=tel], input[type=email],
select,
textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fafafa;
  font-size: 1em;
  transition: all 0.2s ease;
}

/* フォーカス */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}

/* textarea */
textarea {
  min-height: 140px;
  resize: vertical;
}

/* select矢印ちょっと整える */
select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #666 50%), linear-gradient(135deg, #666 50%, transparent 50%);
  background-position: calc(100% - 15px) calc(50% - 3px), calc(100% - 10px) calc(50% - 3px);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

/* =========================
   必須ラベル
========================= */
.require {
  display: inline-block;
  margin-left: 1rem;
  padding: 0rem 0.4rem;
  font-size: 0.88rem;
  color: #fff;
  background: var(--c-primary);
  border-radius: 4px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* =========================
   ボタン
========================= */
input[type=submit] {
  display: block;
  width: fit-content;
  margin-top: 2rem;
  padding: 1rem 3rem;
  margin-inline: auto;
  border: none;
  border-radius: 999px;
  background: var(--c-primary);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

/* hover */
input[type=submit]:hover {
  opacity: 0.8;
}

/* active */
input[type=submit]:active {
  transform: translateY(0);
  box-shadow: none;
}

/* =========================
   PCで2カラムにする（任意）
========================= */
@media (min-width: 768px) {
  .c-contact-form,
  .formTable {
    grid-template-columns: 260px 1fr;
    align-items: flex-start;
  }
  .c-contact-form dt,
  .formTable dt {
    padding-top: 0.4rem;
    justify-content: space-between;
  }
}
/* =========================
   プライバシー
========================= */
.c-contact-privacy {
  margin-top: 2rem;
}

/* ボックス */
.c-contact-privacy__box {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fafafa;
  padding: 1rem;
  max-height: 200px;
  overflow-y: auto;
  text-align: left;
}

/* タイトル */
.c-contact-privacy__title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* 本文 */
.c-contact-privacy__content {
  line-height: 1.6;
  color: #555;
}

.c-contact-privacy__content p {
  margin-bottom: 0.8rem;
}

.c-contact-privacy__content p strong {
  display: block;
}

.c-contact__head {
  margin-bottom: 3em;
  font-weight: 500;
}

/* チェック */
.c-contact-privacy__check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
  font-size: 1.125rem;
  cursor: pointer;
}

/* チェックボックス少し整える */
.c-contact-privacy__check input {
  width: 18px;
  height: 18px;
}

/* =========================
   カスタムチェックボックス
========================= */
.c-contact-privacy__check {
  display: flex;
  align-items: center;
  gap: 2rem;
  cursor: pointer;
  position: relative;
  justify-content: center;
}

/* デフォルト消す */
.c-contact-privacy__check input {
  position: absolute;
  opacity: 0;
}

/* 見た目 */
.c-contact-privacy__check span {
  position: relative;
  padding-left: 36px;
}

/* ボックス */
.c-contact-privacy__check span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 2px solid var(--c-primary);
  background: #fff;
  transition: all 0.2s ease;
}

/* チェックマーク */
.c-contact-privacy__check span::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-60%) scale(0);
  width: 8px;
  height: 16px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform-origin: center;
  rotate: 45deg;
  transition: all 0.2s ease;
}

/* チェックされた時 */
.c-contact-privacy__check input:checked + span::before {
  background: var(--c-primary);
  border-color: var(--c-primary);
}

/* チェック表示 */
.c-contact-privacy__check input:checked + span::after {
  transform: translate(-70%, -50%) scale(1) rotate(5deg);
}

/* hoverでほんのり */
.c-contact-privacy__check:hover span::before {
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.c-contact__head {
  font-weight: 600;
}

.error_list {
  display: inline-block;
  margin: 2em auto;
  text-align: left;
}

.error_list li {
  margin-top: 0.5em;
}

.error_list li::before {
  content: "・";
}

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

.c-button--rewrite {
  display: block;
  width: auto;
  margin-top: 2rem;
  padding: 1rem 3rem;
  border: none;
  border-radius: 999px;
  color: #fff;
  border: 2px solid #666;
  background: #666;
  font-size: 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-inline: auto;
}

.c-button--rewrite:hover {
  color: #fff;
  border: 2px solid #666;
  background: #666;
}

.c-contact-form.is-confirm {
  text-align: left;
  gap: 0;
  border-bottom: 1px solid #666;
}

.c-contact-form.is-confirm dt, .c-contact-form.is-confirm dd {
  border-top: 1px solid #666;
  padding: 1em 2em;
}

/* =================================
   TB
================================= */
@media (max-width: calc(64rem - 0.01rem)) {
  .c-contact-form.is-confirm {
    display: block;
  }
  .c-contact-form.is-confirm dt, .c-contact-form.is-confirm dd {
    padding: 1em 0;
  }
  .c-contact-form.is-confirm dd {
    border-top: none;
    padding-top: 0;
  }
}
/* =================================
   SP
================================= */
@media (max-width: calc(48rem - 0.01rem)) {
  .c-contact-form.is-confirm {
    display: block;
  }
  .c-contact-form.is-confirm dt, .c-contact-form.is-confirm dd {
    padding: 1em 0;
  }
  .c-contact-form.is-confirm dd {
    border-top: none;
    padding-top: 0;
  }
  input[type=submit] {
    padding: 1rem 2rem;
  }
}
/* ===============================
   BUSINESS SECTION HEAD
=============================== */
/* =================================
   XL
================================= */
.l-section--business__head .c-media-text {
  gap: 0;
  align-items: stretch;
  margin-block-start: 100px;
}

.l-section--business__head .l-container {
  padding-block: 70px 0;
}

.l-section--business__head .c-media-text__content {
  background: var(--c-gradient-primary);
  color: var(--c-on-primary);
  padding: clamp(40px, 8vw, 50px) 0 clamp(40px, 8vw, 60px) clamp(40px, 8vw, 50px);
  align-items: flex-start;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.l-section--business__head .c-media-text__content p {
  line-height: 1.944;
}

.l-section--business__head .c-media-text__content p + p {
  margin-block-start: 1em;
}

/* =================================
   SP
================================= */
@media (max-width: calc(48rem - 0.01rem)) {
  .l-section--business__head .c-media-text {
    margin-block-start: 0;
  }
  .l-section--business__head .c-media-text__content {
    padding: 10.4vw 5.2vw;
  }
  .l-section--business__head .c-media-text__content p {
    line-height: 1.8;
    font-size: 0.9rem;
  }
}
/* ===============================
   BUSINESS HEADING
=============================== */
.c-section--business__heading {
  font-size: clamp(18px, 5vw, 26px);
  line-height: 2.077;
}

.c-section--business__heading strong {
  color: var(--c-accent-muted);
  font-weight: 700;
}

/* ===============================
   BUSINESS SECTION ADJUST
=============================== */
.l-section--business__head + .l-section--business__body::before,
.l-section--business__head + .l-section--business__body::after {
  display: none;
}

/* ===============================
   PAGE CATCHCOPY
=============================== */
.c-page-head__catchcopy {
  text-align: center;
  font-size: clamp(16px, 5vw, 20px);
  line-height: 1.8;
  margin-block-end: 100px;
}

/* ===============================
   BUSINESS TOP
=============================== */
.l-section--business__top .l-container {
  padding-block-start: 0;
}

/* ===============================
   SERVICE LIST
=============================== */
/* =================================
   XL
================================= */
/* =================================
   SP
================================= */
@media (max-width: calc(48rem - 0.01rem)) {
  .c-service__list {
    flex-direction: column;
  }
}
.c-scene__text {
  font-weight: 700;
  text-align: center;
}

.c-check__list {
  border-radius: var(--radius-sm);
  background-color: var(--c-bg-main);
  max-width: 920px;
  margin-inline: auto;
  padding-block: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.2em;
}

.c-check__item {
  width: 100%;
  max-width: 740px;
  margin-inline: auto;
  font-size: clamp(16px, 5vw, 20px);
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1em;
  font-weight: 700;
}

.c-check__item::before {
  mask-position: center;
  mask-size: cover;
  mask-repeat: no-repeat;
  width: 1.5em;
  height: 1.5em;
  content: "";
  display: inline-block;
  background-color: var(--c-primary);
  mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg id='icon-check' data-name='icon-check' xmlns='http://www.w3.org/2000/svg' version='1.1' viewBox='0 0 30 30'%3E%3Cdefs%3E%3Cstyle%3E      .st0 {        fill: %23007061;      }    %3C/style%3E%3C/defs%3E%3Cpath id='icon_check' class='st0' d='M30,15c0-.7,0-1.4-.1-2.1-.1-.8-.9-1.3-1.6-1.2-.7.1-1.3.8-1.2,1.6,0,.6.1,1.1.1,1.7,0,6.7-5.5,12.1-12.2,12.1-6.7,0-12.1-5.5-12.1-12.2,0-6.7,5.5-12.1,12.2-12.1,1.3,0,2.6.2,3.9.6.8.2,1.5-.2,1.8-1,.2-.7-.2-1.4-.9-1.7C12-1.9,3.4,2.3.8,10.2s1.6,16.4,9.4,19c7.8,2.7,16.4-1.6,19-9.4.5-1.5.8-3.2.8-4.8M15.2,20.7L29.1,4.1c.5-.6.4-1.5-.2-2s-1.5-.4-2,.2h0l-13,15.5-3.5-2.9c-.6-.5-1.5-.4-2,.2-.5.6-.4,1.5.2,2l4.6,3.8c.6.5,1.5.4,2-.2,0,0,0,0,0,0'/%3E%3C/svg%3E");
}

.c-form {
  width: min(100%, 66.5rem);
  margin-inline: auto;
  padding-inline: clamp(1rem, 2vw, 1.9rem);
  box-sizing: border-box;
}

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

@font-face {
  font-family: "Local Noto Sans JP";
  src: local("Noto Sans JP"), local("Noto Sans CJK JP Regular");
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  line-height: 1.6;
  font-family: var(--fs-ja);
  color: var(--c-text-main);
  letter-spacing: 0.05em;
  background-color: var(--c-bg-main);
}

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

h1, h2, h3, h4, h5, h6, ul, ol, p, figure, img {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  color: var(--c-text-main);
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

/*# sourceMappingURL=style.css.map */
