@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
  v2.0 | 20110126
  License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: calc(16 / 960 * 100vw);
}
@media screen and (max-width: 839px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  background-color: #fff;
  color: #000;
  letter-spacing: 0.1em;
}

html,
body {
  height: 100dvh;
  /* iOSでの高さズレを防ぐ */
}

main {
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

picture {
  vertical-align: middle;
}

a {
  display: inline-block;
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, filter 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  color: inherit;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.6;
    -webkit-filter: brightness(90%);
            filter: brightness(90%);
  }
}
@media (hover: none) {
  a:hover {
    opacity: 1;
    -webkit-filter: none;
            filter: none;
    cursor: default;
  }
}

button {
  cursor: pointer;
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

h1,
h2,
h3,
h4,
p,
a {
  color: #000;
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

input,
textarea,
select {
  font: inherit;
}

.animated__fadeIn {
  opacity: 0;
  translate: 0 40px;
  -webkit-transition: opacity 0.8s ease, translate 0.8s ease;
  transition: opacity 0.8s ease, translate 0.8s ease;
}
.animated__fadeIn.js-show {
  opacity: 1;
  translate: 0 0;
}

.animated__fadeIn--right {
  opacity: 0;
  translate: 40px 0;
  -webkit-transition: opacity 0.8s ease, translate 0.8s ease;
  transition: opacity 0.8s ease, translate 0.8s ease;
}
.animated__fadeIn--right.js-show {
  opacity: 1;
  translate: 0 0;
}

.animated__fadeIn--left {
  opacity: 0;
  translate: -40px 0;
  -webkit-transition: opacity 0.8s ease, translate 0.8s ease;
  transition: opacity 0.8s ease, translate 0.8s ease;
}
.animated__fadeIn--left.js-show {
  opacity: 1;
  translate: 0 0;
}

.animated__fadeIn--static {
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.animated__fadeIn--static.js-show {
  opacity: 1;
}

.animated__fadeIn--early {
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}
.animated__fadeIn--early.js-show {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.animated__fadeIn--stagger {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
}

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

.u-sp {
  display: none;
}
@media screen and (max-width: 839px) {
  .u-sp {
    display: block !important;
  }
}

.btn {
  padding: 0.3125rem 0.5rem 0.25rem 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.01em;
  border-radius: 100vmax;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, filter 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  display: inline-block;
  text-align: center;
}
.btn a {
  color: #fff;
}

.heading-ja {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  margin-top: 1.0625rem;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.cv {
  padding-bottom: 4.0625rem;
}
@media screen and (max-width: 839px) {
  .cv {
    padding-bottom: 2.5rem;
  }
}

.cv__inner {
  max-width: 37.5rem;
  width: 100%;
  margin: 0 auto;
}

.cv__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 839px) {
  .cv__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: -0.8125rem;
  }
}

.cv__img {
  width: 18.9375rem;
  height: 15.0625rem;
  margin-top: -1.875rem;
  margin-left: -8.1875rem;
}
@media screen and (max-width: 839px) {
  .cv__img {
    width: 19.625rem;
    height: auto;
    margin-top: 0.3125rem;
    margin-left: 1.875rem;
  }
}

.cv__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cv__text {
  text-align: center;
  font-size: 1.375rem;
  position: relative;
  margin-top: 3.375rem;
  margin-left: 1.875rem;
}
@media screen and (max-width: 839px) {
  .cv__text {
    font-size: 1.0625rem;
    margin-left: 0;
  }
}
.cv__text p {
  color: #00a59e;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 839px) {
  .cv__text p {
    letter-spacing: 0.018em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}
.cv__text span {
  letter-spacing: 0.01em;
}
@media screen and (max-width: 839px) {
  .cv__text span {
    letter-spacing: 0.028em;
  }
}
.cv__text::before, .cv__text::after {
  content: "";
  position: absolute;
  top: 1.6875rem;
  width: 4.375rem;
  height: 0.375rem;
  background-color: #79c8c3;
  border-radius: 0.25rem;
}
@media screen and (max-width: 839px) {
  .cv__text::before, .cv__text::after {
    top: 1.5625rem;
    width: 3.6875rem;
    height: 0.375rem;
  }
}
.cv__text::before {
  left: -4.625rem;
  -webkit-transform: rotate(69deg);
          transform: rotate(69deg);
}
@media screen and (max-width: 839px) {
  .cv__text::before {
    left: -3.9375rem;
    -webkit-transform: rotate(66deg);
            transform: rotate(66deg);
  }
}
.cv__text::after {
  right: -4rem;
  -webkit-transform: rotate(-69deg);
          transform: rotate(-69deg);
}
@media screen and (max-width: 839px) {
  .cv__text::after {
    right: -4rem;
    -webkit-transform: rotate(-64deg);
            transform: rotate(-64deg);
  }
}

.cv__btns {
  margin-top: 1.25rem;
  margin-left: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.9375rem;
}
@media screen and (max-width: 839px) {
  .cv__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 0;
    margin-top: 1rem;
  }
  .cv__btns .btn:nth-child(2) {
    margin-top: -0.5rem;
  }
}

.cv__information-btn {
  background: #00a59e;
  width: 12rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 839px) {
  .cv__information-btn {
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
  }
}

.cv__dl-btn {
  background: #afd154;
  width: 12rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 839px) {
  .cv__dl-btn {
    -webkit-font-feature-settings: normal;
            font-feature-settings: normal;
  }
}

.cv-trial__wrap {
  width: 37.5rem;
  height: 11.5625rem;
  margin-top: 1.4375rem;
  background: linear-gradient(145deg, rgba(0, 165, 158, 0.6) 30%, rgba(175, 209, 84, 0.5) 70%);
  border-radius: 1.75rem;
}
@media screen and (max-width: 839px) {
  .cv-trial__wrap {
    width: 19.1875rem;
    height: 22rem;
    margin: 0 auto;
    border-radius: 0.75rem;
    margin-top: 0.75rem;
  }
}

.cv-trial__box {
  width: 37.5rem;
  height: 11.5625rem;
  background: linear-gradient(145deg, rgba(0, 165, 158, 0.4) 30%, rgba(175, 209, 84, 0.3) 70%);
  padding-inline: 0.375rem;
  border-radius: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 839px) {
  .cv-trial__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    width: 19.1875rem;
    height: 22rem;
    border-radius: 0.75rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.cv-trial__item {
  margin-left: 1.5625rem;
}
@media screen and (max-width: 839px) {
  .cv-trial__item {
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    margin-top: 1.1875rem;
  }
}

.cv-trial__heading-img {
  width: 7.6875rem;
  height: 1.25rem;
}
@media screen and (max-width: 839px) {
  .cv-trial__heading-img {
    width: 6rem;
    height: auto;
  }
}

.cv-trial__text {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.cv-trial__text p {
  color: #fff;
}
@media screen and (max-width: 839px) {
  .cv-trial__text {
    font-size: 0.875rem;
    margin-top: 0.8125rem;
  }
}

.cv-trial__button {
  margin-top: 0.5rem;
  text-align: center;
}
@media screen and (max-width: 839px) {
  .cv-trial__button {
    margin-left: -0.4375rem;
    margin-top: 1.25rem;
  }
}

.cv-trial__btn {
  background: #fff;
  color: #00a59e;
  padding-inline: 2.8125rem;
  margin-left: 0.625rem;
  font-size: 1.0625rem;
}
@media screen and (max-width: 839px) {
  .cv-trial__btn {
    padding-inline: 2.6875rem;
  }
}

.cv-trial__img {
  width: 17rem;
  height: 10.9375rem;
}
@media screen and (max-width: 839px) {
  .cv-trial__img {
    margin-top: 0.3125rem;
    width: 100%;
    height: auto;
  }
  .cv-trial__img picture, .cv-trial__img img {
    width: 100%;
    height: auto;
    display: block;
  }
}

.header {
  position: static;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  background: #fff;
}
@media screen and (min-width: 1441px) {
  .header {
    padding-inline: 2.2222222222vw;
  }
}
@media screen and (max-width: 1440px) {
  .header {
    padding-inline: 2.2222222222vw;
  }
}
@media screen and (max-width: 839px) {
  .header {
    position: fixed;
    z-index: 102;
    padding-left: 20px;
    padding-right: 0;
    height: 56px;
  }
}

@media screen and (min-width: 1441px) {
  .header__inner {
    display: grid;
    grid-template-columns: 16.1111111111vw 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 1.25vw;
  }
}
@media screen and (max-width: 1440px) {
  .header__inner {
    display: grid;
    grid-template-columns: 16.1111111111vw 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 1.25vw;
  }
}
@media screen and (max-width: 839px) {
  .header__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 0;
    height: 100%;
  }
}

.header__logo {
  height: auto;
}
@media screen and (min-width: 1441px) {
  .header__logo {
    width: 13.8888888889vw;
  }
}
@media screen and (max-width: 1440px) {
  .header__logo {
    width: 13.8888888889vw;
  }
}
@media screen and (max-width: 839px) {
  .header__logo {
    width: 160px;
    margin-top: 12px;
    margin-bottom: 12px;
  }
}

.header__logo-img {
  width: 100%;
}

@media screen and (min-width: 1441px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-column-gap: 2.2222222222vw;
       -moz-column-gap: 2.2222222222vw;
            column-gap: 2.2222222222vw;
  }
}
@media screen and (max-width: 1440px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
    -webkit-column-gap: 2.2222222222vw;
       -moz-column-gap: 2.2222222222vw;
            column-gap: 2.2222222222vw;
  }
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.6666666667vw;
     -moz-column-gap: 1.6666666667vw;
          column-gap: 1.6666666667vw;
}

@media screen and (min-width: 1441px) {
  .menu__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #000;
    font-size: 0.9722222222vw;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
  .menu__btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0.5555555556vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0.2083333333vw;
  }
  .menu__btn img {
    width: 1.5277777778vw;
    height: 1.5277777778vw;
  }
}
@media screen and (max-width: 1440px) {
  .menu__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #000;
    font-size: 0.9722222222vw;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
  .menu__btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0.5555555556vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0.2083333333vw;
  }
  .menu__btn img {
    width: 1.5277777778vw;
    height: 1.5277777778vw;
  }
}

