@charset "UTF-8";
/* ---------------------------------------------
アニメーション
-----------------------------------------------*/
.fadeRightTrigger,
.fadeLeftTrigger,
.fadeUpTrigger, .fadeInTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  backface-visibility: hidden;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.delay01 {
  animation-delay: 0.1s;
}

.delay02 {
  animation-delay: 0.2s;
}

.delay03 {
  animation-delay: 0.3s;
}

.delay04 {
  animation-delay: 0.4s;
}

.delay05 {
  animation-delay: 0.5s;
}

.delay06 {
  animation-delay: 0.6s;
}

.delay08 {
  animation-delay: 0.8s;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: "dnp-shuei-gothic-gin-std", "Zen Kaku Gothic Antique", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 1.6em;
  line-height: 1.6;
  color: #333;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  body {
    min-width: auto;
  }
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

img {
  border: 0;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  /*image-rendering: -webkit-optimize-contrast;*/
}
.safari img {
  image-rendering: inherit;
}

/* mouseover
--------------------------------------------------*/
@media screen and (mix-width: 768px) {
  .over:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
  }
}
label {
  cursor: pointer;
}

/* link
--------------------------------------------------*/
a {
  display: block;
  color: #333;
  transition: 0.3s;
  will-change: transform, opacity;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
    /*opacity: $opacity;*/
  }
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 420px) {
  a[href*="tel:"] {
    pointer-events: all;
  }
}

a, p, li, dt, dd {
  font-size: clamp(12px, 1.1111111111vw, 17px);
}

/* input
--------------------------------------------------*/
button {
  color: #333;
  transition: 0.3s;
  will-change: transform;
  letter-spacing: 0.05em;
}
button:focus {
  text-decoration: none;
}

.wide-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  width: 95%;
}

.wrapper {
  max-width: 1000px;
  width: 92%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrapper {
    width: 90%;
  }
}

.pc {
  display: block;
}

.sp, .ssp {
  display: none;
}

.pc-tb {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc, .ssp {
    display: none;
  }
  .sp, .pc-tb {
    display: block;
  }
}
@media screen and (max-width: 420px) {
  .sp, .ssp {
    display: block;
  }
  .pc-tb, .pc {
    display: none;
  }
}
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

footer {
  background: #F9F9F4;
  padding: 9rem 0 0;
}
footer .cp {
  background: #1D0907;
  text-align: center;
  color: #fff;
  padding: 0.7rem;
  font-size: 1.2rem;
  margin-top: 5vw;
}
@media screen and (max-width: 767px) {
  footer {
    margin: 0;
    padding: 10.6666666667vw 0 0;
  }
}

.footer_container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 8.4722222222vw;
}
@media screen and (max-width: 767px) {
  .footer_container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer_container .textbox {
  flex-basis: 40%;
}
.footer_container .textbox h1 {
  max-width: 12.8472222222vw;
  min-width: 130px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .footer_container .textbox h1 {
    min-width: auto;
    max-width: 34.6666666667vw;
  }
}
.footer_container .textbox p {
  font-size: 1.2rem;
  line-height: 1.7s;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .footer_container .textbox p {
    margin-top: 6.4vw;
  }
}
.footer_container .list li, .footer_container .list a {
  font-size: 1.2rem;
}
.footer_container .list a {
  display: inline;
  text-decoration: underline;
}

.l-nav {
  display: none;
}
@media screen and (max-width: 420px) {
  .is-fixed .l-nav {
    opacity: 1;
    pointer-events: all;
  }
  .l-nav-header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: spvw(100);
  }
  .l-nav__button {
    width: calc(100% - 3.5em);
    height: spvw(100);
    margin: 0 auto;
  }
  .l-nav__button a {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #a79280;
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}

.header {
  position: relative;
}
.header .logo {
  position: absolute;
  max-width: 12.8472222222vw;
  top: 1.6666666667vw;
  left: 2.4305555556vw;
  z-index: 4;
}
.header .burger_btn {
  display: none;
}
.header .nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  top: 1.1805555556vw;
  right: 1.0416666667vw;
  gap: 1.6666666667vw;
  z-index: 5;
}
.header .nav .link {
  font-size: clamp(11px, 1.0416666667vw, 15px);
  font-weight: 600;
}

.join.btn {
  width: 13.8888888889vw;
  max-width: 180px;
  background: #E8F017;
  position: relative;
  border-radius: 8rem;
  text-align: center;
  font-size: 1.7rem;
  font-weight: 600;
  padding: 0.9027777778vw 1rem;
  margin-left: 0.5555555556vw;
}
.join.btn::after {
  content: "";
  width: 1.0416666667vw;
  height: 1.0416666667vw;
  background: url(../images/yajirusi.svg) 0/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 1.5972222222vw;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .join.btn::after {
    width: 13px;
    height: 13px;
  }
}

