@charset "UTF-8";
/**
 * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/)
 * Richard Clark (http://richclarkdesign.com)
 * http://cssreset.com
 */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #1f1f1f;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
  outline: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*--------------------------------------------------------------
印刷用
--------------------------------------------------------------*/
@media print {
  html {
    height: 100%;
  }

  body {
    width: 1280px;
    transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform-origin: 0 0;
  }
  body .pagetop {
    display: none;
  }
}
/*--------------------------------------------------------------
htmlタグ指定
--------------------------------------------------------------*/
* {
  min-height: 0vw;
}

html {
  font-size: 62.5%;
  height: -webkit-fill-available;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  color: #070203;
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  overflow-x: hidden;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.4rem;
  }
}

body.no-scroll {
  overflow: hidden;
}

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

h1, h2, h3, h4, h5 {
  font-weight: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-weight: inherit;
}

ul, li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: inherit;
}

a {
  cursor: pointer;
  color: currentColor;
}

/*--------------------------------------------------------------
Layout
--------------------------------------------------------------*/
.l-content {
  position: relative;
  width: 100%;
}
.l-inner {
  position: relative;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/*--header--*/
.l-header {
  position: absolute;
  z-index: 1000;
  width: 100%;
  margin: 0 auto;
}
.l-header__inner {
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  background-color: white;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 1024px) {
  .l-header__inner {
    height: 60px;
    padding: 0 25px;
    padding-right: 15px;
  }
}
.l-header__logo {
  position: relative;
  z-index: 1000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 26px;
  color: #2F8B6A;
  font-size: 1rem;
  line-height: 1.3;
}
.l-header__logo .logo {
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .l-header__logo .lead {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__nav {
    display: none;
  }
}
.l-header__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
  padding: 10px;
  display: none;
}
@media screen and (max-width: 1024px) {
  .l-header__toggle {
    display: flex;
  }
}
.l-header__toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background: currentColor;
  border-radius: 9999px;
}
.l-header__menu-drawer {
  position: fixed;
  inset: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
}
.l-header__menu-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.l-header__menu-drawer.is-open .drawer-wrapper {
  transform: translateX(0);
}
.l-header__menu-drawer .drawer-wrapper {
  display: flex;
  justify-content: end;
  align-items: start;
  flex-direction: row-reverse;
  gap: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.l-header__menu-drawer .drawer-close {
  margin-top: 20px;
  position: relative;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.l-header__menu-drawer .drawer-close::before, .l-header__menu-drawer .drawer-close::after {
  position: absolute;
  inset: 0;
  margin: auto;
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background-color: white;
  border-radius: 9999px;
  transform: rotate(45deg);
}
.l-header__menu-drawer .drawer-close::after {
  transform: rotate(-45deg);
}
.l-header__menu-drawer .drawer-body {
  position: relative;
  width: 80%;
  max-width: 340px;
  min-width: 275px;
  height: 100dvh;
  background-color: white;
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
}
.l-header__menu-drawer .menu-section__title {
  padding: 13px 20px;
  font-size: 1.2rem;
  color: #909090;
  background-color: #FAFAFA;
  border-top: 1px solid #EFEFEF;
  border-bottom: 1px solid #EFEFEF;
}
.l-header__menu-drawer .menu-section__body {
  padding: 20px 20px 30px;
  font-size: 1.2rem;
}
.l-header__menu-drawer .menu-account {
  padding: 0;
}
.l-header__menu-drawer .menu-account__link {
  min-height: 66px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
  padding: 10px 20px;
  line-height: 1.3;
}
.l-header__menu-drawer .menu-account__link::after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 0.83em;
  height: 0.83em;
  border-top: 0.1em solid #52A9D8;
  border-right: 0.1em solid #52A9D8;
  margin-left: 0.2em;
  transform: rotate(45deg);
}
.l-header__menu-drawer .menu-account__buttons {
  padding: 20px 20px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.l-header__menu-drawer .menu-account__button {
  flex: 1;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #52A9D8;
  border-radius: 9999px;
  border: 1px solid #52A9D8;
}
.l-header__menu-drawer .menu-account__button--outline {
  color: #52A9D8;
  background-color: white;
}
.l-header__menu-drawer .menu-history__list {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 10px;
  overflow: hidden;
}
.l-header__menu-drawer .menu-history__item {
  width: calc((100% - 30px) / 4);
}
.l-header__menu-drawer .menu-history__item img {
  aspect-ratio: 70/78;
  object-fit: cover;
}
.l-header__menu-drawer .menu-history__more {
  margin-top: 20px;
  display: inline-block;
  color: #52A9D8;
}
.l-header__menu-drawer .menu-category {
  padding: 0;
}
.l-header__menu-drawer .menu-category__item {
  border-bottom: 1px solid #EFEFEF;
}
.l-header__menu-drawer .menu-category__item a {
  min-height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
  padding: 10px 20px;
  line-height: 1.3;
}
.l-header__menu-drawer .menu-category__item a::after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 0.83em;
  height: 0.83em;
  border-top: 0.1em solid #52A9D8;
  border-right: 0.1em solid #52A9D8;
  margin-left: 0.2em;
  transform: rotate(45deg);
}

/*--footer--*/
.l-footer {
  margin-top: 200px;
  font-size: 1.2rem;
  background-color: #F8F8F8;
}
.l-footer .footer-menu__title {
  padding: 26px 20px;
  font-weight: 600;
  border-bottom: 1px solid #E3E3E3;
}
.l-footer .footer-menu__list {
  background-color: white;
}
.l-footer .footer-menu__item {
  border-bottom: 1px solid #E3E3E3;
}
.l-footer .footer-menu__item a {
  min-height: 59px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
  padding: 10px 20px;
  line-height: 1.3;
}
.l-footer .footer-menu__item a::after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 0.83em;
  height: 0.83em;
  border-top: 0.1em solid #52A9D8;
  border-right: 0.1em solid #52A9D8;
  margin-left: 0.2em;
  transform: rotate(45deg);
}
.l-footer .footer-nav {
  margin-top: 40px;
  color: #908E8E;
  border-top: 1px solid #E3E3E3;
}
.l-footer .footer-nav__item {
  border-bottom: 1px solid #E3E3E3;
}
.l-footer .footer-nav__item .footer-nav__link {
  width: 100%;
  min-height: 49px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.3;
  text-align: left;
  color: #908E8E;
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.l-footer .footer-nav__item.has-subnav .footer-nav__link::after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 0.83em;
  height: 0.83em;
  border-top: 0.1em solid #A5A5A5;
  border-right: 0.1em solid #A5A5A5;
  margin-left: 0.2em;
  transform: rotate(45deg);
  transition: transform 0.4s ease;
}
.l-footer .footer-nav__item.has-subnav .footer-nav__link[aria-expanded=true]::after {
  transform: rotate(135deg);
}
.l-footer .footer-nav__item .footer-subnav {
  display: none;
  background-color: white;
}
.l-footer .footer-nav__item .footer-subnav li {
  border-top: 1px solid #E3E3E3;
}
.l-footer .footer-nav__item .footer-subnav li a {
  min-height: 49px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
  padding: 10px 20px;
  line-height: 1.3;
}
.l-footer .footer-nav__item .footer-subnav li a::after {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 0.83em;
  height: 0.83em;
  border-top: 0.1em solid #A5A5A5;
  border-right: 0.1em solid #A5A5A5;
  margin-left: 0.2em;
  transform: rotate(45deg);
}
.l-footer .footer-nav__item.no-subnav .footer-nav__link::after {
  content: none;
}
.l-footer .footer-nav__icons {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.l-footer .sns-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* 各SNSのアイコン */
}
.l-footer .sns-icon--instagram {
  background-image: url("../img/base/icon_instagram.svg");
}
.l-footer .sns-icon--tiktok {
  background-image: url("../img/base/icon_tiktok.svg");
}
.l-footer .sns-icon--youtube {
  background-image: url("../img/base/icon_youtube.svg");
}
.l-footer .sns-icon--x {
  background-image: url("../img/base/icon_x.svg");
}
.l-footer .sns-icon--line {
  background-image: url("../img/base/icon_line.svg");
}
.l-footer__copyright {
  padding: 26px;
  color: #908E8E;
  background-color: white;
  text-align: center;
}

