@charset "UTF-8";
/* リキッドレイアウト対応 */
:root {
  --padding-pc: 25px;
  --padding-sp: 20px;
  --base-font-family: 'Noto Sans JP', sans-serif;
  --regular: 400;
  --medium: 500;
  --bold: 700;
  --blue: #0f3675;
  --black: #000;
  --white: #fff;
  --red:#ff0000;
  --wine-red:#7e0000;
  --green: #017730;
  --green-hover: #015c24;
  --yellow: #ffe600;
  --beige: #f5f1df;
  --dark-brown: #411e00;
  --beige-bg: #ede5c4;
}

body {
  font-family: var(--base-font-family);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
.sub-text {
  font-size: 1.75rem;
}
@media only screen and (min-width: 1800px) {
  .sub-text {
    font-size: 28px;
  }
}

.u-mt-10 {
  margin-top: 0.625rem;
}

html {
  font-size: 16px;
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (max-width: 750px) and (min-width: 375px) {
  html {
    font-size: calc(16 / clamp(375px, 100vw, 750px) * 100vw);
  }
}
@media (max-width: 1023px) and (min-width: 750px) {
  html {
    font-size: 2.1333333333vw;
  }
}
@media (min-width: 1023px) {
  html {
    font-size: 0.8333333333vw;
  }
}
/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: all;
  }
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}
img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  -webkit-text-size-adjust: 100%;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  overflow-wrap: break-word;
}

.hover-base {
  position: relative;
  display: inline-block;
}

.hover-base .hover-active {
  opacity: 0;
  position: absolute;
  inset: 0;
}

@media (hover) {
  .hover-base .hover-active {
    transition: 0.3s ease;
  }
  .hover-base:hover {
    opacity: 1;
  }
  .hover-base:hover .hover-active {
    opacity: 1;
  }
}
.inner {
  width: 100%;
  max-width: calc(1920px + var(--padding-pc) * 2);
  padding-right: var(--padding-pc);
  padding-left: var(--padding-pc);
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .inner {
    max-width: calc(1920px + var(--padding-sp) * 2);
    padding-right: var(--padding-sp);
    padding-left: var(--padding-sp);
  }
}
.l-layout {
  width: 100%;
  position: relative;
}

@media (min-width: 751px) {
  .l-layout {
    display: grid;
    grid-template-columns: 1fr 465px 1fr;
    background-color: var(--beige);
  }
}
/* @media only screen and (min-width: 1023px) {
  .l-layout {
    grid-template-columns: 1fr 46.875rem 1fr;
  }
} */
.l-side {
  display: none;
  z-index: 2;
  position: fixed;
  top: 0;
  bottom: 0;
  opacity: 0;
  transform: translateY(30px);
  width: calc(50% - 232.5px);
}

@media (min-width: 768px) {
  .l-side {
    display: flex;
    align-items: center;
  }
}
.l-side--left {
  justify-content: flex-end;
  left: -40px;
}
@media only screen and (min-width: 768px) and (max-width: 1300px) {
  .l-side--left {
    left: -10px;
  }
}

.l-side--right {
  justify-content: flex-start;
  right: -40px;
}
@media only screen and (min-width: 768px) and (max-width: 1300px) {
  .l-side--right {
    right: -10px;
  }
}

/* サイド内の中身を中央に */
.l-side__inner {
  align-items: center;
  display: none;
}

@media only screen and (min-width: 1023px) {
  .l-side__inner {
    display: flex;
  }
}
.l-side--left__inner {
  max-width: 480px;
  width: 100%;
  padding-left: 1.875rem;
  background-color: var(--green);
  padding: 1.875rem;
  border-radius: calc(30 * var(--contw) / 750 * 1px);
  color: var(--white);
}

.side__comment {
  display: flex;
  flex-direction: column;
  position: relative;
}

.side__comment::before {
  content: "";
  position: absolute;
  bottom: -3.125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.0625rem;
  aspect-ratio: 49/30;
  background-image: url("../images/bottom-arrow-w.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.side__comment-text {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.side__comment-text.--yellow {
  color: var(--yellow);
  font-size: 2.1875rem;
  font-weight: 800;
}

.side-btn__inner--keio {
  margin-top: 4.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.side-btn__inner--keio .side-btn__text {
  font-size: 1.5625rem;
  font-weight: 700;
}

.side-btn__inner--keio img {
  width: 4.25rem;
  aspect-ratio: 68/68;
  -o-object-fit: contain;
  object-fit: contain;
}

.side-btn__inner {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  justify-content: center;
}

.side-btn__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.25rem;
}

.side-btn__qr {
  width: 6.1875rem;
  aspect-ratio: 99/99;
  -o-object-fit: contain;
  object-fit: contain;
}

.side-btn__text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2.4;
}

.side-btn__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-side--right__inner {
  max-width: 480px;
  width: 100%;
  padding-right: 1.875rem;
  background-color: var(--green);
  padding: 2.1875rem;
  border-radius: calc(30 * var(--contw) / 750 * 1px);
  color: var(--white);
}

.side-nav {
  width: 100%;
}

.side-nav__list {
  position: relative;
  z-index: 2;
}

.side-nav__item:not(:last-child) {
  border-bottom: 0.3125rem dotted var(--white);
}

.side-nav__item a {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--white);
  padding-block: 1.5625rem;
}

@media (any-hover: hover) {
  .side-nav__item a:hover {
    color: var(--yellow);
    opacity: 1;
  }
  .side-nav__item a:hover .side-nav__item-icon img {
    transform: translateY(3px);
  }
}
.side-nav__item-icon {
  display: block;
  width: 3.125rem;
  aspect-ratio: 50/50;
  border-radius: 1000px;
  background-color: var(--white);
  display: grid;
  place-items: center;
  transition: background-color 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .side-nav__item-icon {
    width: 50px;
  }
}

.side-nav__item-icon img {
  width: 1.6875rem;
  -o-object-fit: contain;
  object-fit: contain;
  transition: transform 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .side-nav__item-icon img {
    width: 27px;
  }
}

