@charset "UTF-8";
/* ---------------------------
  CSS Reset
----------------------------- */
* {
  min-inline-size: 0;
}

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

:where(html) {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

:where(body) {
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

:where(body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol) {
  margin: 0;
}

:where(ul, ol) {
  list-style-type: "";
  padding: unset;
}

:where(a:not([class])) {
  text-decoration-skip-ink: auto;
}

:where(a) {
  text-decoration: none;
}

:where(img, picture) {
  max-width: 100%;
  height: auto;
  display: block;
}

:where(input, button, textarea, select) {
  font: inherit;
}

:where(input[type=text], textarea) {
  font-size: 16px;
}

:where(textarea) {
  field-sizing: content;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:where(:any-link,
button,
[type=button],
[type=reset],
[type=submit],
label[for],
select,
summary,
[role=tab],
[role=button]) {
  cursor: pointer;
}

:focus:not(:focus-visible) {
  outline: none;
}

:where(address) {
  font-style: normal;
}

:where(table) {
  border-collapse: collapse;
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after,
  ::backdrop {
    background-attachment: scroll !important;
    transition-delay: 0s !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
/* ---------------------------
  variable
----------------------------- */
:root {
  --black: #2E2E2E;
  --pink: #FFA096;
  --blue: #00B9C9;
  --lightBlue: #EEF8FA;
  --red: #F32322;
  --bgMainColor: var(--lightBlue);
  --bgSubColor: #F9F9F9;
  --fontMainColor: var(--black);
  --fontSubColor: #777777;
  --borderMainColor: #eeeeee;
  --borderSubColor: #cccccc;
  --fontMainFamily: "Noto Sans JP", sans-serif;
  --fontMainWeight: 700;
  --fontSubWeight: 400;
  --headerHeight: 100px;
  --headerHeightSp: 60px;
  --borderRadius: clamp(20px, 15.45px + 1.212vw, 30px);
}

/* ---------------------------
  mixin
----------------------------- */
/* ---------------------------
  base
----------------------------- */
html {
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  hyphens: auto;
}

body {
  line-height: 1.75;
  color: var(--fontMainColor);
  font-family: var(--fontMainFamily);
  font-weight: var(--fontMainWeight);
  font-feature-settings: "pkna";
  letter-spacing: 0.04em;
  overflow-x: clip;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

a {
  color: var(--font-color-primary);
}

/* ---------------------------
  utility
----------------------------- */
.wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 640px) {
  .wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.br-tab {
  display: none;
}
@media screen and (max-width: 896px) {
  .br-tab {
    display: inline;
  }
}

.br-tab-none {
  display: inline;
}
@media screen and (max-width: 896px) {
  .br-tab-none {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 640px) {
  .br-sp {
    display: inline;
  }
}

.br-sp-none {
  display: inline;
}
@media screen and (max-width: 640px) {
  .br-sp-none {
    display: none;
  }
}

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

.forced-wide {
  margin-inline: calc(50% - 50vi);
}

.forced-wide-bg {
  border-image: linear-gradient(var(--_background) 0 0) fill 0//0 100vi;
}

/* ---------------------------
  component
----------------------------- */
.c-btn {
  display: block;
  width: fit-content;
  background-color: var(--pink);
  color: #ffffff;
  text-align: center;
  font-size: clamp(18px, 16.64px + 0.364vw, 21px);
  border-radius: 2em;
  border: 3px solid #ffffff;
  padding: 0.7em 3em 0.8em;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) {
  .c-btn:hover {
    opacity: 0.7;
  }
}

.c-head {
  font-size: 60px;
  margin-bottom: 0.5em;
  font-size: clamp(30px, 16.36px + 3.636vw, 60px);
}
.c-head::before {
  content: "";
  display: block;
  height: 0.5em;
  aspect-ratio: 205/30;
  background-image: url(../img/common/headline_logo.svg);
  background-size: contain;
  background-position: left top;
  background-repeat: no-repeat;
}
.c-head--small {
  font-size: clamp(26px, 10.55px + 4.121vw, 60px);
}
@media screen and (max-width: 640px) {
  .c-head--small {
    margin-bottom: 1em;
  }
}

/* ---------------------------
  header
----------------------------- */
.header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid #ffffff;
  background-color: var(--blue);
}
@media screen and (max-width: 896px) {
  .header {
    border-bottom: none;
  }
}
@media screen and (max-width: 896px) {
  .header::after {
    content: "";
    display: block;
    width: 1px;
    height: 60px;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 61px;
    z-index: 2000;
  }
}
@media screen and (max-width: 896px) {
  .header::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 2000;
  }
}
.header--top {
  background-color: transparent;
}
@media screen and (max-width: 896px) {
  .header--top {
    background-color: var(--blue);
  }
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1900px;
  padding: 0 40px;
  height: calc(var(--headerHeight) - 1px);
}
@media screen and (max-width: 1024px) {
  .header-wrapper {
    padding: 0 32px;
  }
}
@media screen and (max-width: 896px) {
  .header-wrapper {
    height: var(--headerHeightSp);
  }
}
@media screen and (max-width: 640px) {
  .header-wrapper {
    padding: 0 20px;
  }
}

.header-head {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2000;
}
@media screen and (max-width: 1024px) {
  .header-head {
    gap: 32px;
  }
}

.header-head__logo {
  display: block;
  padding-bottom: 4px;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) {
  .header-head__logo:hover {
    opacity: 0.7;
  }
}
.header-head__logo p {
  color: #ffffff;
  font-weight: 500;
  font-size: 12px;
}
@media screen and (max-width: 896px) {
  .header-head__logo p {
    font-size: 10px;
  }
}
@media screen and (max-width: 896px) {
  .header-head__logo img {
    width: 180px;
  }
}

.header-head__action {
  background-color: var(--pink);
  color: #ffffff;
  text-align: center;
  font-size: 18px;
  border-radius: 2em;
  border: 2px solid #ffffff;
  padding: 0.3em 1.8em 0.4em;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) {
  .header-head__action:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1024px) {
  .header-head__action {
    font-size: 16px;
  }
}
@media screen and (max-width: 896px) {
  .header-head__action {
    display: none;
  }
}

/* ---------------------------
  navigation
----------------------------- */
@media screen and (max-width: 896px) {
  .g-nav {
    position: fixed;
    top: 0;
    right: -101%;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    padding: 110px 20px;
    overflow-y: auto;
    background-color: var(--blue);
    transition: right 0.2s ease-in;
  }
}
.g-nav.is_active {
  right: 0;
}

.g-nav-list {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .g-nav-list {
    gap: 0;
  }
}
@media screen and (max-width: 896px) {
  .g-nav-list {
    display: block;
  }
}

@media screen and (max-width: 896px) {
  .g-nav-list__item {
    border-top: 1px solid #80ccd8;
  }
}
@media screen and (max-width: 896px) {
  .g-nav-list__item:last-of-type {
    border-bottom: 1px solid #80ccd8;
  }
}
.g-nav-list__item a {
  display: block;
  color: #ffffff;
  padding: 1em;
  text-decoration: none;
  transition: text-decoration 0.1s ease-in-out;
}
@media (hover: hover) {
  .g-nav-list__item a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 1024px) {
  .g-nav-list__item a {
    font-size: 14px;
  }
}
@media screen and (max-width: 896px) {
  .g-nav-list__item a {
    font-weight: 500;
    padding: 1em 2em;
    background-image: url(../img/common/right_chevron_white.svg);
    background-position: left 1em center;
    background-repeat: no-repeat;
    background-size: 6px;
  }
}

.g-nav-list__item--sp {
  display: none;
}
@media screen and (max-width: 896px) {
  .g-nav-list__item--sp {
    display: block;
  }
}
.g-nav-list__item--sp a {
  text-transform: uppercase;
}

.g-nav-list__item--action {
  margin-bottom: 50px;
}
.g-nav-list__item--action a {
  margin-inline: auto;
}

/* ---------------------------
  hamb
----------------------------- */
.hamburger {
  display: none;
  width: 60px;
  height: 60px;
  padding: 22px 18px;
  background-color: var(--blue);
  border: none;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
}
@media screen and (max-width: 896px) {
  .hamburger {
    display: block;
  }
}
.hamburger.is_active .hamburger__inner {
  transform: translateX(2px);
}
.hamburger.is_active .hamburger__inner span:nth-of-type(1) {
  transform: rotate(40deg);
}
.hamburger.is_active .hamburger__inner span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.is_active .hamburger__inner span:nth-of-type(3) {
  transform: rotate(-40deg);
}

.hamburger__inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  transition: 0.3s ease-in-out;
}
.hamburger__inner span {
  display: block;
  width: 100%;
  height: 1px;
  opacity: 1;
  background-color: #fff;
  transform-origin: left;
  transition: 0.3s ease-in-out;
}

/* ---------------------------
  footer
----------------------------- */
.footer {
  background-color: var(--bgMainColor);
}
.footer > .wrapper {
  position: relative;
}

.footer-copyright {
  background-color: #DAF3F7;
  text-align: center;
  padding: 0.4em 0 0.6em;
  border-top: 1px solid var(--blue);
}
.footer-copyright small {
  font-size: 12px;
  font-weight: 400;
}

.footer-info {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 100px 0;
}
@media screen and (max-width: 896px) {
  .footer-info {
    flex-direction: column;
    align-items: center;
    padding: 80px 0;
  }
}
@media screen and (max-width: 640px) {
  .footer-info {
    padding: 40px 0;
  }
}

@media screen and (max-width: 640px) {
  .footer-info__logo {
    padding: 0 16px;
  }
}
.footer-info__logo span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 4px;
}
.footer-info__logo .c-btn {
  margin-top: 40px;
  width: 100%;
  max-width: 360px;
}
@media screen and (max-width: 640px) {
  .footer-info__logo .c-btn {
    margin-top: 24px;
  }
}

.f-meta-item {
  display: grid;
  grid-template-columns: 75px auto;
  gap: 24px;
}
@media screen and (max-width: 640px) {
  .f-meta-item {
    grid-template-columns: 60px auto;
    gap: 20px;
  }
}
.f-meta-item + .f-meta-item {
  margin-top: 56px;
}
@media screen and (max-width: 896px) {
  .f-meta-item + .f-meta-item {
    margin-top: 40px;
  }
}
@media screen and (max-width: 640px) {
  .f-meta-item + .f-meta-item {
    margin-top: 32px;
  }
}

.f-meta-item__text p {
  font-weight: 500;
  font-size: clamp(12px, 10.18px + 0.485vw, 16px);
}
.f-meta-item__text p + p {
  margin-top: 0.4em;
}
.f-meta-item__text strong {
  font-size: 1em;
  font-weight: 700;
}

.pagetop {
  display: block;
  position: absolute;
  top: 0;
  right: 40px;
  translate: 0 -50%;
  z-index: 10;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) {
  .pagetop:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 896px) {
  .pagetop {
    display: none;
  }
}

/* ---------------------------
  top
----------------------------- */
.hero-section {
  margin-top: calc(-1 * var(--headerHeight));
}
@media screen and (max-width: 896px) {
  .hero-section {
    margin-top: 0;
  }
}

.hero {
  position: relative;
}

.hero__bg {
  position: relative;
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 900px;
}
@media screen and (max-width: 896px) {
  .hero__bg {
    min-height: inherit;
  }
}

.hero__text {
  position: absolute;
  inset: 0;
  z-index: 10;
  max-width: 670px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--headerHeight);
  color: #ffffff;
}
@media screen and (max-width: 896px) {
  .hero__text {
    margin-top: 0;
  }
}
@media screen and (max-width: 640px) {
  .hero__text {
    padding: 0 40px;
  }
}
@media screen and (max-width: 480px) {
  .hero__text {
    padding: 0 20px;
  }
}
.hero__text h2 {
  font-size: clamp(21px, 10.55px + 2.788vw, 44px);
  line-height: 1.6;
  margin-top: 0.8em;
}
.hero__text p {
  font-size: clamp(12px, 10.18px + 0.485vw, 16px);
  margin-top: 1em;
}
.hero__text img {
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 896px) {
  .hero__text img {
    width: 80%;
  }
}

.common-section {
  padding: 80px 0;
}
@media screen and (max-width: 640px) {
  .common-section {
    padding: 40px 0;
  }
}

.lead-section {
  background-color: var(--bgSubColor);
}

.lead {
  display: grid;
  grid-template-columns: 5.8fr 4.2fr;
  gap: 64px;
  align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .lead {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: 640px) {
  .lead {
    gap: 20px;
  }
}

.lead__text h2 {
  font-size: clamp(20px, 16.36px + 0.97vw, 28px);
  padding: 0 16px;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 640px) {
  .lead__text h2 {
    padding: 0 10px;
  }
}

.lead__img img {
  margin-inline: auto;
}
@media screen and (max-width: 640px) {
  .lead__img img {
    width: 60%;
  }
}

.lead-text-box {
  --gutter: 16px;
  padding: var(--gutter);
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 640px) {
  .lead-text-box {
    --gutter: 10px;
  }
}
.lead-text-box::before, .lead-text-box::after {
  content: "";
  display: block;
  position: absolute;
}
.lead-text-box::before {
  width: 100%;
  height: calc(100% - 2 * var(--gutter));
  top: var(--gutter);
  left: 0;
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
.lead-text-box::after {
  width: calc(100% - 2 * var(--gutter));
  height: 100%;
  top: 0;
  left: var(--gutter);
  border-right: 2px solid var(--black);
  border-left: 2px solid var(--black);
}

.lead-text-box__inner {
  background-color: #ffffff;
  padding: 20px 20px 32px;
}
@media screen and (max-width: 640px) {
  .lead-text-box__inner {
    padding: 16px 16px 24px;
  }
}
.lead-text-box__inner p {
  padding: 0 0.6em;
  position: relative;
  z-index: 10;
  background-color: #fff;
  background-image: linear-gradient(90deg, transparent 0%, transparent 60%, #fff 60%, #fff 100%), linear-gradient(180deg, #999 1px, transparent 1px);
  background-size: 16px 100%, 100% 2.5em;
  background-position: 0 -1px;
  line-height: 2.5em;
  padding-bottom: 1px;
}
@media screen and (max-width: 640px) {
  .lead-text-box__inner p {
    font-size: 14px;
    padding: 0;
    background-size: 12px 100%, 100% 2.5em;
  }
}

.about-section {
  background-color: var(--bgMainColor);
}

.about-head {
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .about-head {
    margin-bottom: 32px;
  }
}

.about-head__bubble {
  width: fit-content;
  margin-inline: auto;
  background-color: var(--pink);
  border-radius: 2em;
  text-align: center;
  font-size: clamp(15px, 5.45px + 2.545vw, 36px);
  padding: 0.5em 1.5em;
  color: #ffffff;
  position: relative;
  margin-bottom: 1.5em;
}
.about-head__bubble::after {
  --size: 40px;
  content: "";
  display: block;
  height: calc(1 * var(--size) / 2);
  width: var(--size);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: var(--pink);
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 99%;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .about-head__bubble::after {
    --size: 20px;
  }
}

.about-head__logo {
  width: fit-content;
  margin-inline: auto;
  padding-left: 6px;
}
.about-head__logo span {
  display: block;
  color: var(--blue);
  font-size: clamp(16px, 12.36px + 0.97vw, 24px);
  margin-bottom: 4px;
}

.about-body {
  margin-bottom: 48px;
  border-top: 1px solid var(--blue);
  border-bottom: 1px solid var(--blue);
}
@media screen and (max-width: 640px) {
  .about-body {
    margin-bottom: 32px;
  }
}
.about-body p {
  font-size: clamp(16px, 14.18px + 0.485vw, 20px);
  padding: 1em;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 640px) {
  .about-body br {
    display: none;
  }
}

.about-foot {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 896px) {
  .about-foot {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 640px) {
  .about-foot {
    gap: 20px;
  }
}

.about-foot__box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
  border-radius: var(--borderRadius);
  padding: 40px;
}
@media screen and (max-width: 640px) {
  .about-foot__box {
    padding: 24px;
  }
}
.about-foot__box img {
  margin-inline: auto;
}
.about-foot__box p {
  font-size: 15px;
  margin-top: 1.1em;
}
@media screen and (max-width: 640px) {
  .about-foot__box p {
    font-size: 14px;
  }
}
.note {
    text-align: right;
    font-size: 13px;
}
@media screen and (max-width: 640px) {
  .note {
    font-size: 10px;
  }
}

.price-section {
  background-color: var(--bgSubColor);
}

.price {
  background-color: var(--bgMainColor);
  padding: 60px;
  border-radius: var(--borderRadius);
}
@media screen and (max-width: 1024px) {
  .price {
    padding: 40px;
  }
}
@media screen and (max-width: 640px) {
  .price {
    padding: 24px 16px;
  }
}

.price__list {
  display: grid;
  grid-template-columns: 300px auto;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 896px) {
  .price__list {
    grid-template-columns: auto auto;
  }
}
@media screen and (max-width: 640px) {
  .price__list {
    border-radius: 10px;
  }
}
.price__list + .price__list {
  margin-top: 20px;
}
@media screen and (max-width: 640px) {
  .price__list + .price__list {
    margin-top: 16px;
  }
}
.price__list dt {
  color: #ffffff;
  font-size: clamp(16px, 6.91px + 2.424vw, 36px);
  line-height: 1.5;
  background-color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  padding: 0 0.5em;
}
.price__list dd {
  padding: 0 1em 0.15em;
  font-size: clamp(24px, 7.64px + 4.364vw, 60px);
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .price__list dd {
    padding: 0.2em 0.8em 0.25em;
  }
}
.price__list dd span {
  font-size: clamp(12px, 4.73px + 1.939vw, 28px);
}

.price__notice {
  margin-top: 1em;
  text-align: right;
  font-size: clamp(13px, 8px + 1.333vw, 24px);
}
@media screen and (max-width: 640px) {
  .price__notice {
    text-align: left;
  }
}

.strength {
  display: grid;
  grid-template-columns: 6.1fr 3.9fr;
  gap: 64px;
}
@media screen and (max-width: 1024px) {
  .strength {
    gap: 20px 40px;
  }
}
@media screen and (max-width: 896px) {
  .strength {
    grid-template-columns: 1fr;
  }
}

.strength__text p {
  font-size: clamp(14px, 12.18px + 0.485vw, 18px);
}
.strength__text span {
  display: block;
  font-size: clamp(12px, 11.09px + 0.242vw, 14px);
  line-height: 1.5;
  margin-top: 0.5em;
}
.strength__text span::before {
  content: "※";
  font-size: 1em;
  display: inline-block;
}
.strength__text p + p {
  margin-top: 1.5em;
}

.strength__img img {
  margin-inline: auto;
}
@media screen and (max-width: 640px) {
  .strength__img img {
    width: 60%;
  }
}

.step-section {
  background-color: var(--bgMainColor);
}

.step {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 20px;
  padding-top: 20px;
  padding-left: 10px;
}
@media screen and (max-width: 1024px) {
  .step {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .step {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
    padding-right: 10px;
  }
}

.step-list {
  position: relative;
  padding: 40px 28px 24px;
  background-color: #fff;
  border-radius: var(--borderRadius);
}
@media screen and (max-width: 640px) {
  .step-list {
    padding: 28px 20px 24px;
  }
}
.step-list p {
  font-size: clamp(14px, 13.09px + 0.242vw, 16px);
  margin-top: 1.5em;
  text-align: justify;
}

.step-list__number {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  translate: -10px -20px;
}

.step-list__ill {
  margin-inline: auto;
}

.step-action {
  margin-inline: auto;
  margin-top: 40px;
}

.event-section {
  padding-bottom: 100px;
}
@media screen and (max-width: 896px) {
  .event-section {
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 640px) {
  .event-section {
    padding-bottom: 40px;
  }
}

.event {
  display: grid;
  grid-template-columns: 6.4fr 3.6fr;
  gap: 40px;
  margin-bottom: 64px;
}
@media screen and (max-width: 896px) {
  .event {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 640px) {
  .event {
    gap: 20px;
  }
}

.event__text p {
  font-size: clamp(14px, 12.18px + 0.485vw, 18px);
}

.event__img img {
  margin-inline: auto;
}
@media screen and (max-width: 640px) {
  .event__img img {
    width: 60%;
  }
}

.event-detail {
  padding: 32px 60px;
  border-radius: var(--borderRadius);
  background-color: var(--bgMainColor);
}
@media screen and (max-width: 1024px) {
  .event-detail {
    padding: 32px 40px;
  }
}
@media screen and (max-width: 640px) {
  .event-detail {
    padding: 24px 20px;
  }
}

.event-detail-headline {
  text-align: center;
  margin-bottom: 1.5em;
  font-size: clamp(16px, 13.27px + 0.727vw, 22px);
}
@media screen and (max-width: 640px) {
  .event-detail-headline {
    text-align: left;
  }
}

.event-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1040px;
  margin-inline: auto;
}
@media screen and (max-width: 896px) {
  .event-detail-grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 640px) {
  .event-detail-grid {
    gap: 20px;
  }
}

.event-detail-grid__item {
  background-color: #fff;
  border-radius: var(--borderRadius);
  padding: 40px 60px 44px;
}
@media screen and (max-width: 1024px) {
  .event-detail-grid__item {
    padding: 40px 40px 44px;
  }
}
@media screen and (max-width: 640px) {
  .event-detail-grid__item {
    padding: 20px 20px 24px;
  }
}
.event-detail-grid__item h4 {
  font-size: clamp(14px, 13.09px + 0.242vw, 16px);
  width: fit-content;
  color: #ffffff;
  background-color: var(--blue);
  text-align: center;
  padding: 0.15em 1.5em 0.2em;
  border-radius: 0.5em;
  margin-bottom: 1em;
}
.event-detail-grid__item ul {
  list-style: none;
  padding-left: 0;
}
.event-detail-grid__item li {
  font-size: clamp(14px, 13.09px + 0.242vw, 16px);
  padding-left: 1.15em;
  position: relative;
  line-height: 1.3;
}
.event-detail-grid__item li span {
  display: block;
  font-size: 0.8em;
  text-indent: -0.6em;
}
.event-detail-grid__item li + li {
  margin-top: 0.5em;
}
.event-detail-grid__item li::before {
  content: "●";
  color: var(--blue);
  font-size: 1em;
  position: absolute;
  top: 0;
  left: 0;
}

.event-detail-notice {
  text-align: right;
  margin-top: 1em;
  font-size: clamp(14px, 12.18px + 0.485vw, 18px);
}
@media screen and (max-width: 640px) {
  .event-detail-notice {
    text-align: left;
  }
}

/* ---------------------------
  page
----------------------------- */
.breadcrumbs {
  background-color: var(--lightBlue);
}
@media screen and (max-width: 896px) {
  .breadcrumbs {
    display: none;
  }
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 50px;
}
.breadcrumbs-list li {
  display: flex;
  align-items: center;
  gap: 30px;
}
.breadcrumbs-list li:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 6px;
  height: 9px;
  background-image: url(../img/common/breadcrumbs_chevron.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.breadcrumbs-list a {
  display: inline-block;
  font-size: 13px;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) {
  .breadcrumbs-list a:hover {
    opacity: 0.7;
  }
}
.breadcrumbs-list span {
  display: inline-block;
  font-size: 13px;
}

.page-common-section {
  padding: 80px 0 100px;
}
@media screen and (max-width: 896px) {
  .page-common-section {
    padding: 80px 0;
  }
}
@media screen and (max-width: 640px) {
  .page-common-section {
    padding: 40px 0;
  }
}

.p-entry {
  padding: 60px;
  border-radius: var(--borderRadius);
  background-color: var(--bgMainColor);
}
@media screen and (max-width: 1024px) {
  .p-entry {
    padding: 40px;
  }
}
@media screen and (max-width: 640px) {
  .p-entry {
    width: calc(100% + 32px);
    margin: 0 -16px;
    padding: 16px;
    border-radius: 0;
  }
}

.p-entry-wrapper {
  background-color: #fff;
  max-width: 960px;
  margin-inline: auto;
  padding: 60px 60px 80px;
  border-radius: var(--borderRadius);
}
@media screen and (max-width: 1024px) {
  .p-entry-wrapper {
    padding: 60px 40px 80px;
  }
}
@media screen and (max-width: 896px) {
  .p-entry-wrapper {
    padding: 40px;
  }
}
@media screen and (max-width: 640px) {
  .p-entry-wrapper {
    padding: 24px 20px 32px;
  }
}

.p-entry-head {
  margin-bottom: 100px;
}
@media screen and (max-width: 896px) {
  .p-entry-head {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 640px) {
  .p-entry-head {
    margin-bottom: 48px;
  }
}

@media screen and (max-width: 640px) {
  .p-entry-head__notice {
    font-size: 14px;
  }
}

.p-entry-head__confirm {
  font-size: 14px;
  font-weight: 400;
  margin-top: 1em;
}
@media screen and (max-width: 640px) {
  .p-entry-head__confirm {
    font-size: 12px;
  }
}

.p-entry-head__list li {
  position: relative;
  padding-left: 1.1em;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 640px) {
  .p-entry-head__list li {
    font-size: 12px;
  }
}
.p-entry-head__list li::before {
  content: "●";
  display: block;
  font-size: 1em;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.p-entry-head__caution {
  padding-top: 1.5em;
  margin-top: 1.5em;
  border-top: 1px solid var(--borderSubColor);
}
@media screen and (max-width: 640px) {
  .p-entry-head__caution {
    font-size: 14px;
  }
}

.p-entry-form dl {
  display: grid;
  grid-template-columns: 220px auto;
  align-items: center;
  min-height: 110px;
}
@media screen and (max-width: 896px) {
  .p-entry-form dl {
    grid-template-columns: 1fr;
    min-height: inherit;
  }
}
.p-entry-form dt {
  border-top: 1px solid var(--borderSubColor);
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  padding: 30px;
  padding-right: 0;
}
@media screen and (max-width: 896px) {
  .p-entry-form dt {
    padding: 30px 0 20px;
  }
}
@media screen and (max-width: 640px) {
  .p-entry-form dt {
    font-size: 14px;
    padding-bottom: 16px;
  }
}
.p-entry-form dt:last-of-type {
  border-bottom: 1px solid var(--borderSubColor);
}
@media screen and (max-width: 896px) {
  .p-entry-form dt:last-of-type {
    border-bottom: none;
  }
}
.p-entry-form dt.must::after {
  content: "必須";
  font-size: 10px;
  color: #ffffff;
  font-weight: 700;
  background-color: var(--red);
  border-radius: 0.4em;
  padding: 0.1em 0.5em;
  display: inline-block;
  white-space: nowrap;
}
.p-entry-form dd {
  border-top: 1px solid var(--borderSubColor);
  height: 100%;
  padding: 30px;
}
@media screen and (max-width: 896px) {
  .p-entry-form dd {
    border-top: none;
    padding: 0 0 30px;
  }
}
.p-entry-form dd:last-of-type {
  border-bottom: 1px solid var(--borderSubColor);
}
.p-entry-form label {
  cursor: pointer;
}
.p-entry-form input, .p-entry-form textarea {
  display: block;
  padding: 0.5em 1em;
  width: 100%;
  margin: 0;
  background-color: #fff;
  border: 3px solid var(--borderMainColor);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
}
.p-entry-form input::placeholder, .p-entry-form textarea::placeholder {
  color: #BABABA;
  font-weight: 400;
}
.p-entry-form textarea {
  height: 180px;
  resize: vertical;
  min-height: 80px;
}
.p-entry-form input[type=radio], .p-entry-form input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  width: 20px;
  height: 20px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 3px solid var(--borderMainColor);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.p-entry-form input[type=radio]::after, .p-entry-form input[type=checkbox]::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--borderMainColor);
}
.p-entry-form input[type=radio]:checked, .p-entry-form input[type=checkbox]:checked {
  border-color: var(--blue);
}
.p-entry-form input[type=radio]:checked::after, .p-entry-form input[type=checkbox]:checked::after {
  background-color: var(--blue);
}
.p-entry-form .name {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
}
@media screen and (max-width: 1024px) {
  .p-entry-form .name {
    grid-template-columns: 1fr;
  }
}
.p-entry-form .name input {
  max-width: 220px;
}
.p-entry-form .name label {
  display: flex;
  align-items: center;
  gap: 12px;
}
.p-entry-form .name span {
  width: 2em;
  font-size: 14px;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .p-entry-form .name span {
    font-size: 13px;
  }
}
.p-entry-form .checkbox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
}
.p-entry-form .checkbox label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-entry-form .checkbox span {
  font-size: 14px;
  white-space: nowrap;
}
@media screen and (max-width: 640px) {
  .p-entry-form .checkbox span {
    font-size: 13px;
  }
}

.p-entry-confirm {
  margin-top: 80px;
}
@media screen and (max-width: 896px) {
  .p-entry-confirm {
    margin-top: 64px;
  }
}
@media screen and (max-width: 640px) {
  .p-entry-confirm {
    margin-top: 32px;
  }
}

.p-entry-confirm__headline {
  text-align: center;
  font-weight: 400;
  margin-bottom: 1em;
}
@media screen and (max-width: 640px) {
  .p-entry-confirm__headline {
    font-size: 14px;
  }
}

.p-entry-confirm__text {
  font-weight: 400;
  font-size: 13px;
}
@media screen and (max-width: 640px) {
  .p-entry-confirm__text {
    font-size: 12px;
  }
}
.p-entry-confirm__text a {
  text-decoration: underline;
  transition: text-decoration 0.1s ease-in-out;
}
@media (hover: hover) {
  .p-entry-confirm__text a:hover {
    text-decoration: none;
  }
}

.p-entry-submit {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
@media screen and (max-width: 640px) {
  .p-entry-submit {
    margin-top: 20px;
    flex-direction: column;
    gap: 24px;
  }
}

.p-entry-submit__confirm {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media screen and (max-width: 640px) {
  .p-entry-submit__confirm span {
    font-size: 14px;
  }
}

.p-entry-submit__button {
  display: block;
  appearance: none;
  -webkit-appearance: none;
  text-align: center;
  color: #ffffff;
  background-color: #888888;
  border: none;
  font-weight: 700;
  border-radius: 6px;
  width: 100%;
  max-width: 220px;
  padding: 0.8em;
  transition: opacity 0.2s ease-in-out;
  opacity: 0.8;
  pointer-events: none;
}
@media (hover: hover) {
  .p-entry-submit__button:hover {
    opacity: 0.7;
  }
}
.p-entry-submit__button.is_active {
  opacity: 1;
  pointer-events: auto;
  background-color: var(--blue);
  cursor: pointer;
}

.p-confirm-error h2 {
  text-align: center;
  font-size: clamp(14px, 11.27px + 0.727vw, 20px);
  margin-bottom: 1.5em;
}
@media screen and (max-width: 640px) {
  .p-confirm-error h2 {
    text-align: left;
  }
}
.p-confirm-error p {
  color: var(--red);
  font-size: clamp(14px, 13.09px + 0.242vw, 16px);
  text-align: center;
}

.p-confirm-error__back {
  display: block;
  appearance: none;
  -webkit-appearance: none;
  text-align: center;
  color: #ffffff;
  background-color: #777777;
  border: none;
  font-weight: 700;
  border-radius: 6px;
  width: 100%;
  max-width: 200px;
  padding: 0.8em;
  transition: opacity 0.2s ease-in-out;
  margin-top: 40px;
}
@media (hover: hover) {
  .p-confirm-error__back:hover {
    opacity: 0.7;
  }
}

.p-confirm-notice {
  text-align: center;
  font-size: clamp(14px, 11.27px + 0.727vw, 20px);
  margin-bottom: 1.5em;
  font-weight: 500;
}

.p-confirm-table {
  max-width: 640px;
  margin-inline: auto;
  width: 100%;
  border-collapse: collapse;
}
.p-confirm-table th, .p-confirm-table td {
  font-weight: 500;
  text-align: left;
  font-size: clamp(13px, 11.64px + 0.364vw, 16px);
  padding: 1em 1.5em;
  border: 1px solid var(--borderMainColor);
}
@media screen and (max-width: 640px) {
  .p-confirm-table th, .p-confirm-table td {
    padding: 0.8em;
  }
}
.p-confirm-table th {
  white-space: nowrap;
}

.p-confirm-submit {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.p-confirm-submit input {
  display: block;
  appearance: none;
  -webkit-appearance: none;
  text-align: center;
  color: #ffffff;
  background-color: var(--blue);
  border: none;
  font-weight: 700;
  border-radius: 6px;
  width: 100%;
  max-width: 200px;
  padding: 0.8em;
  transition: opacity 0.2s ease-in-out;
}
@media (hover: hover) {
  .p-confirm-submit input:hover {
    opacity: 0.7;
  }
}
.p-confirm-submit .p-confirm-submit__back {
  background-color: #777777;
}

.p-about {
  padding: 60px;
  border-radius: var(--borderRadius);
  background-color: var(--bgMainColor);
}
@media screen and (max-width: 1024px) {
  .p-about {
    padding: 40px;
  }
}
@media screen and (max-width: 640px) {
  .p-about {
    width: calc(100% + 32px);
    margin: 0 -16px;
    padding: 16px;
    border-radius: 0;
  }
}

.p-about-wrapper {
  background-color: #fff;
  max-width: 960px;
  margin-inline: auto;
  padding: 60px 60px 80px;
  border-radius: var(--borderRadius);
}
@media screen and (max-width: 1024px) {
  .p-about-wrapper {
    padding: 60px 40px 80px;
  }
}
@media screen and (max-width: 896px) {
  .p-about-wrapper {
    padding: 40px;
  }
}
@media screen and (max-width: 640px) {
  .p-about-wrapper {
    padding: 24px 20px 32px;
  }
}
.p-about-wrapper + .p-about-wrapper {
  margin-top: 40px;
}
@media screen and (max-width: 640px) {
  .p-about-wrapper + .p-about-wrapper {
    margin-top: 16px;
  }
}

.p-about-concept__head {
  display: grid;
  grid-template-columns: auto 75px;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 640px) {
  .p-about-concept__head {
    grid-template-columns: auto 50px;
    gap: 20px;
  }
}
.p-about-concept__head h2 {
  font-size: clamp(18px, 16.64px + 0.364vw, 21px);
}

.p-about-concept__body {
  margin-top: 1.2em;
}
.p-about-concept__body p {
  line-height: 2.5;
}
@media screen and (max-width: 640px) {
  .p-about-concept__body p {
    line-height: 1.8;
    font-size: 14px;
  }
}

.p-about-info {
  display: grid;
  grid-template-columns: 180px auto;
  margin-top: -20px;
}
@media screen and (max-width: 896px) {
  .p-about-info {
    grid-template-columns: 1fr;
  }
}
.p-about-info > dt, .p-about-info > dd {
  border-bottom: 1px solid var(--borderSubColor);
  padding: 20px;
  font-weight: 500;
}
@media screen and (max-width: 896px) {
  .p-about-info > dt, .p-about-info > dd {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 640px) {
  .p-about-info > dt, .p-about-info > dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 896px) {
  .p-about-info > dt {
    border-bottom: none;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 896px) {
  .p-about-info > dd {
    padding-top: 6px;
  }
}
.p-about-info > dd dl {
  display: grid;
  grid-template-columns: 4.5em auto;
  gap: 0.5em 1.2em;
}
@media screen and (max-width: 640px) {
  .p-about-info > dd dl {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .p-about-info > dd dl {
    font-size: 12px;
    gap: 0.5em 0.8em;
  }
}
.p-about-info > dd dt {
  text-align: right;
}
.p-about-info > dd dd span {
  font-weight: 400;
  font-size: 13px;
}
@media screen and (max-width: 640px) {
  .p-about-info > dd dd span {
    font-size: 10px;
  }
}

.p-thanks h2 {
  font-size: clamp(20px, 18.18px + 0.485vw, 24px);
  margin-bottom: 1em;
}
.p-thanks p {
  margin: 1em 0;
  font-weight: 400;
}
.p-thanks ul {
  list-style: disc;
  padding-left: 1.2em;
}
.p-thanks li {
  font-weight: 400;
}
.p-thanks .c-btn {
  margin-top: 1.5em;
}

.privacy > * {
  margin-top: 1em;
  margin-bottom: 1em;
}
.privacy > *:first-child {
  margin-top: 0 !important;
}
.privacy > *:last-child {
  margin-bottom: 0 !important;
}
.privacy p {
  font-size: 14px;
  line-height: 2;
  margin-top: 1em;
  margin-bottom: 1em;
  font-weight: 400;
}
.privacy h2 {
  font-size: 18px;
  margin-bottom: 1em;
  margin-top: 2em;
}
.privacy ul {
  list-style: decimal;
  padding-left: 1.2em;
  margin-top: 1em;
  margin-bottom: 1em;
}
.privacy li {
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
}

.p-404-head {
  width: fit-content;
  margin-inline: auto;
  background-color: var(--pink);
  border-radius: 2em;
  text-align: center;
  font-size: clamp(16px, 6.91px + 2.424vw, 36px);
  padding: 0.5em 1.5em;
  color: #ffffff;
  position: relative;
  margin-bottom: 1.5em;
}
.p-404-head::after {
  --size: 40px;
  content: "";
  display: block;
  height: calc(1 * var(--size) / 2);
  width: var(--size);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: var(--pink);
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 99%;
  z-index: 1;
}
@media screen and (max-width: 640px) {
  .p-404-head::after {
    --size: 20px;
  }
}

.p-404-text {
  text-align: center;
  font-weight: 500;
  font-size: clamp(14px, 12.18px + 0.485vw, 18px);
}

.p-404-back {
  margin-inline: auto;
  max-width: 230px;
  width: 100%;
  display: block;
  background-color: var(--blue);
  color: #ffffff;
  text-align: center;
  border-radius: 2em;
  padding: 0.6em;
  transition: opacity 0.2s ease-in-out;
  margin-top: 80px;
}
@media (hover: hover) {
  .p-404-back:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 640px) {
  .p-404-back {
    margin-top: 32px;
  }
}