/*--------------------------------------------------------------
Component
--------------------------------------------------------------*/
.c-link {
  color: #52A9D8;
}
.c-link--white {
  color: white;
}
.c-link--icon {
  display: inline-flex;
  align-items: center;
}
.c-link--icon::after {
  content: "";
  display: block;
  width: 0.6em;
  height: 0.6em;
  border-top: 0.1em solid currentColor;
  border-right: 0.1em solid currentColor;
  margin-left: 0.2em;
  transform: rotate(45deg);
}
.c-link--underline {
  text-decoration: underline;
}

.c-modal {
  position: fixed;
  inset: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;
}
.c-modal.is-open {
  bottom: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-modal.is-open .c-modal__dialog {
  transform: translateY(0);
}
.c-modal--outfit .c-modal__dialog {
  border-radius: 0;
}
.c-modal--outfit .c-modal__content {
  height: auto;
  max-height: 80vh;
  padding: 5px;
}
.c-modal__dialog {
  position: relative;
  width: min(500px, 100%);
  margin: 20px;
  background-color: white;
  border-radius: 10px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.c-modal__close {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid white;
  border-radius: 50%;
  cursor: pointer;
}
.c-modal__close::before, .c-modal__close::after {
  position: absolute;
  content: "";
  display: block;
  width: 53.6%;
  height: 2px;
  background-color: white;
  border-radius: 9999px;
  transform: rotate(45deg);
}
.c-modal__close::after {
  transform: rotate(-45deg);
}
.c-modal__content {
  overflow: scroll;
  height: min(800px, calc(100vh - 40px));
}

.c-navigation {
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .c-navigation {
    font-size: 1.8rem;
    padding: 50px 20px;
  }
}
.c-navigation__list {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: min(60px, 3.75vw);
}
@media screen and (max-width: 1024px) {
  .c-navigation__list {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .c-navigation__item {
    width: 100%;
    text-align: center;
  }
  .c-navigation__item a {
    display: block;
    padding: 10px;
  }
}
.c-navigation__item--button a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  padding: 15px;
  font-size: 1.4rem;
  color: white;
  background: #6CB96A;
  background: linear-gradient(95deg, #6cb96a 0%, #4ba38c 100%);
  border-radius: 9999px;
}
@media screen and (max-width: 1024px) {
  .c-navigation__item--button a {
    width: 100%;
    font-size: 1.6rem;
  }
}
.c-navigation__item--button a::before {
  content: "";
  position: absolute;
  right: 18px;
  width: 5px;
  height: 5px;
  border-bottom: 1px solid #4FA689;
  border-right: 1px solid #4FA689;
  transform: rotate(-45deg);
  z-index: 10;
}
.c-navigation__item--button a::after {
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  width: 20px;
  height: 20px;
  background-color: white;
  border-radius: 50%;
}

.c-indent {
  padding-left: 1em;
  /* 全体を字下げ */
  text-indent: -1em;
  /* 先頭行だけ戻す */
}

/*------------------------------title------------------------------*/
.c-account {
  width: min(1000px, 100%);
  margin: 0 auto;
  padding-bottom: 50px;
}
.c-account--narrow {
  width: min(500px, 100%);
}
.c-account--full {
  width: 100%;
}
.c-account__header {
  padding-top: 42px;
  padding-bottom: 22px;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 700;
}
.c-account__header:nth-child(n+2) {
  margin-top: 38px;
  border-top: 1px solid #E0E0E0;
}
.c-account__message {
  line-height: 1.5;
  font-size: 1.4rem;
}
.c-account__button {
  margin-top: 30px;
}

/*------------------------------button------------------------------*/
.c-button {
  --width:500px;
  --height:60px;
  --color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  width: min(var(--width), 100%);
  height: var(--height);
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  color: white;
  background-color: var(--color);
  border: 1px solid var(--color);
  border-radius: 5px;
  outline: 0;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.c-button--round {
  border-radius: 9999px;
}
.c-button--outline {
  color: var(--color);
  background-color: white;
}
.c-button--middle {
  width: 300px;
  height: 50px;
  gap: 5px;
}
.c-button--small {
  height: 35px;
  gap: 5px;
  font-size: 1.2rem;
}
.c-button--xsmall {
  height: 30px;
  gap: 5px;
  font-size: 1rem;
}
.c-button.is-disabled, .c-button:disabled {
  pointer-events: none;
  cursor: not-allowed;
  background-color: #F0F0F0;
  border: 0;
  color: #BFBFBF;
}
.c-button.is-disabled.c-button--outline, .c-button:disabled.c-button--outline {
  background-color: inherit;
  border: 1px solid #ccc;
}

.c-table {
  margin: 80px auto 60px;
  line-height: 1.4;
  border: 2px solid white;
}
h4 + .table {
  margin-top: 40px;
}

.c-table th, .c-table td {
  text-align: center;
  vertical-align: middle;
  padding: 20px;
}
.c-table th {
  font-size: 18px;
  background-color: #E6EAED;
}
.c-table td {
  border: 2px solid white;
}

/*------------------------------form------------------------------*/
.c-form {
  margin-top: 30px;
}
.c-form--register .c-form__field + .c-form__field {
  margin-top: 26px;
}
.c-form--register .c-form__submit {
  padding-right: 20px;
  padding-left: 20px;
}
.c-form--register .c-form__label-wrap {
  padding: 13px 20px;
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: #E0E0E0;
  color: #969696;
  background-color: #F7F7F7;
}
.c-form--register .c-form__input-wrap {
  padding: 0 20px;
}
.c-form--register .c-input, .c-form--register .c-select select, .c-form--register .c-radio__input, .c-form--register .c-check__input {
  border-color: #E0E0E0;
}
.c-form--horizontal .c-form__field {
  flex-direction: row;
}
.c-form--horizontal .c-form__label-wrap {
  flex-shrink: 0;
  width: 150px;
}
.c-form__field {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 16px;
}
.c-form__field + .c-form__field {
  margin-top: 24px;
}
.c-form__field--last {
  padding-bottom: 20px;
  border-bottom: 1px solid #E0E0E0;
}
.c-form__label-wrap {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.c-form__input-wrap {
  width: 100%;
}
.c-form__label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px 26px;
}
.c-form__required {
  color: #A7372A;
}
.c-form__note {
  padding-left: 15px;
  font-size: 1.2rem;
  line-height: 1.5;
}
.c-form__error {
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #A7372A;
}
.c-form__forget {
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: 1.5;
}
.c-form__caution {
  margin-top: 19px;
  color: #BFBFBF;
  font-size: 1rem;
  line-height: 1.8;
}
.c-form__agree {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  line-height: 1.3;
}
.c-form__agree a {
  text-decoration: underline;
}
.c-form__submit {
  margin-top: 30px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
}

.c-input {
  width: min(600px, 100%);
  padding: 14px;
  border-radius: 0;
  background-color: #F2F2F2;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  outline: 0;
  border: 0;
}
.c-input::placeholder {
  color: #707070;
}
.c-input--textarea {
  width: 100%;
  height: 200px;
  line-height: 1.5;
}
.c-input--middle {
  width: min(250px, calc((100% - 10px) / 2));
}
.c-input--small {
  width: min(140px, calc((100% - 20px) / 3));
}
.c-input.is-disabled {
  pointer-events: none;
  color: #BFBFBF;
  background-color: #F0F0F0;
}

.c-select {
  width: min(600px, 100%);
  position: relative;
  font-size: 16px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.c-select.is-disabled {
  color: #BFBFBF;
}
.c-select.is-disabled select {
  pointer-events: none;
  color: #BFBFBF;
  background-color: #F0F0F0;
}
.c-select::after {
  content: "";
  position: absolute;
  right: min(15px, 10%);
  top: calc(50% - 6px);
  width: 8px;
  height: 8px;
  border-bottom: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  pointer-events: none;
}
.c-select select {
  color: #070203;
  width: 100%;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
  padding: 14px;
  background-color: #F2F2F2;
  border: none;
}
.c-select--middle {
  width: min(250px, calc((100% - 10px) / 2));
}
.c-select--small {
  width: min(140px, calc((100% - 20px) / 3));
}

.c-birthday {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
.c-birthday__year {
  width: 26%;
}
.c-birthday__month {
  width: 20%;
}
.c-birthday__day {
  width: 20%;
}
.c-birthday__label {
  padding-right: 10px;
}
.c-birthday__label:last-child {
  padding-right: 0;
}

.c-check {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.6em;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
}
.c-check.is-disabled {
  pointer-events: none;
  color: #BFBFBF;
}
.c-check.is-disabled .c-check__input {
  color: #BFBFBF;
  background-color: #F0F0F0;
}
.c-check.is-disabled .c-check__input:checked {
  background-color: #C6C6C6;
  border-color: #C6C6C6;
}
.c-check__input {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: clamp(3px, 0.8vw, 5px);
  background-color: white;
  border: 1px solid #707070;
  margin: 0;
}
.c-check__input:checked {
  position: relative;
  border-color: #070203;
  background-color: #070203;
}
.c-check__input:checked::before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 5px;
  width: 8px;
  height: 13px;
  transform: rotate(40deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.c-radio {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.6em;
  line-height: 1.5;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.6rem;
}
.c-radio.is-disabled {
  pointer-events: none;
  color: #BFBFBF;
}
.c-radio.is-disabled .c-radio__input {
  color: #BFBFBF;
  background-color: #F0F0F0;
}
.c-radio.is-disabled .c-radio__input:checked {
  background-color: #C6C6C6;
  border-color: #C6C6C6;
}
.c-radio__input {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 15px;
  background-color: white;
  border: 1px solid #C6C6C6;
  margin: 0;
}
.c-radio__input:checked {
  position: relative;
  border-color: #070203;
  background-color: #070203;
}
.c-radio__input:checked::before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 10px;
  width: 9px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}
.c-confirm {
  margin-top: 30px;
  line-height: 1.5;
}
.c-confirm__item + .c-confirm__item {
  margin-top: 10px;
}
.c-confirm dt {
  font-size: 1.4rem;
  color: #969696;
}
.c-confirm dd {
  margin-top: 5px;
}

[data-target] {
  transition: transform 0.8s ease 0.2s, opacity 0.8s ease 0.2s, background-color 0.2s, color 0.2s;
  opacity: 0;
}
[data-target].action {
  opacity: 1;
}
[data-target][data-slideup] {
  transform: translateY(1.56vw) scale(1);
}
[data-target][data-slideup].action {
  transform: translateY(0);
}
[data-target][data-slidedown] {
  transform: translateY(-1.56vw) scale(1);
}
[data-target][data-slidedown].action {
  transform: translateY(0);
}
[data-target][data-slideleft] {
  transform: translateX(1.56vw) scale(1);
}
[data-target][data-slideleft].action {
  transform: translateX(0);
}
[data-target][data-slideright] {
  transform: translateX(-1.56vw) scale(1);
}
[data-target][data-slideright].action {
  transform: translateX(0);
}

[data-lazy] {
  opacity: 0;
}
[data-lazy].action {
  transition: opacity 0.4s ease;
  opacity: 1;
}

[data-dummy] {
  color: tomato;
}

/*--------------------------------------------------------------
Utility
--------------------------------------------------------------*/
/* settings */
.u-only-sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .u-only-sp {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .u-only-pc {
    display: none !important;
  }
}

/* width % */
.u-w-10 {
  width: 10%;
}

@media screen and (max-width: 1024px) {
  .u-w-sp-10 {
    width: 10% !important;
  }
}

.u-w-20 {
  width: 20%;
}

@media screen and (max-width: 1024px) {
  .u-w-sp-20 {
    width: 20% !important;
  }
}

.u-w-30 {
  width: 30%;
}

@media screen and (max-width: 1024px) {
  .u-w-sp-30 {
    width: 30% !important;
  }
}

.u-w-40 {
  width: 40%;
}

@media screen and (max-width: 1024px) {
  .u-w-sp-40 {
    width: 40% !important;
  }
}

.u-w-50 {
  width: 50%;
}

@media screen and (max-width: 1024px) {
  .u-w-sp-50 {
    width: 50% !important;
  }
}

.u-w-60 {
  width: 60%;
}

@media screen and (max-width: 1024px) {
  .u-w-sp-60 {
    width: 60% !important;
  }
}

.u-w-70 {
  width: 70%;
}

@media screen and (max-width: 1024px) {
  .u-w-sp-70 {
    width: 70% !important;
  }
}

.u-w-80 {
  width: 80%;
}

@media screen and (max-width: 1024px) {
  .u-w-sp-80 {
    width: 80% !important;
  }
}

.u-w-90 {
  width: 90%;
}

@media screen and (max-width: 1024px) {
  .u-w-sp-90 {
    width: 90% !important;
  }
}

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

@media screen and (max-width: 1024px) {
  .u-w-sp-100 {
    width: 100% !important;
  }
}

/* spacer xs,sm,md,lg,xl */
.u-mt-0 {
  margin-top: 0px !important;
}

.u-mb-0 {
  margin-bottom: 0px !important;
}

.u-mr-0 {
  margin-right: 0px !important;
}

.u-ml-0 {
  margin-left: 0px !important;
}

.u-pt-0 {
  padding-top: 0px !important;
}

.u-pb-0 {
  padding-bottom: 0px !important;
}

.u-pr-0 {
  padding-right: 0px !important;
}

.u-pl-0 {
  padding-left: 0px !important;
}

.u-mt-5 {
  margin-top: 5px !important;
}

.u-mb-5 {
  margin-bottom: 5px !important;
}

.u-mr-5 {
  margin-right: 5px !important;
}

.u-ml-5 {
  margin-left: 5px !important;
}

.u-pt-5 {
  padding-top: 5px !important;
}

.u-pb-5 {
  padding-bottom: 5px !important;
}

.u-pr-5 {
  padding-right: 5px !important;
}

.u-pl-5 {
  padding-left: 5px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mr-10 {
  margin-right: 10px !important;
}

.u-ml-10 {
  margin-left: 10px !important;
}

.u-pt-10 {
  padding-top: 10px !important;
}

.u-pb-10 {
  padding-bottom: 10px !important;
}

.u-pr-10 {
  padding-right: 10px !important;
}

.u-pl-10 {
  padding-left: 10px !important;
}

.u-mt-15 {
  margin-top: 15px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-mr-15 {
  margin-right: 15px !important;
}

.u-ml-15 {
  margin-left: 15px !important;
}

.u-pt-15 {
  padding-top: 15px !important;
}

.u-pb-15 {
  padding-bottom: 15px !important;
}

.u-pr-15 {
  padding-right: 15px !important;
}

.u-pl-15 {
  padding-left: 15px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mr-20 {
  margin-right: 20px !important;
}

.u-ml-20 {
  margin-left: 20px !important;
}

.u-pt-20 {
  padding-top: 20px !important;
}

.u-pb-20 {
  padding-bottom: 20px !important;
}

.u-pr-20 {
  padding-right: 20px !important;
}

.u-pl-20 {
  padding-left: 20px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mr-30 {
  margin-right: 30px !important;
}

.u-ml-30 {
  margin-left: 30px !important;
}

.u-pt-30 {
  padding-top: 30px !important;
}

.u-pb-30 {
  padding-bottom: 30px !important;
}

.u-pr-30 {
  padding-right: 30px !important;
}

.u-pl-30 {
  padding-left: 30px !important;
}

.u-mt-40 {
  margin-top: 40px !important;
}

.u-mb-40 {
  margin-bottom: 40px !important;
}

.u-mr-40 {
  margin-right: 40px !important;
}

.u-ml-40 {
  margin-left: 40px !important;
}

.u-pt-40 {
  padding-top: 40px !important;
}

.u-pb-40 {
  padding-bottom: 40px !important;
}

.u-pr-40 {
  padding-right: 40px !important;
}

.u-pl-40 {
  padding-left: 40px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-mr-50 {
  margin-right: 50px !important;
}

.u-ml-50 {
  margin-left: 50px !important;
}

.u-pt-50 {
  padding-top: 50px !important;
}

.u-pb-50 {
  padding-bottom: 50px !important;
}

.u-pr-50 {
  padding-right: 50px !important;
}

.u-pl-50 {
  padding-left: 50px !important;
}

.u-mt-sm {
  margin-top: clamp(20px, 3vw, 30px) !important;
}

.u-mb-sm {
  margin-bottom: clamp(20px, 3vw, 30px) !important;
}

.u-mr-sm {
  margin-right: clamp(20px, 3vw, 30px) !important;
}

.u-ml-sm {
  margin-left: clamp(20px, 3vw, 30px) !important;
}

.u-pt-sm {
  padding-top: clamp(20px, 3vw, 30px) !important;
}

.u-pb-sm {
  padding-bottom: clamp(20px, 3vw, 30px) !important;
}

.u-pr-sm {
  padding-right: clamp(20px, 3vw, 30px) !important;
}

.u-pl-sm {
  padding-left: clamp(20px, 3vw, 30px) !important;
}

.u-mt-md {
  margin-top: clamp(40px, 5vw, 50px) !important;
}

.u-mb-md {
  margin-bottom: clamp(40px, 5vw, 50px) !important;
}

.u-mr-md {
  margin-right: clamp(40px, 5vw, 50px) !important;
}

.u-ml-md {
  margin-left: clamp(40px, 5vw, 50px) !important;
}

.u-pt-md {
  padding-top: clamp(40px, 5vw, 50px) !important;
}

.u-pb-md {
  padding-bottom: clamp(40px, 5vw, 50px) !important;
}

.u-pr-md {
  padding-right: clamp(40px, 5vw, 50px) !important;
}

.u-pl-md {
  padding-left: clamp(40px, 5vw, 50px) !important;
}

.u-mt-lg {
  margin-top: clamp(60px, 6.66vw, 80px) !important;
}

.u-mb-lg {
  margin-bottom: clamp(60px, 6.66vw, 80px) !important;
}

.u-mr-lg {
  margin-right: clamp(60px, 6.66vw, 80px) !important;
}

.u-ml-lg {
  margin-left: clamp(60px, 6.66vw, 80px) !important;
}

.u-pt-lg {
  padding-top: clamp(60px, 6.66vw, 80px) !important;
}

.u-pb-lg {
  padding-bottom: clamp(60px, 6.66vw, 80px) !important;
}

.u-pr-lg {
  padding-right: clamp(60px, 6.66vw, 80px) !important;
}

.u-pl-lg {
  padding-left: clamp(60px, 6.66vw, 80px) !important;
}

.u-mt-xl {
  margin-top: clamp(80px, 8.33vw, 100px) !important;
}

.u-mb-xl {
  margin-bottom: clamp(80px, 8.33vw, 100px) !important;
}

.u-mr-xl {
  margin-right: clamp(80px, 8.33vw, 100px) !important;
}

.u-ml-xl {
  margin-left: clamp(80px, 8.33vw, 100px) !important;
}

.u-pt-xl {
  padding-top: clamp(80px, 8.33vw, 100px) !important;
}

.u-pb-xl {
  padding-bottom: clamp(80px, 8.33vw, 100px) !important;
}

.u-pr-xl {
  padding-right: clamp(80px, 8.33vw, 100px) !important;
}

.u-pl-xl {
  padding-left: clamp(80px, 8.33vw, 100px) !important;
}

.u-mt-auto {
  margin-top: auto !important;
}

.u-mb-auto {
  margin-bottom: auto !important;
}

.u-mr-auto {
  margin-right: auto !important;
}

.u-ml-auto {
  margin-left: auto !important;
}

.u-pt-auto {
  padding-top: auto !important;
}

.u-pb-auto {
  padding-bottom: auto !important;
}

.u-pr-auto {
  padding-right: auto !important;
}

.u-pl-auto {
  padding-left: auto !important;
}

/* text-align */
.u-text-left {
  text-align: left;
}

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

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

/* font-size 1remから3remまで */
.u-font-10 {
  font-size: 1rem;
}

.u-font-11 {
  font-size: 1.1rem;
}

.u-font-12 {
  font-size: 1.2rem;
}

.u-font-13 {
  font-size: 1.3rem;
}

.u-font-14 {
  font-size: 1.4rem;
}

.u-font-15 {
  font-size: 1.5rem;
}

.u-font-16 {
  font-size: 1.6rem;
}

.u-font-17 {
  font-size: 1.7rem;
}

.u-font-18 {
  font-size: 1.8rem;
}

.u-font-19 {
  font-size: 1.9rem;
}

.u-font-20 {
  font-size: 2rem;
}

.u-font-21 {
  font-size: 2.1rem;
}

.u-font-22 {
  font-size: 2.2rem;
}

.u-font-23 {
  font-size: 2.3rem;
}

.u-font-24 {
  font-size: 2.4rem;
}

.u-font-25 {
  font-size: 2.5rem;
}

.u-font-26 {
  font-size: 2.6rem;
}

.u-font-27 {
  font-size: 2.7rem;
}

.u-font-28 {
  font-size: 2.8rem;
}

.u-font-29 {
  font-size: 2.9rem;
}

.u-font-30 {
  font-size: 3rem;
}

.u-flex {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  gap: 10px;
}

/*--------------------------------------------------------------
indexのみ
--------------------------------------------------------------*/
.p-section {
  margin-top: 30px;
  padding: 1px 0;
  background-color: #F8F8F8;
}

.p-mv {
  padding-top: 90px;
  padding-bottom: 110px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  height: calc(100svh + 110px);
  background: url("../img/top/mv_bg.jpg") no-repeat top center/cover;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 110px), 0% 100%);
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .p-mv {
    padding-top: 60px;
    padding-bottom: 70px;
    flex-direction: column;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 0% 100%);
  }
}
.p-mv::after {
  content: "";
  position: absolute;
  right: 0;
  display: block;
  width: 93vw;
  height: min(386px, 27.6vw);
  background: #FFF;
  background: linear-gradient(95deg, rgba(255, 255, 255, 0) 0%, white 19%);
  opacity: 0.8;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .p-mv::after {
    background: #FFF;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    height: 100%;
  }
}
.p-mv__text-wrap {
  position: relative;
  flex: 0 0 40%;
}
@media screen and (max-width: 1024px) {
  .p-mv__text-wrap {
    flex: 0 0 60%;
    width: 100%;
  }
}
.p-mv__text-wrap > * {
  position: relative;
  z-index: 2;
}
.p-mv__image-wrap {
  position: relative;
  flex: 0 0 60%;
  text-align: right;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .p-mv__image-wrap {
    flex: 0 0 40%;
  }
}
.p-mv__image-wrap img {
  width: 97%;
}
.p-mv__text-inner {
  position: absolute;
  right: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: max(51.5vw, 550px);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .p-mv__text-inner {
    width: 100%;
    right: 0;
    margin: auto;
  }
}
.p-mv__title .lead {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  color: #2F8B6A;
  font-size: clamp( 14px, calc(14px + 10 * ((100vw - 400px) / 1000)), 24px );
}
.p-mv__title .lead::before, .p-mv__title .lead::after {
  content: "";
  width: 2px;
  height: 24px;
  background-color: currentColor;
  transform: rotate(-30deg);
}
.p-mv__title .lead::after {
  transform: rotate(30deg);
}
.p-mv__title .title {
  margin-top: 0.35em;
  font-size: clamp( 24px, calc(24px + 16 * ((100vw - 400px) / 1000)), 40px );
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .p-mv__title .title {
    line-height: 1.5;
  }
}
.p-mv__logo {
  margin-top: clamp(25px, calc((48 / 14) * 1vw),48px);
}
.p-mv__logo img {
  width: clamp(220px, calc((362 / 14) * 1vw),362px);
}
.p-mv__point {
  margin-top: 2.625em;
  position: relative;
  width: clamp(300px, calc((520 / 14) * 1vw),520px);
  margin-left: auto;
  margin-right: auto;
  font-size: clamp( 10px, calc(10px + 6 * ((100vw - 400px) / 1000)), 16px );
}
.p-mv__point .point-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  background: #6CB96A;
  background: linear-gradient(95deg, #6cb96a 0%, #4ba38c 100%);
  border-radius: 1.56em;
}
.p-mv__point .point-item {
  position: relative;
  flex: 1;
  padding: 0.94em;
  line-height: 1.5;
}
.p-mv__point .point-item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  width: 1px;
  height: 50%;
  background-color: currentColor;
}
.p-mv__point .point-badge {
  position: absolute;
  top: -74px;
  right: -61px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 103px;
  aspect-ratio: 1/1;
  font-size: clamp( 10px, calc(10px + 5 * ((100vw - 400px) / 1000)), 15px );
  font-weight: 700;
  line-height: 1.46;
  color: white;
  background-color: #EB9E0B;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .p-mv__point .point-badge {
    top: -54px;
    right: -41px;
    width: 70px;
  }
}

.p-feature {
  margin-top: -110px;
  position: relative;
  z-index: 9;
}
.p-feature__arrow {
  position: absolute;
  z-index: 10;
  bottom: -28px;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 51px;
  height: 265px;
  background: url("../img/top/feature_arrow.svg") no-repeat center bottom/contain;
}
@media screen and (max-width: 1024px) {
  .p-feature__arrow {
    width: 40px;
    height: 208px;
  }
}
.p-feature__inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 182px 0 200px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 128px), 0% 100%);
}
@media screen and (max-width: 1024px) {
  .p-feature__inner {
    padding: 150px 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 0% 100%);
  }
}
.p-feature__inner::before, .p-feature__inner::after {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  margin: auto;
  opacity: 0.3;
}
.p-feature__inner::before {
  z-index: 1;
  background: #1C3158;
  background: linear-gradient(118deg, #1c3158 0%, #101d32 100%);
}
.p-feature__inner::after {
  z-index: 0;
  background: url("../img/top/feature_bg.jpg") no-repeat center center/cover;
}
.p-feature__content {
  position: relative;
  z-index: 10;
  width: calc(100% - 100px);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 81px 30px 94px;
  text-align: center;
  color: white;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .p-feature__content {
    width: calc(100% - 44px);
  }
}
@media screen and (max-width: 1024px) {
  .p-feature__content {
    padding: 51px 30px 54px;
  }
}
.p-feature__content::before, .p-feature__content::after {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  margin: auto;
}
.p-feature__content::before {
  z-index: 1;
  background: url("../img/top/feature_box_bg.png") no-repeat center center/cover;
  mix-blend-mode: color-burn;
}
.p-feature__content::after {
  z-index: 0;
  background: #1C3158;
  background: linear-gradient(118deg, #1c3158 0%, #101d32 100%);
}
.p-feature__title {
  position: relative;
  z-index: 2;
}
.p-feature__title .title-small {
  display: block;
  font-size: clamp( 20px, calc(20px + 10 * ((100vw - 400px) / 1000)), 30px );
}
.p-feature__title .title-strong {
  margin: 0.3em 0 1em;
  position: relative;
  display: block;
  font-size: clamp( 30px, calc(30px + 20 * ((100vw - 400px) / 1000)), 50px );
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .p-feature__title .title-strong {
    line-height: 1.5;
  }
}
.p-feature__title .title-line {
  position: relative;
}
@media screen and (max-width: 567px) {
  .p-feature__title .title-line {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }
}
.p-feature__title .title-line::before {
  content: "";
  position: absolute;
  bottom: -8px;
  z-index: -1;
  width: 103%;
  height: 25px;
  background: url("../img/top/feature_title_line.svg") no-repeat bottom left/contain;
}
@media screen and (max-width: 1024px) {
  .p-feature__title .title-line::before {
    line-height: 1.5;
  }
}
.p-feature__text {
  position: relative;
  z-index: 2;
  font-size: clamp( 16px, calc(16px + 12 * ((100vw - 400px) / 1000)), 28px );
  line-height: 2.14;
  display: inline;
  /* inlineがポイント */
  background-image: linear-gradient(#567CBC, #567CBC);
  /* 下線色 */
  background-size: 100% 5px;
  /* 横幅100%, 高さ2pxの線 */
  background-repeat: no-repeat;
  background-position: 0 1.15em;
  /* 下端に配置 */
  box-decoration-break: clone;
  /* 行ごとに背景を適用 */
  -webkit-box-decoration-break: clone;
  /* Safari対応 */
}
@media screen and (max-width: 1024px) {
  .p-feature__text {
    background-size: 100% 2px;
    background-position: 0 1.25em;
  }
}

.p-can {
  padding-top: 129px;
  z-index: 8;
}
.p-can__title {
  font-size: clamp( 20px, calc(20px + 10 * ((100vw - 400px) / 1000)), 30px );
  text-align: center;
}
.p-can__title-row {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 13px;
}
.p-can__title-logo {
  width: clamp(230px,36.2vw,362px);
}
.p-can__title-sub {
  display: block;
  margin-top: 17px;
}
.p-can__list {
  margin-top: 97px;
}
@media screen and (max-width: 1024px) {
  .p-can__list {
    margin-top: 60px;
  }
}
.p-can__item {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .p-can__item {
    flex-direction: column !important;
  }
}
.p-can__item:nth-of-type(odd) {
  background-color: #EFEFEF;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1024px) {
  .p-can__item:nth-of-type(odd) .p-can__item-image {
    padding-left: 0;
    padding-right: 22px;
  }
}
.p-can__item:nth-of-type(odd) .p-can__item-image::before {
  right: auto;
  left: 0;
}
.p-can__item-content {
  position: relative;
  width: 100%;
  padding: 147px 60px;
}
@media screen and (max-width: 1024px) {
  .p-can__item-content {
    padding: 60px 22px 30px;
  }
}
.p-can__item-title {
  font-size: clamp( 24px, calc(24px + 2 * ((100vw - 400px) / 1000)), 26px );
  line-height: 1.3;
}
.p-can__item-text {
  margin-top: 27px;
  color: #767676;
  line-height: 1.75;
}
.p-can__item-number {
  position: absolute;
  top: 0;
  right: 60px;
}
@media screen and (max-width: 1024px) {
  .p-can__item-number {
    top: 30px;
    right: 20px;
  }
}
.p-can__item-image {
  flex-shrink: 0;
  width: 56.25%;
  position: relative;
  display: block;
  padding: 167px 0;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .p-can__item-image {
    width: 100%;
    padding: 0 0 30px;
    padding-left: 22px;
  }
}
.p-can__item-image::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 53.1%;
  height: 100%;
  background-color: #63B471;
}
@media screen and (max-width: 1024px) {
  .p-can__item-image::before {
    width: 100%;
    height: 53.1%;
  }
}
.p-can__item-image img {
  position: relative;
  width: 100%;
}

.p-case {
  padding-top: 142px;
}
@media screen and (max-width: 1024px) {
  .p-case {
    padding-top: 100px;
  }
}
.p-case__inner {
  width: 100%;
  padding: 0 27px;
}
.p-case__header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.p-case__title {
  font-size: clamp( 24px, calc(24px + 10 * ((100vw - 400px) / 1000)), 34px );
  line-height: 1.3;
}
.p-case__lead {
  margin-top: 0.6em;
  font-size: clamp( 16px, calc(16px + 4 * ((100vw - 400px) / 1000)), 20px );
  line-height: 1.5;
}
.p-case__list {
  margin-top: 54px;
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 50px 26px;
}
@media screen and (max-width: 1024px) {
  .p-case__list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
.p-case__item {
  flex: 1;
  max-width: 800px;
}
.p-case__item-figure img {
  width: 100%;
}
.p-case__item-title {
  margin-top: 1.25em;
  color: #3E9100;
  font-size: clamp( 20px, calc(20px + 4 * ((100vw - 400px) / 1000)), 24px );
  font-weight: 700;
  line-height: 1.5;
}
.p-case__item-text {
  margin-top: 0.55em;
  font-size: clamp( 16px, calc(16px + 4 * ((100vw - 400px) / 1000)), 20px );
  line-height: 1.7;
}

.p-flow {
  padding-top: 206px;
}
@media screen and (max-width: 1024px) {
  .p-flow {
    padding-top: 100px;
  }
}
.p-flow__inner {
  width: calc(100% - 100px);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .p-flow__inner {
    width: calc(100% - 44px);
  }
}
.p-flow__header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.p-flow__title {
  font-size: clamp( 24px, calc(24px + 10 * ((100vw - 400px) / 1000)), 34px );
  line-height: 1.3;
}
.p-flow__lead {
  margin-top: 12px;
  font-size: clamp( 16px, calc(16px + 4 * ((100vw - 400px) / 1000)), 20px );
  line-height: 1.5;
}
.p-flow__list {
  margin-top: 53px;
  position: relative;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  gap: 10px;
}
.p-flow__list::before {
  content: "";
  position: absolute;
  left: 120px;
  top: -20px;
  width: 10px;
  height: calc(100% + 40px);
  border-radius: 9999px;
  background: #6CB96A;
  background: linear-gradient(180deg, #6cb96a 0%, #4ba38c 100%);
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .p-flow__list::before {
    left: 90px;
    width: 5px;
  }
}
.p-flow__item {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
  padding: 10px 30px 10px 20px;
  background-color: #E7E7E7;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .p-flow__item {
    gap: 5px;
    padding-right: 20px;
  }
}
.p-flow__item::before {
  content: "";
  position: absolute;
  bottom: -18px;
  right: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 20px 0 20px;
  border-color: black transparent transparent transparent;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .p-flow__item::before {
    bottom: -14px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 15px 0 15px;
    border-color: black transparent transparent transparent;
  }
}
.p-flow__item:last-of-type::before {
  display: none;
}
.p-flow__item-number {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  aspect-ratio: 1/1;
  margin-right: 20px;
  font-size: clamp( 20px, calc(20px + 20 * ((100vw - 400px) / 1000)), 40px );
  color: #3E9100;
  background-color: white;
  border-radius: 100%;
}
@media screen and (max-width: 1024px) {
  .p-flow__item-number {
    width: 50px;
  }
}
.p-flow__item-content {
  padding: 20px 0 20px 36px;
}
@media screen and (max-width: 1024px) {
  .p-flow__item-content {
    padding: 20px 0 20px 20px;
  }
}
.p-flow__item-title {
  font-size: clamp( 16px, calc(16px + 6 * ((100vw - 400px) / 1000)), 22px );
  color: #3E9100;
  line-height: 1.375;
}
.p-flow__item-text {
  margin-top: 0.4em;
  line-height: 1.375;
  color: #454545;
}

.p-price {
  padding-top: 206px;
}
@media screen and (max-width: 1024px) {
  .p-price {
    padding-top: 100px;
  }
}
.p-price__inner {
  width: calc(100% - 100px);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .p-price__inner {
    width: calc(100% - 44px);
  }
}
.p-price__header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.p-price__title {
  font-size: clamp( 24px, calc(24px + 10 * ((100vw - 400px) / 1000)), 34px );
  line-height: 1.3;
}
.p-price__list {
  margin-top: 33px;
  padding: 48px 40px 53px;
  border: 1px solid #707070;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .p-price__list {
    padding: 40px 30px;
  }
}
.p-price__item {
  color: #454545;
}
.p-price__item + .p-price__item {
  margin-top: 40px;
}
.p-price__item-dl {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}
.p-price__item-title {
  font-size: clamp( 16px, calc(16px + 2 * ((100vw - 400px) / 1000)), 18px );
}
.p-price__item-price {
  display: flex;
  justify-content: start;
  align-items: baseline;
  font-size: clamp( 18px, calc(18px + 2 * ((100vw - 400px) / 1000)), 20px );
}
.p-price__item-price .main {
  margin-top: -0.125em;
  font-size: clamp( 30px, calc(30px + 10 * ((100vw - 400px) / 1000)), 40px );
}
.p-price__item-price .sub {
  margin-left: 6px;
}
.p-price__item-price .sub--tax {
  margin-left: 0;
  font-size: 1.4rem;
}
.p-price__item-caution {
  margin-top: 17px;
  font-size: clamp( 13px, calc(13px + 1 * ((100vw - 400px) / 1000)), 14px );
  line-height: 1.5;
}
.p-price__item-caution--long {
  margin-right: -15px;
}
@media screen and (max-width: 1024px) {
  .p-price__item-caution--long {
    margin-right: 0;
  }
}
.p-price__text {
  margin-top: 39px;
  padding: 23px 31px 27px;
  line-height: 1.875;
  background-color: #F0F0F0;
  border-radius: 10px;
}

.p-contact {
  padding-top: 233px;
}
@media screen and (max-width: 1024px) {
  .p-contact {
    padding-top: 100px;
  }
}
.p-contact__inner {
  width: calc(100% - 100px);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .p-contact__inner {
    width: calc(100% - 44px);
  }
}
@media screen and (max-width: 1024px) {
  .p-contact__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
.p-contact__header {
  width: 55%;
}
@media screen and (max-width: 1024px) {
  .p-contact__header {
    width: min(600px, 100%);
  }
}
.p-contact__title {
  font-size: clamp( 22px, calc(22px + 8 * ((100vw - 400px) / 1000)), 30px );
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .p-contact__title {
    text-align: center;
  }
}
.p-contact__figure {
  margin-top: 23px;
}
.p-contact__lead {
  margin-top: 25px;
  line-height: 2.125;
}
.p-contact__content {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .p-contact__content {
    width: min(600px, 100%);
  }
}

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