@media screen and (min-width: 1441px) {
  .btn__area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.1111111111vw;
  }
}
@media screen and (max-width: 1440px) {
  .btn__area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.1111111111vw;
  }
}

@media screen and (min-width: 1441px) {
  .button {
    padding-left: 1.25vw;
    background: #00A59E;
    border-radius: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.3472222222vw;
    width: 11.1111111111vw;
    height: 2.8472222222vw;
    font-size: 0.9722222222vw;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
  .button img {
    width: 1.6666666667vw;
    height: 1.6666666667vw;
  }
  .button p {
    color: #fff;
  }
  .button::after {
    content: "";
    display: inline-block;
    width: 0.4166666667vw;
    height: 0.4166666667vw;
    border-top: 0.1388888889vw solid #fff;
    border-right: 0.1388888889vw solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    margin: 0 0.6944444444vw;
    right: -0.0694444444vw;
    position: relative;
  }
}
@media screen and (max-width: 1440px) {
  .button {
    padding-left: 1.25vw;
    background: #00A59E;
    border-radius: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.3472222222vw;
    width: 11.1111111111vw;
    height: 2.8472222222vw;
    font-size: 0.9722222222vw;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.08em;
  }
  .button img {
    width: 1.6666666667vw;
    height: 1.6666666667vw;
  }
  .button p {
    color: #fff;
  }
  .button::after {
    content: "";
    display: inline-block;
    width: 0.4166666667vw;
    height: 0.4166666667vw;
    border-top: 0.1388888889vw solid #fff;
    border-right: 0.1388888889vw solid #fff;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    margin: 0 0.6944444444vw;
    right: -0.0694444444vw;
    position: relative;
  }
}

.drawer__icon {
  position: fixed;
  z-index: 102;
  top: 0;
  right: 0;
  width: 52px;
  height: 56px;
  background: #35B9B3;
}

.drawer__icon-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.drawer__icon--bar {
  position: absolute;
  left: 14px;
  width: 26px;
  height: 1.73px;
  background: #fff;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.drawer__icon--bar:nth-of-type(1) {
  top: 17px;
}

.drawer__icon--bar:nth-of-type(2) {
  top: 26px;
}

.drawer__icon--bar:nth-of-type(3) {
  top: 36px;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  -webkit-transform: translateX(-50%) translateY(9.5px) rotate(45deg);
          transform: translateX(-50%) translateY(9.5px) rotate(45deg);
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  opacity: 0;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  -webkit-transform: translateX(-50%) translateY(-9.5px) rotate(-45deg);
          transform: translateX(-50%) translateY(-9.5px) rotate(-45deg);
}

.drawer {
  display: none;
}
@media screen and (max-width: 839px) {
  .drawer {
    position: absolute;
    z-index: 101;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    overflow-y: scroll;
    scrollbar-width: none;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}

.drawer.js-show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}
.drawer-header__logo img {
  width: 200px;
  height: auto;
}

@media screen and (max-width: 839px) {
  .drawer__body {
    margin: 0 24px;
    padding: 50px 0 30px 0;
    color: #333;
    width: 100%;
    height: 100vh;
  }
}
@media (min-width: 540px) {
  .drawer__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.drawer__list {
  width: 275px;
  margin: 0 auto;
  line-height: 1.5;
  font-size: 12px;
  letter-spacing: 0.01em;
}

.drawer-list__title {
  font-size: 14px;
  position: relative;
  padding-left: 36px;
  margin-bottom: 12px;
}
.drawer-list__title::before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #00A59E;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.drawer-list__title::after {
  font-family: FontAwesome;
  content: "\f063";
  color: #fff;
  display: inline-block;
  position: absolute;
  left: 7px;
  top: 50%;
  font-size: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.drawer-list__item {
  border-bottom: 1px solid #DAEEEC;
  margin-bottom: 16px;
}
.drawer-list__item li a {
  position: relative;
  padding-left: 21px;
  margin-bottom: 8px;
  font-size: 12px;
  width: 100%;
}
.drawer-list__item li a::before {
  font-family: FontAwesome;
  content: "\f061";
  color: #00A59E;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.fv {
  background-image: url("../img/fv_bg-02.webp");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  position: relative;
}
.fv::after {
  position: absolute;
  content: "";
  background: url("../img/bg_green.webp");
  z-index: -1;
  background-position: bottom;
  bottom: 0;
}
@media screen and (max-width: 839px) {
  .fv::after {
    background: url("../img/bg_green-sp.webp");
  }
}
@media screen and (max-width: 839px) {
  .fv {
    background-image: url("../img/fv_bgsp-02.webp");
    background-size: 100%;
    background-position: center 8rem;
  }
}
@media screen and (max-width: 700px) {
  .fv {
    background-position: center 9rem;
  }
}
@media screen and (max-width: 550px) {
  .fv {
    background-position: center 10rem;
  }
}
@media screen and (max-width: 500px) {
  .fv {
    background-position: center 11rem;
  }
}

.fv__bg {
  background-image: url("../img/fv_main-bg.webp");
  background-repeat: no-repeat;
  background-size: 100%;
  margin-top: -3.1875rem;
}
@media screen and (max-width: 839px) {
  .fv__bg {
    background-image: url("../img/fv_main-bgsp.webp");
    background-position-y: 3.5rem;
    margin-top: 0;
  }
}

.fv__inner {
  width: 100vw;
  padding-top: 11.75rem;
}
@media screen and (max-width: 839px) {
  .fv__inner {
    padding-top: 60px;
    width: 100vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.fv__title-layout {
  margin-right: 7.875rem;
  margin-left: auto;
}
@media screen and (max-width: 839px) {
  .fv__title-layout {
    margin-right: auto;
  }
}

.fv__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.fv__title-img {
  width: 29.375rem;
}

@media screen and (max-width: 839px) {
  .fv__title-img-sp01 {
    width: 20.6875rem;
  }
}

@media screen and (max-width: 839px) {
  .fv__title-img-sp02 {
    margin-top: 14.4375rem;
    width: 14rem;
    margin-left: 3.5rem;
  }
}

.fv_title-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0.4375rem;
  text-shadow: 0 0 0.125rem #fff, 0 0 0.375rem #fff, 0 0 0.9375rem #fff, 0 0 1.875rem #fff;
}
.fv_title-text p {
  margin-top: 1.375rem;
  text-align: center;
  color: #00a59e;
  font-size: 1rem;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.08em;
  text-align: center;
}
.fv_title-text p span {
  font-size: 1.75rem;
  font-weight: 400;
  margin-left: 0.125rem;
  margin-right: 0.125rem;
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
}

@media screen and (max-width: 839px) {
  .fv_title-text-sp {
    margin-top: 0.75rem;
    margin-left: 16px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 0 0.125rem #fff, 0 0 0.375rem #fff, 0 0 0.9375rem #fff, 0 0 1.875rem #fff;
  }
  .fv_title-text-sp p {
    color: #00a59e;
    font-size: 15px;
    font-weight: 700;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    letter-spacing: 0.001em;
  }
}
.fv_title-text-sp .fv_title-text-02 {
  font-size: 17px;
}

@media screen and (max-width: 839px) {
  .fv_title-text-line {
    border-left: #00a59e 2px solid;
    height: 36px;
    margin-top: -3px;
    margin-left: 13px;
    margin-right: 13px;
    position: relative;
    text-shadow: 0 0 0.125rem #fff, 0 0 0.375rem #fff, 0 0 0.9375rem #fff, 0 0 1.875rem #fff;
  }
  .fv_title-text-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: -2px;
    width: 2px;
    height: 100%;
    background-color: #fff;
    -webkit-filter: blur(2px);
            filter: blur(2px);
    opacity: 1;
    z-index: 1;
  }
}

.welcome {
  position: relative;
  background: url("../img/welcome_bg.webp");
  margin-top: -18.4375rem;
  background-position: bottom right;
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 839px) {
  .welcome {
    margin-top: 0.1875rem;
    background: url("../img/welcome_bg-sp.webp");
    background-size: 100%;
  }
}

.welcome__inner {
  width: 100%;
  padding-top: 29.625rem;
  padding-bottom: 7.625rem;
}
@media screen and (max-width: 839px) {
  .welcome__inner {
    padding-top: 8.5rem;
    padding-bottom: 6.1875rem;
  }
}

.welcome__txt-img {
  position: absolute;
  width: 34.8125rem;
  height: auto;
  top: 21.375rem;
  left: 4.25rem;
}
@media screen and (max-width: 839px) {
  .welcome__txt-img {
    width: 17.8125rem;
    top: 2.3125rem;
    left: 3rem;
  }
}

.welcome__date-sp {
  display: none;
}
@media screen and (max-width: 839px) {
  .welcome__date-sp {
    position: absolute;
    width: 5.3125rem;
    top: 5.375rem;
    right: 1.25rem;
    z-index: 0;
  }
}

.welcome__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5625rem;
  margin-left: 1.4375rem;
}
@media screen and (max-width: 839px) {
  .welcome__wrap {
    gap: 0rem;
    margin-left: 0rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.welcome__date {
  width: 10.1875rem;
  height: 10.1875rem;
  margin-top: 0.1875rem;
}
@media screen and (max-width: 839px) {
  .welcome__date {
    display: none;
  }
}

.welcome__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
}
.welcome__title h2 {
  width: 33.4375rem;
  height: auto;
}
@media screen and (max-width: 839px) {
  .welcome__title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .welcome__title h2 {
    width: 21rem;
  }
}

.welcome__text {
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 2.5rem;
  gap: 1.875rem;
  width: 100%;
}
@media screen and (max-width: 839px) {
  .welcome__text {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: -0.125rem;
    margin-left: -0.4375rem;
    gap: 0.75rem;
  }
}

.welcome__text-bg {
  position: relative;
  display: inline-block;
  width: 12.625rem;
  height: 2.625rem;
}
@media screen and (max-width: 839px) {
  .welcome__text-bg {
    width: 6.5625rem;
    height: 1.3125rem;
  }
}
.welcome__text-bg img {
  display: block;
}
.welcome__text-bg p {
  position: absolute;
  top: 55%;
  left: 52%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #00a59e;
  font-size: 1.4375rem;
  font-weight: bold;
  letter-spacing: 0.17em;
  line-height: 1;
  white-space: nowrap;
  margin: 0;
}
@media screen and (max-width: 839px) {
  .welcome__text-bg p {
    font-size: 0.75rem;
    font-weight: bold;
  }
}

.welcome__item {
  margin-top: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-inline: auto;
  margin-left: 7.0625rem;
}
@media screen and (max-width: 839px) {
  .welcome__item {
    margin-top: 0.875rem;
    margin-left: 0rem;
    max-width: 17.875rem;
    width: 100%;
    margin-inline: auto;
  }
}

.welcome__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6875rem;
  font-weight: bold;
}
@media screen and (max-width: 839px) {
  .welcome__box {
    gap: 0.5625rem;
  }
}
.welcome__box span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0.125rem solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  border-radius: 0.1875rem;
  width: 3.5625rem;
  height: 3.5625rem;
  line-height: 1.1;
}
@media screen and (max-width: 839px) {
  .welcome__box span {
    border: 0.0625rem solid;
    border-radius: 0.1875rem;
    width: 2.375rem;
    height: 2.375rem;
    font-size: 0.625rem;
    padding-left: 0.125rem;
    white-space: nowrap;
  }
}
.welcome__box p {
  margin-top: 0.375rem;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  text-shadow: 0 0 0.125rem #fff, 0 0 0.375rem #fff, 0 0 0.9375rem #fff, 0 0 1.875rem #fff;
}
@media screen and (max-width: 839px) {
  .welcome__box p {
    margin-top: 0.0625rem;
    font-size: 0.6875rem;
    letter-spacing: 0.04em;
    line-height: 1.4;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    text-shadow: 0 0 0.125rem #fff, 0 0 0.375rem #fff, 0 0 0.9375rem #fff, 0 0 1.875rem #fff;
  }
}