@media (max-width: 750px) {
  .header .logo {
    max-width: 32vw;
    top: 20px;
    left: 20px;
    z-index: 102;
  }
  .header .burger_btn {
    display: block;
    position: fixed;
    top: 2.6666666667vw;
    right: 2.6666666667vw;
    width: 70px;
    height: 70px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 999;
    transition: all 0.3s ease;
    background: #E8F017;
  }
}
@media screen and (max-width: 750px) and (max-width: 420px) {
  .header .burger_btn {
    width: 13.3333333333vw;
    height: 13.3333333333vw;
  }
}
@media (max-width: 750px) {
  .header .burger_btn span {
    display: block;
    position: absolute;
    width: 50%;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
    left: 50%;
    transform: translateX(-50%);
  }
  .header .burger_btn span:nth-child(1) {
    top: 25px;
  }
}
@media screen and (max-width: 750px) and (max-width: 420px) {
  .header .burger_btn span:nth-child(1) {
    top: 4.8vw;
  }
}
@media (max-width: 750px) {
  .header .burger_btn span:nth-child(2) {
    top: 35px;
  }
}
@media screen and (max-width: 750px) and (max-width: 420px) {
  .header .burger_btn span:nth-child(2) {
    top: 6.6666666667vw;
  }
}
@media (max-width: 750px) {
  .header .burger_btn span:nth-child(3) {
    top: 45px;
  }
}
@media screen and (max-width: 750px) and (max-width: 420px) {
  .header .burger_btn span:nth-child(3) {
    top: 8.5333333333vw;
  }
}
@media (max-width: 750px) {
  .header .burger_btn.is-active span:nth-child(1) {
    top: 35px;
    transform: translateX(-50%) rotate(45deg);
  }
}
@media screen and (max-width: 750px) and (max-width: 420px) {
  .header .burger_btn.is-active span:nth-child(1) {
    top: 6.6666666667vw;
  }
}
@media (max-width: 750px) {
  .header .burger_btn.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header .burger_btn.is-active span:nth-child(3) {
    top: 35px;
    transform: translateX(-50%) rotate(-45deg);
  }
}
@media screen and (max-width: 750px) and (max-width: 420px) {
  .header .burger_btn.is-active span:nth-child(3) {
    top: 6.6666666667vw;
  }
}
@media (max-width: 750px) {
  .header .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #F9F9F4;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 30px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 990;
    padding: 24vw 20px 16vw 13.3333333333vw;
    background: url(../images/header_bg.webp) 0/cover no-repeat;
  }
  .header .nav.is-active {
    transform: translateX(0);
  }
  .header .nav .link {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
  }
  .header .nav .link:not(.is-active) .link {
    opacity: 0;
    transform: translateX(20px);
  }
  .nav.is-active .header .nav .link {
    opacity: 1;
    transform: translateX(0);
  }
  .nav.is-active .header .nav .link:nth-child(1) {
    transition-delay: 0.15s;
  }
  .nav.is-active .header .nav .link:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav.is-active .header .nav .link:nth-child(3) {
    transition-delay: 0.25s;
  }
  .nav.is-active .header .nav .link:nth-child(4) {
    transition-delay: 0.3s;
  }
  .nav.is-active .header .nav .link:nth-child(5) {
    transition-delay: 0.35s;
  }
  .nav.is-active .header .nav .link:nth-child(6) {
    transition-delay: 0.4s;
  }
  .nav.is-active .header .nav .link:nth-child(7) {
    transition-delay: 0.45s;
  }
  .nav.is-active .header .nav .link:nth-child(8) {
    transition-delay: 0.5s;
  }
  .nav.is-active .header .nav .link:nth-child(9) {
    transition-delay: 0.55s;
  }
  .nav.is-active .header .nav .link:nth-child(10) {
    transition-delay: 0.6s;
  }
  .join.btn {
    width: 69.3333333333vw;
    max-width: none;
    margin-left: 0;
    padding: 12px 1rem;
    background: #E8F017;
    color: #333 !important;
  }
  .join.btn::after {
    width: 13px;
    height: 13px;
    right: 20px;
  }
  .nav::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: -1;
  }
  .nav.is-active::before {
    opacity: 1;
    visibility: visible;
  }
  body.menu-open {
    overflow: hidden;
  }
}
.fv {
  background: #F9F9F4;
  position: relative;
  aspect-ratio: 1440/821;
  overflow: hidden;
}
.fv::before {
  content: "";
  background: url(../images/fv_circle.webp) 0/contain no-repeat;
  width: 22.4305555556vw;
  height: 19.7916666667vw;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .fv {
    aspect-ratio: 320/568;
  }
}
.fv .fv_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 4.8611111111vw;
  padding-top: 10.7638888889vw;
  margin: 0 3.0555555556vw 0 7.7777777778vw;
}
@media screen and (max-width: 767px) {
  .fv .fv_container {
    flex-direction: column;
    margin: 8vw 5.3333333333vw;
  }
}
.fv .fv_container .fv_cp {
  flex-basis: 31.5972222222vw;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .fv .fv_container .fv_cp {
    width: 95%;
  }
  .fv .fv_container .fv_cp h2 {
    width: 80%;
  }
}
.fv .fv_container .text {
  font-size: clamp(14px, 1.3194444444vw, 20px);
  font-weight: 600;
  line-height: 2.1;
  margin: 1.9444444444vw 0 0 0.6944444444vw;
}
@media screen and (max-width: 767px) {
  .fv .fv_container .text {
    font-size: clamp(16px, 4.8vw, 20px);
    line-height: 1.8;
  }
}
.fv .fv_container .img {
  flex-basis: 52.6388888889vw;
}
@media screen and (max-width: 767px) {
  .fv .fv_container .img {
    width: 100%;
  }
}
.fv .fv_container .img img {
  border-radius: 2.7777777778vw;
}
.fv .fvimg {
  width: 13.0555555556vw;
  height: 9.0277777778vw;
  position: absolute;
  left: 1.8055555556vw;
  bottom: 7.8472222222vw;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .fv .fvimg {
    display: none;
  }
}
.fv .fvimg_02 {
  width: 15.9722222222vw;
  height: 9.7222222222vw;
  position: absolute;
  right: 4.0277777778vw;
  bottom: 8.6805555556vw;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .fv .fvimg_02 {
    width: 48vw;
    bottom: 37.3333333333vw;
  }
}

.scroll-list {
  display: flex;
  list-style: none;
  padding-inline: 0;
  margin-inline: 0;
  gap: 0;
  overflow: hidden;
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
}

/* liタグ */
.scroll-list .item {
  color: #fff;
  font-weight: bold;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  font-family: gill-sans-nova, sans-serif;
  font-size: 9.4444444444vw;
  font-style: italic;
  font-weight: 500;
  animation: marquee-left 50s linear infinite;
  letter-spacing: 0.01em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .scroll-list .item {
    font-size: 21.3333333333vw;
  }
}

.scroll_second {
  position: relative;
  overflow: hidden;
  top: 75px;
}
.scroll_second .second .item {
  color: #F9F9F4;
  line-height: 1;
}