a:hover .side-nav__item-icon {
  background-color: var(--yellow);
}

.side-nav__item-text {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 700;
}
@media only screen and (min-width: 1800px) {
  .side-nav__item-text {
    font-size: 32px;
  }
}

/* メインだけスクロール */
.l-main {
  background-color: var(--white);
  z-index: 3;
  width: 100%;
  border-top: none;
  padding-bottom: 18.6666666667vw;
}

@media only screen and (min-width: 768px) {
  .l-main {
    padding-bottom: 73px;
    grid-column: 2;
    border: 10px solid #ded094;
    border-top: none;
    width: 465px;
  }
}
.section__inner {
  padding-inline: 1.25rem;
}

@media only screen and (min-width: 500px) {
  .section__inner {
    padding-inline: 1.875rem;
  }
}
/***************************************
FV
****************************************/
.fv {
  position: relative;
  z-index: 3;
}

.fv__heading {
  width: 100%;
  height: 2.5rem;
  padding-block: 0.3125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (min-width: 768px) {
  .fv__heading {
    height: 90px;
    padding-block: 0;
  }
}
.fv__heading img {
  width: 7.3125rem;
  aspect-ratio: 117/28.5;
  -o-object-fit: contain;
  object-fit: contain;
}

@media only screen and (min-width: 768px) {
  .fv__heading img {
    width: 250px;
    /* aspect-ratio: 235/57; */
  }
}
.fv__main {
  width: 100%;
}

.fv__btn {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  background-color: #fff;
  width: 445px;
}
@media only screen and (max-width: 768px) {
  .fv__btn {
    width: 100%;
  }
  .fv__btn img {
    width: 100%;
  }
}

/***************************************
INTRO
****************************************/
.intro {
  width: 100%;
  position: relative;
}
.intro::before, .intro::after {
  content: "";
  display: block;
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  pointer-events: none;
}
.intro::before {
  height: 42.6666666667vw;
  background-image: url(../images/intro-bg-top.webp);
  top: -14.6666666667vw;
  right: 0;
}
@media only screen and (min-width: 768px) {
  .intro::before {
    height: 198.4px;
    top: -68.2px;
  }
}
.intro::after {
  height: 60vw;
  background-image: url(../images/intro-bg-bottom.webp);
  bottom: -12.2666666667vw;
  left: 0;
}
@media only screen and (min-width: 768px) {
  .intro::after {
    height: 279px;
    bottom: -57.04px;
  }
}

.intro__inner {
  position: relative;
  z-index: 2;
  padding-top: 21.3333333333vw;
  padding-bottom: 37.3333333333vw;
}
@media only screen and (min-width: 768px) {
  .intro__inner {
    padding-top: 99.2px;
    padding-bottom: 161.2px;
  }
}

.intro__heading {
  width: calc(643 * var(--contw) / 750 * 1px);
  margin-inline: auto;
}

.intro__heading img {
  width: 100%;
}

.intro__text {
  margin-top: calc(80 * var(--contw) / 750 * 1px);
  font-size: calc(38 * var(--contw) / 750 * 1px);
  line-height: 1.578;
  font-weight: 800;
  letter-spacing: 0.03em;
  font-feature-settings: "palt";
  color: var(--green);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 7.4666666667vw;
}
@media only screen and (min-width: 768px) {
  .intro__text {
    gap: 34.72px;
  }
}

.intro__text span {
  display: block;
}

/***************************************
CAMPAIGN
****************************************/
.campaign {
  width: 100%;
  position: relative;
  background-color: var(--green);
  color: var(--white);
  padding-top: 20px;
  padding-bottom: 50px;
  overflow-x: clip;
}
.campaign .train-item {
  margin-top: 9.3333333333vw;
}
@media only screen and (min-width: 768px) {
  .campaign .train-item {
    margin-top: 46.5px;
  }
}

.campaign::before {
  content: "";
  display: block;
  width: 100%;
  height: 14.4vw;
  position: absolute;
  top: -14.13333333vw;
  left: 0;
  background-image: url(../images/campaign_bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top center;
}
@media only screen and (min-width: 768px) {
  .campaign::before {
    height: 62px;
    top: -53.32px;
  }
}

@media only screen and (min-width: 768px) {
  .campaign {
    padding-top: 37.2px;
  }
}
.campaign .train-item img {
  width: 577.3333333333%;
  max-width: none;
}

.campaign__inner {
  position: relative;
  z-index: 2;
}

.campaign__heading {
  width: calc(643 * var(--contw) / 750 * 1px);
  margin-inline: auto;
}

.campaign__heading img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.campaign__content {
  margin-top: calc(28 * var(--contw) / 750 * 1px);
  text-align: center;
}

.campaign__content.--first {
  margin-top: calc(70 * var(--contw) / 750 * 1px);
  padding-bottom: calc(80 * var(--contw) / 750 * 1px);
  background-image: url(../images/border01.png);
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 100%;
}

.campaign__date-title {
  font-size: calc(35 * var(--contw) / 750 * 1px);
  font-weight: 700;
  line-height: 1.7;
}

.campaign__date-text {
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media only screen and (min-width: 768px) {
  .campaign__date-text {
    font-size: 22.32px;
  }
}

.campaign__date-text .number {
  font-size: calc(60 * var(--contw) / 750 * 1px);
  font-weight: 900;
  line-height: 1;
}

.campaign__date-text .small-text {
  display: inline-block;
  padding-inline: calc(8 * var(--contw) / 750 * 1px);
  padding-top: calc(6 * var(--contw) / 750 * 1px);
  font-size: calc(20 * var(--contw) / 750 * 1px);
  font-weight: 700;
  letter-spacing: 0.1em;
  align-self: center;
}

.campaign__text {
  margin-top: calc(50 * var(--contw) / 750 * 1px);
  font-size: calc(50 * var(--contw) / 750 * 1px);
  font-weight: 900;
  line-height: 1.5;
  font-feature-settings: "palt";
}

.campaign__number-text {
  font-size: calc(40 * var(--contw) / 750 * 1px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.campaign__label {
  background-color: var(--yellow);
  color: var(--black);
  padding: 0 calc(10 * var(--contw) / 750 * 1px);
  font-size: calc(62 * var(--contw) / 750 * 1px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.03em;
  display: inline-block;
  margin-right: calc(10 * var(--contw) / 750 * 1px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: calc(10 * var(--contw) / 750 * 1px);
}

.campaign__label .number {
  font-size: calc(77 * var(--contw) / 750 * 1px);
  font-weight: 900;
  position: relative;
  top: -0.04em;
}

.campaign__label .number.adj {
  top: -0.03em;
}

.campaign__primary-text {
  color: var(--yellow);
  font-size: 10vw;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media only screen and (min-width: 768px) {
  .campaign__primary-text {
    font-size: 46.5px;
  }
}

.campaign__content.--second {
  margin-top: calc(80 * var(--contw) / 750 * 1px);
}

.campaign__content.--second .campaign__text {
  font-size: calc(40 * var(--contw) / 750 * 1px);
}

.campaign__content.--second .campaign__number-text {
  font-size: calc(70 * var(--contw) / 750 * 1px);
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.campaign__content.--second .campaign__number-text .number {
  font-size: calc(89 * var(--contw) / 750 * 1px);
  line-height: 1;
  letter-spacing: 0.05em;
}

.campaign__content-card {
  background-color: var(--white);
  color: var(--green);
  margin-top: 10.6666666667vw;
  padding: 4vw 5.3333333333vw 4.8vw;
  border-radius: 4vw;
}
@media only screen and (min-width: 768px) {
  .campaign__content-card {
    margin-top: 49.6px;
    padding: 18.6px 17.36px 22.32px;
    border-radius: 18.6px;
  }
}

.campaign__content-card .card__img {
  width: 80%;
  margin-inline: auto;
}

.campaign__content-card .card__img img {
  width: 100%;
  aspect-ratio: 448/329;
  -o-object-fit: contain;
  object-fit: contain;
}

.card__body {
  margin-top: calc(20 * var(--contw) / 750 * 1px);
}

.card__label {
  background-color: var(--green);
  color: var(--white);
  padding: calc(4 * var(--contw) / 750 * 1px) calc(20 * var(--contw) / 750 * 1px);
  font-size: calc(36 * var(--contw) / 750 * 1px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.03em;
  display: inline-block;
  border-radius: calc(15 * var(--contw) / 750 * 1px);
}

.card__label:not(:first-child) {
  margin-top: calc(40 * var(--contw) / 750 * 1px);
}

.card__text {
  margin-top: calc(20 * var(--contw) / 750 * 1px);
  font-size: calc(28 * var(--contw) / 750 * 1px);
  line-height: 1.7;
  font-weight: 700;
}

.card__text > span {
  display: block;
  font-size: calc(24 * var(--contw) / 750 * 1px);
}

.card__text .small-text {
  text-align: left;
  font-size: calc(20 * var(--contw) / 750 * 1px);
  letter-spacing: -0.05em;
}

.card__detail {
  margin-top: calc(30 * var(--contw) / 750 * 1px);
}

.campaign__content.--third {
  margin-top: calc(80 * var(--contw) / 750 * 1px);
  padding-top: calc(60 * var(--contw) / 750 * 1px);
  background-image: url(../images/border01.png);
  background-repeat: repeat-x;
  background-position: top;
  background-size: 100%;
  /* border-top: calc(6 * var(--contw) / 750 * 1px) dashed var(--yellow); */
}

.campaign__content.--third .campaign__text {
  margin-top: 0;
  font-size: calc(42 * var(--contw) / 750 * 1px);
  line-height: 1.7;
  letter-spacing: 0.03em;
}

.campaign__content.--third .campaign__number-text {
  font-size: calc(70 * var(--contw) / 750 * 1px);
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.campaign__content.--third .campaign__number-text .number {
  font-size: calc(89 * var(--contw) / 750 * 1px);
  line-height: 1;
  letter-spacing: 0;
}

/***************************************
GOODS GRID
****************************************/
.goods {
  margin-top: calc(60 * var(--contw) / 750 * 1px);
  overflow-x: clip;
}

.goods__list {
  display: flex;
  justify-content: center;
  gap: calc(60 * var(--contw) / 750 * 1px);
  position: relative;
}

.goods__list:not(:first-child) {
  margin-top: 11.2vw;
}
@media only screen and (min-width: 768px) {
  .goods__list:not(:first-child) {
    margin-top: 52.08px;
  }
}

.goods__list:not(:first-child)::after, .goods__list:has(.js-modal-open)::after {
  content: "";
  width: 100%;
  height: 6px;
  position: absolute;
  top: calc(-44 * var(--contw) / 750 * 1px);
  left: 0;
  right: 0;
  background-image: url(../images/border02.png);
  background-repeat: repeat-x;
  background-size: auto 50%;
  background-position: 7% center;
}
.goods__list:not(:first-child).bdt_none::after, .goods__list:has(.js-modal-open).bdt_none::after {
  content: none;
}

@media only screen and (min-width: 400px) {
  .goods__list:not(:first-child)::after, .goods__list:has(.js-modal-open)::after {
    background-repeat: repeat-x;
    background-position: 41% center;
    background-size: auto 60%;
  }
}
.goods__list:has(.goods__item + .goods__item)::before {
  content: "";
  width: 7px;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  background-image: url(../images/border03.png);
  background-repeat: repeat-y;
  background-size: 50% auto;
  background-position: center 20%;
  transform: translateX(-50%);
}

@media only screen and (min-width: 400px) {
  .goods__list:has(.goods__item + .goods__item)::before {
    background-repeat: repeat-y;
    background-size: 60% auto;
  }
}
/* @media only screen and (min-width: 768px) {
  .goods__list:not(:first-child)::after {
    background-size: auto 98%;
  }
} */
.goods__item {
  cursor: pointer;
  flex: 1;
  min-width: 0;
  max-width: calc(50% - 30 * var(--contw) / 750 * 1px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  transition: all 0.3s;
}

@media (any-hover: hover) {
  .goods__item:hover {
    opacity: 0.8;
  }
}
.goods__text {
  font-size: calc(32 * var(--contw) / 750 * 1px);
  font-weight: 800;
  color: var(--white);
  text-align: center;
  line-height: 1.25;
  margin-block: auto;
}

.goods__text .number {
  font-size: calc(40 * var(--contw) / 750 * 1px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}

.goods__card {
  position: relative;
  background-color: var(--white);
  margin-top: calc(20 * var(--contw) / 750 * 1px);
  border-radius: calc(30 * var(--contw) / 750 * 1px);
  overflow: hidden;
  padding: calc(20 * var(--contw) / 750 * 1px);
}

.goods__card-btn {
  display: grid;
  place-items: center;
  position: absolute;
  bottom: calc(20 * var(--contw) / 750 * 1px);
  right: calc(20 * var(--contw) / 750 * 1px);
  width: calc(50 * var(--contw) / 750 * 1px);
  height: calc(50 * var(--contw) / 750 * 1px);
  aspect-ratio: 1/1;
  background-color: var(--green);
  border-radius: 1000px;
  cursor: pointer;
  transition: all 0.3s;
}

.goods__card-btn-icon {
  display: inline-block;
  vertical-align: middle;
  background: var(--white);
  line-height: 1;
  width: calc(28 * var(--contw) / 750 * 1px);
  height: calc(4 * var(--contw) / 750 * 1px);
  border-radius: 1000px;
  position: relative;
  transition: all 0.3s ease;
  transform: rotate(180deg);
}

.goods__card-btn-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

.goods__item:hover .goods__card-btn-icon {
  background: var(--yellow);
  transform: rotate(360deg);
}

.goods__thumb {
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}

.goods__thumb img {
  display: block;
  width: 100%;
  margin-inline: auto;
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 1/1;
}

.goods__more {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}

.goods__more.is-open {
  grid-template-rows: 1fr;
}

.goods__more-inner {
  overflow: hidden;
}

.goods__more-inner .goods__list:first-child {
  margin-top: calc(80 * var(--contw) / 750 * 1px);
}

.goods__more-inner .goods__list:first-child::after {
  content: "";
  position: absolute;
  top: calc(-44 * var(--contw) / 750 * 1px);
  left: 0;
  right: 0;
  /* border-top: calc(10 * var(--contw) / 750 * 1px) dotted var(--yellow); */
  background-image: url(../images/border02.png);
  background-repeat: repeat-x;
  background-size: auto 50%;
  background-position: 7% center;
}
@media only screen and (min-width: 400px) {
  .goods__more-inner .goods__list:first-child::after {
    background-repeat: repeat-x;
    background-position: 41% center;
    background-size: auto 60%;
  }
}

.goods__toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(16 * var(--contw) / 750 * 1px);
  width: 100%;
  margin-top: calc(60 * var(--contw) / 750 * 1px);
  padding: calc(20 * var(--contw) / 750 * 1px);
  background-color: var(--white);
  border: calc(4 * var(--contw) / 750 * 1px) solid var(--green);
  border-radius: calc(30 * var(--contw) / 750 * 1px);
  color: var(--green);
  font-size: calc(50 * var(--contw) / 750 * 1px);
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

@media only screen and (min-width: 500px) {
  .goods__toggle {
    margin-top: calc(100 * var(--contw) / 750 * 1px);
    padding: calc(30 * var(--contw) / 750 * 1px);
    font-size: calc(60 * var(--contw) / 750 * 1px);
  }
}
.goods__toggle[aria-expanded=true] .goods__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.goods__toggle[aria-expanded=true] .goods__toggle-text {
  font-size: 0;
}

.goods__toggle[aria-expanded=true] .goods__toggle-text::after {
  content: "閉じる";
  font-size: calc(52 * var(--contw) / 750 * 1px);
}

@media (any-hover: hover) {
  .goods__toggle:hover {
    opacity: 0.8;
  }
}
.goods__toggle-icon {
  position: relative;
  top: 0.09em;
  width: calc(40 * var(--contw) / 750 * 1px);
  height: calc(40 * var(--contw) / 750 * 1px);
}

.goods__toggle-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

/***************************************
application_method
****************************************/
.application {
  background-color: var(--beige-bg);
  padding-block: calc(80 * var(--contw) / 750 * 1px);
  overflow-x: clip;
  position: relative;
}

.application .small-text {
  font-size: 20px;
}

@media only screen and (min-width: 768px) {
  .application .small-text {
    font-size: 17px;
  }
}
.application .train-item {
  margin-top: calc(20 * var(--contw) / 750 * 1px);
}

.application .train-item img {
  width: 577.3333333333%;
  max-width: none;
}

.application__inner {
  padding-inline: calc(40 * var(--contw) / 750 * 1px);
}

.application__heading {
  font-size: calc(70 * var(--contw) / 750 * 1px);
  font-weight: 800;
  text-align: center;
  color: var(--green);
}

@media only screen and (min-width: 500px) {
  .application__heading {
    font-size: calc(90 * var(--contw) / 750 * 1px);
  }
}
.application__text {
  text-align: center;
  line-height: 1.5;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.03em;
  font-size: 3.4666666667vw;
  margin: 1.3333333333vw -2.6666666667vw 0;
}
@media only screen and (min-width: 768px) {
  .application__text {
    font-size: 16.12px;
    margin: 6.2px -18.6px 0;
  }
}
.application__text .small-text {
  font-size: 2.4vw;
  margin-top: 1.0666666667vw;
}
@media only screen and (min-width: 768px) {
  .application__text .small-text {
    font-size: 11.16px;
    margin-top: 4.96px;
  }
}

.application__text > span {
  display: block;
}

.application__text li {
  font-size: calc(18 * var(--contw) / 750 * 1px);
}

.application__text-caption {
  font-size: 2.1333333333vw;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: var(--green);
  margin-top: 3.2vw;
}
@media only screen and (min-width: 768px) {
  .application__text-caption {
    font-size: 9.92px;
    margin-top: 17.36px;
  }
}

.application__text-caption li {
  text-indent: -1em;
  padding-left: 1em;
  text-align: left;
}

.application__content {
  margin-top: calc(56 * var(--contw) / 750 * 1px);
}

.application__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13.3333333333vw;
}
@media only screen and (min-width: 768px) {
  .application__list {
    gap: 62px;
  }
}

.application__item {
  width: 100%;
  background-color: var(--green);
  border-radius: calc(60 * var(--contw) / 750 * 1px);
  padding: calc(40 * var(--contw) / 750 * 1px);
  position: relative;
}

.application__item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  bottom: -9.6vw;
  left: 50%;
  width: 10.6666666667vw;
  transform: translateX(-50%);
  aspect-ratio: 34/20;
  background-image: url(../images/bottom-arrow-g.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .application__item:not(:last-of-type)::after {
    width: 49.6px;
    bottom: -45.26px;
  }
}

.application__item-heading {
  display: flex;
  align-items: center;
  gap: 5%;
}

.application__item-number {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  border-radius: 50%;
  width: calc(140 * var(--contw) / 750 * 1px);
  aspect-ratio: 1/1;
  padding: calc(10 * var(--contw) / 750 * 1px);
  color: var(--green);
}

.application__item-number .text {
  font-size: calc(24 * var(--contw) / 750 * 1px);
  font-weight: 700;
}

.application__item-number .number {
  margin-top: calc(-10 * var(--contw) / 750 * 1px);
  font-size: calc(70 * var(--contw) / 750 * 1px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  left: 0.05em;
}

.application__item-title {
  flex-shrink: 0;
  font-size: calc(40 * var(--contw) / 750 * 1px);
  font-weight: 700;
  color: var(--white);
}

.application__item-thumb {
  max-width: calc(160 * var(--contw) / 750 * 1px);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  margin-left: calc(20 * var(--contw) / 750 * 1px);
}

.application__item-thumb img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.application__item-link {
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .application__item-link:hover {
    opacity: 0.8;
  }
}
.application__item-content {
  margin-top: calc(20 * var(--contw) / 750 * 1px);
  display: flex;
  justify-content: center;
  gap: 8%;
}

.application__item-text {
  font-size: calc(35 * var(--contw) / 750 * 1px);
  font-weight: 700;
  color: var(--white);
  text-align: center;
}

.application__swiper {
  padding-bottom: calc(40 * var(--contw) / 750 * 1px);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(10 * var(--contw) / 750 * 1px);
}

.application__swiper-item {
  width: 55%;
  margin-inline: auto;
}

.application__swiper-item img {
  width: 100%;
}

.swiper-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  gap: calc(20 * var(--contw) / 750 * 1px);
  z-index: 2;
  margin-top: calc(10 * var(--contw) / 750 * 1px);
}

.swiper-pagination-bullet {
  width: calc(34 * var(--contw) / 750 * 1px);
  height: calc(34 * var(--contw) / 750 * 1px);
  border-radius: 50%;
  background-color: transparent;
  border: calc(4 * var(--contw) / 750 * 1px) solid var(--white);
  opacity: 1;
  cursor: pointer;
  transition: background-color 0.3s;
}

.swiper-pagination-bullet-active {
  background-color: var(--yellow);
  border-color: var(--white);
}

.application__swiper-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.application__swiper-btn .button-prev,
.application__swiper-btn .button-next {
  cursor: pointer;
  width: calc(120 * var(--contw) / 750 * 1px);
  transition: opacity 0.3s, visibility 0.3s, filter 0.3s;
  filter: grayscale(1) brightness(1.1);
  pointer-events: all;
}

.application__swiper-btn .button-prev img,
.application__swiper-btn .button-next img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.application__swiper-btn .button-prev.swiper-button-disabled,
.application__swiper-btn .button-next.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (any-hover: hover) {
  .application__swiper-btn .button-prev:hover,
  .application__swiper-btn .button-next:hover {
    filter: none;
  }
}
.application__item-card {
  margin-top: calc(40 * var(--contw) / 750 * 1px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: calc(30 * var(--contw) / 750 * 1px);
  position: relative;
}

.application__item-card::before {
  content: "";
  position: absolute;
  bottom: -12.2666666667vw;
  left: 50%;
  transform: translateX(-50%);
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  background-image: url(../images/bottom-arrow-y.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .application__item-card::before {
    width: 49.6px;
    height: 49.6px;
    bottom: -57.04px;
  }
}

.application__item-card .application__item-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(10 * var(--contw) / 750 * 1px);
}

.application__item-card .application__item-box img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.application__item-card .application__item-text {
  font-size: calc(24 * var(--contw) / 750 * 1px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.application__item-card .application__item-card-image {
  width: 100%;
  aspect-ratio: 296/193;
  -o-object-fit: contain;
  object-fit: contain;
}

.application__item-card .application__item-mobile-image {
  width: 70%;
  aspect-ratio: 127/221;
  -o-object-fit: contain;
  object-fit: contain;
}

.application__item-primary {
  margin-top: 15.4666666667vw;
  font-size: calc(36 * var(--contw) / 750 * 1px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .application__item-primary {
    margin-top: 62px;
  }
}
.application__item-btn {
  margin-top: 1.25rem;
}

.application__item-btn-link {
  display: block;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 607/170;
}

.application__item-btn-link img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (any-hover: hover) {
  .application__item-btn-link:hover {
    opacity: 0.8;
  }
}
.application__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(20 * var(--contw) / 750 * 1px);
  margin-top: calc(30 * var(--contw) / 750 * 1px);
}

.application__link {
  display: inline-block;
  padding: calc(24 * var(--contw) / 750 * 1px) calc(60 * var(--contw) / 750 * 1px) calc(24 * var(--contw) / 750 * 1px) calc(30 * var(--contw) / 750 * 1px);
  background-color: var(--white);
  color: var(--green);
  border: calc(8 * var(--contw) / 750 * 1px) solid var(--green);
  font-size: calc(32 * var(--contw) / 750 * 1px);
  font-weight: 700;
  cursor: pointer;
  width: calc(480 * var(--contw) / 750 * 1px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(20 * var(--contw) / 750 * 1px);
  position: relative;
  transition: background-color 0.3s;
}

@media (any-hover: hover) {
  .application__link:hover {
    background-color: var(--yellow);
  }
}
.application__link .application__link-icon {
  width: calc(40 * var(--contw) / 750 * 1px);
  height: calc(40 * var(--contw) / 750 * 1px);
  position: absolute;
  right: calc(20 * var(--contw) / 750 * 1px);
  top: 50%;
  transform: translateY(-50%);
}

.application__link .application__link-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.application__contact-btn {
  margin-top: calc(200 * var(--contw) / 750 * 1px);
  position: relative;
}

.application__contact-btn::before {
  content: "";
  position: absolute;
  top: calc(-100 * var(--contw) / 750 * 1px);
  left: 0;
  width: 99%;
  height: 0.1875rem;
  background-image: repeating-linear-gradient(to right, var(--green) 0, var(--green) calc(12 * var(--contw) / 750 * 1px), transparent calc(12 * var(--contw) / 750 * 1px), transparent calc(24 * var(--contw) / 750 * 1px));
}

.application__contact-btn-link {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--green);
  color: var(--white);
  transition: all 0.3s;
  width: 65.6vw;
  padding: 4vw 0;
  border-radius: 7.4666666667vw;
}
@media only screen and (min-width: 768px) {
  .application__contact-btn-link {
    width: 305.04px;
    padding: 18.6px 0;
    border-radius: 34.72px;
  }
}

@media (any-hover: hover) {
  .application__contact-btn-link:hover {
    color: var(--yellow);
  }
  .application__contact-btn-link:hover .application__contact-btn-icon {
    filter: none;
  }
}
.application__contact-btn-link .text {
  display: block;
  font-size: 4.8vw;
  padding-right: calc(24 * var(--contw) / 750 * 1px);
  font-weight: 700;
  color: inherit;
}
@media only screen and (min-width: 768px) {
  .application__contact-btn-link .text {
    font-size: 22.32px;
  }
}

.application__contact-btn-link .application__contact-btn-icon {
  width: calc(40 * var(--contw) / 750 * 1px);
  height: calc(40 * var(--contw) / 750 * 1px);
  position: absolute;
  right: calc(20 * var(--contw) / 750 * 1px);
  top: 50%;
  transform: translateY(-50%);
  filter: grayscale(1) brightness(1.1);
  transition: all 0.3s;
}

.application__contact-btn-link .application__contact-btn-icon img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.application-contact-detail {
  margin-top: calc(40 * var(--contw) / 750 * 1px);
  text-align: center;
  font-size: calc(24 * var(--contw) / 750 * 1px);
  font-weight: 700;
  color: var(--green);
}

/***************************************
application-detail
****************************************/
.application-detail {
  position: relative;
  margin-top: 4vw;
}
@media only screen and (min-width: 768px) {
  .application-detail {
    margin-top: 22.94px;
  }
}

/***************************************
top-btn
****************************************/
.top-btn {
  position: sticky;
  z-index: 10;
  bottom: calc(160 * var(--contw) / 750 * 1px);
  margin-left: auto;
  margin-right: calc(30 * var(--contw) / 750 * 1px);
  width: calc(100 * var(--contw) / 750 * 1px);
  height: calc(100 * var(--contw) / 750 * 1px);
  margin-top: -5.33333333vw;
}
@media only screen and (min-width: 768px) {
  .top-btn {
    margin-top: -27.9px;
  }
}

.top-btn__link {
  display: block;
  width: 100%;
}

.top-btn__link img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.application__detail-btn {
  display: block;
  width: calc(612 * var(--contw) / 750 * 1px);
  margin-inline: auto;
}

.application__detail-btn img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.application__detail-text {
  margin-top: calc(30 * var(--contw) / 750 * 1px);
  text-align: center;
  font-size: calc(30 * var(--contw) / 750 * 1px);
  font-weight: 700;
  color: var(--blue);
}

/***************************************
footer
****************************************/
.footer {
  margin-top: 10.6666666667vw;
  padding-top: 3.7333333333vw;
  border-top: 1px solid #000;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .footer {
    margin-top: 49.6px;
    padding-top: 17.36px;
  }
}

.footer__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.footer__logo-wrap a {
  display: block;
  width: 30%;
}

.footer__logo-wrap a:hover {
  opacity: 0.3;
}

.footer__copyright {
  margin-top: 4.2666666667vw;
  background-color: var(--green);
  color: var(--white);
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  padding-top: 9.6vw;
  padding-bottom: 9.6vw;
  font-size: 2.4vw;
}
@media only screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 11.16px;
    margin-top: 19.84px;
    padding-top: 44.64px;
    padding-bottom: 44.64px;
    font-weight: 500;
  }
}

/***************************************
MODAL
****************************************/
html.is-modal-open,
html.is-modal-open body {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--green);
  opacity: 0.85;
  cursor: pointer;
}

.l-side, .l-main {
  transition: filter 0.5s ease;
}

.is-modal-open .l-side, .is-modal-open .l-main {
  filter: blur(10px);
}

.modal__body {
  position: relative;
  z-index: 2;
  width: min(90%, 700 * var(--contw) / 750 * 1px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal__close {
  align-self: flex-end;
  width: calc(130 * var(--contw) / 750 * 1px);
  height: calc(130 * var(--contw) / 750 * 1px);
  margin-bottom: calc(20 * var(--contw) / 750 * 1px);
  color: var(--white);
  cursor: pointer;
}

.modal__close .dli-close {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: calc(170 * var(--contw) / 750 * 1px);
  height: calc(12 * var(--contw) / 750 * 1px);
  background: var(--white);
  border-radius: 1000px;
  position: relative;
  left: 0;
  transition: all 0.3s;
  transform: rotate(45deg);
}

.modal__close .dli-close::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: 0.25em;
  transform: rotate(90deg);
}

@media (any-hover: hover) {
  .modal__close:hover .dli-close {
    background: var(--yellow);
    transform: rotate(225deg);
  }
}
.modal__content {
  width: 100%;
  background-color: var(--white);
  border-radius: calc(30 * var(--contw) / 750 * 1px);
  overflow: hidden;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}

.modal__img-wrap {
  padding: calc(30 * var(--contw) / 750 * 1px);
}

.modal__img {
  width: 100%;
  aspect-ratio: 1/1;
  display: block;
  margin-inline: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.modal__text {
  margin-top: calc(54 * var(--contw) / 750 * 1px);
  text-align: center;
  line-height: 1.5;
  font-weight: 800;
  letter-spacing: 0.03em;
  font-weight: 700;
  color: var(--white);
}

.modal__text .modal__title {
  font-size: calc(54 * var(--contw) / 750 * 1px);
}

.modal__text .modal__subtitle {
  font-size: calc(56 * var(--contw) / 750 * 1px);
}

.modal__text .modal__detail {
  margin-top: calc(20 * var(--contw) / 750 * 1px);
  font-size: calc(24 * var(--contw) / 750 * 1px);
  overflow-wrap: anywhere;
}

/***************************************
TEXT MODAL（応募要項・個人情報保護方針）
****************************************/
.text-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.text-modal[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}

.text-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: var(--green);
  opacity: 0.85;
  cursor: pointer;
}

.text-modal__body {
  position: relative;
  z-index: 2;
  width: min(85%, 676 * var(--contw) / 750 * 1px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.text-modal__close {
  align-self: flex-end;
  width: calc(130 * var(--contw) / 750 * 1px);
  height: calc(130 * var(--contw) / 750 * 1px);
  margin-bottom: calc(20 * var(--contw) / 750 * 1px);
  color: var(--white);
  cursor: pointer;
}

.text-modal__close .dli-close {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: calc(170 * var(--contw) / 750 * 1px);
  height: calc(12 * var(--contw) / 750 * 1px);
  background: var(--white);
  border-radius: 1000px;
  position: relative;
  left: calc(-25 * var(--contw) / 750 * 1px);
  transition: all 0.3s;
  transform: rotate(45deg);
}

.text-modal__close .dli-close::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: 0.25em;
  transform: rotate(90deg);
}

@media (any-hover: hover) {
  .text-modal__close:hover .dli-close {
    background: var(--yellow);
    transform: rotate(225deg);
  }
}
.text-modal__card {
  width: 100%;
  max-height: 75vh;
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: calc(60 * var(--contw) / 750 * 1px);
  overflow: hidden;
  padding: calc(40 * var(--contw) / 750 * 1px) calc(20 * var(--contw) / 750 * 1px);
}

.text-modal__header {
  flex-shrink: 0;
  text-align: center;
  padding: 0 calc(60 * var(--contw) / 750 * 1px) calc(40 * var(--contw) / 750 * 1px);
  border-bottom: calc(6 * var(--contw) / 750 * 1px) dotted var(--green);
  margin-inline: calc(40 * var(--contw) / 750 * 1px);
  width: calc(100% - 80 * var(--contw) / 750 * 1px);
}

.text-modal__heading {
  font-size: calc(44 * var(--contw) / 750 * 1px);
  font-weight: 700;
  color: var(--green);
}

.text-modal__scroll {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  width: 100%;
}

.text-modal__scroll::-webkit-scrollbar {
  width: calc(40 * var(--contw) / 750 * 1px);
}

.text-modal__scroll::-webkit-scrollbar-track {
  background: #f2f8f4;
  border-radius: calc(20 * var(--contw) / 750 * 1px);
  margin-block: calc(30 * var(--contw) / 750 * 1px);
}

.text-modal__scroll::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: calc(20 * var(--contw) / 750 * 1px);
}

.text-modal__scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(1, 119, 48, 0.85);
}

.text-modal__scroll {
  scrollbar-width: auto;
  scrollbar-color: var(--green) #f2f8f4;
}

.text-modal__content {
  padding: calc(20 * var(--contw) / 750 * 1px) calc(30 * var(--contw) / 750 * 1px) calc(40 * var(--contw) / 750 * 1px) calc(20 * var(--contw) / 750 * 1px);
}

.text-modal__title {
  font-size: calc(40 * var(--contw) / 750 * 1px);
  font-weight: 700;
  color: var(--green);
  margin-top: calc(60 * var(--contw) / 750 * 1px);
  margin-bottom: calc(24 * var(--contw) / 750 * 1px);
  text-align: center;
  padding-bottom: calc(24 * var(--contw) / 750 * 1px);
  border-bottom: calc(6 * var(--contw) / 750 * 1px) dotted var(--green);
}

.text-modal__title:first-child {
  margin-top: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.text-modal__title.--privacy {
  font-size: calc(24 * var(--contw) / 750 * 1px);
}

.text-modal__title.--privacy-sub {
  text-align: left;
  font-size: calc(26 * var(--contw) / 750 * 1px);
  letter-spacing: -0.05em;
  padding-bottom: calc(20 * var(--contw) / 750 * 1px);
}

.text-modal__text {
  font-size: calc(20 * var(--contw) / 750 * 1px);
  line-height: 1.8;
  color: var(--black);
}

.text-modal__contact {
  margin-top: calc(60 * var(--contw) / 750 * 1px);
  text-align: center;
}

.modal__contact-title {
  font-size: calc(34 * var(--contw) / 750 * 1px);
  font-weight: 700;
  color: var(--green);
  text-align: center;
}

.text-modal__link {
  color: var(--green);
  text-decoration: underline;
}

@media (any-hover: hover) {
  .text-modal__link:hover {
    opacity: 0.8;
  }
}
.modal__contact-btn-link {
  display: inline-block;
  margin-top: calc(20 * var(--contw) / 750 * 1px);
  padding: calc(20 * var(--contw) / 750 * 1px) calc(60 * var(--contw) / 750 * 1px);
  background-color: var(--green);
  color: var(--white);
  font-size: calc(32 * var(--contw) / 750 * 1px);
  font-weight: 700;
  border-radius: calc(60 * var(--contw) / 750 * 1px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  width: min(85%, 500 * var(--contw) / 750 * 1px);
  margin-inline: auto;
  position: relative;
}
@media (any-hover: hover) {
  .modal__contact-btn-link:hover {
    color: var(--yellow);
    opacity: 1;
  }
  .modal__contact-btn-link:hover .modal__contact-btn-icon {
    filter: none;
  }
}

.modal__contact-btn-link .text {
  display: block;
  padding-right: calc(20 * var(--contw) / 750 * 1px);
}

.modal__contact-btn-link .modal__contact-btn-icon {
  filter: grayscale(1) brightness(1.1);
  position: absolute;
  right: calc(30 * var(--contw) / 750 * 1px);
  top: 50%;
  transform: translateY(-50%);
  width: calc(30 * var(--contw) / 750 * 1px);
  aspect-ratio: 1/1;
}

.modal__contact-btn-link .modal__contact-btn-icon img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media only screen and (max-width: 767px) {
  .modal__close {
    width: 12vw;
    height: 12vw;
  }
  .modal__close .dli-close {
    width: 10.66666667vw;
    height: 1.06666667vw;
  }
}
@media only screen and (min-width: 768px) {
  .modal__body {
    max-width: 400px;
    width: 100%;
  }
  .modal__close {
    width: 60px;
    height: 60px;
  }
  .modal__close .dli-close {
    width: 60px;
    height: 6px;
    left: 0;
  }
  .modal__text .modal__title {
    font-size: 30px;
  }
  .modal__text .modal__subtitle {
    font-size: 28px;
  }
  .modal__text .modal__detail {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .text-modal__close {
    width: 12vw;
    height: 12vw;
  }
  .text-modal__close .dli-close {
    width: 10.66666667vw;
    height: 1.06666667vw;
  }
}
@media only screen and (min-width: 768px) {
  .text-modal__close {
    width: 60px;
    height: 60px;
  }
  .text-modal__close .dli-close {
    width: 60px;
    height: 6px;
    left: 0;
  }
}
@media only screen and (max-width: 1500px) {
  .l-side .l-side--right__inner, .l-side .l-side--left__inner {
    max-width: 400px;
  }
}
@media only screen and (max-width: 1300px) {
  .l-side .l-side--right__inner, .l-side .l-side--left__inner {
    max-width: 250px;
  }
}
@media only screen and (max-width: 1020px) {
  .l-side .l-side--right__inner, .l-side .l-side--left__inner {
    padding: 30px 10px;
  }
}

.l-side--left {
  justify-content: flex-end;
  left: -40px;
}
@media only screen and (max-width: 1500px) {
  .l-side--left {
    left: -20px;
  }
}
@media only screen and (max-width: 1020px) {
  .l-side--left {
    left: 0;
    padding-right: 15px;
  }
}

.l-side--right {
  justify-content: flex-start;
  right: -40px;
}
@media only screen and (max-width: 1500px) {
  .l-side--right {
    right: -20px;
  }
}
@media only screen and (max-width: 1020px) {
  .l-side--right {
    right: 0;
    padding-left: 15px;
  }
}

@media only screen and (max-width: 1300px) {
  .side-nav__item-icon {
    width: 30px;
  }
  .side-nav__item-icon img {
    width: 14px;
  }
}

@media only screen and (max-width: 1300px) {
  .side-nav__item-text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1020px) {
  .side-nav__item-text {
    font-size: 10px;
  }
}

@media only screen and (max-width: 1300px) {
  .sub-text {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1020px) {
  .sub-text {
    font-size: 10px;
  }
}

@media only screen and (max-width: 1300px) {
  .side__comment-text {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1020px) {
  .side__comment-text {
    font-size: 10px;
  }
}

@media only screen and (max-width: 1300px) {
  .side__comment-text.--yellow {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1020px) {
  .side__comment-text.--yellow {
    font-size: 10px;
  }
}

@media only screen and (max-width: 1300px) {
  .side__comment::before {
    width: 24px;
  }
}

@media only screen and (max-width: 1300px) {
  .side-btn__inner--keio .side-btn__text {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1300px) {
  .side-btn__inner--keio img {
    width: 32px;
  }
}

@media only screen and (max-width: 1020px) {
  .side-btn__inner {
    flex-direction: column;
    gap: 0px;
  }
}

@media only screen and (max-width: 1020px) {
  .side-btn__qr {
    width: 60px;
  }
}

@media only screen and (max-width: 1020px) {
  .side-btn__text {
    font-size: 10px;
  }
}

@media only screen and (max-width: 1020px) {
  .side__comment::before {
    width: 24px;
    bottom: -32px;
  }
}

@media only screen and (max-width: 1020px) {
  .side-btn__inner--keio {
    margin-top: 42px;
    flex-direction: column;
  }
}

@media only screen and (max-width: 1020px) {
  .side-btn__inner--keio img {
    width: 40px;
  }
}

@media only screen and (max-width: 1020px) {
  .side-btn__inner--keio .side-btn__text {
    font-size: 10px;
  }
}

@media only screen and (max-width: 1020px) {
  .side-nav__item:not(:last-child) {
    border-bottom: 1px dotted var(--white);
  }
}
@media only screen and (max-width: 1020px) {
  .side-nav__item a {
    padding: 10px 0;
    gap: 10px;
  }
}

@media only screen and (max-width: 1020px) {
  .side-nav__item-icon {
    width: 20px;
  }
}

@media only screen and (max-width: 1020px) {
  .side-nav__item-icon img {
    width: 10px;
  }
}

@media only screen and (max-width: 1020px) {
  .side-btn__icon {
    width: 120px;
    margin: 0 auto;
  }
}

.card__text.mt_adj {
  margin-top: 0.5333333333vw;
}
@media only screen and (min-width: 768px) {
  .card__text.mt_adj {
    margin-top: 2.48px;
  }
}

.number em {
  font-style: normal;
  font-size: 80%;
  position: relative;
  top: -0.1em;
  margin: 0 -0.05em;
}/*# sourceMappingURL=styles.css.map */