.welcome__content {
  margin-top: 0.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 839px) {
  .welcome__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0.625rem;
  }
}
.welcome__content p {
  color: #00a59e;
  font-size: 2.0625rem;
}
@media screen and (max-width: 839px) {
  .welcome__content p {
    font-size: 1.375rem;
    letter-spacing: 0.08em;
    margin-top: 0.25rem;
  }
}
.welcome__content p span {
  color: #00a59e;
  font-size: 1.5rem;
  border: none;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 839px) {
  .welcome__content p span {
    font-size: 1.125rem;
    letter-spacing: 0.09em;
  }
}
.welcome__content .welcome__box-number {
  font-size: 2.5rem;
}
@media screen and (max-width: 839px) {
  .welcome__content .welcome__box-number {
    font-size: 1.5rem;
  }
}

.welcome__btn {
  margin-top: 1.75rem;
  display: block;
  margin-inline: auto;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 839px) {
  .welcome__btn {
    margin-top: 0.9375rem;
    letter-spacing: 0.09em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    padding: 0.3125rem 0.5rem 0.25rem 0.7rem;
  }
}

.welcome__box + .welcome__box {
  margin-left: 1.9375rem;
}
@media screen and (max-width: 839px) {
  .welcome__box + .welcome__box {
    margin-left: 0rem;
    margin-top: 0.625rem;
  }
}

@media screen and (max-width: 839px) {
  .welcome__title picture {
    width: 100%;
  }
}

.about {
  margin-top: 9.875rem;
}
@media screen and (max-width: 839px) {
  .about {
    margin-top: 3.5625rem;
  }
}

.about__inner {
  width: 100vw;
}
@media screen and (max-width: 839px) {
  .about__inner {
    width: 100%;
  }
}