/* アニメーション */
@keyframes marquee-left {
  100% {
    transform: translateX(-100%);
  }
}
.bg {
  background: #F9F9F4;
}
@media screen and (max-width: 767px) {
  .bg {
    padding-bottom: 4rem;
  }
}

.entry {
  background: #E8F017;
  position: relative;
  border-radius: 8rem;
  text-align: center;
  font-size: 1.7rem;
  font-size: clamp(12px, 1.1111111111vw, 17px);
  font-weight: 600;
  padding: 1.6rem 1.8rem;
  margin: 4rem auto 0;
  width: 19.4444444444vw;
  max-width: 290px;
}
@media screen and (max-width: 767px) {
  .entry {
    width: 80%;
    max-width: none;
    padding: 1rem 2rem;
    font-size: 1.4rem;
  }
}
.entry::after {
  content: "";
  width: 1.0416666667vw;
  height: 1.0416666667vw;
  background: url(../images/yajirusi.svg) 0/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 1.9444444444vw;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .entry::after {
    width: 13px;
    height: 13px;
    right: 20px;
  }
}
.entry:hover {
  opacity: 0.7;
}

h2.border {
  position: relative;
  font-size: clamp(24px, 2.6388888889vw, 40px);
  font-weight: 600;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  width: fit-content;
  margin: 0 auto;
}
h2.border::after {
  content: "";
  width: 100%;
  background: #333;
  bottom: 0;
  position: absolute;
  left: 0;
  height: 2px;
}
@media screen and (max-width: 767px) {
  h2.border {
    font-size: clamp(22px, 6.4vw, 26px);
  }
}

.ttl span {
  color: #00BB67;
  display: block;
  text-align: center;
  font-style: italic;
  font-size: clamp(12px, 1.1111111111vw, 18px);
}
.ttl .jp {
  font-size: clamp(13px, 1.1111111111vw, 18px);
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-style: normal;
  color: #333;
  display: inline;
}

/*--------------------  概要  ---------------------*/
.about {
  padding: 2.7777777778vw 1.3888888889vw 14.5833333333vw;
  padding: 2.7777777778vw 1.3888888889vw 11.8055555556vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 10.6666666667vw 1.3888888889vw 18.6666666667vw;
  }
}
.about::after {
  content: "";
  width: 100%;
  height: 13.8888888889vw;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: url(../images/curve.webp) 0/cover no-repeat;
}
.about .top_ttl {
  font-size: clamp(18px, 1.7361111111vw, 27px);
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about .top_ttl {
    font-size: clamp(16px, 1.3888888889vw, 21px);
  }
}
.about .top_ttl span {
  color: #00BB67;
}
.about .about_text {
  max-width: 47.7083333333vw;
  margin: 4.4444444444vw auto 0;
  line-height: 2.1;
}
.about .about_text h3 {
  font-size: clamp(18px, 1.6666666667vw, 26px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.7777777778vw;
}
@media screen and (max-width: 1080px) {
  .about .about_text {
    max-width: none;
    width: 60%;
  }
}
.about .about_text p {
  line-height: 2.1;
  font-size: clamp(14px, 1.25vw, 20px);
}
@media screen and (max-width: 767px) {
  .about .about_text {
    max-width: none;
    width: 90%;
  }
  .about .about_text h3 {
    font-size: clamp(16px, 1.3888888889vw, 20px);
    line-height: 1.7;
    margin: 8.5333333333vw 0 6.4vw;
  }
}
.about .about_01 {
  width: 4.9305555556vw;
  height: 9.3055555556vw;
  position: absolute;
  top: 0;
  right: 22.9166666667vw;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .about .about_01 {
    width: 10.6666666667vw;
    right: 8vw;
  }
}
.about .about_02 {
  width: 9.5138888889vw;
  height: 7.5vw;
  position: absolute;
  bottom: 12.5694444444vw;
  z-index: 2;
  left: 10.625vw;
}
@media screen and (max-width: 767px) {
  .about .about_02 {
    width: 21.3333333333vw;
    left: 5.3333333333vw;
  }
}
.about .about_03 {
  width: 7.2222222222vw;
  height: 2.9166666667vw;
  position: absolute;
  z-index: 1;
  bottom: 0.2083333333vw;
  right: 12.8472222222vw;
}
@media screen and (max-width: 767px) {
  .about .about_03 {
    width: 15.4666666667vw;
  }
}

.about_add.about_text {
  margin: 2.7777777778vw auto;
}
.about_add.about_text .andmore {
  color: #00BB67;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  width: 200px;
  margin: 4.1666666667vw auto;
  font-family: gill-sans-nova, sans-serif;
  font-size: clamp(13px, 1.1111111111vw, 17px);
  border-bottom: 2px solid #00BB67;
  z-index: 30;
}
@media screen and (max-width: 767px) {
  .about_add.about_text .andmore {
    margin-top: 15.4666666667vw;
  }
}
.about_add.about_text .andmore span img {
  width: 0.9722222222vw;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .about_add.about_text .andmore span img {
    width: 8vw;
  }
}
.about_add.about_text .andmore::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  width: 1.0416666667vw;
  height: 1.0416666667vw;
  background: url(../images/moreread.svg) 0/contain no-repeat;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .about_add.about_text .andmore::after {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
  }
}
.about_add.about_text .andmore:hover {
  transform: scale(1.1);
}

.modaal {
  display: none;
}

.modaal-wrapper .modaal-close {
  background: #00BB67;
}

.modaal-close::after, .modaal-close::before {
  background: #fff !important;
}

.modaal-container {
  border-radius: 6.9444444444vw;
  padding: 4.8611111111vw 10px;
}
@media screen and (max-width: 767px) {
  .modaal-container {
    border-radius: 13.3333333333vw;
    padding: 12.8vw 0;
  }
}

.modaal-content-container .about_add__content {
  width: 70%;
  max-width: 47.7083333333vw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .modaal-content-container .about_add__content {
    max-width: none;
    width: 100%;
  }
}
.modaal-content-container .about_add__content h2 {
  margin: 0 auto;
  text-align: center;
  font-size: clamp(24px, 2.0833333333vw, 31px);
}
@media screen and (max-width: 767px) {
  .modaal-content-container .about_add__content h2 {
    margin-bottom: 10.6666666667vw;
  }
}
.modaal-content-container .about_add__content h3 {
  margin: 2.9166666667vw 0;
  border-bottom: 2px solid #00BB67;
  width: fit-content;
  margin: 3.125vw auto 2.7777777778vw;
  padding-bottom: 4px;
  font-size: clamp(20px, 1.6666666667vw, 25px);
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .modaal-content-container .about_add__content h3 {
    margin: 4.2666666667vw 0;
    font-size: clamp(18px, 5.3333333333vw, 20px);
    text-align: left;
  }
}
.modaal-content-container .about_add__content p {
  margin: 0 auto;
  font-weight: 400;
}
.modaal-content-container .about_add__content p strong {
  font-weight: 700;
}
@media screen and (max-width: 420px) {
  .modaal-content-container .about_add__content p {
    width: 100%;
    max-width: none;
  }
}
.modaal-content-container .about_add__content .toobold {
  font-weight: 700;
  font-size: clamp(13px, 1.1805555556vw, 18px);
}
.modaal-content-container .about_add__content p:not(:first-child) {
  margin-top: 1.1111111111vw;
}
@media screen and (max-width: 767px) {
  .modaal-content-container .about_add__content p:not(:first-child) {
    width: 100%;
    text-align: left;
    margin-top: 2.6666666667vw;
  }
}

/*--------------------  講座の特徴  ---------------------*/
.features {
  background: #EAF4E8;
}
@media screen and (max-width: 767px) {
  .features {
    padding: 12.8vw 0 0;
  }
}
.features .wide-wrapper {
  padding: 0 1.3888888889vw;
}
.features .features_container {
  margin-top: 5.5555555556vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.7777777778vw 1.5277777778vw;
}
@media screen and (max-width: 767px) {
  .features .features_container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.6666666667vw;
  }
}
.features .features_container .boxes h3 {
  font-family: gill-sans-nova, sans-serif;
  font-size: clamp(20px, 2.0833333333vw, 32px);
  text-align: center;
}
.features .features_container .boxes .item {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3rem;
  height: 14.3055555556vw;
  margin-top: 1.3888888889vw;
  filter: drop-shadow(0 0 10px rgba(22, 121, 0, 0.16));
}
.features .features_container .boxes .item p {
  font-size: clamp(13px, 1.3888888889vw, 22px);
  text-align: center;
}
.features .features_container .boxes .item p strong {
  font-weight: 600;
  color: #00BB67;
  font-size: clamp(15px, 1.6666666667vw, 26px);
}
@media screen and (max-width: 767px) {
  .features .features_container .boxes .item {
    height: 34.6666666667vw;
  }
  .features .features_container .boxes .item p {
    font-size: clamp(11px, 0.8333333333vw, 14px);
  }
  .features .features_container .boxes .item p strong {
    font-size: clamp(14px, 0.9722222222vw, 16px);
  }
}
.features .features_img {
  width: 9.5833333333vw;
  height: 10.7638888889vw;
  margin: 0.3472222222vw auto 0 11.1111111111vw;
}
@media screen and (max-width: 767px) {
  .features .features_img {
    width: 21.3333333333vw;
    height: 21.3333333333vw;
    margin-top: 4vw;
  }
}

/*--------------------  こんな方におすすめ  ---------------------*/
.recommend {
  background: linear-gradient(180deg, #EAF4E8 0%, #EAF4E8 50%, #F9F9F4 50%, #F9F9F4 100%);
}
.recommend .recommend_contents {
  background: #fff;
  border-radius: 15.9722222222vw;
  filter: drop-shadow(0 0 10px rgba(22, 121, 0, 0.2));
  padding: 8.3333333333vw 2rem 7.8472222222vw;
  max-width: 89.0277777778vw;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .recommend .recommend_contents {
    max-width: none;
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .recommend .recommend_contents {
    padding: 12.8vw 2rem;
    width: 90%;
  }
}
.recommend .recommend_container {
  display: flex;
  justify-content: center;
  gap: 4.0277777778vw;
  width: 90%;
  margin: 3.3333333333vw auto 0;
}
.recommend .recommend_container .box {
  width: 19.4444444444vw;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: column;
  gap: 1.3888888889vw;
}
@media screen and (max-width: 1080px) {
  .recommend .recommend_container .box {
    max-width: none;
    width: 28%;
  }
}
.recommend .recommend_container .box .img {
  max-width: 11.8055555556vw;
}
.recommend .recommend_container .box p {
  font-size: clamp(12px, 1.25vw, 19px);
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .recommend .recommend_container {
    flex-direction: column;
    margin-top: 8.5333333333vw;
    gap: 5.3333333333vw;
  }
  .recommend .recommend_container .box {
    width: 100%;
  }
  .recommend .recommend_container .box .img {
    max-width: 37.3333333333vw;
  }
  .recommend .recommend_container .box p {
    font-size: clamp(14px, 1.1111111111vw, 16px);
  }
}

.wave {
  background: url(../images/wave-path.webp) bottom repeat-x;
  background-size: 60px;
  padding-bottom: 6px;
}

/*--------------------  各回ラインナップ  ---------------------*/
.lineup {
  background: #F9F9F4;
  padding: 9.7222222222vw 2rem 0;
}
@media screen and (max-width: 767px) {
  .lineup {
    padding: 21.3333333333vw 1rem 0;
  }
}
.lineup .ttl {
  text-align: left;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .lineup .ttl {
    line-height: 1;
  }
  .lineup .ttl.border::after {
    bottom: -7px;
  }
}
.lineup .ttl span {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .lineup .ttl span {
    margin-bottom: 3.2vw;
  }
}
.lineup .img01 {
  width: 8.6111111111vw;
  height: 10.5555555556vw;
  position: absolute;
  top: -10.5555555556vw;
  right: 30px;
}
@media screen and (min-width: 1600px) {
  .lineup .img01 {
    width: 140px;
    top: -9vw;
    height: 151px;
    right: 15px;
  }
  .lineup .img01 img {
    height: 151px;
    object-fit: contain;
  }
}
@media screen and (max-width: 767px) {
  .lineup .img01 {
    display: none;
  }
}
.lineup .theme {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2.7777777778vw;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .lineup .theme {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8333333333vw;
    margin-top: 6.4vw;
  }
}
.lineup .theme .catch {
  background: #fff;
  color: #00BB67;
  padding: 0.4166666667vw 1.25vw;
}
@media screen and (max-width: 767px) {
  .lineup .theme .catch {
    font-size: clamp(12px, 3.2vw, 14px);
  }
}
.lineup .theme .main-theme {
  font-size: clamp(20px, 1.8055555556vw, 28px);
}
.lineup .theme .main-theme span {
  color: #00BB67;
  margin: 0 0.3472222222vw;
}
@media screen and (max-width: 767px) {
  .lineup .theme .main-theme {
    font-size: clamp(16px, 4.8vw, 18px);
  }
}
.lineup .img02 {
  width: 19.7222222222vw;
  margin-top: 4.8611111111vw;
}
@media screen and (max-width: 767px) {
  .lineup .img02 {
    width: 32vw;
    margin: 8vw auto 0;
  }
}

.info-section {
  display: flex;
  gap: 1.3888888889vw;
  max-width: 1200px;
  margin: 4.1666666667vw auto 0;
}

.info-list {
  flex-basis: 50%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.info-list .info-list__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  border-bottom: 1px dashed #555;
}
.info-list .info-list__item:first-child {
  border-radius: 1.3888888889vw 0 0 0;
}
.info-list .info-list__item:first-child .num {
  border-radius: 1.3888888889vw 0 0 0;
}
.info-list .info-list__item:first-child .info-list__text {
  border-top: 1px dashed #555;
}
.info-list .info-list__item .num {
  background: #F5F7BB;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #333;
  padding: 0.6944444444vw 1.3888888889vw;
  flex-basis: 20%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .info-list .info-list__item .num {
    flex-basis: 16%;
  }
}
.info-list .info-list__item .info-list__text {
  padding: 0.9027777778vw 1.3888888889vw 0.9722222222vw;
  flex-basis: 80%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .info-list .info-list__item .info-list__text {
    flex-basis: 84%;
    padding: 2.1333333333vw 1.3333333333vw 2.1333333333vw 4.8vw;
  }
}
.info-list .info-list__item .info-list__text::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 16px;
  background: url(../images/faq.svg) no-repeat center;
  background-size: contain;
  transition: transform 0.3s ease;
  opacity: 0;
}
.info-list .info-list__item .info-list__text .date {
  color: #777;
  font-size: clamp(16px, 1.1805555556vw, 19px);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.info-list .info-list__item .info-list__text .date span {
  font-size: clamp(10px, 0.9722222222vw, 15px);
}
@media screen and (max-width: 767px) {
  .info-list .info-list__item .info-list__text .date {
    letter-spacing: 0 0.2em;
    font-size: clamp(14px, 1.0416666667vw, 16px);
  }
}
.info-list .info-list__item .info-list__text .line-ttl {
  color: #888E00;
  font-weight: 700;
  font-size: clamp(18px, 1.4583333333vw, 20px);
}
.info-list .info-list__item .info-list__text .history {
  font-weight: 700;
  font-size: clamp(16px, 1.25vw, 18px);
}
.info-list .info-list__item .info-list__text .history span {
  color: #777;
  margin-right: 0.5555555556vw;
  font-size: clamp(12px, 0.9722222222vw, 15px);
}
@media screen and (max-width: 767px) {
  .info-list .info-list__item .info-list__text .history {
    font-size: clamp(14px, 1.1111111111vw, 16px);
  }
  .info-list .info-list__item .info-list__text .history span {
    font-size: clamp(10px, 0.6944444444vw, 12px);
  }
}
.info-list .info-list__item:hover {
  background: #F9F9F4;
}
.info-list .info-list__item.is-active {
  color: #333;
}
.info-list__text {
  font-size: 16px;
  font-weight: 500;
}
.info-list .add {
  border-bottom: none;
}
.info-list .add .num {
  color: #fff;
  background: #00BB67;
  border-radius: 0 0 0 1.3888888889vw;
}
.info-list .add .date span {
  color: #00BB67;
}
.info-list .add .info-list__text {
  border-bottom: 1px dashed #555;
}
.info-list .add .info-list__text .line-ttl {
  color: #333;
}

.content-display {
  flex-basis: 50%;
  position: relative;
  min-height: 400px;
}
.content-display__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 300px;
  height: 100%;
  border-radius: 1.3888888889vw;
  overflow: visible;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.content-display__inner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.content-display__arrow {
  content: "";
  width: 18px;
  height: 2.7777777778vw;
  background: url(../images/lineup-arrow.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: -14px;
  z-index: 3;
  transition: top 0.3s ease;
  opacity: 0.8;
}
.content-display__body {
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  padding: 4.8611111111vw 4.1666666667vw;
  color: #fff;
  border-radius: 1.3888888889vw;
  min-height: 300px;
  height: 100%;
}
.content-display .date {
  display: flex;
  align-items: center;
  gap: 0.6944444444vw;
}
.content-display .date span {
  width: 0.9722222222vw;
  height: 0.9722222222vw;
}
.content-display .date span img {
  height: 0.9722222222vw;
  width: 0.9722222222vw;
  vertical-align: top;
}
.content-display__date {
  display: block;
  font-size: clamp(12px, 0.9722222222vw, 15px);
  color: #fff;
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
}
.content-display__title {
  font-size: clamp(24px, 2.2916666667vw, 38px);
  font-weight: 700;
  margin: 0.6944444444vw 0 0;
  line-height: 1.4;
}
.content-display__subtitle {
  font-size: clamp(18px, 1.5972222222vw, 24px);
  font-weight: 600;
  margin: 0.6944444444vw 0;
  line-height: 1.5;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  display: flex;
  gap: 0.6944444444vw;
  align-items: center;
}
.content-display__subtitle-text {
  color: #fff;
}
.content-display__category {
  display: block;
  font-size: clamp(12px, 0.9722222222vw, 16px);
  font-weight: 500;
  min-width: 48px;
}
@media screen and (max-width: 767px) {
  .content-display__category {
    min-width: none;
  }
}
.content-display__place {
  background: #E8F017;
  position: absolute;
  top: 1px;
  right: 3.125vw;
  padding: 0.8333333333vw 1.1111111111vw 0.6944444444vw;
  color: #333;
  border-radius: 0 0 10px 10px;
}
.content-display__text {
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 2;
  letter-spacing: 0.05em;
  margin: 2.5694444444vw 0 0;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  list-style: none;
}
.accordion-content__inner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  margin: 0;
}
.accordion-content__body {
  background: rgba(0, 0, 0, 0.6);
  padding: 10.6666666667vw 5.3333333333vw;
  color: #fff;
}
.accordion-content__body .date {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.accordion-content__body .date span {
  width: 3.2vw;
  height: 3.2vw;
}
.accordion-content__body .date span img {
  width: 100%;
  height: 100%;
}
.accordion-content__body .date span img {
  vertical-align: top;
  height: 3.2vw;
}
.accordion-content__body .date time {
  font-size: 13px;
  color: #fff;
}
.accordion-content__title {
  font-size: clamp(20px, 6.1333333333vw, 24px);
  font-weight: 700;
  margin: 10px 0;
  line-height: 1.4;
}
.accordion-content__subtitle {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0;
  padding: 10px 0;
  line-height: 1.5;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  display: flex;
  gap: 8px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .accordion-content__subtitle {
    font-size: clamp(16px, 4.2666666667vw, 20px);
  }
}
.accordion-content__category {
  font-size: clamp(10px, 2.6666666667vw, 12px);
  font-weight: 500;
}
.accordion-content__subtitle-text {
  color: #fff;
}
.accordion-content__place {
  background: rgba(255, 255, 255, 0.8);
  display: inline-block;
  padding: 3px 16px;
  color: #00BB67;
  border-radius: 5px;
  margin: 10px 0;
  font-size: 14px;
}
.accordion-content__text {
  font-size: clamp(13px, 3.7333333333vw, 16px);
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-top: 2.6666666667vw;
}

@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
    gap: 30px;
  }
  .info-section .info-list {
    flex: 1;
  }
  .info-section .info-list__item {
    cursor: pointer;
  }
  .info-section .info-list__item .info-list__text::after {
    opacity: 1;
  }
  .info-section .info-list__item.is-open {
    background: #F9F9F4;
  }
  .info-section .info-list__item.is-open .info-list__text::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .info-section .info-list__item:hover {
    background: #F9F9F4;
  }
  .info-section .info-list__item.add {
    cursor: default;
  }
  .info-section .info-list__item.add .info-list__text::after {
    opacity: 0;
  }
  .info-section .info-list__item.add:hover {
    background: transparent;
  }
  .content-display {
    display: none;
  }
}
/*--------------------  学びの流れ  ---------------------*/
.flow {
  background: #F9F9F4;
}
.flow .flow_content {
  background: url(../images/curve.webp), #fff;
  background-repeat: no-repeat, no-repeat;
  background-position: bottom, top;
  background-size: contain, 100%;
  padding: 11.1111111111vw 0 11.1111111111vw;
  border-radius: 16.6666666667vw 16.6666666667vw 0 0;
}
@media screen and (max-width: 767px) {
  .flow .flow_content {
    padding: 17.0666666667vw 0 6.9444444444vw;
    border-radius: 26.6666666667vw 26.6666666667vw 0 0;
  }
}
.flow .flow_container {
  margin-top: 5.5555555556vw;
}
@media screen and (max-width: 767px) {
  .flow .flow_container {
    margin-top: 10.6666666667vw;
  }
}
.flow h3 {
  font-size: clamp(18px, 1.6666666667vw, 25px);
}
.flow h3 span {
  font-size: clamp(12px, 0.9722222222vw, 16px);
}
.flow .flow_box {
  position: relative;
  background: #F9F9F4;
  border-radius: 2.0833333333vw;
  margin-bottom: 1.3888888889vw;
  padding: 2.7777777778vw 2.2222222222vw 3.3333333333vw 3.8194444444vw;
  width: 95%;
  margin: 0 0 1.3888888889vw auto;
  max-width: 256vw;
}
@media screen and (max-width: 1080px) {
  .flow .flow_box {
    padding-left: 6.9444444444vw;
  }
}
@media screen and (max-width: 767px) {
  .flow .flow_box {
    margin: 0 auto 5.3333333333vw;
    padding: 6.4vw 6.4vw 6.4vw 10.6666666667vw;
  }
}
.flow .flow_box .num {
  width: 5.5555555556vw;
  height: 5.5555555556vw;
  position: absolute;
  top: -3%;
  left: -4%;
}
@media screen and (max-width: 767px) {
  .flow .flow_box .num {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
.flow .flow_box .container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.flow .flow_box .container .entry {
  flex-basis: 40%;
}
@media screen and (max-width: 767px) {
  .flow .flow_box .container {
    flex-direction: column;
    gap: 2rem;
  }
  .flow .flow_box .container .entry {
    margin-top: 0;
  }
}
.flow .flow_box .txt {
  margin-top: 1.3888888889vw;
  font-size: clamp(12px, 0.9722222222vw, 16px);
}
.flow .flow_box::after {
  content: "";
  width: 2.2916666667vw;
  height: 1.25vw;
  background: url(../images/triangle_icon.svg) 0/contain no-repeat;
  position: absolute;
  bottom: -6%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .flow .flow_box::after {
    width: 10.6666666667vw;
    height: 3.2vw;
    bottom: -5%;
  }
}
.flow .flow_box:nth-child(3)::after {
  content: none;
}
.flow .flow_box .intensive_flow {
  max-width: 56.0416666667vw;
  margin: 1.6666666667vw 1.3888888889vw 0 2.7777777778vw;
}
@media screen and (max-width: 767px) {
  .flow .flow_box .intensive_flow {
    max-width: none;
    width: 100%;
    margin: 6.4vw auto 0;
  }
}
.flow .flow_box .other_ttl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 0.5555555556vw;
}
.flow .flow_box .other_ttl span {
  width: 1.8055555556vw;
  height: 1.3888888889vw;
  display: inline;
}
.flow .flow_box .other_ttl span img {
  height: 1.3888888889vw;
}
@media screen and (max-width: 767px) {
  .flow .flow_box .other_ttl {
    gap: 1.3333333333vw;
  }
  .flow .flow_box .other_ttl span {
    width: 5.3333333333vw;
    height: 4.8vw;
  }
  .flow .flow_box .other_ttl span img {
    height: 4.8vw;
  }
}
.flow .flow_box ul {
  width: 93%;
  margin: 1.5277777778vw 0 0 auto;
}
.flow .flow_box ul li {
  list-style: disc;
  font-weight: 500;
  margin-top: 0.3472222222vw;
}
.flow .line {
  width: 100%;
  background: url(../images/flow_bgdod.svg) 0/contain repeat-x;
  height: 0.5555555556vw;
  margin: 2.7777777778vw auto;
}
@media screen and (max-width: 767px) {
  .flow .line {
    height: 2.1333333333vw;
    margin: 6.4vw auto;
  }
}

.flow_comment.flow_box {
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow_comment.flow_box {
    padding: 6.4vw 6.4vw 18.6666666667vw 6.4vw;
  }
  .flow_comment.flow_box .other_ttl {
    margin-bottom: 4.2666666667vw;
  }
}
.flow_comment.flow_box::before {
  content: "";
  width: 10.9027777778vw;
  height: 8.6805555556vw;
  background: url(../images/flow_flower.webp) 0/contain no-repeat;
  position: absolute;
  bottom: 0;
  right: 3%;
  z-index: 10;
  max-width: 140px;
  max-height: 113px;
}
@media screen and (max-width: 767px) {
  .flow_comment.flow_box::before {
    width: 21.3333333333vw;
    height: 21.3333333333vw;
    background-position: bottom;
  }
}
@media screen and (min-width: 1400px) {
  .flow_comment.flow_box {
    padding-bottom: 4.8611111111vw;
  }
}

/*--------------------  講師紹介  ---------------------*/
.teachers {
  background: #EAF4E8;
  padding-bottom: 11.1111111111vw;
}
@media screen and (max-width: 767px) {
  .teachers {
    padding: 12.8vw 0 18.6666666667vw;
  }
}
.teachers .teachers_box {
  background: #fff;
  border-radius: 2.7777777778vw;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 2.0833333333vw 3.4722222222vw;
  gap: 2.7777777778vw;
  margin: 4.4444444444vw auto 0;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .teachers .teachers_box {
    width: 90%;
    margin-top: 8.5333333333vw;
    flex-direction: column;
    padding: 8.5333333333vw 5.3333333333vw;
  }
}
.teachers .teachers_box .img {
  width: 13.8888888889vw;
}
@media screen and (max-width: 767px) {
  .teachers .teachers_box .img {
    width: 32vw;
  }
}
.teachers .teachers_box .text {
  width: 41.6666666667vw;
}
@media screen and (max-width: 767px) {
  .teachers .teachers_box .text {
    width: 95%;
  }
}
.teachers .teachers_box .text .name {
  font-size: clamp(14px, 1.25vw, 19px);
  font-weight: 600;
}
.teachers .teachers_box .text .name .guest {
  margin-left: 0;
  font-style: normal;
  color: #888;
}
.teachers .teachers_box .text .name span {
  color: #00BB67;
  font-size: clamp(10px, 0.8333333333vw, 13px);
  font-style: italic;
  margin-left: 1.3888888889vw;
}
@media screen and (max-width: 767px) {
  .teachers .teachers_box .text .name {
    text-align: center;
    margin-top: 3.7333333333vw;
  }
}
.teachers .teachers_box .text p {
  font-size: clamp(12px, 0.9722222222vw, 14px);
  margin-top: 2.2222222222vw;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .teachers .teachers_box .text p {
    margin-top: 5.3333333333vw;
  }
}
.teachers .teachers_box .text p .link {
  margin-top: 1rem;
  font-size: clamp(10px, 0.7638888889vw, 12px);
  display: block;
  color: #888;
}
.teachers .teachers_box .text p .link span img {
  transform: rotate(-90deg);
  transform: rotate(-90deg);
  width: 10px;
  height: 10px;
  vertical-align: baseline;
  margin-left: 10px;
  opacity: 0.8;
}
.teachers .imgbox {
  margin-top: 1.3888888889vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .teachers .imgbox {
    margin-top: 5.3333333333vw;
  }
}
.teachers .imgbox::after {
  content: "";
  width: 8.4027777778vw;
  height: 12.4305555556vw;
  background: url(../images/teacher01.webp) 0/contain no-repeat;
  position: absolute;
  bottom: -36%;
  right: -8%;
}
@media screen and (max-width: 767px) {
  .teachers .imgbox::after {
    bottom: -10%;
    width: 16vw;
    height: 23.7333333333vw;
  }
}

/* -------------------  よくある質問  ----------------------- */
.faq {
  margin-top: 12.5vw;
}
@media screen and (max-width: 767px) {
  .faq {
    margin-top: 17.0666666667vw;
  }
}
.faq .faq_container {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .faq .faq_container {
    padding-bottom: 21.3333333333vw;
  }
}
.faq .faq_container .img {
  position: absolute;
  width: 10.2083333333vw;
  height: 8.6111111111vw;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .faq .faq_container .img {
    width: 21.3333333333vw;
    height: 18.6666666667vw;
  }
}
.faq .faq_container .ttl {
  text-align: left;
  margin: 0 auto 0 0;
}
.faq .faq_container .ttl span {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .faq .faq_container {
    flex-direction: column;
    gap: 10.6666666667vw;
  }
  .faq .faq_container .ttl {
    margin-left: 5.3333333333vw;
  }
}

.accordion-area {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 51.3888888889vw;
  max-width: 830px;
}
@media screen and (max-width: 767px) {
  .accordion-area {
    width: 90%;
    margin: 0 auto;
  }
}
.accordion-area li {
  overflow: hidden;
}
.accordion-area li.is-open .title::after {
  transform: rotate(180deg);
}
.accordion-area li.is-open .box {
  margin-bottom: 10px;
}
.accordion-area .title {
  padding: 1.3888888889vw;
  font-size: clamp(14px, 1.1111111111vw, 18px);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
  user-select: none;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .accordion-area .title {
    padding: 3.4666666667vw 8vw 2.6666666667vw 2.6666666667vw;
    font-size: clamp(13px, 3.7333333333vw, 15px);
    text-indent: -2.2rem;
    padding-left: 2.2rem;
  }
}
.accordion-area .title span {
  font-family: gill-sans-nova, sans-serif;
  font-size: clamp(16px, 1.5277777778vw, 24px);
  color: #c6c6c6;
  margin-right: 0.3472222222vw;
}
@media screen and (max-width: 767px) {
  .accordion-area .title span {
    margin-right: 1.3333333333vw;
  }
}
.accordion-area .title::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 0.9027777778vw;
  height: 0.5555555556vw;
  background: url(../images/faq.svg) 0/contain no-repeat;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .accordion-area .title::after {
    width: 2.6666666667vw;
    height: 1.3333333333vw;
    right: 2.6666666667vw;
  }
}
.accordion-area .title:hover {
  opacity: 0.7s;
}
.accordion-area .bb {
  border-bottom: 1px solid #ccc;
}
.accordion-area .box {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  position: relative;
}
.accordion-area .box span {
  color: #00BB67;
  font-family: gill-sans-nova, sans-serif;
  font-size: clamp(16px, 1.5277777778vw, 24px);
  position: absolute;
  top: 1.3888888889vw;
  left: 1.6666666667vw;
}
@media screen and (max-width: 767px) {
  .accordion-area .box span {
    top: 2.6666666667vw;
    left: 3.2vw;
  }
}
.accordion-area .box p {
  margin: 0.6944444444vw 0 0;
  border-radius: 1.3888888889vw;
  background: #F9F9F4;
  padding: 3.4722222222vw;
  margin: 0;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .accordion-area .box p {
    padding: 8.5333333333vw 4.2666666667vw 4.2666666667vw 8.8vw;
  }
}

/* -------------------  実施概要  ----------------------- */
.overview {
  padding-top: 6.9444444444vw;
}
@media screen and (max-width: 767px) {
  .overview {
    padding-top: 17.0666666667vw;
  }
}
.overview .overview_table {
  margin-top: 4.1666666667vw;
}
@media screen and (max-width: 767px) {
  .overview .overview_table {
    margin-top: 12.8vw;
  }
}
.overview .overview_table dl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.overview .overview_table dl:first-child dt {
  border-radius: 1.3888888889vw 0 0 0;
}
.overview .overview_table dl:first-child dd {
  border-radius: 0 1.3888888889vw 0 0;
}
.overview .overview_table dl:last-child dt {
  border-radius: 0 0 0 1.3888888889vw;
  border-bottom: 1px solid #ccc;
}
.overview .overview_table dl:last-child dd {
  border-bottom: 1px solid #ccc;
  border-radius: 0 0 1.3888888889vw 0;
}
.overview .overview_table dl dt {
  flex-basis: 20%;
  background: #F9F9F4;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  flex-direction: column;
  color: #646464;
  padding-left: 2.6388888889vw;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.overview .overview_table dl dd {
  flex-basis: 80%;
  padding: 1.3888888889vw 4.0277777778vw;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.overview .overview_table dl dd .line {
  text-decoration: line-through;
}
.overview .overview_table dl dd ul li {
  list-style: disc;
  font-weight: 500;
}
.overview .overview_table dl dd .info_box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.overview .overview_table dl dd .info_box .entry {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .overview .overview_table dl {
    flex-direction: column;
  }
  .overview .overview_table dl dt {
    align-items: center;
    padding: 1.3333333333vw;
    border-right: 1px solid #ccc;
  }
  .overview .overview_table dl dd {
    padding: 5.3333333333vw 2.6666666667vw 5.3333333333vw 6.4vw;
    border-top: none;
  }
  .overview .overview_table dl .info_box {
    flex-direction: column;
    gap: 3.7333333333vw;
  }
  .overview .overview_table dl:first-child {
    border-radius: 2.6666666667vw 2.6666666667vw 0 0;
  }
  .overview .overview_table dl:last-child dt {
    border-radius: 0;
    border-bottom: none;
  }
  .overview .overview_table dl:last-child dd {
    border-radius: 0 0 2.6666666667vw 2.6666666667vw;
  }
}

/* -------------------  お問い合わせ  ----------------------- */
.contact {
  margin-top: 11.1111111111vw;
  background: url(../images/contact_bg.webp) 0/cover no-repeat;
  padding: 4.8611111111vw 2.0833333333vw;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 17.0666666667vw 2.0833333333vw;
  }
}
.contact .ttl {
  color: #fff;
}
.contact .ttl::after {
  background: #fff;
}
.contact .entry {
  font-family: gill-sans-nova, sans-serif;
}
@media screen and (max-width: 767px) {
  .contact .entry {
    margin-top: 6.4vw;
  }
}
.contact .ex {
  color: #fff;
  text-align: center;
  margin-top: 2.2222222222vw;
}