@charset "UTF-8";

/*==================================================
reset
==================================================*/
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-weight: 400;
  vertical-align: baseline;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  font-size: inherit;
  line-height: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

span {
  line-height: inherit;
  font-size: inherit;
  text-decoration: inherit;
  vertical-align: inherit;
  font-weight: inherit;
}

body {
  -webkit-text-size-adjust: 100%;
}

ol,
ul {
  list-style: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

em,
strong,
em *,
strong * {
  font-weight: bold;
}

/*--form初期化--*/
input[type="submit"],
button {
  cursor: pointer;
}

button,
input[type="text"],
input[type="image"],
input[type="password"],
input[type="file"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="email"],
input[type="tel"],
textarea {
  font-family: inherit;
}

::placeholder {
  opacity: 1;
}

::-ms-input-placeholder {
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

a {
  transition: opacity 0.8s;
  text-decoration: none;
  border: none;
  color: inherit;
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.7;
  }
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}

th {
  text-align: left;
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 767px) {

  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 {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }

  button,
  input[type="text"],
  input[type="image"],
  input[type="password"],
  input[type="file"],
  input[type="submit"],
  input[type="reset"],
  input[type="button"],
  input[type="email"],
  input[type="tel"] textarea {
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
    border-radius: 0;
    box-shadow: none;
    appearance: none;
  }

  textarea,
  input[type="email"],
  input[type="text"],
  input[type="image"],
  input[type="password"] {
    -webkit-appearance: none;
  }
}

/*==================================================
root
==================================================*/
:root {
  --icon-play: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Cpath d='M17 11L8 17.0622V4.93782L17 11Z' fill='black'/%3E%3C/svg%3E");
  /*size*/
  --site-width: 1680px;
  --site-padding: 40px;
  /*color*/
  --light-color: #917b5a;
  --main-color: #5c402e;
  /*font*/
  --font-color: #333;
  --font-base: 1.6rem;
  --font-large: 1.8rem;
  --font-small: 1.2rem;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: Inter;
  --base-line: 1.6;
}

@media all and (min-width: 768px) and (max-width: 1080px) {
  :root {
    /*size*/
    --site-padding: 20px;
    /*font*/
    --font-base: 1.3rem;
    --font-large: 2rem;
    --font-small: 1.1rem;
  }
}

@media all and (max-width: 767px) {
  :root {
    /*size*/
    --site-padding: 20px;
    /*font*/
    --font-base: 1.6rem;
    --font-large: 1.6rem;
    --font-small: 1em;
  }
}

/*==================================================
sp pc
==================================================*/
@media all and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

@media all and (min-width: 1201px) {
  .sp-tb-only {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .tb-only {
    display: none !important;
  }
}

@media all and (min-width: 1201px) {
  .tb-only {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .tb-pc-only {
    display: none !important;
  }
}

/*--------------------------------------
html,body,wrapper
----------------------------------------*/
html {
  font-family: var(--font-jp);
  font-size: 62.5%;
  color: var(--font-color);
}

/*==================================================
l-header
==================================================*/
.header {
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  padding: 10px var(--site-padding);
  transition: background 0.3s ease;
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
}

.header-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 955px;
  margin-inline: auto auto;
}

.header-button {
  cursor: pointer;
}

/*==================================================
l-main
==================================================*/
.l-main {
  line-height: var(--base-line);
  font-size: var(--font-base);
}

@media all and (max-width: 767px) {
  .l-main {
    overflow: hidden;
  }
}

/*==================================================
module
==================================================*/
/*--------------------
ttl 
--------------------*/
.section-title {
  position: relative;
  z-index: 0;
  width: fit-content;
  margin: 0 auto;
  padding: 44px 0 10px 0;
  font-weight: 700;
  color: #3083c3;
  text-align: center;
  font-size: 3.2rem;
}

@media all and (max-width: 767px) {
  .section-title {
    padding-top: 30px;
    font-size: 2.4rem;
    background-size: 86px;
  }
}

.section-title--feature {
  margin-bottom: 15px;
}

@media all and (max-width: 767px) {
  .section-title--feature {
    margin-bottom: 0;
  }
}

.section-title--trust {
  margin-bottom: 45px;
}

@media all and (max-width: 767px) {
  .section-title--trust {
    margin-bottom: 25px;
  }

  .section-title--trust:before {
    left: 0px !important;
  }
}

.section-title--faq {
  margin-bottom: 40px;
}

.section-title:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -50px;
  top: 0;
  display: block;
  width: 107px;
  height: 101px;
  background: url("../img/section-title-bg.svg") no-repeat left top;
}

@media all and (max-width: 767px) {
  .section-title:before {
    left: -30px;
    top: 10px;
    width: 86px;
    height: 81px;
    background-size: contain;
  }
}

.section-title__support {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  color: #484848;
}

@media all and (max-width: 767px) {
  .section-title__support {
    font-size: 1.8rem;
    text-align: center;
  }
}

/*--------------------
inner
--------------------*/
.inner {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding-inline: var(--site-padding);
}

@media all and (max-width: 767px) {
  .inner {
    width: 100%;
  }
}

/*--------------------
box unit
--------------------*/
/*==================================================
page
==================================================*/
.main-nav {
  transition: opacity 0.4s;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 100001;
  right: 0;
  top: -10px;
  width: 375px;
  background: linear-gradient(180deg, #fff 23.56%, #fff4cc 81.25%);
  font-size: 1.8rem;
}

@media all and (max-width: 767px) {
  .main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: scroll;
    display: grid;
    padding-top: 10px;
  }
}

.main-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.main-nav-close {
  cursor: pointer;
  position: absolute;
  right: 25px;
  top: 10px;
}

.main-nav-list {
  padding: 40px 0;
}

.main-nav-list li {
  padding-inline: 20px;
}

.main-nav-list li a {
  display: block;
  padding: 20px 20px 20px 45px;
  color: #3083c3;
  border-bottom: 1px solid #3083c3;
  background: url("../img/nav-item.svg"), url("../img/nav-arrow.svg");
  background-position:
    left center,
    right center;
  background-repeat: no-repeat;
}

@media all and (max-width: 767px) {
  .main-nav-list li a {
    padding-block: 10px;
  }
}

.main-nav-cta {
  gap: 25px;
  padding: 35px 40px;
  background: #6293d8;
}

.main-nav-button {
  position: relative;
  display: grid;
  place-content: center;
  width: 100%;
  height: 60px;
  margin-inline: auto auto;
	margin-bottom: 20px;
  border: 2px solid #fff;
  border-radius: 60px;
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(180deg, #ffab58 0%, #ec7600 100%);
}

.main-nav-button--doc {
  background: var(--btn, linear-gradient(180deg, #5bde44 0%, #3ea32d 100%));
}

.main-nav-button:before,
.main-nav-button:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.main-nav-button:after {
  right: 15px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50px;
}

.main-nav-button:before {
  z-index: 2;
  right: 18px;
  width: 16px;
  height: 14px;
  background-color: #f08c00;
  -webkit-mask: var(--icon-play) no-repeat center/contain;
  mask: var(--icon-play) no-repeat center/contain;
}

.main-nav-button--doc:before {
  background: #3ea32d;
}

.main-nav-detail {
  position: relative;
  display: grid;
  place-content: center;
  height: 54px;
  width: 100%;
  max-width: 243px;
  margin-inline: auto auto;
  border-radius: 60px;
  border: 2px solid #fff;
  background: #fff;
  color: #3083c3;
  font-size: 2.3rem;
  font-weight: 700;
}

@media all and (max-width: 767px) {
  .main-nav-detail {
    width: 243px;
    font-size: 2rem;
  }
}

.main-nav-detail:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 22px;
  height: 22px;
  margin: auto;
  background-color: #3083c3;
  -webkit-mask: var(--icon-play) no-repeat center/contain;
  mask: var(--icon-play) no-repeat center/contain;
}

/* =========================
  fixed nav
========================= */
.fixed-nav {
  position: fixed;
  z-index: 9999;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media all and (max-width: 767px) {
  .fixed-nav {
    display: none;
  }
}

.fixed-nav__list {
  display: grid;
  gap: 18px;
}

.fixed-nav__link {
  position: relative;
  display: grid;
  place-items: center start;
  width: 45px;
  height: 194px;
  padding-top: 20px;
  border-radius: 16px 0 0 16px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  writing-mode: vertical-lr;
}

.fixed-nav__link:before,
.fixed-nav__link:after {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  left: 0;
  right: 0;
}

.fixed-nav__link:before {
  z-index: 2;
  bottom: 22px;
  width: 10px;
  height: 10px;
  -webkit-mask: var(--icon-play) no-repeat center/contain;
  mask: var(--icon-play) no-repeat center/contain;
}

.fixed-nav__link:after {
  bottom: 20px;
  background: #fff;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.fixed-nav__link--reservation {
  background: var(--btn, linear-gradient(180deg, #ffab58 0%, #ec7600 100%));
}

.fixed-nav__link--reservation:before {
  background-color: #ec7600;
}

.fixed-nav__link--request {
  background: var(--btn, linear-gradient(180deg, #5bde44 0%, #3ea32d 100%));
}

.fixed-nav__link--request:before {
  background-color: #3ea32d;
}

.fixed-nav__link--detail {
  background: var(--Linear, linear-gradient(180deg, #67e6ff 0%, #00a2bb 100%));
}

.fixed-nav__link--detail:before {
  background-color: #00a2bb;
}

/* =========================
  mv
========================= */
.mv img {
  object-fit: cover;
  width: 100%;
  height: calc(100vh - 380px);
}

@media all and (max-width: 1023px) {
  .mv img {
    height: auto;
  }
}

.mv-bottom {
  display: none;
}

@media all and (max-width: 767px) {
  .mv-bottom {
    display: block;
  }
}

/* =========================
catch
========================= */
.catch {
  height: 380px;
  padding: 38px 0;
  background: url("../img/catch-bg.png") no-repeat center/cover;
}

@media all and (max-width: 767px) {
  .catch {
    height: auto;
    padding: 25px 0;
  }
}

.catch-title {
  width: fit-content;
  margin-bottom: 30px;
  font-size: 2.7rem;
  font-weight: 500;
  margin-inline: auto auto;
}

@media all and (max-width: 1023px) {
  .catch-title {
    font-size: 2.2rem;
  }
}

@media all and (max-width: 767px) {
  .catch-title {
    margin-bottom: 20px;
    font-size: 1.7rem;
  }
}

.catch-title__text {
  display: block;
  padding-left: 180px;
  margin-bottom: 10px;
}

@media all and (max-width: 767px) {
  .catch-title__text {
    padding-left: 0;
    text-align: center;
  }
}

.catch-list {
  display: grid;
  grid-template-columns: 180px 180px 180px;
  justify-content: center;
  gap: 50px;
  font-size: var(--font-large);
  color: #00a7ea;
  font-weight: 700;
}

@media all and (max-width: 767px) {
  .catch-list {
    gap: 35px;
    grid-template-columns: 90px 90px 90px;
  }
}

.catch-list li {
  position: relative;
  padding: 15px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 10px 0 rgba(0, 90, 160, 0.2);
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

@media all and (max-width: 767px) {
  .catch-list li {
    display: grid;
    align-items: center;
    padding: 10px 5px;
    line-height: 1.4;
  }
}

.catch-list li:nth-child(2):before,
.catch-list li:nth-child(2):after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  background: url("../img/catch-close.svg") no-repeat center;
  width: 20px;
  height: 20px;
  margin: auto;
}

.catch-list li:nth-child(2):before {
  left: -34px;
}

@media all and (max-width: 767px) {
  .catch-list li:nth-child(2):before {
    left: -28px;
  }
}

.catch-list li:nth-child(2):after {
  right: -34px;
}

@media all and (max-width: 767px) {
  .catch-list li:nth-child(2):after {
    right: -28px;
  }
}

/* =========================
cta
========================= */
.cta {
  padding: 36px 0 50px;
  background: #6293d8;
  color: #fff;
  text-align: center;
}

.cta-contents {
  display: grid;
  gap: 35px;
  margin-bottom: 50px;
}

@media all and (max-width: 767px) {
  .cta-contents {
    margin-bottom: 0;
  }
}

.cta-data dt {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 10px auto;
  font-size: 1.6rem;
  font-weight: 400;
}

.cta-data dt:before,
.cta-data dt:after {
  content: "";
  display: block;
  width: 1px;
  height: 1.6em;
  border-left: 1px solid #fff;
}

.cta-data dt:before {
  transform: rotate(-20deg);
  margin-right: 50px;
}

@media all and (max-width: 767px) {
  .cta-data dt:before {
    margin-right: 20px;
  }
}

.cta-data dt:after {
  transform: rotate(20deg);
  margin-left: 50px;
}

@media all and (max-width: 767px) {
  .cta-data dt:after {
    margin-left: 20px;
  }
}

.cta-button {
  position: relative;
  display: grid;
  place-content: center;
  max-width: 660px;
  height: 75px;
  margin-inline: auto auto;
  border: 2px solid #fff;
  border-radius: 60px;
  font-size: 2.6rem;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(180deg, #ffab58 0%, #ec7600 100%);
}

.cta-button--doc {
  background: var(--btn, linear-gradient(180deg, #5bde44 0%, #3ea32d 100%));
}

.cta-button:before,
.cta-button:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.cta-button:after {
  right: 15px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50px;
}

.cta-button:before {
  z-index: 2;
  right: 18px;
  width: 16px;
  height: 14px;
  background-color: #f08c00;
  -webkit-mask: var(--icon-play) no-repeat center/contain;
  mask: var(--icon-play) no-repeat center/contain;
}

.cta-button--doc:before {
  background: #3ea32d;
}

.cta-detail {
  position: relative;
  display: grid;
  place-content: center;
  max-width: 454px;
  height: 80px;
  margin-inline: auto auto;
  border-radius: 60px;
  border: 2px solid #fff;
  background: #fff;
  color: #3083c3;
  font-size: 2.6rem;
  font-weight: 700;
	margin-top: 30px;
}
.cta-detail span{
  font-size: 2rem;
}

@media all and (max-width: 767px) {
  .cta-detail {
    width: 300px;
    font-size: 2rem;
  }
	.cta-detail span{
  font-size: 1.5rem;
}
}

.cta-detail:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 22px;
  height: 22px;
  margin: auto;
  background-color: #3083c3;
  -webkit-mask: var(--icon-play) no-repeat center/contain;
  mask: var(--icon-play) no-repeat center/contain;
}



/* =========================
recommend
========================= */
.recommend {
  position: relative;
  padding: 40px 0 20px 0;
  background: #fffde7;
  filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.1));
}

@media all and (max-width: 767px) {
  .recommend {
    padding-block: 40px 20px;
  }
}

.recommend:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  display: block;
  width: 80px;
  height: 80px;
  margin: auto;
  background: #fffde7;
  border-radius: 50%;
}

@media all and (max-width: 767px) {
  .recommend:after {
    bottom: -28px;
    width: 54px;
    height: 54px;
  }
}

.recommend-inner {
  max-width: 1040px;
  margin-inline: auto auto;
}

.recommend-list {
  position: relative;
  height: 440px;
}

@media all and (max-width: 767px) {
  .recommend-list {
    height: 580px;
  }
}

.recommend-list__item {
  position: absolute;
  display: grid;
  place-items: center;
  width: 230px;
  height: 220px;
  background: url("../img/recommend-comment.svg") no-repeat center;
  font-size: var(--font-large);
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  font-weight: 500;
  color: #484848;
}

@media all and (max-width: 767px) {
  .recommend-list__item {
    width: 145px;
    height: 140px;
    background-size: contain;
  }
}

.recommend-list__item:nth-child(1),
.recommend-list__item:nth-child(2) {
  top: 0;
}

.recommend-list__item:nth-child(1) {
  left: calc(50% + 50px);
}

@media all and (max-width: 767px) {
  .recommend-list__item:nth-child(1) {
    left: 0;
    top: 100px;
    margin: auto;
  }
}

.recommend-list__item:nth-child(2) {
  right: calc(50% + 50px);
}

@media all and (max-width: 767px) {
  .recommend-list__item:nth-child(2) {
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
  }
}

.recommend-list__item:nth-child(3),
.recommend-list__item:nth-child(4) {
  top: 0;
  bottom: 0;
  margin: auto;
}

.recommend-list__item:nth-child(3) {
  left: 0;
}

@media all and (max-width: 767px) {
  .recommend-list__item:nth-child(3) {
    left: auto;
    right: 0;
    top: 100px;
    bottom: auto;
  }
}

.recommend-list__item:nth-child(4) {
  right: 0;
}

@media all and (max-width: 767px) {
  .recommend-list__item:nth-child(4) {
    top: auto;
    bottom: 90px;
  }
}

.recommend-list__item:nth-child(5),
.recommend-list__item:nth-child(6) {
  bottom: 0;
}

.recommend-list__item:nth-child(5) {
  right: calc(50% + 100px);
}

@media all and (max-width: 767px) {
  .recommend-list__item:nth-child(5) {
    right: auto;
    bottom: 90px;
  }
}

.recommend-list__item:nth-child(6) {
  left: calc(50% + 100px);
}

@media all and (max-width: 767px) {
  .recommend-list__item:nth-child(6) {
    left: 0;
    right: 0;
    width: 178px;
    margin: auto;
  }
}

.recommend-list__item:nth-child(7) {
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
  background: none;
}

@media all and (max-width: 767px) {
  .recommend-list__item:nth-child(7) {
    top: 170px;
    bottom: auto;
    width: 240px;
  }
}

.recommend-list__item--small {
  font-size: 1.6rem;
}

/* =========================
fature
========================= */
.feature {
  position: relative;
  z-index: 0;
  padding-block: 80px;
  background: linear-gradient(180deg, #fff 0%, #fff4cc 50%, #ffd581 100%);
}

@media all and (max-width: 767px) {
  .feature {
    padding-block: 60px 20px;
  }
}

.feature:before {
  content: "";
  pointer-events: none;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: url("../img/hane.png") no-repeat center bottom;
  mix-blend-mode: screen;
  z-index: -1;
}

@media all and (max-width: 767px) {
  .feature:before {
    background-image: url("../img/sp-hane.png");
    background-size: 100vw auto;
  }
}

.feature-lead {
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.8;
}

@media all and (max-width: 767px) {
  .feature-lead {
    margin-bottom: 20px;
  }
}

.feature-header {
  margin-bottom: 40px;
}

.feature-list {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

@media all and (max-width: 767px) {
  .feature-list {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.feature-list li {
  display: grid;
  place-items: center;
  width: 100%;
  height: 110px;
  border-radius: 16px 0;
  background: linear-gradient(180deg, #ffa12e 0%, rgba(255, 72, 0, 0.8) 100%);
  color: #fff;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  line-height: 1.4;
  font-size: 1.8rem;
}

@media all and (max-width: 767px) {
  .feature-list li {
    height: 74px;
  }
}

.trust {
  position: relative;
  margin-bottom: 60px;
  padding: 45px 30px 40px 30px;
  border-radius: 24px;
  border: 1px solid #fa8e29;
  background: rgba(255, 255, 255, 0.6);
}

@media all and (max-width: 767px) {
  .trust {
    padding: 40px 20px 40px 20px;
  }
}



.trust-title {
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  display: grid;
  place-content: center;
  width: 167px;
  height: 40px;
  margin: auto;
  background: #fa8e29;
  border-radius: 20px;
  font-size: 2rem;
  border-radius: 20px;
  color: #fff;
}

@media all and (max-width: 767px) {
  .trust-title {
    top: -10px;
    width: 136px;
    height: 27px;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

@media all and (max-width: 767px) {
  .trust-imgs {
    display: none;
  }
}

.trust-imgs li {
  position: absolute;
}

.trust-imgs li:nth-child(1) {
  top: 50px;
  left: calc(50% - 250px);
}

.trust-imgs li:nth-child(2) {
  bottom: 20px;
  left: 50px;
}

.trust-imgs li:nth-child(3) {
  top: calc(50% - 100px);
  right: 50px;
  margin: auto;
}

.trust-ico {
  display: block;
  margin: 0 auto;
}

@media all and (max-width: 767px) {
  .trust-ico {
    width: 28px;
  }
}

.trust-body {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-body__center {
  position: absolute;
  z-index: 1;
  top: calc(50% - 5px);
  left: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: auto;
  border-radius: 50%;
  background: #3083c3;
  color: #fff;
  font-size: 1.4rem;
}

@media all and (max-width: 767px) {
  .trust-body__center {
    top: calc(50% - 5px);
    font-size: 1.4rem;
  }
}

.trust-body__col:nth-child(1) {
  width: 100%;
}

.trust-circle {
  position: relative;
  z-index: 0;
  width: 180px;
  height: 180px;
  margin: auto;
  padding-top: 16px;
}

@media all and (max-width: 767px) {
  .trust-circle {
    width: 140px;
    height: 140px;
    padding-top: 7px;
  }
}

.trust-circle:before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  display: block;
  width: 210px;
  height: 210px;
  border-radius: 50%;
}

@media all and (max-width: 767px) {
  .trust-circle:before {
    width: 160px;
    height: 160px;
  }
}

.trust-circle--future:before {
  left: -15px;
  bottom: -15px;
  background: rgba(178, 231, 236, 0.8);
}

@media all and (max-width: 767px) {
  .trust-circle--future:before {
    left: -10px;
  }
}

@media all and (max-width: 767px) {
  .trust-circle--earth {
    padding-top: 10px;
  }
}

.trust-circle--earth:before {
  left: -15px;
  top: -15px;
  background: rgba(220, 237, 220, 0.8);
}

@media all and (max-width: 767px) {
  .trust-circle--earth:before {
    left: -10px;
    top: -10px;
  }
}

@media all and (max-width: 767px) {
  .trust-circle--smile {
    padding-top: 10px;
  }
}

.trust-circle--smile:before {
  left: -15px;
  top: -15px;
  background: rgba(249, 212, 208, 0.5);
}

@media all and (max-width: 767px) {
  .trust-circle--smile:before {
    left: -10px;
    top: -10px;
  }
}

.trust-subtitle {
  color: #3083c3;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 700;
}

.trust-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 10em;
  gap: 0.5em;
  font-size: 1.4rem;
  margin: 5px auto 0 auto;
}

.trust-list li {
  display: grid;
  grid-template-columns: 1em 1fr;
  gap: 0.25em;
  line-height: 1;
}

.trust-list li:before {
  content: "";
  background: #00a7ea;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  display: block;
}

.trust-text {
  text-align: center;
  font-size: 1.4rem;
}

@media all and (max-width: 413px) {
  .trust {
    padding: 40px 10px 40px 10px;
  }

  .trust-circle {
    width: 130px;
    height: 130px;
  }

  .trust-subtitle {
    font-size: 1.6rem;
  }

  .trust-circle:before {
    width: 150px;
    height: 150px;
  }

  .trust-text,
  .trust-list li {
    font-size: 1.3rem;
  }
}

.strength-title {
  /*
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  width: fit-content;
  */
  line-height: 1.5;
  text-align: center;
  margin: 0 auto 30px;
}

@media all and (max-width: 767px) {
  .strength-title {
    margin-bottom: 20px;
    padding: 0;
  }
}

/*
.strength-title:before,
.strength-title:after {
  content: "";
  display: block;
  width: 30px;
  height: 85px;
  background: url("../img/brackets.svg") no-repeat left center;
}

@media all and (max-width: 767px) {

  .strength-title:before,
  .strength-title:after {
    width: 20px;
    height: 50px;
    margin-top: 7px;
    background-size: contain;
  }
}

.strength-title:after {
  transform: rotate(180deg);
}
    */

.strength-title__block {}

.strength-title__01 {
  display: block;
  font-weight: 700;
  font-size: 2.6rem;
}

@media all and (max-width: 767px) {
  .strength-title__01 {
    font-size: 1.8rem;
  }
}

.strength-title__02 {
  display: block;
  font-size: 2.6rem;
  font-weight: 700;
  color: #fa8e29;
}

@media all and (max-width: 767px) {
  .strength-title__02 {
    font-size: 2rem;
  }
}

.strength-unit {
  margin-bottom: 30px;

  background: #fff;
  border-radius: 24px;
  box-shadow: 0 0 10px 0 #f2637d;
  overflow: hidden;
}

@media all and (max-width: 1023px) {
  .strength-unit {}
}

@media all and (max-width: 767px) {
  .strength-unit {
    border-radius: 8px;
    overflow: hidden;
  }
}

.strength-header {
  display: grid;
  align-items: center;
  grid-template-columns: 70px 1fr 192px;
  gap: 20px;
  padding: 25px 50px 0 50px;
}

@media all and (max-width: 767px) {
  .strength-header {
    padding: 20px 0;
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .strength-header__img {
    display: block;
    width: 50px;
    margin: 0 auto;
  }

  .strength-header__group {
    display: contents;
  }
}


.strength-header__title {
  display: grid;
  align-items: center;
  gap: 20px;
  font-size: 2.6rem;
  font-weight: 700;
  color: #005AA0;
}

@media all and (max-width: 1023px) {
  .strength-header__title {
    order: 1;
    gap: 10px;
    font-size: 2.2rem;
  }
}

@media all and (max-width: 767px) {
  .strength-header__title {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media all and (max-width: 767px) {
  .strength-header__title img {
    display: block;
    margin-inline: auto auto;
  }
}

.strength-header__text {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}

@media all and (max-width: 1023px) {
  .strength-header__text {
    font-size: 1.6rem;
    line-height: 1.8;
    color: #484848;
  }
}

@media all and (max-width: 767px) {
  .strength-header__text {
    order: 3;
    text-align: center;
    padding: 0 10px;
    line-height: 1.8;
  }
}

@media all and (max-width: 389px) {
  .strength-header__text {
    font-size: 1.5rem;
  }
}

.strength-header__badge {
  display: grid;
  gap: 3px;
  padding-block: 9px;
  border-left: 10px solid #1693A4;
  border-right: 10px solid #1693A4;
  background: #4FC3A8;
  text-align: center;
}

@media all and (max-width: 767px) {
  .strength-header__badge {
    order: 2;
    grid-template-columns: auto 80px;
    justify-content: center;
    align-items: center;
    padding-block: 5px;
  }
}

.strength-header__lesson {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.strength-header__time {
  width: fit-content;
  margin-inline: auto;
  padding: 2px 7px;
  border-radius: 4px;
  background: #fff;
  color: #4FC3A8;
  font-weight: 500;
}
@media all and (max-width: 767px) {
.strength-header__time {
  font-size: 1.4rem;
}
}
.strength-header__em {
  font-weight: inherit;
  font-style: normal;
  color: #FFF100;
}

.strength-body {
  margin-top: 30px;
  border-top: 2px solid #4fbaa1;
  margin: 25px 50px 40px 50px;
}

@media all and (max-width: 767px) {
  .strength-body {
    border: none;
    margin: 0px 15px 40px 15px;
  }
}

.strength-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

@media all and (max-width: 767px) {
  .strength-row {
    grid-template-columns: 1fr;
    margin-top: 0;
    margin-bottom: 55px;
  }
}

.strength-box {
  padding: 20px 30px 10px 30px;
  border-radius: 20px;
  background: #FDFBD6;
  text-align: center;
}

@media all and (max-width: 767px) {
  .strength-box {
    padding: 12px 20px;
  }
}

.strength-box__title {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
  color: #1693A4;
}

@media all and (max-width: 767px) {
  .strength-box__title {
    font-size: 1.5rem;
  }
}

.strength-box__img {
  display: block;
  margin: 0 auto 20px;
}

.strength-box__more {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 500;
}

@media all and (max-width: 767px) {
  .strength-box__more {
    font-size: 1.6rem;
  }
}

.strength-effect {
  position: relative;
  padding: 30px 50px;
  background: #F1FFFC;
}

@media all and (max-width: 767px) {
  .strength-effect {
    padding: 30px 5px 30px 15px;
  }
}

.strength-effect__title {
  position: absolute;
  left: 50px;
  top: -15px;
  width: 230px;
  height: 31px;
  display: grid;
  padding-right: 0.5em;
  place-content: center;
  color: #FFF100;
  font-weight: 700;
  background: #4FC3A8;
  clip-path: polygon(100% 0, 95% 50%, 100% 100%, 0 100%, 0 0);
  font-family: "Zen Maru Gothic";
  font-size: 1.8rem;
}

@media all and (max-width: 767px) {
  .strength-effect__title {
    left: 0;
    right: 0;
    margin: auto;
    font-size: 1.6rem;
  }
}

.strength-effect__list {
     display: grid;
    grid-template-columns: 1fr .797fr;
    gap: 12px 5px;
    align-items: center;
}

@media all and (max-width: 767px) {
  .strength-effect__list {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4,1fr);
  }
}

.strength-effect__list li {
  padding-left: 30px;
  font-family: "Zen Maru Gothic";
  font-weight: 500;
  background: url("../img/check-earth.svg") no-repeat left center;
  font-size: 1.6rem;
  letter-spacing: normal;
  font-feature-settings: "palt";
}

@media all and (max-width: 390px) {
  .strength-effect__list li {}
}

.strength-effect__brackets {
  margin-left: -.4em;
  color: #4FC3A8;
  font-weight: 700;
}

.strength-unit--future .strength-header__badge {
  background: #32BCF3;
  border-color: #1499DD;
}

.strength-unit--future .strength-effect__list {
  max-width: 650px;
  margin-inline: auto;
  grid-template-columns: 1fr 1fr;
}

@media all and (max-width: 767px) {
  .strength-unit--future .strength-effect__list {
    grid-template-columns: 1fr;
  }
}

@media all and (max-width: 767px) {
  .strength-unit--future .strength-effect {
    border-top: 3px solid var(--00-a-7-ea, #00A7EA);

  }
}

.strength-unit--future .strength-header__time {
  color: #32BCF3;
}



.strength-unit--future .strength-button {
  border: 2px solid #00b9ef;
  color: #00b9ef;
}

@media all and (max-width: 767px) {
  .strength-unit--future .strength-header:after {
    order: 4;
    content: '';
    display: block;
    width: calc(100% - 30px);
    margin-inline: auto;
    border-bottom: 1.5px dotted #000;
  }
}


.strength-unit--future .strength-effect {
  background: #E9F9FF;
}

.strength-unit--future .strength-effect__brackets {
  color: #00A7EA;
}

.strength-unit--future .strength-effect__title {
  background: #32BCF3;
}

.strength-unit--future .strength-effect__list li {
  background-image: url("../img/check-future.svg");
}

.strength-unit--future .strength-box__title {
  color: #1499DD;
}


.strength-unit--future .strength-body {
  border-color: #00A7EA;
}




.strength-unit--earth .strength-button {
  border: 2px solid #4fbaa1;
  color: #4fbaa1;
}





.strength-unit--smile .strength-body {
  border-color: #f2637d;
}

.strength-unit--smile .strength-button {
  border: 2px solid #f2637d;
  color: #f2637d;
}

.strength-contents {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
  padding: 30px 0;
}

@media all and (max-width: 767px) {
  .strength-contents {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 0;
  }
}

@media all and (max-width: 767px) {
  .strength-contents__img {
    order: -1;
  }
}

.strength-contents__summary {
  margin-bottom: 15px;
  font-size: 1.6rem;
  line-height: 1.8;
}

.strength-contents__theme {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.4rem;
  color: #EB6EA5;
}

@media all and (max-width: 767px) {
  .strength-contents__theme {
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.8;
    font-weight: 500;
  }
}


.strength-contents__case {
  display: grid;
  grid-template-columns: 34px 1fr;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 10px 50px;
  border-radius: 16px;
  background: #FFECF4;
}

@media all and (max-width: 767px) {
  .strength-contents__case {
    grid-template-columns: 44px 1fr;
    gap: 20px;
    padding: 15px 24px;
    font-size: 1.6rem;
  }
}

.strength-contents__subtitle {
  display: grid;
  width: 34px;
  height: 34px;
  place-content: center;
  background: #fff;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 500;
  color: #EB6EA5;
}

@media all and (max-width: 767px) {
  .strength-contents__subtitle {
    width: 44px;
    height: 44px;
    font-size: 2rem;
  }
}

.strength-contents__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 30px;
}

.strength-contents__list li {
  font-weight: 500;
  font-size: 1.4rem;
}

@media all and (max-width: 767px) {

  .strength-contents__list li {
    padding-left: 1em;
    text-indent: -1.25em;
  }

}

.strength-contents__list li:first-letter {
  color: #EB6EA5;
}

.strength-next {
  width: fit-content;
  margin-inline: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  color: #1499DD;
}

@media all and (max-width: 767px) {
  .strength-next {
    font-size: 1.8rem;
  }
}

.strength-next:after,
.strength-next:before {
  content: '';
  display: block;
  width: 86px;
  height: 6px;
  background: url("../img/strength-dots.svg") no-repeat center;
}

@media all and (max-width: 767px) {
  .strength-next {
    margin-bottom: 10px;
  }

  .strength-next:after,
  .strength-next:before {
    content: none;
  }
}


.strength-popup {
  transition: opacity .4s;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  z-index: 10002;
  inset: 0;
  width: 856px;
  padding-bottom: 30px;
  height: fit-content;
  margin: auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
  color: #000;


}

@media all and (max-width: 1023px) {
  .strength-popup {
    width: calc(100% - 60px);
  }
}

@media all and (max-width: 767px) {
  .strength-popup {
    opacity: 1;
    position: static;
    width: 100%;
  }
}

.strength-popup.is-open {
  pointer-events: auto;
  opacity: 1;
}

.strength-popup__title {
  position: relative;
  display: grid;
  place-content: center;
  height: 63px;
  border-radius: 24px 24px 0 0;
  background: #F9F38A;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  color: #1499DD;
}

.strength-popup__row {
  display: grid;
  padding: 30px 55px 0 55px;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  font-size: 1.6rem;
  text-align: left;

}

.strength-popup__close {
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  margin: 20px auto 0 auto;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
}

.strength-popup__close-ico {
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  height: fit-content;
  margin: auto;
  cursor: pointer;
}

.strength-popup__inner {
  margin-top: 20px;
  padding-inline: 55px;
}

@media all and (max-width: 767px) {
  .strength-popup__inner {
    padding-inline: 0px;
  }
}

.strength-popup__subtitle {
  margin-bottom: 10px;
  font-size: 1.6rem;
  text-align: left;
}

.strength-popup__subtitle:first-letter {
  color: #56CFFE;
}

.strength-popup__list {
  display: grid;
  gap: 5px;
  margin-top: 20px;
}

.strength-popup__list li {
  display: grid;
  grid-template-columns: 1em 1fr;
  gap: 5px;
}

.strength-popup__list li:before {
  content: '';
  display: block;
  width: 1em;
  height: 1em;
  margin-top: 0.35em;
  border-radius: 50%;
  background-color: #4FC3A8;
}

/*
.strength-popup__list li:first-letter {
  color: #4FC3A8;
}

.strength-popup__subtitle:first-letter {
  color: #00A7EA;
}
  */

.strength-popup__figure {
  margin-bottom: 20px;
}

.strength-popup__subrow {
  display: grid;
  grid-template-columns: 2.3fr 1fr;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
}

@media all and (max-width: 767px) {
  .strength-popup__subrow {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.strength-popup-lesson {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 30px;
  padding: 14px 24px;
  border-radius: 16px;
  border: 1px solid #000;
}

@media all and (max-width: 767px) {
  .strength-popup-lesson {
    margin-top: 20px;
    grid-template-columns: 1fr;
    padding: 25px 8px 15px 8px;
  }
}

.strength-popup-lesson__title {
  display: grid;
  place-content: center;
  height: 50px;
  border-right: 10px solid #56CFFE;
  border-left: 10px solid #56CFFE;
  background: #fff798;
  font-weight: 500;
}

@media all and (max-width: 767px) {
  .strength-popup-lesson__title {
    position: absolute;
    font-size: 1.6rem;
    padding-inline: 5px;
    line-height: 1.2;
    left: 0;
    right: 0;
    top: -10px;
    width: fit-content;
    border-width: 5px;
    background: #FDFBD6;
    margin: auto;
    height: auto;
  }
}

.strength-popup-lesson__list {
  display: grid;
  gap: 5px;
  text-align: left;
}

.strength-popup-lesson__list li {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
}

@media all and (max-width: 767px) {
  .strength-popup-lesson__list li {
    font-size: 1.4rem;
    padding-left: 1em;
    text-indent: -1em;
  }
}

.strength-popup-lesson__list li:first-letter {
  color: #A1DFF7;
}

.strength-popup-sge {
  display: grid;
  gap: 7px;
  text-align: left;
}

@media all and (max-width: 767px) {
  .strength-popup-sge {
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
  }
}

.strength-popup-sge__logo {}

.strength-popup-sge__text {
  font-size: 10px;
  line-height: 150%;
}

@media screen and (max-width: 767px) {

  .strength-popup[data-popup-target="popup01"],
  .strength-popup[data-popup-target="popup02"],
  .strength-popup[data-popup-target="popup03"],
  .strength-popup[data-popup-target="popup04"] {
    display: none;
  }
}

.strength-popup[data-popup-target="popup03"] .strength-popup__title,
.strength-popup[data-popup-target="popup04"] .strength-popup__title {
  color: #1693A4;
}

.strength-accordion {
  display: none;
}

@media all and (max-width: 767px) {
  .strength-accordion {
    display: none;
    text-align: left;
  }

  .strength-accordion__text {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }


  .strength-accordion__list {
    display: grid;
    gap: 5px;
    margin-top: 20px;
  }

  .strength-accordion__list li {
    display: grid;
    grid-template-columns: 1em 1fr;
    gap: 5px;
    font-size: 1.6rem;
  }

  .strength-accordion__list li:before {
    content: '';
    display: block;
    margin-top: 0.35em;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    background-color: #4FC3A8;
  }

  .strength-accordion__close {
    width: fit-content;
    margin-inline: auto;
    margin-top: 20px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 5px;
  }

}

/* =========================
schedule
========================= */
.schedule {
  padding: 130px 0 90px 0;
}

@media all and (max-width: 767px) {
  .schedule {
    padding: 70px 0;
  }
}

.schedule-box {
  position: relative;
  padding: 50px 80px 35px 80px;
  border-radius: 16px;
  background: #fffde7;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}

@media all and (max-width: 1023px) {
  .schedule-box {
    padding: 50px 25px;
  }
}

@media all and (max-width: 767px) {
  .schedule-box {
    padding: 50px 10px;
  }
}

.schedule-first {
  display: inline-grid;
  place-items: center;
  margin-bottom: 5px;
  padding-inline: 10px 10px;
  border-radius: 14px;
  background: #eea2bc;
  color: #fff;
}

.schedule-title {
  position: absolute;
  left: 0;
  right: 0;
  top: -45px;
  width: 390px;
  height: 80px;
  margin-inline: auto auto;
  padding-top: 20px;
  background: url("../img/schedule-title.svg") no-repeat center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

@media all and (max-width: 767px) {
  .schedule-title {
    width: 300px;
    padding-top: 22px;
    background-size: contain;
    font-size: 2.4rem;
  }
}

.schedule-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

@media all and (max-width: 767px) {
  .schedule-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.schedule-unit {
  display: grid;
  grid-template-columns: 2.5em 1fr;
  gap: 20px;
  padding-bottom: 10px;
}

.schedule-unit__data {
  position: relative;
  z-index: 0;
  padding: 10px 20px 20px 0;
}

.schedule-unit__data:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -45px;
  top: -10px;
  display: block;
  width: calc(100% + 45px);
  height: calc(100% + 10px);
  background: linear-gradient(270deg,
      rgba(255, 222, 139, 0) 0%,
      rgba(255, 218, 150, 0.4) 8.17%,
      rgba(255, 218, 150, 0.4) 90.87%,
      rgba(255, 222, 139, 0) 100%);
}

.schedule-unit__title {
  margin-bottom: 5px;
  font-size: 1.8rem;
  color: #fa8e29;
  font-weight: 700;
}

.schedule-unit__time {
  position: relative;
  z-index: 2;
  margin-top: 1px;
  padding-top: 2px;
}

@media all and (max-width: 767px) {
  .schedule-unit__time {
    margin-top: 0;
  }
}

.schedule-unit__time span {
  background: #fffde7;
  font-family: var(--font-en);
}

@media all and (max-width: 767px) {
  .schedule-unit__time span {
    font-size: 1.8rem;
  }
}

.schedule-unit__time:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  top: 5px;
  margin: auto;
  width: 0;
  height: 100%;
  border-left: 2px dashed #484848;
}

.schedule-unit__time--last:before {
  top: -10px;
}

.schedule-unit__body {
  padding-bottom: 10px;
}

.schedule-unit__text {
  display: grid;
  grid-template-columns: 1em 1fr;
  gap: 4px;
}

@media all and (max-width: 767px) {
  .schedule-unit__text {
    font-size: 1.4rem;
  }
}

.schedule-unit__text:before {
  content: "";
  margin-top: 5px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: #fa8e29;
}

.schedule-pos {
  position: relative;
}

.schedule-pos__img-01 {
  position: absolute;
  z-index: 1;
  right: 0;
  top: -35px;
}

.schedule-pos__img-02 {
  position: absolute;
  z-index: 1;
  right: 0;
  top: -20px;
}

.schedule-pos__img-03 {
  position: absolute;
  z-index: 1;
  right: 0;
  top: -30px;
}

.schedule-time {
  font-size: 1.8rem;
}

.schedule-small {
  font-size: 1.4rem;
}

@media all and (max-width: 1023px) {
  .schedule-small {
    font-size: 1.2rem;
  }
}

.schedule-challenge {
  position: relative;
  z-index: 1;
  margin-top: 3px;
}

.schedule-challenge span {
  display: inline-grid;
  place-items: center;
  width: 1.6em;
  height: 1.6em;
  border-radius: 50%;
  background: #eea2bc;
  color: #fff;
}

.schedule-challenge span:nth-child(2) {
  margin-left: -0.3em;
}

.schedule-challenge span:nth-child(3) {
  margin-left: -0.3em;
}

.schedule-challenge span:nth-child(4) {
  margin-left: -0.3em;
}

.schedule-challenge span:nth-child(5) {
  margin-left: -0.3em;
}

.schedule-person {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -30px;
  padding-right: 20px;
}

/* =========================
faq
========================= */
.faq {
  padding: 60px 0 100px 0;
}

@media all and (max-width: 767px) {
  .faq {
    padding: 60px 0 60px 0;
  }
}

.faq-unit {
  border-bottom: 0.5px solid #484848;
  padding-bottom: 10px;
}

.faq-unit__header,
.faq-unit__body {
  display: grid;
  grid-template-columns: 2em 1fr;
  gap: 10px;
  align-items: start;
}

.faq-unit__header {
  cursor: pointer;
  padding: 30px 30px 20px 10px;
  background: url("../img/faq-plus.svg") no-repeat 98% center;
}

.faq-unit dd {
  display: none;
}

.faq-unit__body {
  padding: 20px 30px 10px 10px;
  background: #fef5ee url("../img/faq-minus.svg") no-repeat 98% 20px;
}

.faq-unit__q {
  color: #3083c3;
}

.faq-unit__a {
  color: #fa8e29;
}

.faq-unit__q,
.faq-unit__a {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  font-family: var(--font-en);
}

.faq-unit__title {
  font-size: 1.8rem;
  font-weight: 700;
}

@media all and (max-width: 767px) {
  .faq-unit__title {
    font-size: 1.6rem;
  }
}

.faq-unit__text {
  font-size: 1.6rem;
}

@media all and (max-width: 767px) {
  .faq-unit__text {
    font-size: 1.4rem;
  }
}

.faq table th {
  width: 6em;
}

/* =========================
  footer
========================= */
.pagetop {
  transition: opacity 1s;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 5px;
  bottom: 50px;
}

@media all and (max-width: 767px) {
  .pagetop {
    right: 20px;
    bottom: 92px;
  }
}

.pagetop--fadein {
  opacity: 1;
  pointer-events: auto;
}

.footer {
  display: grid;
  gap: 30px;
  padding: 80px var(--site-padding);
  text-align: center;
}

@media all and (max-width: 767px) {
  .footer {
    padding-block: 60px 100px;
  }
}

.footer-copy {
  font-size: 1.2rem;
  color: #969696;
}

/*==================================================
sp-nav
==================================================*/
.sp-nav {
  display: none;
}

@media all and (max-width: 767px) {
  .sp-nav {
    position: fixed;
    z-index: 999;
    left: 0;
    bottom: 0;
    width: 100%;
    display: grid;
    align-items: end;
    grid-template-columns: 1fr 64px;
  }

  .sp-nav__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: linear-gradient(180deg, #fff 0%, #fff4cc 50%, #ffd581 100%);
    border-top: 2px solid #3083c3;
  }

  .sp-nav__list a {
    display: grid;
    place-content: end center;
    height: 65px;
    padding: 5px;
    font-size: 1.3rem;
    color: #000;
    font-weight: 700;
  }

  .sp-nav__list a img {
    display: block;
    margin: 0 auto 2px auto;
  }

  .sp-nav__list li:nth-child(2) {
    position: relative;
  }

  .sp-nav__list li:nth-child(2):before,
  .sp-nav__list li:nth-child(2):after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    margin: auto;
    height: calc(100% - 20px);
  }

  .sp-nav__list li:nth-child(2):before {
    left: 0;
    border-left: 1px solid #3083c3;
  }

  .sp-nav__list li:nth-child(2):after {
    right: 0;
    border-left: 1px solid #3083c3;
  }

  .sp-nav__menu {
    display: grid;
    place-items: end center;
    place-content: end center;
    gap: 20px;
    height: 83px;
    padding-bottom: 8px;
    border-radius: 24px 0 0 0;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    background: #3083c3;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
  }

  .sp-nav__button {
    display: grid;
    gap: 10px;
    justify-content: center;
  }

  .sp-nav__button svg {
    margin: 0 auto;
  }
}

/*JS*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-slider * {
  outline: none;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 50px;
  width: 50px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev {
  left: -20px;
}

.slick-next {
  right: -20px;
}

.slick-dots {
  position: absolute;
  bottom: -20px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: red;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
}

.slick-dots li button:focus,
.slick-dots li button:hover {
  outline: none;
}

.slick-dots li.slick-active button {
  background: blue;
}

/*SASS MODULE*/

@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .cta-contents.margin-bottom-0 {
    margin-bottom: 0;
  }
}

.popup-bg {
  visibility: hidden;
  transition: opacity .3s;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
}

.popup-bg.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}


.summer_btn{
	text-align: center;
	margin-bottom: 30px;
}
.summer_text01{
	text-align: center;
	color: #005AA0;
	font-size: 27px;
	font-weight: bold;
	margin-bottom: 50px;
}
.summer_text02{
	text-align: center;
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
.summer_btn{
	text-align: center;
	margin-bottom: 20px;
}
.summer_text01{
	text-align: center;
	color: #005AA0;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 30px;
}
.summer_text02{
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 30px;
}
}

.lp_youtube {
	width: 70%;
	aspect-ratio: 16 / 9;
	margin: 20px auto;
}
.lp_youtube iframe {
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 768px) {
.lp_youtube {
	width: 100%;
	aspect-ratio: 16 / 9;
	margin: 20px auto;
}
.lp_youtube iframe {
	width: 100%;
	height: 100%;
}
}
.img01{
	text-align: center;
	margin-bottom: 30px;
}
.img01 img{
	width: 100%;
}

.event-box {
	position: relative;
	padding: 40px 50px 35px 50px;
	border-radius: 16px;
	background: #fffde7;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
	margin-bottom: 60px;
}

@media all and (max-width: 1023px) {
  .event-box {
    padding: 50px 25px;
  }
}

@media all and (max-width: 767px) {
  .event-box {
    padding: 20px 10px;
  }
}
.event-text01{
	position:absolute;
	left: 50px;
	top: -15px;
	text-align: center;
	width: 200px;
	color: #FFF;
	background-color: #FA8E29;
	font-size: 20px;
	font-weight: bold;
	padding: 10px;
	border-radius: 100px;
}
@media all and (max-width: 767px) {
.event-text01{
	position:absolute;
	left: 20px;
	top: -20px;
	text-align: center;
	width: 100px;
	color: #FFF;
	background-color: #FA8E29;
	font-size: 14px;
	font-weight: bold;
	padding: 10px;
	border-radius: 100px;
}
}
.event-text02{
	text-align: center;
	color: #FA8E29;
	background: url("../img/event-text02.png") no-repeat center bottom;
	font-size: 30px;
	font-weight: bold;
	padding: 0px 0px 30px 0px;
	margin: 0px 0px 15px 0px;
}
@media all and (max-width: 767px) {
.event-text02{
	text-align: center;
	color: #FA8E29;
	background: url("../img/event-text02.png") no-repeat center bottom;
	font-size: 20px;
	font-weight: bold;
	padding: 0px 0px 30px 0px;
	margin: 0px 0px 5px 0px;
}
}
.event-text03 {
	width: fit-content;
	margin-inline: auto;
	display: flex;
	gap: 20px;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
	margin-bottom: 20px;
	text-align: center;
	font-weight: 700;
	font-size: 22px;
	color: #1499DD;
}
.event-text03:after,
.event-text03:before {
	content: '';
	display: block;
	width: 86px;
	height: 6px;
	background: url("../img/strength-dots.svg") no-repeat center;
}

@media all and (max-width: 767px) {
.event-text03 {
    font-size: 16px;
	gap: 0px;
  }
.event-text03:after,
.event-text03:before {
	content: '';
	display: block;
	width: 50px;
	height: 6px;
	background: none;
}
}

.event-table01{
	color: #00599F;
	width: 90%;
	margin: 0 auto 20px auto;
}
.event-table01 th{
	width: 20%;
	padding: 10px;
}
.event-table01 th span{
	background: #FFF;
	font-size: 18px;
	font-weight: bold;
	border: #00599F 2px solid;
	border-radius: 10px;
	padding: 5px 30px;
}
.event-table01 td{
	font-size: 20px;
	font-weight: bold;
}
@media all and (max-width: 767px) {
.event-table01{
	color: #00599F;
	width: 90%;
	margin: 0 auto 20px auto;
}
.event-table01 th{
	width: 20%;
	padding: 5px;
}
.event-table01 th span{
	background: #FFF;
	font-size: 12px;
	font-weight: bold;
	border: #00599F 2px solid;
	border-radius: 10px;
	padding: 5px 10px;
}
.event-table01 td{
	width: 80%;
	font-size: 16px;
	font-weight: bold;
}
}
	
.event-btn{
	text-align: center;
}
.event-btn img{
	width: 500px;
}
.event-img01{
	position:absolute;
	right: -50px;
	bottom: -30px;
	width: 150px;
}
@media all and (max-width: 767px) {
.event-btn{
	text-align: center;
}
.event-btn img{
	width: 90%;
}
.event-img01{
	position:absolute;
	right: 0px;
	bottom: -20px;
	width: 80px;
}
}