/* - Reset -----------------------------------------------------*/
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
main,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Base -----------------------------------------------------*/
body {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  color: #251e1c;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
  background: #fff;
  min-width: initial;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #0087e8;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.66;
}

img,
video {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.main {
  overflow: hidden;
}

.screen-reader-text {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
}

/* Button -----------------------------------------------------*/
.button {
  display: block;
  color: inherit;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .button span {
    display: block;
  }
}

.button--primary {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #eb6725;
  border: 4px solid #fff;
  border-radius: 32px;
  width: 100%;
  position: relative;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 16px 24px;
  margin: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.button--primary:hover {
  color: #eb6725;
  background-color: #fff;
  border: 4px solid #eb6725;
  opacity: 1;
}
.button--primary::after {
  display: block;
  content: "";
  width: 9px;
  height: 13px;
  background: url(../images/icon_arrow_r.svg) center/100% no-repeat;
  position: absolute;
  top: 0;
  right: 1.5rem;
  bottom: 0;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
  margin: auto 0;
  -webkit-transition: background-image 0.3s, -webkit-transform 0.3s ease-in-out;
  transition: background-image 0.3s, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, background-image 0.3s;
  transition: transform 0.3s ease-in-out, background-image 0.3s,
    -webkit-transform 0.3s ease-in-out;
}
.button--primary:hover::after {
  background-image: url(../images/icon_arrow_r-orange.svg);
  -webkit-transform: translateX(-6px);
  transform: translateX(-6px);
}

.button--floating {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background-color: #eb6725;
  border: 4px solid #fff;
  border-radius: 32px;
  width: 100%;
  max-width: 335px;
  padding: 12px 24px;
  margin: auto;
  position: relative;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 1024px) {
  .button--floating {
    letter-spacing: 0.05em;
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    max-width: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 16px 20px 16px 18px;
  }
}
.button--floating:hover {
  color: #eb6725;
  background-color: #fff;
  border: 4px solid #eb6725;
  opacity: 1;
}
@media screen and (min-width: 1024px) {
  .button--floating:hover {
    border-right: none;
  }
}
.button--floating::after {
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: url(../images/icon_arrow_r-bg_white.svg) center/100% no-repeat;
  position: absolute;
  top: 0;
  right: 1.5rem;
  bottom: 0;
  -webkit-transform: translateX(-10px);
  transform: translateX(-10px);
  margin: auto 0;
  -webkit-transition: background-image 0.3s, -webkit-transform 0.3s ease-in-out;
  transition: background-image 0.3s, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, background-image 0.3s;
  transition: transform 0.3s ease-in-out, background-image 0.3s,
    -webkit-transform 0.3s ease-in-out;
}
@media screen and (min-width: 1024px) {
  .button--floating::after {
    position: static;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.button--floating:hover::after {
  background-image: url(../images/icon_arrow_r-bg_orange.svg);
}

.button--header {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: #00a6bf;
  background: #fff;
  border: 1px solid #fff;
  width: 61px;
  height: 61px;
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cta {
  background: #fff253;
  padding: 32px 0;
}
@media screen and (min-width: 1024px) {
  .cta {
    padding: 68px 0 70px;
  }
}

.cta__container {
  max-width: 1000px;
  padding: 0 max(20px, 5vw);
  margin: 0 auto;
}

.cta__body {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .cta__body {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media screen and (min-width: 1024px) {
  .cta__header {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}

.cta__copy {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  color: #eb6725;
}
@media screen and (min-width: 1024px) {
  .cta__copy {
    font-size: 2rem;
  }
}

.cta__title {
  font-size: 2rem;
  line-height: 1.25;
  font-weight: bold;
  text-align: center;
  color: #00a6bf;
}
@media screen and (min-width: 1024px) {
  .cta__title {
    font-size: 3rem;
  }
}
.cta__title span {
  font-size: 1.75rem;
}
@media screen and (min-width: 1024px) {
  .cta__title span {
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 1024px) {
  .cta__main {
    grid-row: 1/3;
    grid-column: 2/3;
  }
}

.cta__image {
  max-width: 272px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .cta__image {
    max-width: none;
  }
}

.cta__button {
  max-width: 375px;
  margin: 0 auto 16px;
}

@media screen and (min-width: 1024px) {
  .cta__bottom-text {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}

.header {
  background: #00a6bf;
  padding: 0.625rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  -webkit-transition: -webkit-transform 0.5s ease-in;
  transition: -webkit-transform 0.5s ease-in;
  transition: transform 0.5s ease-in;
  transition: transform 0.5s ease-in, -webkit-transform 0.5s ease-in;
}
@media screen and (min-width: 1024px) {
  .header {
    background: transparent;
    position: absolute;
    top: 45px;
    left: inherit;
    right: 0;
  }
}
.header.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
  animation: UpAnime 0.5s forwards;
}
.header.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
  animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}

@keyframes UpAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
}
@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
}

.header__title {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 8px 14px;
}
@media screen and (min-width: 1024px) {
  .header__title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00a6bf;
    -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;
  }
}

.header__logo {
  width: auto;
  height: 40px;
}
@media screen and (min-width: 1024px) {
  .header__logo {
    width: 308px;
    height: auto;
  }
}

.header__tel-button {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 1024px) {
  .header__tel-button {
    display: none;
  }
}

.main {
  margin: 60px 0 0;
}
@media screen and (min-width: 1024px) {
  .main {
    margin-top: 0;
  }
}

.floating-button {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  padding: 8px;
}
@media screen and (min-width: 1024px) {
  .floating-button {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    top: 50%;
    bottom: initial;
    left: inherit;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0;
  }
}

.hero {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .hero {
    border-top: 20px solid #00a6bf;
  }
}

.hero__top {
  position: relative;
}

.hero__image img {
  width: 100%;
  max-height: 835px;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero__body {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
}
@media screen and (min-width: 1024px) {
  .hero__body {
    width: 85%;
    margin: 0 auto 0 0;
    right: initial;
    bottom: 0;
  }
}
@media screen and (min-width: 1280px) {
  .hero__body {
    width: 90%;
  }
}

.hero__title {
  background: #00a6bf;
  border-bottom-right-radius: 38px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  padding: 16px 24px;
}
@media screen and (min-width: 1024px) {
  .hero__title {
    border-bottom-right-radius: 80px;
    top: -1px;
    padding: 40px 64px;
  }
}

.hero__title-image {
  width: 111px;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .hero__title-image {
    width: 280px;
  }
}

.hero__copy {
  margin: 54px auto 0 max(20px, 5vw);
}
@media screen and (min-width: 768px) {
  .hero__copy {
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .hero__copy {
    text-align: left;
  }
}

.hero__copy-image {
  width: 100%;
  max-width: 1246px;
  height: auto;
}
@media screen and (min-width: 1024px) {
  .hero__copy-image {
    width: 80%;
  }
}

@media screen and (min-width: 768px) {
  .hero__sub-copy {
    margin: -12% 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .hero__sub-copy {
    margin: -13% 0 0;
  }
}
@media screen and (min-width: 1400px) {
  .hero__sub-copy {
    margin: -168px 0 0;
  }
}

.hero__sub-copy-image {
  width: 100%;
  max-width: 1372px;
  height: auto;
}

.hero__bottom {
  text-align: center;
  color: #fff;
  background: #00a6bf;
  padding: 16px 0;
}
@media screen and (min-width: 1024px) {
  .hero__bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.intro-top {
  text-align: center;
  background: #f6f4df;
  padding: 32px 0 133px;
}
@media screen and (min-width: 1024px) {
  .intro-top {
    padding-top: 56px;
    padding-bottom: 242px;
  }
}

.intro-top__container {
  max-width: 1000px;
  padding: 0 max(20px, 5vw);
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .intro-top__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.intro-top__figure {
  width: 59px;
  margin: 0 auto 4px;
}
@media screen and (min-width: 1024px) {
  .intro-top__figure {
    width: 150px;
    margin: 0;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
.intro-top__figure img {
  width: 100%;
}

.intro-top__strong-text {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 900;
  color: #00a6bf;
  margin: 0 0 8px;
}
@media screen and (min-width: 1024px) {
  .intro-top__strong-text {
    font-size: 2.5rem;
    line-height: 1.25;
    text-align: left;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-bottom: 0;
    margin-right: 64px;
  }
}
.intro-top__strong-text strong {
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  color: #eb6725;
  display: block;
}
@media screen and (min-width: 1024px) {
  .intro-top__strong-text strong {
    font-size: 3rem;
  }
}

.intro-top__text {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .intro-top__text {
    font-size: 1.75rem;
    width: 100%;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

.intro-reason {
  background-color: #cceff4;
  background-image: url(../images/bg_intro-reason_sp.png);
  background-position: top 270px center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding: 94px 0 46px;
  margin: -60px 0 0;
}
@media screen and (min-width: 1024px) {
  .intro-reason {
    background-image: url(../images/bg_intro-reason.png);
    padding-top: 132px;
    padding-bottom: 80px;
    margin-top: -108px;
  }
}
@media screen and (min-width: 1024px) and (min-width: 1280px) {
  .intro-reason {
    margin-top: -85px;
  }
}

.intro-reason__container {
  width: 90%;
  max-width: 880px;
  padding: 0 max(20px, 5vw);
  margin: 0 auto;
}

.intro-reason__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 4px;
  margin: 0 0 24px;
}
@media screen and (min-width: 1024px) {
  .intro-reason__header {
    margin-bottom: 56px;
  }
}
.intro-reason__header::before,
.intro-reason__header::after {
  content: "";
  display: block;
  width: 32px;
  height: 51px;
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1024px) {
  .intro-reason__header::before,
  .intro-reason__header::after {
    width: 74px;
    height: 119px;
  }
}
.intro-reason__header::before {
  background-image: url(../images/icon_intro-reason_title_l.svg);
  margin: 0 4px 0 0;
}
.intro-reason__header::after {
  background-image: url(../images/icon_intro-reason_title_r.svg);
  margin: 0 0 0 4px;
}

.intro-reason__text {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .intro-reason__text {
    font-size: 2rem;
  }
}

.intro-reason__strong-text {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 900;
  text-align: center;
  color: #00a6bf;
}
@media screen and (min-width: 1024px) {
  .intro-reason__strong-text {
    font-size: 3rem;
  }
}
.intro-reason__strong-text strong {
  font-size: 1.75rem;
}
@media screen and (min-width: 1024px) {
  .intro-reason__strong-text strong {
    font-size: 4rem;
  }
}
.intro-reason__strong-text span {
  font-size: 1.75rem;
}
@media screen and (min-width: 1024px) {
  .intro-reason__strong-text span {
    font-size: 4rem;
  }
}

.intro-reason__detail {
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: justify;
}
@media screen and (min-width: 1024px) {
  .intro-reason__detail {
    font-size: 1.25rem;
  }
}
.intro-reason__detail strong {
  font-weight: bold;
  background: #fff253;
}

.intro-reason__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.intro-reason__body {
  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;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 40px;
}
@media screen and (min-width: 1024px) {
  .intro-reason__body {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 64px;
    margin-bottom: 80px;
  }
}

.intro-reason__figure {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .intro-reason__figure {
    width: 40%;
  }
}
.intro-reason__figure img {
  width: 100%;
}

.intro-reason__body-inner {
  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;
  gap: 8px;
  max-width: 1000px;
  padding: 0 max(20px, 5vw);
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .intro-reason__body-inner {
    width: 60%;
    gap: 24px;
    padding-left: 0;
    padding-right: 0;
  }
}

.intro-reason__bottom {
  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;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  .intro-reason__bottom {
    gap: 56px;
  }
}

.intro-session {
  background: #fff;
  border: 2px solid #00a6bf;
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding: 12px 14px 0 14px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .intro-session {
    background: rgba(255, 255, 255, 0.6);
    grid-template-columns: auto 1fr;
    gap: 16px 8px;
    padding: 40px 200px 40px 40px;
    overflow: visible;
  }
}
@media screen and (min-width: 1024px) {
  .intro-session {
    padding-right: 180px;
  }
}

.intro-session__title {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #00a6bf;
  grid-column: 1/3;
  grid-row: 1/2;
  margin: 0 0 10px;
}
@media screen and (min-width: 768px) {
  .intro-session__title {
    grid-column: 1/2;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .intro-session__title {
    font-size: 3rem;
    text-align: center;
  }
}

.intro-session__status-wrap {
  width: 100%;
  grid-column: 1/2;
  grid-row: 2/3;
  margin: 0 0 18px;
}
@media screen and (min-width: 768px) {
  .intro-session__status-wrap {
    grid-column: 2/3;
    grid-row: 1/2;
    width: auto;
    margin-bottom: 0;
  }
}

.intro-session__status {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 900;
  text-align: center;
  color: #fff;
  background: #eb6725;
  max-width: 216px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 4px;
}
@media screen and (min-width: 1024px) {
  .intro-session__status {
    font-size: 2rem;
    line-height: 1;
    width: auto;
    padding: 8px;
    margin-bottom: 0;
  }
}

.intro-session__text {
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.02em;
  grid-column: 1/2;
  grid-row: 3/4;
}
@media screen and (min-width: 768px) {
  .intro-session__text {
    font-size: 1rem;
    grid-column: 1/3;
    grid-row: 2/3;
  }
}
.intro-session__text span {
  display: inline-block;
}

.intro-session__circle {
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  width: 62px;
  height: 62px;
  color: #00a6bf;
  background: #fff;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  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;
  position: absolute;
  bottom: 8px;
  right: 12px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .intro-session__circle {
    font-size: 1rem;
    width: 76px;
    height: 76px;
    right: 120px;
    padding: 8px 10px;
  }
}
.intro-session__circle span {
  display: block;
}

.intro-session__image {
  width: 121px;
  grid-column: 2/3;
  grid-row: 2/5;
  margin: -4px -32px 0 0;
}
@media screen and (min-width: 768px) {
  .intro-session__image {
    width: 201px;
    grid-column: initial;
    grid-row: initial;
    position: absolute;
    bottom: 0;
    right: -40px;
    margin-right: 0;
  }
}
.intro-session__image img {
  width: 100%;
}

.intro-reason-benefits {
  width: 100%;
  max-width: 880px;
  background: #fff;
  padding: 16px 0 32px;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .intro-reason-benefits {
    padding: 24px 80px;
  }
}

.intro-reason-benefits__inner {
  padding: 0 18px;
}
@media screen and (min-width: 1024px) {
  .intro-reason-benefits__inner {
    padding-left: 0;
    padding-right: 0;
  }
}

.intro-reason-benefits__title {
  font-size: 1.75rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  color: #eb6725;
  margin: 0 0 12px;
}
@media screen and (min-width: 1024px) {
  .intro-reason-benefits__title {
    font-size: 3rem;
  }
}
.intro-reason-benefits__title::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url(../images/icon_intro_09.svg) center/cover no-repeat;
  margin: 0 16px 0 0;
}
@media screen and (min-width: 1024px) {
  .intro-reason-benefits__title::before {
    width: 48px;
    height: 48px;
  }
}

.intro-reason-benefits__body {
  text-align: center;
  background: #fffab9;
  position: relative;
  padding: 8px 0 16px;
}
@media screen and (min-width: 1024px) {
  .intro-reason-benefits__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
    padding: 32px 72px;
  }
}

.intro-reason-benefits__name {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: bold;
  color: #fff;
  background: #eb6725;
  padding: 8px 0;
  margin: 0 8px 20px;
}
@media screen and (min-width: 1024px) {
  .intro-reason-benefits__name {
    font-size: 2rem;
    line-height: 1.5;
    padding: 16px 24px;
    margin: 0;
  }
}

.intro-reason-benefits__text {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  margin: 0 0 8px;
}
@media screen and (min-width: 1024px) {
  .intro-reason-benefits__text {
    font-size: 1.25rem;
    margin-bottom: 24px;
  }
}
.intro-reason-benefits__text em {
  color: #00a6bf;
}
.intro-reason-benefits__text strong {
  font-size: 2rem;
  line-height: 1.25;
  color: #eb6725;
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  .intro-reason-benefits__text strong {
    font-size: 2.5rem;
    margin: 8px 0 0;
  }
}
.intro-reason-benefits__text strong::after {
  content: "";
  display: block;
  width: 100%;
  height: 14px;
  background: #fff;
  margin: -16px -5px 0;
}

.intro-reason-benefits__caution {
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .intro-reason-benefits__caution {
    font-size: 1rem;
  }
}

.intro-reason-benefits__deco {
  position: absolute;
  z-index: 1;
}

.intro-reason-benefits__deco--pen {
  top: 25px;
  right: 0;
}
@media screen and (min-width: 1024px) {
  .intro-reason-benefits__deco--pen {
    top: 16px;
    right: 8px;
  }
}
.intro-reason-benefits__deco--pen img {
  width: 27px;
}
@media screen and (min-width: 1024px) {
  .intro-reason-benefits__deco--pen img {
    width: 44px;
  }
}

.intro-reason-benefits__deco--clip-1 {
  top: -8px;
  left: 24px;
}
@media screen and (min-width: 1024px) {
  .intro-reason-benefits__deco--clip-1 {
    top: -16px;
    left: 100px;
  }
}
.intro-reason-benefits__deco--clip-1 img {
  width: 19px;
}
@media screen and (min-width: 1024px) {
  .intro-reason-benefits__deco--clip-1 img {
    width: 35px;
  }
}

.intro-reason-benefits__deco--clip-2 {
  top: -24px;
  left: -4px;
}
@media screen and (min-width: 1024px) {
  .intro-reason-benefits__deco--clip-2 {
    top: -32px;
    left: -16px;
  }
}
.intro-reason-benefits__deco--clip-2 img {
  width: 25px;
}
@media screen and (min-width: 1024px) {
  .intro-reason-benefits__deco--clip-2 img {
    width: 54px;
  }
}

.intro-balloon {
  position: relative;
  z-index: 1;
  margin: -120px 0 0;
}
@media screen and (min-width: 1024px) {
  .intro-balloon {
    margin-top: -218px;
  }
}

.intro-balloon__container {
  max-width: 1000px;
  padding: 0 max(20px, 5vw);
  margin: 0 auto;
}

.intro-balloon__inner {
  background: #fff;
  border: 2px solid #00a6bf;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  position: relative;
  padding: 28px 26px 20px;
}
@media screen and (min-width: 1024px) {
  .intro-balloon__inner {
    padding: 50px 100px 56px;
  }
}
.intro-balloon__inner::before,
.intro-balloon__inner::after {
  content: " ";
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.intro-balloon__inner::before {
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 20px solid #00a6bf;
  border-bottom: 0;
  bottom: -19px;
  z-index: -1;
}
.intro-balloon__inner::after {
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  border-top: 20px solid #fff;
  border-bottom: 0;
  bottom: -16px;
}

.intro-balloon__list {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .intro-balloon__list {
    gap: 28px;
  }
}

.intro-balloon__item {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.05em;
  max-width: 75%;
  position: relative;
  padding: 0 0 0 24px;
}
@media screen and (min-width: 1024px) {
  .intro-balloon__item {
    font-size: 2rem;
    line-height: 1.25;
    max-width: none;
    padding-left: 46px;
  }
}
.intro-balloon__item:first-child {
  max-width: none;
}
.intro-balloon__item span {
  display: inline-block;
}
.intro-balloon__item br {
  display: none;
}
@media screen and (min-width: 1024px) {
  .intro-balloon__item br {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .intro-balloon__item br {
    display: none;
  }
}
.intro-balloon__item::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../images/icon_check.svg) center/cover no-repeat;
  position: absolute;
  top: 2px;
  left: 0;
}
@media screen and (min-width: 1024px) {
  .intro-balloon__item::before {
    width: 40px;
    height: 40px;
  }
}

.intro-balloon__figure {
  width: 70px;
  position: absolute;
  bottom: 11px;
  right: 16px;
  z-index: 1;
}
@media screen and (min-width: 1024px) {
  .intro-balloon__figure {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 135px;
    flex: 0 0 135px;
    position: static;
  }
}
.intro-balloon__figure img {
  width: 100%;
}

.step {
  margin: 48px 0;
}
@media screen and (min-width: 1024px) {
  .step {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.step__container {
  max-width: 1000px;
  padding: 0 max(20px, 5vw);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .step__container {
    gap: 32px;
  }
}

.step__copy {
  font-size: 1.75rem;
  line-height: 1.25;
  font-weight: bold;
  text-align: center;
  color: #000;
}
@media screen and (min-width: 1024px) {
  .step__copy {
    font-size: 2.5rem;
  }
}
.step__copy strong {
  color: #eb6725;
}

.step__title {
  font-size: 2.125rem;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: center;
  color: #00a6bf;
}
@media screen and (min-width: 1024px) {
  .step__title {
    font-size: 3.5rem;
  }
}
.step__title > span {
  display: block;
}
.step__title span > span {
  font-size: 1.75rem;
}
@media screen and (min-width: 1024px) {
  .step__title span > span {
    font-size: 3rem;
  }
}

.step__text {
  text-align: justify;
}
@media screen and (min-width: 768px) {
  .step__text {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .step__text span {
    display: block;
  }
}

.step__list {
  width: 100%;
  max-width: 375px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 16px 16px 72px;
  margin: 0 auto;
  position: relative;
  background: url(../images/bg_step_sp.png) center bottom/100% 100% no-repeat;
}
@media screen and (min-width: 1024px) {
  .step__list {
    max-width: 760px;
    padding: 55px 60px 118px;
    background-image: url(../images/bg_step.png);
  }
}

.step__list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.step-item {
  max-width: 640px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px 16px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .step-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.step-item::after {
  content: "";
  display: block;
  width: 60px;
  height: 30px;
  background: url(../images/icon_step_arrow.svg) center/auto no-repeat;
  margin: auto;
}
.step-item:last-child::after {
  display: none;
}

.step-item__header {
  position: relative;
  margin: 0 auto;
}

.step-item__name {
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: bold;
  color: #eb6725;
  width: 80px;
  height: 80px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: url(../images/bg_step.svg) center/auto no-repeat;
  position: absolute;
  top: -10px;
  left: -10px;
  padding: 30px 20px;
}

.step-item__image {
  width: 100%;
}
.step-item__image img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .step-item__image {
    max-width: 300px;
  }
}

.step-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .step-item__body {
    width: 50%;
  }
}

.step-item__title {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  color: #00a6bf;
}
@media screen and (min-width: 1024px) {
  .step-item__title {
    font-size: 1.5rem;
    text-align: left;
  }
}

.step-item__text {
  font-size: 1rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: justify;
}
.step-item__text strong {
  font-weight: bold;
}

.step-bottom {
  background: #cceff4;
  padding: 156px 20px 48px;
  margin: -144px 0 0;
}
@media screen and (min-width: 1024px) {
  .step-bottom {
    padding-top: 70px;
    padding-bottom: 0;
    margin-top: -54px;
  }
}

.step-bottom__container {
  max-width: 375px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 0 6px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .step-bottom__container {
    max-width: 760px;
    display: grid;
    grid-template-columns: auto auto;
    gap: 24px 0;
  }
}

.step-bottom__top-text {
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: bold;
  width: 140px;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
@media screen and (min-width: 1024px) {
  .step-bottom__top-text {
    font-size: 2.5rem;
    width: auto;
    grid-column: 2/3;
    grid-row: 1/2;
  }
}

.step-bottom__top-text--orange {
  color: #eb6725;
}

.step-bottom__top-text--blue {
  color: #00a6bf;
}

.step-bottom__underline {
  border-bottom: 2px solid;
  display: inline-block;
}
@media screen and (min-width: 1024px) {
  .step-bottom__underline {
    border-width: 3px;
    display: inline;
  }
}
.step-bottom__top-text--orange .step-bottom__underline {
  border-color: #eb6725;
}
.step-bottom__top-text--blue .step-bottom__underline {
  border-color: #00a6bf;
}

.step-bottom__bottom-text {
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: bold;
  text-align: center;
  background: #f6f4df;
  border: 2px solid #eb6725;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  padding: 3px 18px 4px;
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .step-bottom__bottom-text {
    font-size: 1.75rem;
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.step-bottom__bottom-text strong {
  color: #eb6725;
}

.step-bottom__figure {
  width: 170px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media screen and (min-width: 1024px) {
  .step-bottom__figure {
    width: 257px;
    grid-column: 1/2;
    grid-row: 1/4;
  }
}

.course {
  margin: 48px 0 0;
}
@media screen and (min-width: 1024px) {
  .course {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.course__container {
  max-width: 1000px;
  padding: 0 max(20px, 5vw);
  margin: 0 auto;
}

.course__list-container {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 28px;
}
@media screen and (min-width: 768px) {
  .course__list-container {
    padding: 0 max(20px, 5vw);
  }
}
@media screen and (min-width: 1024px) {
  .course__list-container {
    gap: 68px;
  }
}

.course__title {
  font-size: 1.75rem;
  line-height: 1.8;
  font-weight: bold;
  text-align: center;
  margin: 0 0 24px;
}
@media screen and (min-width: 768px) {
  .course__title {
    margin-bottom: 68px;
  }
}

.course__title-balloon {
  display: inline-block;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-align: center;
  color: #eb6725;
  background: #fff;
  border: 2px solid #eb6725;
  border-radius: 8px;
  position: relative;
  padding: 0 18px 4px;
}
@media screen and (min-width: 1024px) {
  .course__title-balloon {
    font-size: 2rem;
    border-width: 3px;
    padding-left: 48px;
    padding-right: 48px;
    margin: 0 0 12px;
  }
}
.course__title-balloon::before,
.course__title-balloon::after {
  content: " ";
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.course__title-balloon::before {
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 12px solid #eb6725;
  border-bottom: 0;
  bottom: -11px;
  z-index: -1;
}
.course__title-balloon::after {
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 12px solid #fff;
  border-bottom: 0;
  bottom: -6px;
}
.course__title-balloon span {
  font-size: 1rem;
}
@media screen and (min-width: 1024px) {
  .course__title-balloon span {
    font-size: 1.75rem;
  }
}

.course__title-main {
  display: block;
}
@media screen and (min-width: 1024px) {
  .course__title-main {
    font-size: 3rem;
  }
}

.course__header {
  position: relative;
  padding: 16px 0;
}
@media screen and (min-width: 1024px) {
  .course__header {
    padding-top: 12px;
    padding-bottom: 20px;
  }
}
.course__item--orange .course__header {
  background: #eb6725;
}
.course__item--green .course__header {
  background: #50995d;
}
.course__item--blue .course__header {
  background: #00a6bf;
}
.course__header::before {
  content: "";
  display: block;
  border-right: 21px solid transparent;
  border-top: 21px solid #fff;
  height: 0;
  width: 0;
  position: absolute;
  top: -1px;
  left: -1px;
}

.course__header-container {
  max-width: 335px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .course__item--orange .course__header-container {
    max-width: 300px;
  }
}
@media screen and (min-width: 768px) {
  .course__item--green .course__header-container {
    max-width: 374px;
  }
}
@media screen and (min-width: 768px) {
  .course__item--blue .course__header-container {
    max-width: 474px;
  }
}

.course__inner {
  max-width: 800px;
  padding: 24px 20px 48px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .course__inner {
    gap: 32px;
  }
}

.course__item--orange {
  background: #f8ebe9;
}

.course__item--green {
  background: #e5f0e7;
}

.course__item--blue {
  background: #cceff4;
}

.course__item-title {
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .course__item-title {
    font-size: 2.5rem;
  }
}

.course__item-title--small {
  font-size: 1rem;
  margin: 0 0 0 10px;
}
@media screen and (min-width: 1024px) {
  .course__item-title--small {
    font-size: 1.25rem;
  }
}

.course__figure {
  position: absolute;
  bottom: -16px;
  right: 0;
}
@media screen and (min-width: 1024px) {
  .course__figure {
    bottom: -20px;
  }
}

.course__copy {
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .course__copy {
    font-size: 1.5rem;
  }
}
.course__item--orange .course__copy {
  color: #eb6725;
}
.course__item--green .course__copy {
  color: #50995d;
}
.course__item--blue .course__copy {
  color: #00a6bf;
}
.course__copy span {
  display: inline-block;
}

.course__lead {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
  text-align: justify;
}
@media screen and (min-width: 1024px) {
  .course__lead {
    font-size: 1.25rem;
    text-align: center;
  }
}

.course__date {
  font-size: 1rem;
  color: #00a6bf;
  line-height: 1.7;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .course__date {
    font-size: 1.25rem;
    text-align: center;
  }
}

.course__detail-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 54px;
  padding: 20px 0 0;
}

.course__caution {
  font-size: 0.8125rem;
  line-height: 1.7;
}
@media screen and (min-width: 1024px) {
  .course__caution {
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  .course__caution span {
    display: block;
  }
}

.course-nav {
  margin: 24px 0 60px;
}
@media screen and (min-width: 1024px) {
  .course-nav {
    display: none;
  }
}

.course-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.course-nav__item {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .course-nav__item {
    padding-top: 12px;
    padding-bottom: 20px;
  }
}
.course-nav__item::before {
  content: "";
  display: block;
  border-right: 21px solid transparent;
  border-top: 21px solid #fff;
  height: 0;
  width: 0;
  position: absolute;
  top: -1px;
  left: -1px;
}

.course-nav__item--green {
  background: #50995d;
}

.course-nav__item--blue {
  background: #00a6bf;
}

.course-nav__link {
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  display: block;
  position: relative;
  padding: 8px 24px;
}

.course-nav__icon {
  position: absolute;
  top: 50%;
  right: 24px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.course-detail {
  background: #fff;
  border-top: 2px solid;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}
@media screen and (min-width: 1024px) {
  .course-detail {
    gap: 24px;
    padding: 32px;
  }
}
.course__item--orange .course-detail {
  border-color: #eb6725;
}
.course__item--green .course-detail {
  border-color: #50995d;
}
.course__item--blue .course-detail {
  border-color: #00a6bf;
}

.course-detail__header {
  position: relative;
}

.course-detail__title {
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: bold;
  color: #fff;
  text-align: center;
  width: 200px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 40px;
  position: absolute;
  top: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  padding: 4px;
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .course-detail__title {
    top: -54px;
  }
}
.course__item--orange .course-detail__title {
  background: #eb6725;
}
.course__item--green .course-detail__title {
  background: #50995d;
}
.course__item--blue .course-detail__title {
  background: #00a6bf;
}

.course-detail__name-wrap {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .course-detail__name-wrap {
    pointer-events: none;
  }
}

.course-detail__name {
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: bold;
  text-align: center;
  padding: 12px 24px;
  position: relative;
}
.course__item--orange .course-detail__name {
  background: #f8ebe9;
}
.course__item--green .course-detail__name {
  background: #e5f0e7;
}
.course__item--blue .course-detail__name {
  background: #cceff4;
}

.course-detail__button {
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .course-detail__button {
    display: none;
  }
}

.course-detail__body {
  display: none;
}
@media screen and (min-width: 1024px) {
  .course-detail__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
}

.course-detail__description {
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: justify;
  margin: 0 0 16px;
}
@media screen and (min-width: 1024px) {
  .course-detail__description {
    font-size: 1rem;
    line-height: 2;
    letter-spacing: 0;
  }
}

@media screen and (min-width: 1024px) {
  .course-detail__list {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 355px;
    flex: 0 0 355px;
  }
}

.course-detail-item {
  border-top: 1px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding: 8px 0;
}
@media screen and (min-width: 1024px) {
  .course-detail-item:first-child {
    border-top: none;
  }
}
.course__item--orange .course-detail-item {
  border-color: #eb6725;
}
.course__item--green .course-detail-item {
  border-color: #50995d;
}
.course__item--blue .course-detail-item {
  border-color: #00a6bf;
}

.course-detail-item__title {
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: bold;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 48px;
  flex: 0 0 48px;
}
@media screen and (min-width: 1024px) {
  .course-detail-item__title {
    font-size: 0.9375rem;
  }
}
.course__item--orange .course-detail-item__title {
  color: #eb6725;
}
.course__item--green .course-detail-item__title {
  color: #50995d;
}
.course__item--blue .course-detail-item__title {
  color: #00a6bf;
}

.course-detail-item__description {
  font-size: 0.875rem;
  line-height: 1.7;
}

.course-detail-item__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  counter-reset: item;
}

.course-detail-item__num-list {
  position: relative;
  padding: 0 0 0 16px;
}
.course-detail-item__num-list:before {
  font-family: "Roboto", sans-serif;
  counter-increment: item;
  content: counter(item);
  font-size: 0.625rem;
  line-height: 1.2;
  text-align: center;
  width: 12px;
  height: 12px;
  border: 1px solid #000;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 0;
}

.course-detail-item__row-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.course-detail-item__single-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.course__item--orange .course-detail-item__row-title {
  color: #eb6725;
}
.course__item--green .course-detail-item__row-title {
  color: #50995d;
}
.course__item--blue .course-detail-item__row-title {
  color: #00a6bf;
}

.course-single {
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-top: 1px solid;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 16px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .course-single {
    padding: 16px 40px;
  }
}
.course__item--orange .course-single {
  border-color: #eb6725;
}
.course__item--green .course-single {
  border-color: #50995d;
}
.course__item--blue .course-single {
  border-color: #00a6bf;
}

.course-single-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (min-width: 1024px) {
  .course-single-item {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .course-single-item:first-child {
    border-top: none;
  }
}

.course-single-item__title {
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: bold;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 48px;
  flex: 0 0 48px;
}
@media screen and (min-width: 1024px) {
  .course-single-item__title {
    font-size: 1rem;
  }
}
.course__item--orange .course-single-item__title {
  color: #eb6725;
}
.course__item--green .course-single-item__title {
  color: #50995d;
}
.course__item--blue .course-single-item__title {
  color: #00a6bf;
}

.course-single-item__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.course-single-item__description {
  font-size: 0.875rem;
  line-height: 1.7;
}
@media screen and (min-width: 1024px) {
  .course-single-item__description {
    font-size: 1rem;
  }
}

.course-single-item__lists {
  list-style: disc;
  padding: 0 0 0 24px;
}

.banner-detail {
  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;
  gap: 8px 40px;
}
@media screen and (min-width: 1024px) {
  .banner-detail {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.banner-detail__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .banner-detail__wrap {
    gap: 24px;
  }
}

.banner-detail__wrap--strong {
  border: 1px solid #fff;
  border-radius: 8px;
  padding: 4px 16px;
}
@media screen and (min-width: 1024px) {
  .banner-detail__wrap--strong {
    border-radius: 14px;
    gap: 28px;
    padding: 6px 28px;
  }
}

.banner-detail__title {
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  .banner-detail__title {
    font-size: 2rem;
  }
}

.banner-detail__title--strong {
  font-size: 1.125rem;
}
@media screen and (min-width: 1024px) {
  .banner-detail__title--strong {
    font-size: 2rem;
    margin: 0 0 3px;
  }
}
.banner-detail__title--strong::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 16px;
  background: #fff;
  margin: 0 0 0 16px;
}
@media screen and (min-width: 1024px) {
  .banner-detail__title--strong::after {
    height: 28px;
    margin-bottom: -3px;
    margin-left: 28px;
  }
}

.banner-detail__description {
  font-size: 1rem;
  font-weight: 900;
}
@media screen and (min-width: 1024px) {
  .banner-detail__description {
    font-size: 2rem;
  }
}

.banner-detail__description--strong {
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (min-width: 1024px) {
  .banner-detail__description--strong {
    font-size: 2.25rem;
  }
}

.banner-detail__description--date-of-week {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 1rem;
}
@media screen and (min-width: 1024px) {
  .banner-detail__description--date-of-week {
    font-size: 1.75rem;
  }
}

.table {
  font-size: 0.9375rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  border-collapse: collapse;
}
@media screen and (min-width: 1024px) {
  .table {
    font-size: 0.875rem;
    line-height: 1.2;
    width: 768px;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    margin: 0 auto;
  }
}

.table__head {
  font-weight: bold;
  color: #fff;
}
.table__head .table__description {
  border-right: 1px solid #cceff4;
  border-bottom: 1px solid #cceff4;
}

.table__row:nth-child(even) {
  background: #fff;
}
.table__row:nth-child(odd) {
  background: #ebf9fb;
}
.table__head .table__row {
  background: #00a6bf;
}

.table__title {
  font-weight: bold;
  vertical-align: middle;
  color: #fff;
  background: #00a6bf;
  border: 1px solid #00a6bf;
  border-collapse: collapse;
  width: 33.3333333333%;
  height: 58px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
  padding: 12px 4px;
}
@media screen and (min-width: 1024px) {
  .table__title {
    width: 16.6666666667%;
    max-width: 134px;
    border-right-color: #ebf9fb;
  }
}

.table__description {
  vertical-align: middle;
  border-collapse: collapse;
  width: 33.3333333333%;
  height: 58px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-writing-mode: horizontal-tb;
  -ms-writing-mode: lr-tb;
  writing-mode: horizontal-tb;
  padding: 12px 4px;
}
@media screen and (min-width: 1024px) {
  .table__description {
    font-weight: normal;
    width: 16.6666666667%;
    max-width: 134px;
  }
}
.table__description span {
  display: block;
}

.table__description-small {
  font-size: 0.75rem;
  line-height: 1.2;
}

.table__description--tax {
  font-size: 0.625rem;
  line-height: 1.5;
}

.example__title {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: url(../images/bg_example_title_sp.svg) center/auto no-repeat;
  padding: 3px 0 4px;
  margin: 0 0 16px;
}
@media screen and (min-width: 1024px) {
  .example__title {
    background-image: url(../images/bg_example_title.svg);
    margin-bottom: 20px;
  }
}

.example__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 1024px) {
  .example__list {
    -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;
  }
}

.example__item {
  width: 100%;
  max-width: 335px;
  background: #fff;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 16px 20px;
  margin: 13px auto 0;
}
@media screen and (min-width: 1024px) {
  .example__item {
    width: 50%;
  }
}

.example__name {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  color: #00a6bf;
  text-shadow: 1px 1px 1px #ffffff, -1px 1px 1px #ffffff, 1px -1px 1px #ffffff,
    -1px -1px 1px #ffffff, 1px 0px 1px #ffffff, 0px 1px 1px #ffffff,
    -1px 0px 1px #ffffff, 0px -1px 1px #ffffff;
  position: absolute;
  top: -13px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.example__body {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.example__text {
  font-size: 0.8125rem;
  line-height: 1.5;
  grid-column: 2/3;
  grid-row: 1/2;
}
.example__text em {
  font-weight: bold;
}

.example__box {
  text-align: center;
  background: #fff;
  border: 1px solid #00a6bf;
  grid-column: 1/3;
  grid-row: 2/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  margin: -1px 0 0;
}

.example__course-name {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: bold;
  color: #00a6bf;
}

.example__course-detail {
  font-size: 0.875rem;
  line-height: 1.7;
}

.example__figure {
  grid-column: 1/2;
  grid-row: 1/2;
}

.faq {
  background: #f6f4df;
  padding: 48px 0;
}
@media screen and (min-width: 1024px) {
  .faq {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.faq__container {
  max-width: 800px;
  padding: 0 max(20px, 5vw);
  margin: 0 auto;
}

.faq__title {
  font-size: 1.75rem;
  line-height: 1.8;
  font-weight: bold;
  text-align: center;
  margin: 0 0 24px;
}

.faq__title-balloon {
  display: inline-block;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  text-align: center;
  color: #eb6725;
  background: #f6f4df;
  border: 2px solid #eb6725;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  padding: 0 18px 4px;
  margin: 0 0 8px;
}
@media screen and (min-width: 1024px) {
  .faq__title-balloon {
    font-size: 2rem;
    border-width: 3px;
    padding-left: 48px;
    padding-right: 48px;
    margin: 0 0 12px;
  }
}
.faq__title-balloon::before,
.faq__title-balloon::after {
  content: " ";
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.faq__title-balloon::before {
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 8px solid #eb6725;
  border-bottom: 0;
  bottom: -10px;
  z-index: -1;
}
@media screen and (min-width: 1024px) {
  .faq__title-balloon::before {
    bottom: -11px;
  }
}
.faq__title-balloon::after {
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 8px solid #f6f4df;
  border-bottom: 0;
  bottom: -6px;
}
.faq__title-balloon span {
  font-size: 1rem;
}
@media screen and (min-width: 1024px) {
  .faq__title-balloon span {
    font-size: 1.75rem;
  }
}

.faq__title-main {
  display: block;
}
@media screen and (min-width: 1024px) {
  .faq__title-main {
    font-size: 3rem;
  }
}

.faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: #fff;
  border: 1px solid #00a6bf;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  padding: 8px 16px;
}
@media screen and (min-width: 1024px) {
  .faq-item {
    padding-top: 22px;
    padding-bottom: 22px;
  }
}

.faq-item__question {
  font-size: 1rem;
  line-height: 1.7;
  font-weight: bold;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}
.faq-item__question::before {
  content: "Q";
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  font-weight: bold;
  color: #00a6bf;
}

.faq-item__question-text {
  width: 75%;
}

.faq-item__button {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.faq-item__answer {
  display: none;
  font-size: 1rem;
  line-height: 1.7;
  text-align: justify;
  border-top: 1px dotted #00a6bf;
  padding: 8px 0 8px 44px;
}
@media screen and (min-width: 1024px) {
  .faq-item__answer {
    padding-bottom: 0;
  }
}
.faq-item__answer a {
  color: #00a6bf;
}

.achievements {
  margin: 48px 0;
}
@media screen and (min-width: 1024px) {
  .achievements {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}

.achievements__container {
  max-width: 800px;
  padding: 0 max(20px, 5vw);
  margin: 0 auto;
}

.achievements__inner {
  background: #8d7e33;
  border-radius: 20px;
  padding: 16px;
}
@media screen and (min-width: 1024px) {
  .achievements__inner {
    padding: 20px 40px 40px;
  }
}

.achievements__header {
  margin: 0 0 16px;
}

.achievements__title {
  font-size: 1.75rem;
  line-height: 1.8;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 1024px) {
  .achievements__title {
    font-size: 2.5rem;
  }
}
.achievements__title span {
  font-size: 1.125rem;
}
@media screen and (min-width: 1024px) {
  .achievements__title span {
    font-size: 2rem;
  }
}

.achievements__caution {
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .achievements__caution {
    font-size: 1rem;
  }
}

.achievements__body {
  background: #fff;
  position: relative;
  padding: 24px 20px 20px;
}
@media screen and (min-width: 1024px) {
  .achievements__body {
    padding: 40px;
  }
}

.achievements__tag {
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: bold;
  text-align: center;
  color: #8d7e33;
  background: url(../images/bg_achievements.png) top center/100% no-repeat;
  display: inline-block;
  position: absolute;
  top: -46px;
  left: -11px;
  padding: 10px 8px 26px;
}
@media screen and (min-width: 1024px) {
  .achievements__tag {
    font-size: 2rem;
    top: -66px;
    left: -13px;
    padding: 16px 12px 40px;
  }
}

.achievements__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.achievements__item {
  border-bottom: 1px solid #8d7e33;
  padding: 0 0 16px;
}
@media screen and (min-width: 1024px) {
  .achievements__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.achievements__item:last-child {
  border: none;
  padding-bottom: 0;
}

.achievements__name {
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: bold;
  color: #8d7e33;
}
@media screen and (min-width: 1024px) {
  .achievements__name {
    font-size: 1.125rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 150px;
    flex: 0 0 150px;
  }
}

.achievements__text {
  font-size: 1rem;
  line-height: 1.7;
}
.achievements__text span {
  display: inline-block;
}

.achievements__text--small {
  font-size: 0.875rem;
}

@media screen and (min-width: 768px) {
  .achievements__br {
    display: none;
  }
}

.access {
  background: #cceff4;
  padding: 48px 0;
}
@media screen and (min-width: 1024px) {
  .access {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.access__container {
  max-width: 330px;
  padding: 0 max(20px, 5vw);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .access__container {
    max-width: 640px;
  }
}

.access__title {
  font-size: 1.75rem;
  line-height: 1.8;
  font-weight: bold;
  text-align: center;
  color: #00a6bf;
  margin: 0 0 30px;
}
@media screen and (min-width: 1024px) {
  .access__title {
    font-size: 3rem;
    margin-bottom: 40px;
  }
}

.access__body {
  text-align: center;
  background: #fff;
  position: relative;
  padding: 32px 16px;
}
@media screen and (min-width: 768px) {
  .access__body {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (min-width: 1024px) {
  .access__body {
    padding: 56px 40px 40px;
  }
}

.access__main {
}

@media screen and (min-width: 768px) {
  .access__main {
    display: flex;
    gap: 24px;
  }
}

.access__name {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #eb6725;
  border-radius: 15px;
  display: inline-block;
  position: absolute;
  top: -13px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 4px 20px 5px;
}
@media screen and (min-width: 1024px) {
  .access__name {
    font-size: 1.5rem;
    border-radius: 50px;
    top: -16px;
    padding: 12px 94px;
  }
}

.access__figure {
  margin: 0 0 16px;
}

.access__list {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.access__item-title {
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: bold;
  color: #8d7e33;
}

.access__description {
  font-size: 1rem;
  line-height: 1.7;
}
@media screen and (min-width: 1024px) {
  .access__description {
    font-size: 1.125rem;
  }
}
.access__description span {
  display: block;
}

.access__map {
  margin-top: 16px;
}
.access__map iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 300 / 200;
}
@media screen and (min-width: 768px) {
  .access__map iframe {
    aspect-ratio: auto;
    height: 200px;
  }
}

.modal-button {
  border: 0;
  outline: 0;
  background-color: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  padding: 0;
  margin: 0;
}

.modal-button__content {
  display: block;
  width: 16px;
  height: 2px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.modal-button__content::before,
.modal-button__content::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
}
.course__item--orange .modal-button__content::before,
.course__item--orange .modal-button__content::after {
  background: #eb6725;
}
.course__item--green .modal-button__content::before,
.course__item--green .modal-button__content::after {
  background: #50995d;
}
.course__item--blue .modal-button__content::before,
.course__item--blue .modal-button__content::after {
  background: #00a6bf;
}
.faq-item .modal-button__content::before,
.faq-item .modal-button__content::after {
  background: #00a6bf;
}
.modal-button__content::before {
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.is-active .modal-button__content::before {
  opacity: 0;
}

.new-line {
  display: block;
}

.new-line--inline-block {
  display: inline-block;
}

.new-line-sp-only {
  display: block;
}
@media screen and (min-width: 1024px) {
  .new-line-sp-only {
    display: inline;
  }
}

@media screen and (min-width: 1024px) {
  .new-line-pc-only {
    display: block;
  }
}

.footer {
  margin: 16px 0 160px;
}
@media screen and (min-width: 1024px) {
  .footer {
    margin-bottom: 20px;
  }
}

.footer__container {
  max-width: 1000px;
  padding: 0 max(20px, 5vw);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}

.footer__to-top {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: right;
  color: #00a6bf;
}
@media screen and (min-width: 1024px) {
  .footer__to-top {
    font-size: 1.25rem;
  }
}

.footer__to-top-link {
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__to-top-image {
  margin: 0 8px 0 0;
}

.footer__contact {
  text-align: center;
  width: 100%;
  max-width: 242px;
  border-top: 1px solid #eb6725;
  border-bottom: 1px solid #eb6725;
  position: relative;
  padding: 20px 0;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .footer__contact {
    border-width: 3px;
    max-width: 800px;
    padding-top: 48px;
    padding-bottom: 40px;
  }
}

.footer__contact-text {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: bold;
  color: #eb6725;
  background: #fff;
  display: inline-block;
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  .footer__contact-text {
    font-size: 2rem;
    top: -24px;
    padding-left: 52px;
    padding-right: 52px;
  }
}

.footer__contact-link a {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: bold;
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 1024px) {
  .footer__contact-link a {
    font-size: 3.5rem;
  }
}

.footer__contact-link-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .footer__contact-link-inner {
    gap: 24px;
  }
}

.footer__contact-image {
  width: 20px;
}
@media screen and (min-width: 1024px) {
  .footer__contact-image {
    width: 56px;
  }
}

.footer__bottom {
  text-align: center;
  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;
  gap: 8px;
}
@media screen and (min-width: 1024px) {
  .footer__bottom {
    padding: 20px 0 0;
    gap: 16px;
  }
}

.footer__caution {
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: bold;
  color: #00a6bf;
}
@media screen and (min-width: 1024px) {
  .footer__caution {
    font-size: 1rem;
  }
}
.footer__caution span {
  display: block;
}
@media screen and (min-width: 1024px) {
  .footer__caution span {
    display: inline-block;
  }
}

.footer__copyright {
  font-size: 0.625rem;
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .footer__copyright {
    font-size: 0.75rem;
  }
}