.about__box {
  margin: 0 auto;
  width: 46.0625rem;
  padding-top: 4.9375rem;
  padding-bottom: 4.5rem;
  background: #fff;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 839px) {
  .about__box {
    width: 19.5rem;
    padding-top: 1.25rem;
    padding-bottom: 1.9375rem;
  }
}
.about__box::before, .about__box::after {
  position: absolute;
  width: 3.4375rem;
  height: 3.4375rem;
  color: #79c8c3;
  content: "";
}
@media screen and (max-width: 839px) {
  .about__box::before, .about__box::after {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.about__box::before {
  border-left: solid 0.3125rem;
  border-top: solid 0.3125rem;
  top: 1.625rem;
  left: 1.625rem;
}
@media screen and (max-width: 839px) {
  .about__box::before {
    border-left: solid 0.125rem;
    border-top: solid 0.125rem;
    top: 0.625rem;
    left: 0.625rem;
  }
}
.about__box::after {
  border-right: solid 0.3125rem;
  border-bottom: solid 0.3125rem;
  bottom: 1.625rem;
  right: 1.625rem;
}
@media screen and (max-width: 839px) {
  .about__box::after {
    border-right: solid 0.125rem;
    border-bottom: solid 0.125rem;
    bottom: 0.625rem;
    right: 0.625rem;
  }
}

.about__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about__heading-img {
  width: 10.6875rem;
}
@media screen and (max-width: 839px) {
  .about__heading-img {
    width: 7.1875rem;
  }
}

.about__heading-img-ja {
  margin-top: 0.625rem;
  width: 24.8125rem;
}
@media screen and (max-width: 839px) {
  .about__heading-img-ja {
    width: 16.5625rem;
    margin-top: 0.375rem;
  }
}

.about__heading-ja {
  font-size: 2rem;
  margin-top: 1.0625rem;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 839px) {
  .about__heading-ja {
    font-size: 1.25rem;
  }
}

.about__description {
  margin-top: 2.75rem;
  font-family: "Noto Serif JP", serif;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 2.1;
}
@media screen and (max-width: 839px) {
  .about__description {
    font-size: 0.625rem;
    margin-top: 0.5625rem;
    line-height: 1.9;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

.about__description-01 {
  letter-spacing: 0.28em;
  margin-left: 0.625rem;
}
@media screen and (max-width: 839px) {
  .about__description-01 {
    letter-spacing: 0.2em;
    margin-left: 1.5625rem;
  }
}

.about__description-02 {
  letter-spacing: 0.13em;
  margin-left: 0.375rem;
  margin-top: 0.0625rem;
}
@media screen and (max-width: 839px) {
  .about__description-02 {
    letter-spacing: 0.04em;
    margin-left: 1.375rem;
  }
}

.about__description-03 {
  letter-spacing: 0.2em;
  margin-left: 0.375rem;
  margin-top: 0.0625rem;
}
@media screen and (max-width: 839px) {
  .about__description-03 {
    letter-spacing: 0.1em;
    margin-left: 1.125rem;
  }
}

.about__description-04 {
  letter-spacing: 0.24em;
  margin-left: 0.375rem;
  margin-top: 0.0625rem;
}
@media screen and (max-width: 839px) {
  .about__description-04 {
    letter-spacing: 0.16em;
    margin-left: 0.75rem;
  }
}

.about__img-left01 {
  position: absolute;
  width: 15rem;
  top: 10.875rem;
  left: -8.5rem;
}
@media screen and (max-width: 839px) {
  .about__img-left01 {
    width: 7.5625rem;
    top: 6.375rem;
    left: -3.25rem;
  }
}

.about__img-left02 {
  position: absolute;
  width: 11.75rem;
  top: 18.9375rem;
  left: -4.6875rem;
}
@media screen and (max-width: 839px) {
  .about__img-left02 {
    width: 6.25rem;
    top: 10.8125rem;
    left: -1.9375rem;
  }
}

.about__img-right01 {
  position: absolute;
  width: 15.4375rem;
  top: -0.375rem;
  right: -6.5rem;
}
@media screen and (max-width: 839px) {
  .about__img-right01 {
    width: 7.8125rem;
    top: -3.25rem;
    right: -1.8125rem;
  }
}

.about__img-right02 {
  position: absolute;
  width: 15.8125rem;
  top: 8.6875rem;
  right: -8.9375rem;
}
@media screen and (max-width: 839px) {
  .about__img-right02 {
    width: 7.25rem;
    height: 6.0625rem;
    top: 4.6875rem;
    right: -2.9375rem;
  }
}

.about__img-right03 {
  position: absolute;
  width: 12.5625rem;
  top: 23.125rem;
  right: -8.6875rem;
  z-index: 99;
}
@media screen and (max-width: 839px) {
  .about__img-right03 {
    width: 6.375rem;
    top: 9.1875rem;
    right: -2.875rem;
  }
}

.charm-point {
  margin-top: 5.375rem;
}
@media screen and (max-width: 839px) {
  .charm-point {
    margin-top: 2.4375rem;
  }
}

.charm-point__inner {
  margin: 0 auto;
  max-width: 37.5rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.charm-point__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.charm-point__heading-img {
  width: 9rem;
}
@media screen and (max-width: 839px) {
  .charm-point__heading-img {
    width: 6.0625rem;
  }
}

.charm-point__heading-ja {
  font-size: 1.75rem;
  letter-spacing: 0.14em;
  margin-top: 0.875rem;
}
.charm-point__heading-ja span {
  font-size: 2rem;
}
@media screen and (max-width: 839px) {
  .charm-point__heading-ja {
    margin-top: 0.0625rem;
    font-size: 1.25rem;
  }
  .charm-point__heading-ja span {
    font-size: 1.75rem;
  }
}

.charm-point__lists {
  margin-top: 2.5625rem;
}
.charm-point__lists ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.375rem;
}
@media screen and (max-width: 839px) {
  .charm-point__lists {
    margin-top: 1rem;
  }
  .charm-point__lists ul {
    gap: 0.3125rem;
  }
}

.charm-point__list {
  width: 11.75rem;
  height: 11.75rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #20b5b0 20%, #c9df8c 80%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 0.25rem solid #fff;
  font-weight: bold;
  text-align: center;
  padding-top: 0.3125rem;
}
@media screen and (max-width: 839px) {
  .charm-point__list {
    width: 6.375rem;
    height: 6.375rem;
  }
}

.charm-point__img {
  width: 2.75rem;
  margin: 0 auto;
}
@media screen and (max-width: 839px) {
  .charm-point__img {
    width: 1.9375rem;
    margin-top: -0.1875rem;
  }
}

.charm-point__title {
  margin-top: 0.8125rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #fff;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.charm-point__title span {
  margin-left: 0.1875rem;
  margin-right: 0.1875rem;
}
@media screen and (max-width: 839px) {
  .charm-point__title {
    font-size: 0.625rem;
    margin-top: 0.5rem;
    letter-spacing: 0.001em;
  }
  .charm-point__title span {
    margin-left: 0;
    margin-right: 0;
  }
}

.dli-chevron-down {
  margin-top: 1.4375rem;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1em;
  height: 1em;
  border: 0.3em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateY(-25%) rotate(135deg);
          transform: translateY(-25%) rotate(135deg);
}
@media screen and (max-width: 839px) {
  .dli-chevron-down {
    margin-top: 0.25rem;
    width: 0.625rem;
    height: 0.625rem;
    border: 0.125rem solid currentColor;
    border-left: 0;
    border-bottom: 0;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}

.curriculum {
  padding-bottom: 2.375rem;
  background: linear-gradient(145deg, rgba(0, 165, 158, 0.2) 30%, rgba(175, 209, 84, 0.1) 100%);
}
@media screen and (max-width: 839px) {
  .curriculum {
    padding-bottom: 0;
  }
}

.curriculum__inner {
  padding-top: 3.75rem;
  width: 100%;
}
@media screen and (max-width: 839px) {
  .curriculum__inner {
    padding-top: 0;
  }
}

.curriculum__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 839px) {
  .curriculum__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 2.625rem;
  }
}

.curriculum__img {
  width: 38.9375rem;
  height: 25.3125rem;
  aspect-ratio: 555/375;
  margin-left: calc((80vw - 80%) * -1);
  overflow: hidden;
  position: relative;
}
.curriculum__img img {
  -webkit-transform: scale(1.07);
          transform: scale(1.07);
  -webkit-transform-origin: 45% 12%;
          transform-origin: 45% 12%;
}
@media screen and (max-width: 839px) {
  .curriculum__img {
    width: 21.5625rem;
    height: 13.875rem;
  }
  .curriculum__img img {
    -o-object-position: -0.5rem 0%;
       object-position: -0.5rem 0%;
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
  }
}

.curriculum__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin-left: -5rem;
}
@media screen and (max-width: 839px) {
  .curriculum__item {
    margin-left: auto;
    margin-right: auto;
  }
}

.curriculum__title-img {
  margin-top: 0.625rem;
  padding-left: 0.9375rem;
  margin-right: -0.9375rem;
  position: absolute;
  width: 20.9375rem;
  height: auto;
  right: -6.25rem;
}
@media screen and (max-width: 839px) {
  .curriculum__title-img {
    margin-top: -14.5rem;
    width: 13.125rem;
    padding-left: 0;
    margin-right: -0.125rem;
  }
}

.curriculum__heading {
  margin-top: 8.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 18.6875rem;
  height: 18.6875rem;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 839px) {
  .curriculum__heading {
    margin-top: -1.25rem;
    width: 10.625rem;
    height: 10.625rem;
  }
}
.curriculum__heading::before, .curriculum__heading::after {
  content: "";
  position: absolute;
  width: 2.9375rem;
  height: 2.9375rem;
  color: #79c8c3;
}
@media screen and (max-width: 839px) {
  .curriculum__heading::before, .curriculum__heading::after {
    width: 1.6875rem;
    height: 1.6875rem;
  }
}
.curriculum__heading::before {
  border-left: solid 0.375rem;
  border-top: solid 0.375rem;
  top: 0;
  left: 0;
}
@media screen and (max-width: 839px) {
  .curriculum__heading::before {
    border-left: solid 0.125rem;
    border-top: solid 0.125rem;
  }
}
.curriculum__heading::after {
  border-right: solid 0.375rem;
  border-bottom: solid 0.375rem;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 839px) {
  .curriculum__heading::after {
    border-right: solid 0.125rem;
    border-bottom: solid 0.125rem;
  }
}

.curriculum__heading-img {
  margin-top: 3.5625rem;
  margin-left: 0.25rem;
  width: 4.625rem;
  height: 4.3125rem;
}
@media screen and (max-width: 839px) {
  .curriculum__heading-img {
    margin-top: 2.3125rem;
    margin-left: 0.4375rem;
    width: 2.3125rem;
    height: auto;
  }
}
.curriculum__heading-img picture {
  width: 100%;
}

.curriculum__heading-ja {
  text-align: center;
  font-size: 1.5625rem;
  margin-top: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.013em;
}
@media screen and (max-width: 839px) {
  .curriculum__heading-ja {
    margin-top: 0.5625rem;
    font-size: 1.1875rem;
    line-height: 1.4;
    letter-spacing: -0.1em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

.bracket-left {
  letter-spacing: 0.2em;
  margin-left: -0.75rem;
}

.bracket-right {
  letter-spacing: 0.2em;
  margin-right: -0.75rem;
}

.curriculum__table {
  padding-top: 3rem;
  padding-bottom: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  max-width: 37.5rem;
  width: 100%;
  margin: 0 auto;
  gap: 1.75rem;
}
@media screen and (max-width: 839px) {
  .curriculum__table {
    padding-top: 1.625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-inline: 2.1875rem;
  }
}

.table-list__wrap {
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.625rem;
  position: relative;
}
@media screen and (max-width: 839px) {
  .table-list__wrap {
    margin-top: 1.3125rem;
  }
}

.table-list__img {
  position: absolute;
  width: 3.5625rem;
  top: -2.5625rem;
  left: 10.625rem;
}
@media screen and (max-width: 839px) {
  .table-list__img {
    width: 2.8125rem;
    top: -2.0625rem;
    left: 7.8125rem;
  }
}

.comparison__table {
  display: grid;
  grid-template-columns: 1.3125rem 1.375rem 4.375rem 5rem 4.5rem 4.5rem 4.5rem;
  width: 25.625rem;
  border-collapse: collapse;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 839px) {
  .comparison__table {
    grid-template-columns: 0.875rem 0.9375rem 3.25rem 3.9375rem 3.25rem 3.4375rem 3.4375rem;
    width: 100%;
  }
}

.table__row {
  display: contents;
}

.table__cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  font-size: 0.5rem;
  height: 1.375rem;
  border-radius: 1.5625rem;
  letter-spacing: -0.05em;
  margin-bottom: 0.375rem;
  margin-left: 0.25rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 839px) {
  .table__cell {
    font-size: 0.4375rem;
    height: 1.0625rem;
    margin-bottom: 0.25rem;
    margin-left: 0.1875rem;
    letter-spacing: -0.1em;
  }
}

@media screen and (max-width: 839px) {
  .table__cell-sp-text {
    font-size: 0.375rem;
  }
}

.none {
  background-color: transparent;
}

.time {
  color: #fff;
  background-color: #58beb9;
  height: 1.25rem;
  border-radius: 1.5625rem;
  margin: 0 0 0.375rem 0.25rem;
  letter-spacing: 0.01em;
  font-size: 0.4375rem;
  position: relative;
}
@media screen and (max-width: 839px) {
  .time {
    height: 0.9375rem;
  }
}
.time span {
  font-size: 0.5rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 839px) {
  .time span {
    font-size: 0.375rem;
  }
}
.time::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 47%;
  width: 0.0625rem;
  height: 9rem;
  border-left: 0.25rem dotted #58beb9;
  z-index: -1;
}
@media screen and (max-width: 839px) {
  .time::before {
    border-left: none;
    width: 4.4375rem;
    height: 7.5rem;
    top: 0.125rem;
    left: -0.75rem;
    background-image: url("../img/dotted.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
  }
}

.round {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  font-size: 0.5rem;
  margin: 0;
  position: relative;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 839px) {
  .round {
    width: 0.9375rem;
    height: 0.9375rem;
    font-size: 0.375rem;
  }
}
.round::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 42%;
  width: 0.0625rem;
  height: 9rem;
  border-left: 0.25rem dotted #58beb9;
}
@media screen and (max-width: 839px) {
  .round::before {
    border-left: none;
    width: 4.4375rem;
    height: 7.5rem;
    top: 0.25rem;
    left: -1.75rem;
    background-image: url("../img/dotted.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
  }
}

.weed {
  background: #fff;
  color: #58beb9;
  font-size: 0.5rem;
  border-radius: 0;
  margin-left: 0;
  width: 1rem;
  height: 1.375rem;
}
@media screen and (max-width: 839px) {
  .weed {
    font-size: 0.375rem;
    width: 0.625rem;
    height: 1.0625rem;
  }
}

.going {
  font-size: 0.5rem;
  margin-left: -0.125rem;
}
@media screen and (max-width: 839px) {
  .going {
    font-size: 0.4375rem;
    margin-left: -0.125rem;
    margin-top: -0.1875rem;
  }
}

.pink {
  background-color: #f8d1e2;
}

.green {
  background-color: #dae7a1;
}

.blue {
  background-color: #b7dfdc;
}

.lesson {
  padding: 0.25rem 0.625rem;
}
@media screen and (max-width: 839px) {
  .lesson {
    padding: 0.3125rem 0.3125rem;
  }
}

.yello {
  background-color: #fff8bd;
}

.speech-bubble {
  width: 4.125rem;
}
@media screen and (max-width: 839px) {
  .speech-bubble {
    width: 3.1875rem;
  }
}

.nowrap {
  white-space: nowrap;
}

.table-list__info {
  text-align: right;
}

.table-list__subjects {
  margin-top: 0.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 0.4375rem;
}
@media screen and (max-width: 839px) {
  .table-list__subjects {
    margin-top: 0.5rem;
    font-size: 0.4375rem;
    margin-right: -0.1875rem;
  }
}

.subject-blue {
  background-color: #b7dfdc;
}

.subject-blue,
.subject-yellow,
.subject-pink,
.subject-green {
  display: inline-block;
  width: 1.125rem;
  height: 0.375rem;
  border-radius: 0.125rem;
  margin-right: 0.0625rem;
}
@media screen and (max-width: 839px) {
  .subject-blue,
  .subject-yellow,
  .subject-pink,
  .subject-green {
    margin-right: 0.125rem;
    width: 1rem;
  }
}

.subject-yellow {
  background-color: #fff8bd;
}

.subject-pink {
  background-color: #f8d1e2;
}

.subject-green {
  background-color: #dae7a1;
}

.table-list__text {
  font-size: 0.3125rem;
  font-weight: 600;
  margin-top: 0.375rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.01em;
}

.table__wrap {
  margin-top: 0.375rem;
}

.table__title {
  color: #00a59e;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-right: -0.625rem;
}

.table__description {
  margin-top: 0.625rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.7;
  font-size: 0.625rem;
  letter-spacing: 0.02em;
  line-height: 2;
  margin-right: -0.0625rem;
}
@media screen and (max-width: 839px) {
  .table__description {
    margin-right: 0;
    margin-left: -0.0625rem;
  }
}

.education-system {
  padding-bottom: 8rem;
  padding-inline: 5rem;
  background-image: url(../img/education-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 839px) {
  .education-system {
    background-image: url(../img/education-bgsp.webp);
    padding-inline: 0;
    padding-bottom: 2.875rem;
  }
}

.education-system__inner {
  padding-top: 4.125rem;
  width: 100%;
}
@media screen and (max-width: 839px) {
  .education-system__inner {
    padding-top: 4.375rem;
  }
}

.education-system__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 839px) {
  .education-system__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.education-system__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin-right: -9.375rem;
  z-index: 2;
}
@media screen and (max-width: 839px) {
  .education-system__item {
    margin-right: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.education-system__title-img {
  position: absolute;
  margin-top: 1.6875rem;
  margin-left: -4.8125rem;
  width: 34.375rem;
}
@media screen and (max-width: 839px) {
  .education-system__title-img {
    width: 22.125rem;
    margin-top: -17.25rem;
    margin-left: -1.125rem;
  }
}

.education-system__container {
  position: absolute;
  left: 2.1875rem;
}
@media screen and (max-width: 839px) {
  .education-system__container {
    left: 0;
    position: relative;
  }
}

.education-system__heading {
  margin-top: 9.0625rem;
  margin-right: -3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 18.6875rem;
  height: 18.6875rem;
  position: relative;
  background: #fff linear-gradient(145deg, rgba(197, 229, 226, 0.7) 30%, rgba(233, 242, 210, 0.7) 100%);
}
@media screen and (max-width: 839px) {
  .education-system__heading {
    margin-top: -2rem;
    margin-right: 0;
    width: 10.6875rem;
    height: 10.6875rem;
  }
}
.education-system__heading::before, .education-system__heading::after {
  position: absolute;
  width: 2.9375rem;
  height: 2.9375rem;
  color: #79c8c3;
  content: "";
}
@media screen and (max-width: 839px) {
  .education-system__heading::before, .education-system__heading::after {
    width: 1.6875rem;
    height: 1.6875rem;
  }
}
.education-system__heading::before {
  border-right: solid 0.375rem;
  border-top: solid 0.375rem;
  top: 0;
  right: 0;
}
@media screen and (max-width: 839px) {
  .education-system__heading::before {
    border-right: solid 0.125rem;
    border-top: solid 0.125rem;
  }
}
.education-system__heading::after {
  border-left: solid 0.375rem;
  border-bottom: solid 0.375rem;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 839px) {
  .education-system__heading::after {
    border-left: solid 0.125rem;
    border-bottom: solid 0.125rem;
  }
}

.education-system__heading-img {
  margin-top: 3.5625rem;
  margin-left: 0.25rem;
  width: 4.625rem;
  height: 4.3125rem;
}
@media screen and (max-width: 839px) {
  .education-system__heading-img {
    margin-top: 2.25rem;
    margin-left: 0.125rem;
    width: 2.5rem;
    height: auto;
  }
}
.education-system__heading-img picture {
  width: 100%;
}

.education-system___heading-ja {
  text-align: center;
  font-size: 1.5625rem;
  margin-top: 1rem;
  line-height: 1.6;
  letter-spacing: 0.013em;
}
@media screen and (max-width: 839px) {
  .education-system___heading-ja {
    margin-top: 0.625rem;
    font-size: 1.125rem;
    line-height: 1.4;
    letter-spacing: 0.001em;
  }
}

.education-system__img {
  width: 42.875rem;
  height: 28.125rem;
  margin-left: auto;
  margin-right: 0;
  margin-right: calc((81.2vw - 80%) * -1);
  overflow: hidden;
  position: relative;
}
.education-system__img img {
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transform-origin: 10% 20%;
          transform-origin: 10% 20%;
}
@media screen and (max-width: 839px) {
  .education-system__img {
    width: 21.4375rem;
    height: 14.3125rem;
    margin-right: calc((80vw - 80%) * -1);
  }
  .education-system__img img {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 0% 0%;
            transform-origin: 0% 0%;
  }
}

.education-system__content {
  margin-top: 2.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-inline: auto;
  width: 100%;
  max-width: 37.5rem;
}
@media screen and (max-width: 839px) {
  .education-system__content {
    margin-top: -1.125rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: 2.0625rem;
  }
}

.education-system__box {
  margin-top: 3.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 60%;
}
@media screen and (max-width: 839px) {
  .education-system__box {
    width: 100%;
  }
}

.education-system__title {
  color: #00a59e;
  font-size: 1rem;
  font-weight: 600;
}

.education-system__description {
  margin-top: 0.8125rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.9;
  font-size: 0.625rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.01em;
}
@media screen and (max-width: 839px) {
  .education-system__description {
    line-height: 2;
    letter-spacing: 0.02em;
  }
}

.education-system__description-img {
  width: 17.9375rem;
  aspect-ratio: 283/198;
  margin-right: -2.375rem;
}
@media screen and (max-width: 839px) {
  .education-system__description-img {
    margin-top: 1.625rem;
    margin-right: 0;
    width: 17.6875rem;
    margin-left: 1.6875rem;
  }
}

.after-graduation {
  padding-top: 4.5rem;
  padding-bottom: 2.9375rem;
  padding-inline: 7.5rem;
  background: linear-gradient(145deg, rgba(0, 165, 158, 0.2) 30%, rgba(175, 209, 84, 0.1) 100%);
}
@media screen and (max-width: 839px) {
  .after-graduation {
    padding-inline: 0;
    padding-top: 3.75rem;
    padding-bottom: 2.5rem;
    width: 100%;
  }
}

.after-graduation__item {
  position: relative;
}
@media screen and (max-width: 839px) {
  .after-graduation__item {
    margin: 0 auto;
    margin-top: 2.625rem;
  }
}

.after-graduation__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44.9375rem;
  height: 8.3125rem;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 839px) {
  .after-graduation__heading {
    width: 10.6875rem;
    height: 10.6875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.after-graduation__heading::before, .after-graduation__heading::after {
  content: "";
  position: absolute;
  width: 3.0625rem;
  height: 3.0625rem;
  color: #79c8c3;
}
@media screen and (max-width: 839px) {
  .after-graduation__heading::before, .after-graduation__heading::after {
    width: 1.6875rem;
    height: 1.6875rem;
  }
}
.after-graduation__heading::before {
  border-left: solid 0.3125rem;
  border-top: solid 0.3125rem;
  top: 0;
  left: 0;
}
@media screen and (max-width: 839px) {
  .after-graduation__heading::before {
    border-left: solid 0.125rem;
    border-top: solid 0.125rem;
  }
}
.after-graduation__heading::after {
  border-right: solid 0.3125rem;
  border-bottom: solid 0.3125rem;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 839px) {
  .after-graduation__heading::after {
    border-right: solid 0.125rem;
    border-bottom: solid 0.125rem;
  }
}

.after-graduation__title-img {
  position: absolute;
  width: 33rem;
  right: -7.5rem;
  top: -2rem;
  z-index: 10;
}
@media screen and (max-width: 839px) {
  .after-graduation__title-img {
    width: 21.4375rem;
    right: 0;
    top: -4.4375rem;
  }
}

.after-graduation__heading-img {
  width: 4.625rem;
  height: 4.3125rem;
  margin-left: -1.875rem;
  margin-top: -0.4375rem;
}
@media screen and (max-width: 839px) {
  .after-graduation__heading-img {
    width: 2.5rem;
    height: auto;
    margin-left: 0.25rem;
    margin-top: -0.3125rem;
  }
}
.after-graduation__heading-img picture {
  width: 100%;
}

.after-graduation__heading-ja {
  margin-top: -0.0625rem;
  margin-left: 1.6875rem;
  font-size: 1.625rem;
  letter-spacing: 0.04em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 839px) {
  .after-graduation__heading-ja {
    font-size: 1.125rem;
    margin-top: 0.625rem;
    margin-left: 0;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
}

.after-graduation__text {
  margin-top: 1.6875rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 2.1;
  text-align: center;
  letter-spacing: 0.04em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 0.625rem;
}
@media screen and (max-width: 839px) {
  .after-graduation__text {
    font-size: 0.5625rem;
    line-height: 2.2;
    letter-spacing: 0.18em;
  }
}

.chart {
  margin-top: 1.0625rem;
  margin-left: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 839px) {
  .chart {
    margin-top: 1.4375rem;
    margin-left: 0;
  }
}

.pie-chart {
  width: 16.625rem;
  height: 16.625rem;
}

.pie-chart__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.125rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.001em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 0.875rem;
}
@media screen and (max-width: 839px) {
  .pie-chart__lists {
    margin-top: 1.3125rem;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  }
}

.pie-chart__blue,
.pie-chart__green,
.pie-chart__pink {
  display: inline-block;
  border-radius: 50%;
  width: 1.0625rem;
  height: 1.0625rem;
  margin-right: 0.125rem;
  margin-top: 0.125rem;
  vertical-align: middle;
}
@media screen and (max-width: 839px) {
  .pie-chart__blue,
  .pie-chart__green,
  .pie-chart__pink {
    margin-top: 0;
  }
}

.pie-chart__blue {
  background: #62c1bc;
}

.pie-chart__green {
  background: #a3d29e;
  margin-left: 0.375rem;
}

.pie-chart__pink {
  background: #f2a3c5;
  margin-left: 0.375rem;
}

.pie-chart__text {
  margin-top: 0.4375rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 0.4375rem;
}
@media screen and (max-width: 839px) {
  .pie-chart__text {
    margin-top: 0.375rem;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  }
}

.after-graduation__lists-wrap {
  max-width: 37.5rem;
  width: 100%;
  margin-top: 1rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 839px) {
  .after-graduation__lists-wrap {
    margin-top: 2.3125rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.after-graduation__lists ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 1.125rem;
}
@media screen and (max-width: 839px) {
  .after-graduation__lists ul {
    gap: 1.3125rem;
  }
}

.list__title {
  font-weight: 700;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  white-space: nowrap;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.01em;
}
@media screen and (max-width: 839px) {
  .list__title {
    font-size: 0.8125rem;
  }
}

.line-short {
  width: 1rem;
  height: 0.75rem;
  margin-right: 0.3125rem;
  vertical-align: middle;
}
@media screen and (max-width: 839px) {
  .line-short {
    width: 1.0625rem;
    height: 0.5625rem;
    margin-right: 0.4375rem;
  }
}

.line-long {
  width: 100%;
  height: 0.75rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}
@media screen and (max-width: 839px) {
  .line-long {
    height: 0.5625rem;
    margin-left: 0.3125rem;
  }
}

.line-blue {
  background: #62c1bc;
}

.line-green {
  background: #a3d29e;
}

.line-pink {
  background: #f2a3c5;
}

.after-graduation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 700;
  margin-top: 0.625rem;
  margin-bottom: 1.0625rem;
  font-size: 0.625rem;
  line-height: 1.8;
  letter-spacing: 0.001em;
  white-space: nowrap;
}

.after-graduation__info {
  font-size: 0.375rem;
  font-weight: 700;
  letter-spacing: 0.001em;
  margin-top: -0.125rem;
}
@media screen and (max-width: 839px) {
  .after-graduation__info {
    margin-top: -0.625rem;
  }
}

.margin-short01 {
  margin-left: -0.3125rem;
}

.margin-short02 {
  margin-left: -0.625rem;
}

.margin-short03 {
  letter-spacing: -0.1em;
}

@media screen and (max-width: 839px) {
  .after-graduation__list-margin-sp {
    margin-top: 0.4375rem;
    margin-right: -0.1875rem;
    margin-right: -0.5rem;
  }
}

.facility {
  background: url(../img/facility_bg.webp);
  background-size: cover;
  position: relative;
  height: 100%;
  z-index: -2;
}
@media screen and (max-width: 839px) {
  .facility {
    background: url(../img/facility_bgsp.webp);
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.facility::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 165, 158, 0.4);
  z-index: -1;
}
@media screen and (max-width: 839px) {
  .facility::before {
    background-color: rgba(0, 165, 158, 0.6);
  }
}

.facility__inner {
  padding-inline: 3.75rem;
  padding-top: 5rem;
  padding-bottom: 6.1875rem;
}
@media screen and (max-width: 839px) {
  .facility__inner {
    padding-inline: 0;
    padding-top: 1.0625rem;
    padding-bottom: 2rem;
  }
}

.facility__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1.75rem;
  z-index: 20;
  position: relative;
}
.facility__item::before, .facility__item::after {
  content: "";
  position: absolute;
  width: 3.25rem;
  height: 3.25rem;
  color: #fff;
}
@media screen and (max-width: 839px) {
  .facility__item::before, .facility__item::after {
    width: 1.4375rem;
    height: 1.4375rem;
  }
}
.facility__item::before {
  border-left: solid 0.375rem;
  border-top: solid 0.375rem;
  top: -0.4375rem;
  left: 3.4375rem;
}
@media screen and (max-width: 839px) {
  .facility__item::before {
    border-left: solid 0.125rem;
    border-top: solid 0.125rem;
    top: 0.75rem;
    left: 2rem;
  }
}
.facility__item::after {
  border-right: solid 0.375rem;
  border-bottom: solid 0.375rem;
  bottom: -2.25rem;
  right: 3.4375rem;
}
@media screen and (max-width: 839px) {
  .facility__item::after {
    border-right: solid 0.125rem;
    border-bottom: solid 0.125rem;
    bottom: -0.75rem;
    right: 2rem;
  }
}

.facility__heading {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.facility__heading-img {
  width: 6rem;
  height: 1.9375rem;
}
@media screen and (max-width: 839px) {
  .facility__heading-img {
    width: 3.125rem;
    height: auto;
  }
}

.facility__heading-ja {
  margin-top: 1.3125rem;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  margin-left: 1rem;
}
@media screen and (max-width: 839px) {
  .facility__heading-ja {
    font-size: 1.125rem;
    text-align: center;
    margin-top: 0.4375rem;
    margin-left: 0;
    line-height: 1.2;
  }
}

.facility__text {
  margin-top: 1.75rem;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  text-align: center;
  line-height: 1.9;
  font-size: 0.625rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 839px) {
  .facility__text {
    margin-top: 0.9375rem;
    font-size: 0.5625rem;
    letter-spacing: 0.16em;
    line-height: 1.8;
  }
}

.facility-gallery {
  background-color: rgba(0, 165, 158, 0.6);
  padding-top: 4.875rem;
  padding-bottom: 5.125rem;
}
@media screen and (max-width: 839px) {
  .facility-gallery {
    padding-top: 1.875rem;
    padding-bottom: 2.5rem;
    padding-inline: 2.0625rem;
  }
}

.facility-gallery .facility-gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  grid-template-rows: repeat(4, 1fr);
  max-width: 37.5rem;
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 839px) {
  .facility-gallery .facility-gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}

/* 各画像を個別に配置 */
.item1 {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
}

.item2 {
  grid-column-start: 3;
}

.item3 {
  grid-column-start: 3;
  grid-row-start: 2;
}

.item4 {
  grid-row-start: 3;
}

.item5 {
  grid-column-start: 1;
  grid-row-start: 4;
}

.item6 {
  grid-column: span 2/span 2;
  grid-row: span 2/span 2;
  grid-column-start: 2;
  grid-row-start: 3;
}

@media screen and (max-width: 839px) {
  .item1,
  .item2,
  .item3,
  .item4,
  .item5,
  .item6 {
    grid-column: auto;
    grid-row: auto;
  }
}

@media screen and (max-width: 839px) {
  .item1 {
    grid-column: 1/span 2;
  }
}

@media screen and (max-width: 839px) {
  .item2 {
    grid-column: 1;
  }
}

@media screen and (max-width: 839px) {
  .item3 {
    grid-column: 2;
  }
}

@media screen and (max-width: 839px) {
  .item4 {
    grid-column: 1;
  }
}

@media screen and (max-width: 839px) {
  .item5 {
    grid-column: 2;
  }
}

@media screen and (max-width: 839px) {
  .item6 {
    grid-column: 1/span 2;
  }
}

.grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.interview {
  background: url(../img/interview_bg.webp);
  background-size: cover;
}

.interview__inner {
  padding-top: 3.1875rem;
  padding-bottom: 4.1875rem;
}
@media screen and (max-width: 839px) {
  .interview__inner {
    padding-top: 3.125rem;
    padding-bottom: 1.875rem;
  }
}

.interview__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.interview__heading-img {
  width: 6.875rem;
  height: 1.625rem;
}
@media screen and (max-width: 839px) {
  .interview__heading-img {
    width: 4.0625rem;
    height: auto;
  }
}

.interview__heading-ja {
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 839px) {
  .interview__heading-ja {
    font-size: 1.0625rem;
    margin-top: 0.625rem;
    letter-spacing: 0.06em;
  }
}

.swiper-container {
  padding-left: 9.875rem;
}
@media screen and (max-width: 839px) {
  .swiper-container {
    padding-left: 1.0625rem;
  }
}

.card__swiper-container {
  overflow: hidden;
  position: relative;
}

.swiper {
  padding-top: 5.125rem;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 839px) {
  .swiper {
    padding-top: 1.625rem;
    padding-bottom: 2.9375rem;
  }
}

.card__swiper {
  overflow: visible;
  padding-left: 0.9375rem;
}

.swiper-wrapper {
  margin-left: 0 !important;
}

.card__swiper-slide {
  background: linear-gradient(145deg, rgba(0, 165, 158, 0.7) 30%, rgba(175, 209, 84, 0.3) 80%);
  border-radius: 1.5625rem;
  width: 18.75rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
  padding-left: 1.25rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
}
@media screen and (max-width: 839px) {
  .card__swiper-slide {
    width: 15.25rem;
    padding-top: 1.25rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
  }
}

.voice-card {
  width: 100%;
}

.voice-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.voice-card__item {
  width: 100%;
}
.voice-card__item p {
  font-weight: 700;
  color: #fff;
}

.voice-card__number {
  width: 3.8125rem;
  height: 2.9375rem;
}
@media screen and (max-width: 839px) {
  .voice-card__number {
    width: 2.75rem;
    height: auto;
  }
}

@media screen and (max-width: 839px) {
  .swiper-slide:nth-of-type(n+2):nth-of-type(-n+7) .voice-card__number {
    width: 3.125rem;
    height: auto;
  }
}
.voice-card__year {
  margin-top: 0.75rem;
  font-size: 1rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 839px) {
  .voice-card__year {
    margin-top: 0.625rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }
}
.voice-card__year span {
  font-size: 0.625rem;
}
@media screen and (max-width: 839px) {
  .voice-card__year span {
    font-size: 0.5rem;
  }
}

.voice-card__role {
  margin-top: 0.5rem;
  font-size: 1rem;
  letter-spacing: 0.001em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 839px) {
  .voice-card__role {
    font-size: 0.875rem;
    letter-spacing: -0.1em;
  }
}

.voice-card__img {
  width: 11.1875rem;
  height: 12rem;
  aspect-ratio: 179/192;
}
@media screen and (max-width: 839px) {
  .voice-card__img {
    margin-top: 0.4375rem;
    width: 9.25rem;
    height: 10rem;
  }
}

.voice-card__body {
  margin-top: 1rem;
  margin-left: 0.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-right: 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 839px) {
  .voice-card__body {
    margin-top: 0.25rem;
    margin-left: 0.125rem;
    padding-right: 1.1875rem;
  }
}
.voice-card__body p {
  font-weight: 700;
  color: #fff;
}

.voice-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.voice-card__name {
  font-size: 1.25rem;
}
@media screen and (max-width: 839px) {
  .voice-card__name {
    font-size: 1.1875rem;
    letter-spacing: 0.001em;
  }
}
.voice-card__name span {
  font-size: 1.0625rem;
}
@media screen and (max-width: 839px) {
  .voice-card__name span {
    font-size: 0.875rem;
  }
}

.voice-card__detail {
  margin-top: 0.5rem;
  font-size: 0.625rem;
  line-height: 1.6;
  letter-spacing: 0.001em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 839px) {
  .voice-card__detail {
    margin-top: 0.125rem;
    font-size: 0.5rem;
    letter-spacing: 0.1em;
  }
}

.voice-card__link {
  margin-left: -1.875rem;
  width: 4.75rem;
  height: 4.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff226;
  border-radius: 50%;
  padding: 0.6rem 1rem;
  font-weight: bold;
  color: #00a59e;
  text-align: center;
  font-size: 1rem;
}
@media screen and (max-width: 839px) {
  .voice-card__link {
    width: 3.6875rem;
    height: 3.6875rem;
    font-size: 0.875rem;
    letter-spacing: 0.001em;
    margin-top: 0.1875rem;
  }
}

/* ================================
   本題のCSS
=============================== */
.card__swiper-container,
.card__swiper,
.card__swiper-wrapper,
.card__swiper-slide {
  position: relative;
}

/* 位置のreset */
.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
}

/* =============================
   ナビゲーションボタン
============================= */
/* デフォルトのボタンを初期化 */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  /* デフォルトのものを初期化 */
}

/* 各ボタンのカスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  bottom: 0.5rem;
  width: 2.125rem;
  height: 2.125rem;
}
@media screen and (max-width: 839px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 1.625rem;
    height: 1.625rem;
    bottom: 1.0625rem;
  }
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
}

.swiper-button-prev {
  left: 1.4375rem;
}
@media screen and (max-width: 839px) {
  .swiper-button-prev {
    left: 1.0625rem;
  }
}

.swiper-button-next {
  left: 4.375rem;
}
@media screen and (max-width: 839px) {
  .swiper-button-next {
    left: 3.4375rem;
  }
}

/* =============================
   ページネーション (bullets)
============================= */
/* 位置の設定 (枠組み) */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: calc(100% - 2.3125rem);
}
@media screen and (max-width: 839px) {
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    top: auto;
    bottom: 1.5rem;
    left: 2rem;
    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 2;
  }
}

/* それぞれのページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  opacity: 1;
  width: 0.5rem;
  height: 0.5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(0, 165, 158, 0.7);
  margin-inline: 0.34375rem;
}
@media screen and (max-width: 839px) {
  .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
    width: 0.375rem;
    height: 0.375rem;
  }
}

/* activeな部分 */
.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet-active {
  background: #00a59e;
  width: 0.875rem;
  height: 0.875rem;
  -webkit-transform: translateY(0.1875rem);
          transform: translateY(0.1875rem);
}
@media screen and (max-width: 839px) {
  .swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet-active {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.card__swiper-slide {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.card__swiper-slide.is-active {
  margin-top: -0.5rem;
  margin-left: 1rem;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  z-index: 2;
  overflow: visible;
}
@media screen and (max-width: 839px) {
  .card__swiper-slide.is-active {
    margin-top: 0;
    margin-left: 0;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media screen and (max-width: 839px) {
  .card__swiper-slide:not(.is-active) {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    z-index: 1;
    overflow: hidden;
    margin-top: 0.625rem;
  }
}

.access-sns {
  background: url(../img/education-bg.webp) no-repeat center/cover;
  overflow: hidden;
}
@media screen and (max-width: 839px) {
  .access-sns {
    background: url(../img/education-bgsp.webp);
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.access {
  padding-top: 5rem;
  padding-bottom: 4.5rem;
}
@media screen and (max-width: 839px) {
  .access {
    padding-top: 2.9375rem;
    padding-bottom: 2.6875rem;
  }
}

.access__inner {
  max-width: 37.5rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 839px) {
  .access__inner {
    padding-inline: 1.9375rem;
  }
}

.access__heading-img {
  width: 5.5rem;
  height: 1.5625rem;
}
@media screen and (max-width: 839px) {
  .access__heading-img {
    margin: 0 auto;
    width: 2.9375rem;
    height: auto;
  }
}

.access__school-name {
  margin-top: 1.125rem;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 839px) {
  .access__school-name {
    margin-top: 0.8125rem;
    font-size: 1.25rem;
    line-height: 1.1;
  }
}
.access__school-name span {
  font-size: 0.875rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 839px) {
  .access__school-name span {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }
}

.access__box {
  margin-top: 1.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
}
@media screen and (max-width: 839px) {
  .access__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.access__info {
  padding-right: 2.875rem;
  position: relative;
}
@media screen and (max-width: 839px) {
  .access__info {
    padding-right: 0;
  }
}
.access__info::after {
  content: "";
  position: absolute;
  top: 55%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.125rem;
  height: 4.0625rem;
  border-radius: 0.125rem;
  background-color: #00a59e;
}
@media screen and (max-width: 839px) {
  .access__info::after {
    display: none;
  }
}

.access__address {
  font-size: 1rem;
  line-height: 1.2;
}
@media screen and (max-width: 839px) {
  .access__address {
    font-size: 0.875rem;
    letter-spacing: 0.08em;
  }
}
.access__address span {
  font-size: 0.875rem;
}
@media screen and (max-width: 839px) {
  .access__address span {
    font-size: 0.5625rem;
  }
}

.access__contact {
  margin-top: 0.125rem;
}
@media screen and (max-width: 839px) {
  .access__contact {
    margin-top: 0.3125rem;
  }
}

.access__contact-label {
  font-size: 0.875rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 839px) {
  .access__contact-label {
    font-size: 0.75rem;
  }
}
.access__contact-label span {
  letter-spacing: 0.01em;
  border-radius: 100vmax;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, filter 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  display: inline-block;
  color: #fff;
  background: #00a59e;
  width: 3.375rem;
  padding-bottom: 0.0625rem;
  padding-top: 0.15625rem;
  text-align: center;
  margin-right: 0.375rem;
  font-size: 0.625rem;
}
@media screen and (max-width: 839px) {
  .access__contact-label span {
    width: 2.8125rem;
  }
}

.access__contact-address {
  margin-top: 0.125rem;
  font-size: 0.8125rem;
  letter-spacing: 0.008em;
}
@media screen and (max-width: 839px) {
  .access__contact-address {
    font-size: 0.75rem;
    margin-top: 0.1875rem;
  }
}
.access__contact-address span {
  letter-spacing: 0.01em;
  border-radius: 100vmax;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, filter 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  display: inline-block;
  color: #fff;
  background: #00a59e;
  width: 3.375rem;
  padding-bottom: 0.0625rem;
  padding-top: 0.15625rem;
  text-align: center;
  margin-right: 0.375rem;
  font-size: 0.625rem;
}
@media screen and (max-width: 839px) {
  .access__contact-address span {
    width: 2.8125rem;
  }
}

.access__station {
  margin-left: 1.25rem;
  font-weight: 700;
  margin-top: 0.625rem;
}
@media screen and (max-width: 839px) {
  .access__station {
    margin-left: 0;
    margin-top: 1rem;
  }
}

.access__station-text {
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 839px) {
  .access__station-text {
    font-size: 0.6875rem;
    letter-spacing: -0.06em;
  }
}

.access__station-name {
  font-size: 1.5rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 839px) {
  .access__station-name {
    letter-spacing: 0.06em;
    margin-top: -0.1875rem;
  }
}

.station-name__text01 {
  font-size: 1.125rem;
}
@media screen and (max-width: 839px) {
  .station-name__text01 {
    font-size: 1.0625rem;
    letter-spacing: 0.001em;
  }
}

.station-name__text02 {
  font-size: 1.25rem;
}

.station-name__text03 {
  font-size: 2rem;
}
@media screen and (max-width: 839px) {
  .station-name__text03 {
    font-size: 2.125rem;
  }
}

.station-name__text04 {
  font-size: 1.25rem;
}

.access__map {
  margin-top: 2.875rem;
}
@media screen and (max-width: 839px) {
  .access__map {
    margin-top: 0.75rem;
  }
}

.access__button {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 839px) {
  .access__button {
    margin-top: 1.875rem;
  }
}

.access__btn {
  background: #fff226;
  color: #00a59e;
  padding: 0.5rem 2.5rem;
  font-size: 1.25rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 839px) {
  .access__btn {
    padding-top: 0.1875rem;
    padding-bottom: 0.1875rem;
  }
}

.sns {
  background: rgba(0, 165, 158, 0.5);
  padding-top: 4.125rem;
  padding-bottom: 4.25rem;
}
@media screen and (max-width: 839px) {
  .sns {
    padding-top: 3.125rem;
    padding-bottom: 2.75rem;
  }
}

.sns__inner {
  margin: 0 auto;
}

.sns__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.sns__heading-img {
  width: 12.6875rem;
}
@media screen and (max-width: 839px) {
  .sns__heading-img {
    width: 7rem;
  }
}

.sns__heading-ja {
  margin-top: 0.5rem;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 839px) {
  .sns__heading-ja {
    font-size: 1.125rem;
  }
}

.sns__wrap {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 37.5rem;
  width: 100%;
  gap: 0.875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: capitalize;
  margin-inline: auto;
}
@media screen and (max-width: 839px) {
  .sns__wrap {
    margin-top: 0.75rem;
    gap: 0.5rem;
  }
}

.sns__item {
  width: 6.875rem;
  height: 6.875rem;
}
@media screen and (max-width: 839px) {
  .sns__item {
    width: 5rem;
    height: 5rem;
  }
}
.sns__item a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer__line {
  height: 0.3472222222vw;
  background: linear-gradient(145deg, #20b5b0 20%, #c9df8c 80%);
}
@media (min-width: 840px) {
  .footer__line {
    height: 0.3125rem;
  }
}
@media screen and (max-width: 839px) {
  .footer__line {
    height: 0.3125rem;
  }
}

.footer {
  padding-top: 48px;
}
@media screen and (min-width: 1441px) {
  .footer {
    padding-top: 3.3333333333vw;
  }
}
@media screen and (max-width: 839px) {
  .footer {
    padding-top: 3rem;
  }
}
@media screen and (max-width: 540px) {
  .footer {
    padding-top: 48px;
  }
}

.footer__inner {
  width: 100%;
}

.footer__logo {
  display: block;
  width: 219px;
  height: auto;
  margin: 0 auto;
}
@media screen and (min-width: 1441px) {
  .footer__logo {
    width: 15.2083333333vw;
  }
}
@media screen and (max-width: 839px) {
  .footer__logo {
    width: 10rem;
  }
}
@media screen and (max-width: 540px) {
  .footer__logo {
    width: 219px;
  }
}

.footer__nav {
  margin-top: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1140px;
  margin-inline: auto;
  padding: 0 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 17px;
}
@media screen and (min-width: 1441px) {
  .footer__nav {
    margin-top: 2.4305555556vw;
    max-width: 79.1666666667vw;
    padding: 0 3.4722222222vw;
    -webkit-column-gap: 0.6944444444vw;
       -moz-column-gap: 0.6944444444vw;
            column-gap: 0.6944444444vw;
    row-gap: 1.1805555556vw;
  }
}
@media screen and (max-width: 1101px) {
  .footer__nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 839px) {
  .footer__nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.75rem;
    row-gap: 1.3125rem;
    max-width: none;
  }
}
@media screen and (max-width: 540px) {
  .footer__nav {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    place-items: center;
    margin-top: 25px;
    row-gap: 21px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
  }
}

.footer__wrap {
  width: 243px;
  padding: 0 0 8px 0;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (min-width: 1441px) {
  .footer__wrap {
    width: 16.875vw;
    padding: 0 0 0.5555555556vw;
    font-size: 0.9722222222vw;
  }
}
@media screen and (max-width: 839px) {
  .footer__wrap {
    width: 10rem;
    padding: 0 0 0.5625rem 0;
    border-bottom: none;
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 540px) {
  .footer__wrap {
    width: 275px;
    padding: 0 0 9px 0;
    border-bottom: 1px solid #DAEEEC;
    font-size: 14px;
    margin: 0 auto;
  }
}

.footer__heading {
  color: #333;
  padding: 0 5px;
  margin-bottom: 12px;
}
@media screen and (min-width: 1441px) {
  .footer__heading {
    padding: 0 0.3472222222vw;
    margin-bottom: 0.8333333333vw;
  }
}
@media screen and (max-width: 839px) {
  .footer__heading {
    padding: 0 0.3125rem;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 540px) {
  .footer__heading {
    padding: 0 5px;
    margin-bottom: 0;
  }
}
.footer__heading a {
  font-weight: 600;
  color: #333;
  position: relative;
  padding-left: 34px;
  width: 100%;
  display: block;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 1441px) {
  .footer__heading a {
    padding-left: 2.3611111111vw;
  }
}
@media screen and (max-width: 839px) {
  .footer__heading a {
    padding-left: 1.25rem;
  }
}
@media screen and (max-width: 540px) {
  .footer__heading a {
    padding-left: 34px;
  }
}
.footer__heading a::before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #00A59E;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1441px) {
  .footer__heading a::before {
    width: 1.3888888889vw;
    height: 1.3888888889vw;
  }
}
@media screen and (max-width: 839px) {
  .footer__heading a::before {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (max-width: 540px) {
  .footer__heading a::before {
    width: 20px;
    height: 20px;
  }
}
.footer__heading a::after {
  font-family: FontAwesome;
  content: "\f061";
  color: #fff;
  display: inline-block;
  position: absolute;
  left: 6px;
  top: 50%;
  font-size: 8px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 1441px) {
  .footer__heading a::after {
    left: 0.4166666667vw;
    font-size: 0.5555555556vw;
  }
}
@media screen and (max-width: 839px) {
  .footer__heading a::after {
    left: 0.25rem;
    font-size: 0.5625rem;
  }
}
@media screen and (max-width: 540px) {
  .footer__heading a::after {
    left: 5px;
    font-size: 11px;
  }
}

.footer__lists {
  margin-top: 20px;
  font-size: 12px;
  border-bottom: 1px solid #DAEEEC;
  padding: 0 5px;
  letter-spacing: 0.01em;
  margin-bottom: -3px;
  line-height: 1.1;
}
@media screen and (min-width: 1441px) {
  .footer__lists {
    margin-top: 1.3888888889vw;
    font-size: 0.8333333333vw;
    border-bottom: 0.0694444444vw solid #DAEEEC;
    padding: 0 0.3472222222vw;
    margin-bottom: -0.2083333333vw;
  }
}
.footer__lists li {
  margin-bottom: 12px;
}
@media screen and (min-width: 1441px) {
  .footer__lists li {
    margin-bottom: 0.8333333333vw;
  }
}
.footer__lists li a {
  font-weight: 600;
  color: #333;
  position: relative;
  padding-left: 20px;
  width: 100%;
  display: block;
}
@media screen and (min-width: 1441px) {
  .footer__lists li a {
    padding-left: 1.3888888889vw;
  }
}
.footer__lists li a::before {
  font-family: FontAwesome;
  content: "\f061";
  color: #00A59E;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.privacy-policy {
  margin-top: 7px;
  font-weight: 500;
  letter-spacing: 0.01em;
  max-width: 1040px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 50px;
}
@media screen and (min-width: 1441px) {
  .privacy-policy {
    margin-top: 0.4861111111vw;
    max-width: 72.2222222222vw;
    gap: 1.3888888889vw;
  }
}
@media screen and (max-width: 839px) {
  .privacy-policy {
    margin-top: 1.625rem;
    max-width: 1040px;
    gap: 0rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-inline: 50px;
  }
}
@media screen and (max-width: 540px) {
  .privacy-policy {
    margin-top: 26px;
    gap: 16px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-inline: 50px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.privacy {
  font-weight: 600;
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  padding-left: 21px;
  font-size: 12px;
  margin-top: 10px;
}
@media screen and (min-width: 1441px) {
  .privacy {
    font-size: 0.8333333333vw;
    margin-top: 0.6944444444vw;
  }
}
@media screen and (max-width: 839px) {
  .privacy {
    font-size: 0.5625rem;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding-left: 1.5rem;
    margin-top: 0;
    max-width: 100%;
    letter-spacing: -0.01em;
  }
}
@media screen and (max-width: 540px) {
  .privacy {
    font-size: 12px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding-left: 21px;
    margin-top: 0;
    max-width: 100%;
    letter-spacing: -0.01em;
    width: 164px;
  }
}
.privacy::before {
  font-family: FontAwesome;
  content: "\f061";
  color: #00A59E;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 839px) {
  .privacy::before {
    left: 0.75rem;
  }
}
@media screen and (max-width: 540px) {
  .privacy::before {
    left: 0;
  }
}

.footer__copy {
  background: linear-gradient(145deg, #20b5b0 20%, #c9df8c 80%);
  color: #fff;
  text-align: center;
  padding: 5px 0;
  font-size: 14px;
  font-weight: 400;
  margin-top: 32px;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 1441px) {
  .footer__copy {
    padding: 0.3472222222vw 0;
    font-size: 0.9722222222vw;
    margin-top: 2.2222222222vw;
  }
}
@media screen and (max-width: 839px) {
  .footer__copy {
    margin-top: 1.25rem;
    padding: 0.3125rem 0;
    font-size: 0.5625rem;
  }
}
@media screen and (max-width: 540px) {
  .footer__copy {
    margin-top: 33px;
    padding: 5px 0;
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */