@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP&family=M+PLUS+Rounded+1c&family=Poppins:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
:root {
  --text-color: #005b43;
  --main-color: #1ca867;
  --pink: #d74e71;
  --orange: #ef8615;
  --bk: #000;
  --wh: #fff;
}

@font-face {
  font-family: "DIN2014";
  src: url("../fonts/din-2014.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

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

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

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

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

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

/* 三点リーダー 一行 */
/* 三点リーダー 複数行 */
/* 背景をテキストで切り取る */
/* ====================================================
HTML
==================================================== */
html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  color: var(--text-color);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  background: #fff;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 16px;
  }
}

.inner {
  width: 90%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
}
.inner.--1500 {
  max-width: 1500px;
}

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

a {
  text-decoration: none;
  color: var(--text-color);
}

/* ====================================================
SWIPER
==================================================== */
.swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ====================================================
LOADING
==================================================== */
body {
  animation: fadeIn 2s ease-out 0 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ====================================================
Animation
==================================================== */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.zoom-in.active {
  animation: zoom-in 1s ease-out forwards;
}

@keyframes zoom-in {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateX(9%);
    opacity: 1;
  }
}
.bounce-in.active {
  animation: bounceIn 1.5s ease-out;
}

@keyframes bounceIn {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  60% {
    transform: translateY(-10%);
    opacity: 1;
  }
  80% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0);
  }
}
.fadeup {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fadeup.visible {
  opacity: 1;
  transform: translateY(0);
}

.staff-heading span {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.yureru-s {
  animation: yureru-s 2s infinite;
}

@keyframes puluShake {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  1% {
    transform: translate(2px, -2px) rotate(1deg);
  }
  2% {
    transform: translate(-2px, 2px) rotate(-1deg);
  }
  3% {
    transform: translate(2px, 2px) rotate(1deg);
  }
  4% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  /* 残りの時間は停止 */
}
.text-wave,
.interview__ttl-title,
.about__ttl-title-s {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.text-wave .char,
.interview__ttl-title .char,
.about__ttl-title-s .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(25px);
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}
.text-wave .char.is-visible,
.interview__ttl-title .char.is-visible,
.about__ttl-title-s .char.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 回転アニメーション */
.rolle-effect {
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -1.5em 0 #000, 0 0 0 #000;
  transition: text-shadow 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.rolle-effect:hover {
  text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
}

.rotate-text {
  display: inline-block;
}

.rotate-text:hover {
  animation: rotate 0.5s forwards;
}

@keyframes rotate {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(360deg);
  }
}
/* 回転アニメーション 2D */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* 回転アニメーション 3D */
@keyframes spin3D {
  0% {
    transform: rotate3d(1, 0, 0, 0deg);
  }
  100% {
    transform: rotate3d(1, 0, 0, 360deg);
  }
}
.text-hover {
  display: inline-block;
  cursor: pointer;
  perspective: 400px;
  /* 3D回転をきれいに見せるため（任意） */
}
.text-hover .char {
  display: inline-block;
  transform-origin: center center;
  /* 回転の中心を文字の中央に */
  /* backface-visibility: hidden; // 裏面非表示（任意） */
  /* アニメーション関連のプロパティはJSで設定 */
}

/* テキストウェーブ */
@keyframes slideTextWave {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
/* リンクhover 下線アニメーション */
.link--view-more {
  display: block;
  line-height: 3;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 200px;
  position: relative;
  z-index: 0;
}
.link--view-more::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--wh);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: transform 0.4s ease 0.2s, background-color 0.4s ease;
  transform-origin: 0 50%;
  transform: scaleX(1);
}
.link--view-more::after {
  background: var(--wh);
}
.link--view-more::after, .link--view-more:hover::before {
  transition: transform 0.4s ease, background-color 0.4s ease;
  transform-origin: 100% 50%;
  transform: scaleX(0);
}
.link--view-more:hover::after {
  transition: transform 0.4s ease 0.2s, background-color 0.4s ease;
  transform-origin: 0 50%;
  transform: scaleX(1);
}

/* リンクhover 下線アニメーション2 */
.link-item {
  display: inline-block;
  position: relative;
}
.link-item::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--wh);
  transition: width 0.3s ease;
}
.link-item:hover::after {
  width: 100%;
}

/* A Modern CSS Reset */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg*, symbol*)) {
  all: unset;
  display: revert;
}

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

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

a,
button {
  cursor: revert;
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  padding-left: 0;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

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

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

:where(pre) {
  all: revert;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

/* ====================================================
Module
==================================================== */
/* ====================================================
Header
==================================================== */
.header {
  background-color: var(--wh);
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  font-size: 14px;
  font-weight: 600;
  padding: 1.5rem 2rem 1.5rem 2.5rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media screen and (max-width: 1200px) {
  .header {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .header {
    height: 50px;
    gap: 0;
    padding: 0;
    padding-left: 2rem;
    align-items: center;
  }
}
@media screen and (max-width: 499px) {
  .header {
    padding-left: 1rem;
  }
}
.header a {
  font-size: 16px;
  font-weight: 600;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 1680px) {
  .header__inner {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
}
@media (max-width: 1500px) {
  .header__inner {
    gap: 4rem;
  }
}
@media screen and (max-width: 1024px) {
  .header__inner {
    gap: 5rem;
    display: block;
  }
}
.header__logo {
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    flex-shrink: 1;
  }
}
@media screen and (max-width: 376px) {
  .header__logo {
    flex-shrink: 1;
    padding-right: 10px;
  }
}
.header__logo-img {
  width: 218px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .header__logo-img {
    width: 210px;
  }
}
@media screen and (max-width: 499px) {
  .header__logo-img {
    width: 180px;
  }
}
@media (max-width: 1500px) {
  .header__nav {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
  .header__nav.active {
    display: flex;
  }
}
.header__nav-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 1024px) {
  .header__nav-inner {
    gap: 0;
    flex-direction: column;
    height: 100vh;
  }
  .header__nav-inner.active {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--wh);
    padding: 1rem 0;
  }
}
@media screen and (max-width: 1024px) and (max-width: 376px) and (max-height: 531px) {
  .header__nav-inner.active {
    padding: 0;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 1200px) {
  .header__nav-list {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav-list {
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
    font-size: 18px;
    width: 100%;
    padding: 5rem 2.5rem;
  }
}
@media screen and (max-width: 499px) {
  .header__nav-list {
    padding: 3rem 2rem;
  }
}
@media screen and (max-width: 376px) {
  .header__nav-list {
    padding: 1rem 1.5rem;
  }
}
.header__nav-list-item {
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .header__nav-list-item {
    border-bottom: 1px solid #e4e4e4;
    padding: 2rem 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header__nav-list-item::after {
    content: "\e5cc";
    font-family: "Material Icons";
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--main-color);
    color: var(--wh);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 500;
  }
}
@media screen and (max-width: 499px) {
  .header__nav-list-item {
    padding: 1rem 0;
  }
}
@media (max-width: 376px) and (max-height: 531px) {
  .header__nav-list-item {
    padding: 0.8rem 0;
  }
}
@media screen and (max-width: 376px) {
  .header__nav-list-item a {
    font-size: 15px;
  }
}
.header__nav-list-item a {
  display: block;
  width: 100%;
}
@media (max-width: 1500px) {
  .header__linktxt {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    align-items: normal;
    padding: 5px 17px 5px 17px;
  }
}
@media screen and (max-width: 1024px) {
  .header__linktxt {
    position: static;
  }
}
@media (max-width: 376px) and (max-height: 531px) {
  .header__linktxt {
    padding: 0 17px 5px 17px;
  }
}
.header__linktxt-item {
  background-color: #e8f5e9;
  border-radius: 20px;
  padding: 8px 17px 8px 17px;
  flex-shrink: 0;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .header__linktxt-item {
    background-color: transparent;
  }
}
@media (max-width: 376px) and (max-height: 531px) {
  .header__linktxt-item {
    padding: 0 17px 8px 17px;
  }
}
.header__linktxt-item-link {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media screen and (max-width: 1024px) {
  .header__linktxt-item-link {
    gap: 0;
  }
  .header__linktxt-item-link span {
    text-decoration: underline;
  }
  .header__linktxt-item-link .material-icons {
    font-size: 12px;
    text-decoration: none;
  }
}
.header__linktxt a {
  color: var(--main-color);
}
@media screen and (max-width: 376px) {
  .header__linktxt a {
    font-size: 14px;
  }
}
.header__linkbtn {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .header__linkbtn {
    display: flex;
    align-items: stretch;
    height: 100%;
    gap: 0;
    margin-left: auto;
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .header__linkbtn-item.--pc {
    display: none;
  }
}
.header__sp-btn {
  background-color: var(--text-color);
  color: var(--wh);
  width: 100px;
  height: 100%;
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__sp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 640px) {
  .header__sp-btn {
    width: 60px;
  }
}
.header__sp-btn-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 19px;
  height: 17px;
  /* activeクラスがついた時のスタイル */
}
.header__sp-btn-wrapper span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--wh);
  margin: 0 auto;
  transition: all 0.3s;
  transform-origin: center;
}
.header__sp-btn-wrapper.active span:nth-of-type(1) {
  transform: translateY(6px) rotate(45deg);
}
.header__sp-btn-wrapper.active span:nth-of-type(2) {
  opacity: 0;
}
.header__sp-btn-wrapper.active span:nth-of-type(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.header .linkbtn-item {
  padding: 1rem 2rem;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .header .linkbtn-item {
    width: 155px;
    padding: 1rem 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .header .linkbtn-item {
    width: 200px;
    height: 100%;
    border-radius: 0;
  }
}
@media screen and (max-width: 640px) {
  .header .linkbtn-item {
    width: 100%;
    width: 115px;
  }
}
@media (max-width: 500px) {
  .header .linkbtn-item {
    padding: 1rem;
    font-size: 12px;
  }
}
@media screen and (max-width: 376px) {
  .header .linkbtn-item {
    padding: 5px;
    font-size: 10px;
  }
}
.header.hidden {
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ====================================================
Footer
==================================================== */
.footer {
  width: 100%;
  background-color: #166132;
  color: var(--wh);
}
.footer .inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .footer .inner {
    flex-direction: column;
    align-items: center;
    gap: 5rem;
  }
}
.footer__content {
  padding: 7rem 0 6rem;
}
@media screen and (max-width: 1200px) {
  .footer__content {
    padding: 5rem 0 4rem;
  }
}
@media screen and (max-width: 834px) {
  .footer__content {
    padding: 4rem 0 3rem;
  }
}
@media screen and (max-width: 640px) {
  .footer__content {
    padding: 3rem 0 2rem;
  }
}
.footer__content-wrapper {
  width: 100%;
}
.footer__nav {
  display: flex;
  align-items: flex-start;
  gap: 6rem;
  line-height: 2;
}
@media screen and (max-width: 1200px) {
  .footer__nav {
    gap: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .footer__nav {
    gap: 2rem;
    justify-content: center;
  }
}
.footer__shop-list {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 14px;
}
@media screen and (max-width: 834px) {
  .footer__shop-list {
    margin-top: 2rem;
    justify-content: center;
  }
}
.footer__linkbtn {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4rem;
}
@media screen and (max-width: 834px) {
  .footer__linkbtn {
    justify-content: center;
  }
}
.footer__linkbtn-item {
  font-size: 14px;
  font-weight: 700;
  color: var(--wh);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 100%;
  border-radius: 5px;
  padding: 1rem;
}
@media screen and (max-width: 834px) {
  .footer__linkbtn-item {
    max-width: 190px;
    height: 40px;
  }
}
.footer__linkbtn-item .s-txt {
  font-size: 12px;
}
@media screen and (max-width: 1024px) {
  .footer__linkbtn-item .s-txt {
    display: none;
  }
}
.footer__linkbtn-item.--pink {
  background-color: var(--pink);
}
.footer__linkbtn-item.--orange {
  background-color: var(--orange);
}
.footer__sns {
  font-size: 14px;
}
.footer__sns-list {
  margin-top: 4rem;
}
.footer__sns-list-item img {
  max-width: 28px;
}
.footer__sns-list {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
@media screen and (max-width: 834px) {
  .footer__sns-list {
    justify-content: center;
  }
}
.footer__logo {
  width: 100%;
  max-width: 353px;
}
.footer__logo-text {
  margin-top: 3rem;
}
.footer__logo-text-title {
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 10px;
  font-weight: 600;
}
.footer__logo-text address {
  font-size: 13px;
  font-style: normal;
}
.footer__copy {
  color: #7b9f89;
  padding: 5rem 0;
  border-top: 1px solid #e1e1e1;
}
@media screen and (max-width: 834px) {
  .footer__copy {
    padding: 3rem 0;
  }
}
.footer__copy-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .footer__copy-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.footer__copy-list {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.footer__copy-list-item:not(:last-child) {
  padding-right: 3rem;
  margin-right: 3rem;
  border-right: 1px solid #7b9f89;
}

.pagetop {
  color: var(--wh);
  font-size: 13px;
  font-family: "IBM Plex Sans JP", sans-serif;
  border-bottom: 1px solid #e1e1e1;
  padding: 3rem 0;
}

/* ====================================================
Common
==================================================== */
/* 共通 */
body.active {
  overflow: hidden;
}

@media screen and (max-width: 1024px) {
  main {
    padding-top: 50px;
  }
}

.bg-wrapper {
  background: url(../img/common/bg.webp), url(../img/top/top-bg.webp);
  background-repeat: no-repeat, repeat-y;
  background-position: center top, left top;
  background-size: 100%, contain;
  width: 100%;
  height: 100%;
}

.chevron_right {
  font-size: 13px;
}

.linkbtn-item {
  font-size: 14px;
  color: var(--wh);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 190px;
  height: 50px;
  border-radius: 5px;
  padding: 1rem;
}
@media screen and (max-width: 834px) {
  .linkbtn-item {
    width: 100%;
    height: 40px;
  }
}
.linkbtn-item .s-txt {
  font-size: 12px;
}
.linkbtn-item.--pink {
  background-color: var(--pink);
  font-weight: 600;
}
.linkbtn-item.--orange {
  background-color: var(--orange);
  font-weight: 600;
}

.type-sp {
  width: 100%;
  display: none;
}
@media screen and (max-width: 1024px) {
  .type-sp {
    display: inline-block;
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    z-index: 5;
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
}
.type-sp.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .type-sp.is-hidden {
    transform: translateX(-50%) translateY(30px);
  }
}

.link__box {
  width: 320px;
  height: 80px;
  background-color: var(--main-color);
  border-radius: 10px;
  color: var(--wh);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  padding: 0 20px 0 30px;
  flex-shrink: 0;
}
@media screen and (max-width: 640px) {
  .link__box {
    height: 60px;
  }
}
.link__box .chevron_right {
  color: var(--main-color);
  background-color: var(--wh);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
}

.group-cta {
  width: 100%;
  max-width: 350px;
  background: url(../img/common/cta-bg.webp) no-repeat center center;
  background-size: cover;
  border-radius: 10px;
  display: none;
}
@media screen and (max-width: 834px) {
  .group-cta {
    display: block;
  }
}
@media screen and (max-width: 499px) {
  .group-cta {
    max-width: 350px;
  }
}
@media screen and (max-width: 499px) {
  .group-cta {
    max-width: 90%;
    margin: 0 auto;
  }
}
.group-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
}
.group-cta-text {
  color: #fff600;
  font-size: 12px;
}
@media screen and (max-width: 376px) {
  .group-cta-text {
    font-size: 10px;
  }
}
.group-cta-title {
  font-size: 24px;
  color: var(--wh);
}
@media screen and (max-width: 640px) {
  .group-cta-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 376px) {
  .group-cta-title {
    font-size: 20px;
  }
}
.group-cta .linkbtn-item {
  border-radius: 5px;
  font-size: 12px;
  max-width: 115px;
  padding: 1rem 0.5rem;
}
@media screen and (max-width: 376px) {
  .group-cta .linkbtn-item {
    font-size: 10px;
  }
}

.sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
@media screen and (max-width: 499px) {
  .sns-list {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 376px) {
  .sns-list {
    margin-top: 1rem;
  }
}
.sns-list-content {
  margin-top: 5rem;
}
@media screen and (max-width: 499px) {
  .sns-list-content {
    margin-top: 2rem;
  }
}
.sns-list-title {
  font-size: 14px;
  text-align: center;
}
.sns-list-item-icon {
  max-width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* マウスストーカー */
#mouse-stalker {
  position: fixed;
  width: 100px;
  height: 100px;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.1s ease-out;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mouse-stalker.is-active {
  opacity: 1;
}
#mouse-stalker .left,
#mouse-stalker .right {
  font-size: 36px;
  color: var(--wh);
}
#mouse-stalker .left {
  transform: translateX(8px);
}
#mouse-stalker .right {
  transform: translateX(-8px);
}

/* ====================================================
FV
==================================================== */
.top__fv {
  width: 100%;
  padding-top: 80px;
}
@media (max-width: 1400px) {
  .top__fv {
    padding-top: 130px;
  }
}
@media screen and (max-width: 1024px) {
  .top__fv {
    padding-top: 0;
  }
}
.top__fv-wrapper {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .top__fv-wrapper {
    flex-direction: column;
  }
}
.top__fv-ttl {
  width: 50%;
  background: url(../img/top/fv-img-01.webp) no-repeat center top;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wh);
}
@media screen and (max-width: 1200px) {
  .top__fv-ttl {
    padding: 5rem;
  }
}
@media screen and (max-width: 1024px) {
  .top__fv-ttl {
    width: 100%;
    min-height: 771px;
    padding: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .top__fv-ttl {
    min-height: auto;
  }
}
@media screen and (max-width: 640px) {
  .top__fv-ttl {
    padding: 2rem;
    background-position: right top;
  }
}
.top__fv-ttl-title {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .top__fv-ttl-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 834px) {
  .top__fv-ttl-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 640px) {
  .top__fv-ttl-title {
    font-size: 28px;
  }
}
.top__fv-ttl-title-img {
  width: 100%;
  max-width: 460px;
}
.top__fv-ttl-text {
  text-align: center;
}
.top__fv-ttl-text.ft-24 {
  font-size: 24px;
  padding: 17px 0;
  border-top: 1px solid var(--wh);
  border-bottom: 1px solid var(--wh);
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1200px) {
  .top__fv-ttl-text.ft-24 {
    font-size: 20px;
  }
}
@media screen and (max-width: 834px) {
  .top__fv-ttl-text.ft-24 {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .top__fv-ttl-text.ft-24 {
    font-size: 16px;
    padding: 10px 0;
    margin-bottom: 1rem;
  }
}
.top__fv-ttl-text.ft-28 {
  font-size: 28px;
}
@media screen and (max-width: 1200px) {
  .top__fv-ttl-text.ft-28 {
    font-size: 24px;
  }
}
@media screen and (max-width: 834px) {
  .top__fv-ttl-text.ft-28 {
    font-size: 22px;
  }
}
@media screen and (max-width: 640px) {
  .top__fv-ttl-text.ft-28 {
    font-size: 18px;
  }
}
@media screen and (max-width: 376px) {
  .top__fv-ttl-text.ft-28 {
    font-size: 16px;
  }
}
@media (max-width: 360px) {
  .top__fv-ttl-text.ft-28 {
    font-size: 15px;
  }
}
.top__fv-img {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .top__fv-img {
    width: 100%;
  }
}
.top__fv-img-img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media screen and (max-width: 1024px) {
  .top__fv-img-img {
    aspect-ratio: 3/2;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.top__fv-linkbtn {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
}
@media screen and (max-width: 1200px) {
  .top__fv-linkbtn {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .top__fv-linkbtn {
    margin-top: 2rem;
  }
}
.top__fv-linkbtn-item {
  flex: 1;
}
@media screen and (max-width: 1200px) {
  .top__fv-linkbtn-item {
    width: 80%;
    max-width: 290px;
  }
}
.top__fv-linkbtn .linkbtn-item {
  width: 100%;
  max-width: 290px;
  height: 80px;
}
@media screen and (max-width: 834px) {
  .top__fv-linkbtn .linkbtn-item {
    height: 60px;
  }
}
@media screen and (max-width: 640px) {
  .top__fv-linkbtn .linkbtn-item {
    height: 50px;
  }
}
.top__fv-linkbtn a {
  font-size: 24px;
}
@media screen and (max-width: 1200px) {
  .top__fv-linkbtn a {
    font-size: 20px;
  }
}
@media screen and (max-width: 834px) {
  .top__fv-linkbtn a {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .top__fv-linkbtn a {
    font-size: 16px;
  }
}
@media screen and (max-width: 499px) {
  .top__fv-linkbtn a {
    font-size: 15px;
  }
}

/* ====================================================
TOP-NEWS
==================================================== */
.top__news {
  padding: 8rem 0 14rem;
}
@media screen and (max-width: 1200px) {
  .top__news {
    padding: 6rem 0 8rem;
  }
}
@media screen and (max-width: 834px) {
  .top__news {
    padding: 4rem 0 5rem;
  }
}
@media screen and (max-width: 640px) {
  .top__news {
    padding: 4rem 0 3em;
  }
}
.top__news-ttl-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .top__news-ttl-wrapper {
    gap: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .top__news-ttl-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
.top__news-ttl-title {
  font-size: 70px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: var(--main-color);
  line-height: 1.2;
}
@media screen and (max-width: 1200px) {
  .top__news-ttl-title {
    font-size: 60px;
  }
}
@media screen and (max-width: 834px) {
  .top__news-ttl-title {
    font-size: 50px;
  }
}
@media screen and (max-width: 640px) {
  .top__news-ttl-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 376px) {
  .top__news-ttl-title {
    font-size: 30px;
  }
}
.top__news-ttl-title-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 834px) {
  .top__news-ttl-title-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.top__news-ttl-title-text {
  font-size: 18px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .top__news-ttl-title-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 834px) {
  .top__news-ttl-title-text {
    font-size: 14px;
  }
}
.top__news-ttl-title-text::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: var(--text-color);
}
.top__news-ttl-link {
  font-size: 18px;
  color: var(--main-color);
  text-decoration: underline;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .top__news-ttl-link {
    font-size: 16px;
  }
}
@media screen and (max-width: 834px) {
  .top__news-ttl-link {
    font-size: 14px;
  }
}
.top__news-slider {
  margin-top: 5rem;
  margin-left: 240px;
  margin-right: 0;
  max-width: calc(100% - 240px);
  overflow: hidden;
}
@media screen and (min-width: 1681px) {
  .top__news-slider {
    max-width: calc(1200px + (100% - 1200px) / 2);
    margin-left: auto;
    margin-right: 0;
  }
}
@media screen and (max-width: 1680px) {
  .top__news-slider {
    max-width: 100%;
    margin-left: calc((100% - 1200px) / 2);
  }
}
@media (max-width: 1200px) {
  .top__news-slider {
    margin-left: 5%;
  }
}
@media screen and (max-width: 1200px) {
  .top__news-slider {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .top__news-slider {
    margin-top: 3rem;
  }
}
.top__news-slider-item {
  height: 100%;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease-in-out;
}
.top__news-slider-item:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}
.top__news-slider-item-img {
  width: 100%;
  height: auto;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  border-radius: 10px;
}
.top__news-slider-item-img-wrapper {
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.top__news-slider-item-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.top__news-slider-item-ttl {
  margin-top: 2rem;
  font-size: 18px;
}
@media screen and (max-width: 1200px) {
  .top__news-slider-item-ttl {
    font-size: 16px;
  }
}
@media screen and (max-width: 834px) {
  .top__news-slider-item-ttl {
    font-size: 14px;
  }
}
.top__news-slider-item-date {
  font-size: 13px;
  color: var(--main-color);
  margin-top: 2.7rem;
}
.top__news-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.top__news-slider .swiper-slide {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #d6e2dc;
  width: 100%;
  max-width: 380px;
  height: auto;
  position: relative;
}
.top__news-slider .new {
  background-color: var(--orange);
  width: 50px;
  height: 50px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wh);
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 12px;
  font-weight: normal;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .top__news-slider .new {
    width: 40px;
    height: 40px;
    font-size: 10px;
  }
}
@media screen and (max-width: 834px) {
  .top__news-slider .new {
    width: 35px;
    height: 35px;
    font-size: 9px;
  }
}
@media screen and (max-width: 640px) {
  .top__news-slider .new {
    width: 30px;
    height: 30px;
    font-size: 8px;
  }
}

/* ====================================================
TOP-ABOUT
==================================================== */
.top__about {
  padding: 0 0 14.5;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .top__about {
    padding: 0 0 10rem;
  }
}
@media screen and (max-width: 834px) {
  .top__about {
    padding: 0 0 8rem;
  }
}
@media screen and (max-width: 640px) {
  .top__about {
    padding: 0 0 6rem;
  }
}
.top__about-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
@media screen and (max-width: 1200px) {
  .top__about-wrapper {
    flex-direction: column-reverse;
    gap: 5rem;
  }
}
@media screen and (max-width: 834px) {
  .top__about-wrapper {
    gap: 3rem;
  }
}
.top__about-img {
  padding-right: 5rem;
}
@media screen and (max-width: 1200px) {
  .top__about-img {
    padding-right: 5%;
  }
}
.top__about-img-img {
  border-radius: 0 10px 10px 0;
  height: 100%;
  max-height: 690px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.top__about-ttl {
  width: 100%;
  max-width: 750px;
  padding-left: 5rem;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 1400px) {
  .top__about-ttl {
    padding-left: 0;
  }
}
@media screen and (max-width: 1200px) {
  .top__about-ttl {
    padding-left: 5rem;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1024px) {
  .top__about-ttl {
    max-width: 650px;
  }
}
@media screen and (max-width: 834px) {
  .top__about-ttl {
    flex-direction: column;
  }
}
@media screen and (max-width: 640px) {
  .top__about-ttl {
    padding: 0 5%;
  }
}
.top__about-ttl-wrapper {
  width: 360px;
}
@media screen and (max-width: 1024px) {
  .top__about-ttl-wrapper {
    width: 100%;
  }
}
.top__about-ttl-title {
  font-size: 70px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: var(--main-color);
  margin-right: 3rem;
  line-height: 1.2;
}
@media screen and (max-width: 1200px) {
  .top__about-ttl-title {
    font-size: 60px;
  }
}
@media screen and (max-width: 834px) {
  .top__about-ttl-title {
    font-size: 50px;
  }
}
@media screen and (max-width: 640px) {
  .top__about-ttl-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 376px) {
  .top__about-ttl-title {
    font-size: 30px;
  }
}
.top__about-ttl-title-text {
  font-size: 18px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .top__about-ttl-title-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 834px) {
  .top__about-ttl-title-text {
    font-size: 14px;
  }
}
.top__about-ttl-title-text::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: var(--main-color);
}
.top__about-ttl-text {
  font-size: 42px;
  font-weight: 700;
  margin-top: 6rem;
}
@media screen and (max-width: 1200px) {
  .top__about-ttl-text {
    font-size: 38px;
    margin-top: 5rem;
  }
}
@media screen and (max-width: 834px) {
  .top__about-ttl-text {
    font-size: 34px;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 640px) {
  .top__about-ttl-text {
    font-size: 27px;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 376px) {
  .top__about-ttl-text {
    font-size: 22px;
  }
}
.top__about-ttl-text.--s {
  font-size: 17px;
  margin-top: 4rem;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .top__about-ttl-text.--s {
    font-size: 16px;
    margin-top: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .top__about-ttl-text.--s {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .top__about-ttl-text.--s {
    margin-top: 1rem;
  }
}
.top__about-ttl-text.--vertical {
  font-size: 52px;
  font-weight: 700;
  margin-top: 0;
  position: absolute;
  top: -1.5rem;
  right: 10rem;
  white-space: nowrap;
  bottom: auto;
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 1500px) {
  .top__about-ttl-text.--vertical {
    font-size: 3vw;
  }
}
@media (max-width: 1400px) {
  .top__about-ttl-text.--vertical {
    right: 4rem;
  }
}
@media (max-width: 1300px) {
  .top__about-ttl-text.--vertical {
    font-size: 2.5vw;
    right: 2rem;
  }
}
@media screen and (max-width: 1200px) {
  .top__about-ttl-text.--vertical {
    top: -1.5rem;
    right: 10rem;
    bottom: auto;
    font-size: 36px;
  }
}
@media screen and (max-width: 1024px) {
  .top__about-ttl-text.--vertical {
    right: 5rem;
  }
}
@media screen and (max-width: 834px) {
  .top__about-ttl-text.--vertical {
    font-size: 21px;
    top: auto;
    bottom: 35%;
  }
}
@media screen and (max-width: 640px) {
  .top__about-ttl-text.--vertical {
    font-size: 18px;
    right: 2rem;
    bottom: 30%;
  }
}
@media screen and (max-width: 499px) {
  .top__about-ttl-text.--vertical {
    font-size: 16px;
    top: auto;
    bottom: 25%;
    right: 3rem;
  }
}
@media screen and (max-width: 499px) {
  .top__about-ttl-text.--vertical {
    bottom: 5%;
  }
}
.top__about-ttl-text.--vertical span.--s {
  font-size: 32px;
}
@media (max-width: 1300px) {
  .top__about-ttl-text.--vertical span.--s {
    font-size: 28px;
  }
}
@media screen and (max-width: 1200px) {
  .top__about-ttl-text.--vertical span.--s {
    font-size: 28px;
  }
}
@media screen and (max-width: 834px) {
  .top__about-ttl-text.--vertical span.--s {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .top__about-ttl-text.--vertical span.--s {
    font-size: 16px;
  }
}

p.--vertical {
  position: relative;
  background-color: var(--wh);
  border-radius: 10px;
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0 1.5rem 1.5rem;
  line-height: 1.3;
}
@media screen and (max-width: 834px) {
  p.--vertical {
    padding: 0 1rem 1.5rem;
  }
}
@media screen and (max-width: 499px) {
  p.--vertical {
    border-radius: 5px;
    padding-bottom: 6px;
  }
}
p.--vertical.--02 {
  padding-bottom: 0;
}

span.kagi {
  transform: rotate(90deg);
}

span.kutouten {
  transform: translate(3rem, -2rem);
  line-height: 1;
}
@media screen and (max-width: 834px) {
  span.kutouten {
    transform: translate(1.5rem, -1rem);
  }
}

/* ====================================================
TOP-LEAD
==================================================== */
.top__lead {
  padding: 14.5rem 0 14rem;
}
@media screen and (max-width: 1200px) {
  .top__lead {
    padding: 0 0 10rem;
  }
}
@media screen and (max-width: 834px) {
  .top__lead {
    padding: 0 0 8rem;
  }
}
@media screen and (max-width: 640px) {
  .top__lead {
    padding: 0 0 6rem;
  }
}
.top__lead-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top__lead-ttl-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .top__lead-ttl-title {
    font-size: 38px;
  }
}
@media screen and (max-width: 834px) {
  .top__lead-ttl-title {
    font-size: 33px;
  }
}
@media screen and (max-width: 640px) {
  .top__lead-ttl-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 376px) {
  .top__lead-ttl-title {
    font-size: 22px;
  }
}
.top__lead-ttl::before, .top__lead-ttl::after {
  content: "";
  display: inline-block;
  width: 37px;
  height: 60px;
  background: url(../img/top/ashirai-slash-green.webp) no-repeat center center;
  background-size: contain;
}
.top__lead-ttl::before {
  margin-right: 2rem;
}
.top__lead-ttl::after {
  margin-left: 2rem;
  transform: rotate(235deg);
}
.top__lead-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 6.6rem;
  gap: 2.5rem;
}
@media screen and (max-width: 1500px) {
  .top__lead-list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1200px) {
  .top__lead-list {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 834px) {
  .top__lead-list {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .top__lead-list {
    margin-top: 3rem;
    gap: 1.5rem;
  }
}
.top__lead-list-item {
  border: 5px solid #dfedd1;
  border-radius: 10px;
  flex: 1;
  padding: 2rem;
  background-color: var(--wh);
}
@media screen and (max-width: 1500px) {
  .top__lead-list-item {
    flex: auto;
  }
}
@media screen and (max-width: 834px) {
  .top__lead-list-item {
    flex: auto;
  }
}
.top__lead-list-img {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top__lead-list-img-img {
  width: 100%;
  height: auto;
}
.top__lead-list-img-img.--01 {
  max-width: 83px;
}
.top__lead-list-img-img.--02 {
  max-width: 110px;
}
.top__lead-list-img-img.--03 {
  max-width: 39px;
}
.top__lead-list-img-img.--04 {
  max-width: 60px;
}
.top__lead-list-img-img.--05 {
  max-width: 115px;
}
.top__lead-list-text {
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
}
.top__lead-text {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-top: 7.6rem;
  color: var(--main-color);
}
@media screen and (max-width: 1200px) {
  .top__lead-text {
    font-size: 38px;
    margin-top: 5rem;
  }
}
@media screen and (max-width: 834px) {
  .top__lead-text {
    font-size: 30px;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 640px) {
  .top__lead-text {
    font-size: 20px;
    margin-top: 3rem;
  }
}
.top__lead-text .mark {
  background: linear-gradient(transparent 70%, yellow 70%);
  padding-bottom: 2px;
}

/* ====================================================
TOP-LESSON
==================================================== */
.top__lesson {
  max-width: 1590px;
  max-width: calc(100% - 90px);
  margin: 0 0 0 auto;
  background: url(../img/top/lesson-bg.webp) no-repeat center center;
  background-size: cover;
  color: var(--wh);
  border-radius: 10px;
  padding: 12rem 0 12rem 15rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .top__lesson {
    padding: 10rem 0 10rem 6rem;
  }
}
@media screen and (max-width: 834px) {
  .top__lesson {
    max-width: calc(100% - 50px);
    padding: 4rem 0 4rem 5%;
  }
}
@media screen and (max-width: 640px) {
  .top__lesson {
    max-width: 100%;
    padding: 3rem 5%;
    border-radius: 0;
  }
}
.top__lesson .inner {
  margin-left: 0;
}
@media screen and (max-width: 1024px) {
  .top__lesson .inner {
    margin-left: auto;
    width: 100%;
    padding-right: 5%;
  }
}
@media screen and (max-width: 640px) {
  .top__lesson .inner {
    padding-right: 0;
  }
}
.top__lesson-ttl-title {
  font-size: 70px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: var(--wh);
  margin-right: 3rem;
  line-height: 1.2;
}
@media screen and (max-width: 1200px) {
  .top__lesson-ttl-title {
    font-size: 60px;
  }
}
@media screen and (max-width: 834px) {
  .top__lesson-ttl-title {
    font-size: 50px;
  }
}
@media screen and (max-width: 640px) {
  .top__lesson-ttl-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 376px) {
  .top__lesson-ttl-title {
    font-size: 30px;
  }
}
.top__lesson-ttl-title-text {
  font-size: 18px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .top__lesson-ttl-title-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 834px) {
  .top__lesson-ttl-title-text {
    font-size: 14px;
  }
}
.top__lesson-ttl-title-text::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: var(--main-color);
}
.top__lesson-ttl-text {
  font-size: 42px;
  font-weight: bold;
  flex-shrink: 0;
}
@media screen and (max-width: 1680px) {
  .top__lesson-ttl-text {
    flex-shrink: 1;
  }
}
.top__lesson-ttl-text-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 5rem;
  gap: 0;
  color: var(--wh);
  margin-top: 4rem;
}
@media screen and (max-width: 1680px) {
  .top__lesson-ttl-text-wrapper {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
@media screen and (max-width: 1200px) {
  .top__lesson-ttl-text-wrapper {
    margin-top: 4rem;
    gap: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .top__lesson-ttl-text-wrapper {
    margin-top: 3rem;
    flex-direction: column;
    gap: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .top__lesson-ttl-text-wrapper {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 376px) {
  .top__lesson-ttl-text-wrapper {
    margin-top: 2rem;
  }
}
.top__lesson-ttl-text.--s {
  font-size: 16px;
  flex-shrink: 1;
  text-align: left;
  font-weight: 600;
}
@media screen and (max-width: 640px) {
  .top__lesson-ttl-text.--s {
    font-size: 16px;
  }
}
.top__lesson-ttl-text.--s .yellow {
  color: #fff600;
}
.top__lesson-ttl-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  margin-top: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 7rem;
  margin-bottom: 9rem;
}
@media screen and (max-width: 1024px) {
  .top__lesson-ttl-list {
    padding-bottom: 5rem;
    margin-top: 5rem;
    margin-bottom: 6rem;
  }
}
@media screen and (max-width: 1200px) {
  .top__lesson-ttl-list {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .top__lesson-ttl-list {
    gap: 2rem;
    margin-top: 2rem;
    padding-bottom: 4rem;
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 640px) {
  .top__lesson-ttl-list {
    flex-direction: column;
    margin-top: 3rem;
    gap: 1.5rem;
  }
}
.top__lesson-ttl-list-item {
  background-color: var(--wh);
  color: var(--main-color);
  border-radius: 22px;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 9px 15px 9px;
  line-height: 1;
}
.top__lesson-ttl-list-item .material-icons {
  background-color: var(--orange);
  color: var(--wh);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.top__lesson-ttl-text {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .top__lesson-ttl-text {
    font-size: 38px;
  }
}
@media screen and (max-width: 834px) {
  .top__lesson-ttl-text {
    font-size: 30px;
  }
}
@media screen and (max-width: 640px) {
  .top__lesson-ttl-text {
    font-size: 27px;
  }
}
@media screen and (max-width: 499px) {
  .top__lesson-ttl-text {
    font-size: 22px;
    text-align: left;
  }
}
.top__lesson-ttl-text .mark {
  background: linear-gradient(transparent 70%, yellow 70%);
  padding-bottom: 2px;
}
.top__lesson-content-box {
  width: 100%;
  max-width: 470px;
}
.top__lesson-content-list {
  margin-top: 4rem;
  line-height: 1.8;
}
.top__lesson-content-list-item {
  display: flex;
}
.top__lesson-content-list-item::before {
  content: "\e5ca";
  display: block;
  font-size: 17px;
  font-family: "Material Icons";
  margin-right: 8px;
  color: #fff600;
  margin-right: 8px;
}
.top__lesson-content-ttl {
  background-color: #5e821c;
  border-radius: 10px;
  padding: 4rem;
  margin-top: 3.5rem;
}
@media screen and (max-width: 1200px) {
  .top__lesson-content-ttl {
    padding: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .top__lesson-content-ttl {
    padding: 2rem;
  }
}
.top__lesson-content-ttl-title {
  font-size: 30px;
  color: #fff600;
  font-weight: 700;
}
@media screen and (max-width: 1200px) {
  .top__lesson-content-ttl-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 834px) {
  .top__lesson-content-ttl-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 640px) {
  .top__lesson-content-ttl-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 376px) {
  .top__lesson-content-ttl-title {
    font-size: 20px;
  }
}
.top__lesson-content-ttl-text {
  margin-top: 2.4rem;
}
.top__lesson .link__box {
  margin-top: 3.8rem;
}
@media screen and (max-width: 640px) {
  .top__lesson .link__box {
    margin: 3.8rem auto 0;
  }
}
.top__lesson-slider {
  background-color: var(--wh);
  padding: 7rem 6rem;
  border-radius: 10px 0 0 0;
  height: 675px;
  color: var(--text-color);
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: calc(50% - 100px);
  width: 100%;
  max-width: 1200px;
  max-width: 900px;
}
@media (min-width: 1900px) {
  .top__lesson-slider {
    max-width: 1200px !important;
    left: auto !important;
    right: 0 !important;
  }
}
@media screen and (min-width: 1681px) {
  .top__lesson-slider {
    max-width: 1000px;
    left: calc(50% - 70px);
  }
}
@media screen and (max-width: 1680px) {
  .top__lesson-slider {
    left: 50%;
    transform: translateX(3vw);
  }
}
@media screen and (max-width: 1200px) {
  .top__lesson-slider {
    height: 600px;
  }
}
@media screen and (max-width: 1024px) {
  .top__lesson-slider {
    height: 550px;
    margin-top: 6rem;
    position: static;
    left: 50%;
    transform: translateX(0);
    border-radius: 10px 0 0 10px;
    padding: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .top__lesson-slider {
    height: 500px;
    padding: 3rem;
  }
}
@media screen and (max-width: 640px) {
  .top__lesson-slider {
    height: 460px;
    padding: 2rem;
    margin-top: 4rem;
  }
}
@media screen and (max-width: 499px) {
  .top__lesson-slider {
    height: 440px;
  }
}
@media screen and (max-width: 376px) {
  .top__lesson-slider {
    height: 440px;
  }
}
.top__lesson-slider-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.top__lesson-slider-img-wrapper {
  border-radius: 10px;
  overflow: hidden;
}
.top__lesson-slider-img-wrapper:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}
.top__lesson-slider-text {
  margin-top: 1rem;
}
.top__lesson-slider .swiper-slide {
  position: relative;
  width: 100%;
  max-width: 380px;
}
@media screen and (max-width: 1680px) {
  .top__lesson-slider .swiper-slide {
    max-width: 320px;
  }
}
@media screen and (max-width: 1500px) {
  .top__lesson-slider .swiper-slide {
    max-width: 300px;
  }
}
@media screen and (max-width: 1200px) {
  .top__lesson-slider .swiper-slide {
    max-width: 280px;
  }
}
@media screen and (max-width: 1024px) {
  .top__lesson-slider .swiper-slide {
    max-width: 260px;
  }
}
@media screen and (max-width: 834px) {
  .top__lesson-slider .swiper-slide {
    max-width: 240px;
  }
}
@media screen and (max-width: 640px) {
  .top__lesson-slider .swiper-slide {
    max-width: 220px;
  }
}
@media screen and (max-width: 499px) {
  .top__lesson-slider .swiper-slide {
    max-width: 200px;
  }
}
@media screen and (max-width: 376px) {
  .top__lesson-slider .swiper-slide {
    max-width: 180px;
  }
}
.top__lesson-slider .swiper-scrollbar {
  background: #eee;
  height: 4px;
  /* スクロールバーの高さ */
  position: absolute;
  bottom: 43px;
  /* スライダーの下から43pxに配置 */
  left: 6rem;
  /* 左から**pxに配置 */
  width: 90%;
  max-width: 800px;
  /* 左右の余白を考慮した幅 */
}
@media screen and (max-width: 1024px) {
  .top__lesson-slider .swiper-scrollbar {
    bottom: 9rem;
    left: 5rem;
    max-width: 700px;
  }
}
@media screen and (max-width: 834px) {
  .top__lesson-slider .swiper-scrollbar {
    bottom: 8rem;
    left: 3rem;
    max-width: 600px;
  }
}
@media screen and (max-width: 640px) {
  .top__lesson-slider .swiper-scrollbar {
    bottom: 8rem;
    left: 3rem;
    max-width: 400px;
  }
}
@media screen and (max-width: 499px) {
  .top__lesson-slider .swiper-scrollbar {
    bottom: 8rem;
    left: 3rem;
    max-width: 300px;
  }
}
@media screen and (max-width: 376px) {
  .top__lesson-slider .swiper-scrollbar {
    bottom: 8rem;
    left: 3rem;
    max-width: 250px;
  }
}
.top__lesson-slider .swiper-scrollbar .swiper-scrollbar-drag {
  background: #208d67;
  /* スクロールドラッグの色 */
  border-radius: 2px;
  /* 角を丸くする */
}
.top__lesson-slider .number {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #208d67;
  color: var(--wh);
  font-weight: 600;
  line-height: 1.2;
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .top__lesson-slider .number {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 834px) {
  .top__lesson-slider .number {
    width: 45px;
    height: 45px;
  }
}
@media screen and (max-width: 640px) {
  .top__lesson-slider .number {
    width: 40px;
    height: 40px;
    top: 8px;
    left: 8px;
  }
}
.top__lesson-slider .number .--s {
  font-size: 12px;
}
@media screen and (max-width: 640px) {
  .top__lesson-slider .number .--s {
    font-size: 8px;
  }
}
.top__lesson-slider .number .--l {
  font-size: 28px;
}
@media screen and (max-width: 1200px) {
  .top__lesson-slider .number .--l {
    font-size: 24px;
  }
}
@media screen and (max-width: 834px) {
  .top__lesson-slider .number .--l {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .top__lesson-slider .number .--l {
    font-size: 18px;
  }
}
@media screen and (max-width: 499px) {
  .top__lesson-slider .number .--l {
    font-size: 16px;
  }
}

/* ====================================================
TOP-PRICE
==================================================== */
.top__price {
  padding: 12rem 0 0;
}
@media screen and (max-width: 1200px) {
  .top__price {
    padding: 10rem 0 0;
  }
}
@media screen and (max-width: 834px) {
  .top__price {
    padding: 8rem 0 0;
  }
}
@media screen and (max-width: 640px) {
  .top__price {
    padding: 6rem 0 0;
  }
}
.top__price-ttl {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .top__price-ttl {
    flex-direction: column;
    gap: 3rem;
  }
}
@media screen and (max-width: 640px) {
  .top__price-ttl {
    gap: 2rem;
  }
}
.top__price-ttl .inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 834px) {
  .top__price-ttl .inner {
    flex-direction: column;
    align-items: center;
  }
}
.top__price-ttl-wrapper {
  width: 450px;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  .top__price-ttl-wrapper {
    width: 100%;
    max-width: 450px;
    flex-shrink: 1;
  }
}
.top__price-ttl-title {
  font-size: 70px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: var(--main-color);
  line-height: 1.2;
}
@media screen and (max-width: 1200px) {
  .top__price-ttl-title {
    font-size: 60px;
  }
}
@media screen and (max-width: 834px) {
  .top__price-ttl-title {
    font-size: 50px;
  }
}
@media screen and (max-width: 640px) {
  .top__price-ttl-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 376px) {
  .top__price-ttl-title {
    font-size: 30px;
  }
}
.top__price-ttl-title-text {
  font-size: 18px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .top__price-ttl-title-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 834px) {
  .top__price-ttl-title-text {
    font-size: 14px;
  }
}
.top__price-ttl-title-text::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: var(--main-color);
}
.top__price-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 3rem;
  margin-top: 6rem;
}
@media (max-width: 1300px) {
  .top__price-list {
    flex: auto;
    flex-direction: column;
    gap: 3rem;
  }
}
@media screen and (max-width: 1200px) {
  .top__price-list {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 640px) {
  .top__price-list {
    margin-top: 3rem;
    gap: 3rem;
  }
}
.top__price-text {
  font-weight: 600;
}
.top__price-item {
  flex: 1;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-radius: 0 0 10px 10px;
}
@media (max-width: 1300px) {
  .top__price-item {
    flex: auto;
  }
}
.top__price-item-ttl {
  font-size: 28px;
  text-align: center;
  height: 120px;
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}
@media screen and (max-width: 640px) {
  .top__price-item-ttl {
    font-size: 24px;
    height: 100%;
    max-height: 80px;
  }
}
@media screen and (max-width: 376px) {
  .top__price-item-ttl {
    font-size: 20px;
  }
}
@media screen and (max-width: 499px) {
  .top__price-item-ttl {
    font-size: 18px;
  }
}
.top__price-item-price {
  display: flex;
  align-items: center;
  line-height: 1;
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}
.top__price-item-price .note {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
}
.top__price-item-price .price {
  font-size: 52px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .top__price-item-price .price {
    font-size: 48px;
  }
}
@media screen and (max-width: 834px) {
  .top__price-item-price .price {
    font-size: 42px;
  }
}
@media screen and (max-width: 640px) {
  .top__price-item-price .price {
    font-size: 36px;
  }
}
.top__price-item-price .yen {
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  margin-top: 2rem;
}
.top__price-item-text {
  font-weight: 700;
}
.top__price-item.--blue .top__price-item-ttl {
  background-color: #0c8fe3;
  color: var(--wh);
  font-weight: 700;
}
.top__price-item.--blue .note {
  background-color: #0c8fe3;
  color: var(--wh);
  margin-right: 8px;
}
.top__price-item.--blue .top__price-item-price {
  color: #0c8fe3;
}
.top__price-item.--blue .mini-list-item::before {
  color: #0c8fe3;
}
.top__price-item.--pink .top__price-item-ttl {
  background-color: #fa8b8a;
  color: var(--wh);
  font-weight: 700;
}
.top__price-item.--pink .note {
  background-color: #fa8b8a;
  color: var(--wh);
  margin-right: 8px;
}
.top__price-item.--pink .top__price-item-price {
  color: #fa8b8a;
}
.top__price-item.--pink .mini-list-item::before {
  color: #fa8b8a;
}
.top__price-item.--green .top__price-item-ttl {
  background-color: #83c56b;
  color: var(--wh);
  font-weight: 700;
}
.top__price-item.--green .note {
  background-color: #83c56b;
  color: var(--wh);
  margin-right: 8px;
}
.top__price-item.--green .top__price-item-price {
  color: #83c56b;
}
.top__price-item.--green .mini-list-item::before {
  color: #83c56b;
}
.top__price-item-wrapper {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background-color: var(--wh);
}
@media screen and (max-width: 1200px) {
  .top__price-item-wrapper {
    padding: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .top__price-item-wrapper {
    padding: 2rem;
  }
}
.top__price .mini-list {
  width: 100%;
  font-weight: 700;
  border-top: 1px solid #e9e9e9;
  margin-top: 2rem;
  padding-top: 2rem;
  height: 120px;
}
@media (max-width: 1300px) {
  .top__price .mini-list {
    height: auto;
  }
}
.top__price .mini-list-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.top__price .mini-list-item::before {
  content: "\e5ca";
  display: block;
  font-size: 17px;
  font-family: "Material Icons";
  margin-right: 8px;
}
.top__price .link__box {
  margin: auto;
  margin-top: 6.5rem;
}
@media screen and (max-width: 1200px) {
  .top__price .link__box {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 834px) {
  .top__price .link__box {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 640px) {
  .top__price .link__box {
    margin-top: 3rem;
  }
}

/* ====================================================
TOP-BANNER
==================================================== */
.top__banner {
  width: 100%;
  height: 100%;
  padding: 13rem 0 0;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .top__banner {
    padding: 10rem 0 0;
  }
}
@media screen and (max-width: 834px) {
  .top__banner {
    padding: 8rem 0 0;
  }
}
@media screen and (max-width: 640px) {
  .top__banner {
    padding: 6rem 0 0;
  }
}
@media screen and (max-width: 834px) {
  .top__banner .inner.--1500 {
    width: 100%;
  }
}
.top__banner-vertical {
  color: var(--text-color);
  font-size: 52px;
  font-weight: 700;
  margin-top: 0;
  position: absolute;
  top: -1%;
  right: 4rem;
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1500px) {
  .top__banner-vertical {
    right: -3vw;
  }
}
@media screen and (max-width: 1200px) {
  .top__banner-vertical {
    font-size: 42px;
    top: -7%;
    right: 2rem;
  }
}
@media screen and (max-width: 834px) {
  .top__banner-vertical {
    font-size: 30px;
    top: 14%;
    right: 7%;
    left: auto;
  }
}
@media screen and (max-width: 640px) {
  .top__banner-vertical {
    font-size: 21px;
    top: 12%;
  }
}
@media screen and (max-width: 499px) {
  .top__banner-vertical {
    font-size: 16px;
    right: 5%;
  }
}
@media screen and (max-width: 376px) {
  .top__banner-vertical {
    font-size: 16px;
  }
}
.top__banner-vertical p {
  background-color: var(--wh);
  border-radius: 10px;
  padding: 1rem 0;
  margin-left: 10px;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0 1rem;
  line-height: 1.2;
}
@media screen and (max-width: 834px) {
  .top__banner-vertical p {
    border-radius: 7px;
    padding: 8px;
  }
}
.top__banner-vertical p.--01 {
  padding-bottom: 2rem;
}
@media screen and (max-width: 834px) {
  .top__banner-vertical p.--01 {
    padding-bottom: 1rem;
  }
}
.top__banner-wrapper {
  background: url(../img/top/banner-bg.webp) no-repeat center center;
  background-size: cover;
  color: var(--wh);
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 640px) {
  .top__banner-wrapper {
    border-radius: 0;
  }
}
.top__banner-wrapper .inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: 100%;
  padding: 10rem 0;
  text-align: center;
  position: relative;
}
@media (max-width: 1400px) {
  .top__banner-wrapper .inner {
    justify-content: center;
  }
}
@media screen and (max-width: 1200px) {
  .top__banner-wrapper .inner {
    padding: 8rem 0;
  }
}
@media screen and (max-width: 834px) {
  .top__banner-wrapper .inner {
    padding: 3rem 0 6rem;
  }
}
@media screen and (max-width: 640px) {
  .top__banner-wrapper .inner {
    padding: 3rem 0 4rem;
  }
}
@media screen and (max-width: 376px) {
  .top__banner-wrapper .inner {
    padding: 3rem 0;
  }
}
.top__banner-wrapper .inner::after {
  content: "";
  display: block;
  background: url(../img/top/banner-acc-text.webp) no-repeat center center;
  background-size: cover;
  position: absolute;
  top: 66%;
  right: -19%;
  width: 420px;
  height: 225px;
  border-radius: 10px;
}
@media (max-width: 1400px) {
  .top__banner-wrapper .inner::after {
    right: 0;
  }
}
@media screen and (max-width: 834px) {
  .top__banner-wrapper .inner::after {
    background: url(../img/top/banner-acc-text-sp.webp) no-repeat center center;
    background-size: contain;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 300px;
    height: 76px;
  }
}
.top__banner-img {
  width: 100%;
  max-width: 775px;
  position: absolute;
  top: 5%;
  left: -21%;
}
@media (max-width: 1400px) {
  .top__banner-img {
    width: 30vw;
    max-width: 510px;
    top: 5%;
    left: -7%;
  }
}
@media screen and (max-width: 834px) {
  .top__banner-img {
    width: 100%;
    max-width: 440px;
    top: 8%;
    left: 0;
  }
}
@media screen and (max-width: 640px) {
  .top__banner-img {
    max-width: 378px;
    top: 8%;
  }
}
@media screen and (max-width: 499px) {
  .top__banner-img {
    max-width: 245px;
    top: 9%;
  }
}
@media screen and (max-width: 376px) {
  .top__banner-img {
    max-width: 225px;
    top: 8%;
  }
}
.top__banner-ttl {
  width: 50%;
  max-width: 600px;
  position: relative;
  z-index: 1;
  padding-right: 70px;
}
@media (max-width: 1300px) {
  .top__banner-ttl {
    padding-right: 0;
  }
}
@media screen and (max-width: 834px) {
  .top__banner-ttl {
    width: 100%;
    max-width: 90%;
  }
}
.top__banner-ttl-text {
  font-size: 21px;
  background: url(../img/top/banner-acc-wave.svg) no-repeat 50% 80%;
  background-size: contain;
  padding: 2rem 0;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
@media screen and (max-width: 1200px) {
  .top__banner-ttl-text {
    font-size: 19px;
  }
}
@media screen and (max-width: 834px) {
  .top__banner-ttl-text {
    font-size: 17px;
  }
}
@media screen and (max-width: 640px) {
  .top__banner-ttl-text {
    font-size: 16px;
  }
}
.top__banner-ttl-title {
  font-size: 57px;
  font-weight: 700;
  margin-top: 2rem;
  line-height: 1.2;
}
@media screen and (max-width: 1200px) {
  .top__banner-ttl-title {
    font-size: 38px;
  }
}
@media screen and (max-width: 834px) {
  .top__banner-ttl-title {
    font-size: 34px;
    margin-top: 0;
  }
}
@media screen and (max-width: 640px) {
  .top__banner-ttl-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 376px) {
  .top__banner-ttl-title {
    font-size: 22px;
  }
}
.top__banner-ttl-subtitle {
  font-size: 32px;
  font-weight: 700;
  padding: 1rem 0;
  border-top: 1px solid var(--wh);
  border-bottom: 1px solid var(--wh);
  margin-top: 2rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .top__banner-ttl-subtitle {
    font-size: 28px;
  }
}
@media screen and (max-width: 834px) {
  .top__banner-ttl-subtitle {
    font-size: 24px;
    width: -moz-fit-content;
    width: fit-content;
    margin: 3rem auto;
  }
}
@media screen and (max-width: 640px) {
  .top__banner-ttl-subtitle {
    font-size: 20px;
  }
}
@media screen and (max-width: 499px) {
  .top__banner-ttl-subtitle {
    margin-top: 7rem;
  }
}
.top__banner-ttl-subtitle::before {
  content: "今だけ";
  display: block;
  width: 81px;
  height: 81px;
  background: url(../img/top/banner-acc-fukidashi.webp) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 38%;
  left: -3vw;
  transform: rotate(-30deg) translateY(-50%);
  transform-origin: center;
  color: var(--wh);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 834px) {
  .top__banner-ttl-subtitle::before {
    left: -9vw;
  }
}
@media screen and (max-width: 640px) {
  .top__banner-ttl-subtitle::before {
    width: 60px;
    height: 60px;
    font-size: 12px;
  }
}
@media screen and (max-width: 499px) {
  .top__banner-ttl-subtitle::before {
    margin-top: 7rem;
    top: -196%;
    left: -4vw;
  }
}
.top__banner-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}
@media screen and (max-width: 1200px) {
  .top__banner-list {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .top__banner-list {
    gap: 2rem;
    margin-top: 44rem;
  }
}
@media screen and (max-width: 640px) {
  .top__banner-list {
    gap: 2rem;
    margin-top: 40rem;
  }
}
@media screen and (max-width: 499px) {
  .top__banner-list {
    gap: 2rem;
    margin-top: 27rem;
  }
}
@media screen and (max-width: 376px) {
  .top__banner-list {
    gap: 2rem;
    margin-top: 23rem;
  }
}
.top__banner-list-item {
  width: 123px;
  height: 123px;
  background-color: #dfedd1;
  color: var(--main-color);
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 2px white, 0 0 0 5px #dfedd1;
  /* 白い内側の線を追加 (太さは3px) */
}
@media screen and (max-width: 640px) {
  .top__banner-list-item {
    width: 103px;
    height: 103px;
    font-size: 13px;
  }
}
@media screen and (max-width: 376px) {
  .top__banner-list-item {
    width: 95px;
    height: 95px;
    font-size: 13px;
  }
}
.top__banner-text-box {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 5rem;
  text-align: left;
}
@media screen and (max-width: 640px) {
  .top__banner-text-box {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
  }
}
.top__banner-text-img {
  width: 200px;
}
.top__banner-sublist {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  padding-right: 2rem;
}
@media screen and (max-width: 1200px) {
  .top__banner-sublist {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .top__banner-sublist {
    justify-content: center;
    padding-right: 0;
  }
}
@media screen and (max-width: 640px) {
  .top__banner-sublist {
    margin-top: 2rem;
    gap: 1rem;
  }
}
.top__banner-sublist-item {
  width: 48%;
  height: 100%;
  background-color: var(--main-color);
  color: #fff600;
  font-size: 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 600;
  padding: 2rem;
  gap: 5px;
}
@media screen and (max-width: 499px) {
  .top__banner-sublist-item {
    padding: 2rem 1.5rem;
  }
}
.top__banner-sublist-item .title {
  font-size: 20px;
  background-color: #fff600;
  color: var(--main-color);
  border-radius: 100vmax;
  width: 113px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  .top__banner-sublist-item .title {
    font-size: 18px;
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 3px 15px;
  }
}
@media screen and (max-width: 834px) {
  .top__banner-sublist-item .title {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .top__banner-sublist-item .title {
    font-size: 14px;
  }
}
@media screen and (max-width: 376px) {
  .top__banner-sublist-item .title {
    font-size: 12px;
  }
}
.top__banner-sublist-item .text {
  font-size: 24px;
  color: var(--wh);
}
.top__banner-sublist-item .text span {
  font-size: 18px;
}
.top__banner-sublist-item .square {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.top__banner-sublist-item .square-wrapper {
  display: flex;
  flex-direction: column;
}
.top__banner-sublist-item .num {
  font-size: 100px;
  font-family: "DIN2014", sans-serif;
}
@media screen and (max-width: 1200px) {
  .top__banner-sublist-item .num {
    font-size: 80px;
  }
}
@media screen and (max-width: 834px) {
  .top__banner-sublist-item .num {
    font-size: 60px;
  }
}
@media screen and (max-width: 640px) {
  .top__banner-sublist-item .num {
    font-size: 50px;
  }
}
.top__banner-sublist-item .per {
  font-size: 50px;
  font-family: "DIN2014", sans-serif;
}
@media screen and (max-width: 1200px) {
  .top__banner-sublist-item .per {
    font-size: 40px;
  }
}
@media screen and (max-width: 834px) {
  .top__banner-sublist-item .per {
    font-size: 30px;
  }
}
@media screen and (max-width: 640px) {
  .top__banner-sublist-item .per {
    font-size: 24px;
  }
}
.top__banner-sublist-item .off {
  font-size: 34px;
  font-family: "DIN2014", sans-serif;
  font-weight: 500;
  letter-spacing: -2px;
}
@media screen and (max-width: 1200px) {
  .top__banner-sublist-item .off {
    font-size: 28px;
  }
}
@media screen and (max-width: 834px) {
  .top__banner-sublist-item .off {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .top__banner-sublist-item .off {
    font-size: 20px;
  }
}
.top__banner .link__box {
  background-color: var(--orange);
  font-size: 24px;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin-top: 3rem;
}
@media screen and (max-width: 1200px) {
  .top__banner .link__box {
    font-size: 20px;
  }
}
@media screen and (max-width: 834px) {
  .top__banner .link__box {
    font-size: 18px;
  }
}
@media screen and (max-width: 376px) {
  .top__banner .link__box {
    margin-top: 2rem;
  }
}
.top__banner .link__box span {
  display: block;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .top__banner .link__box span {
    font-size: 14px;
  }
}
.top__banner .banner-link {
  font-size: 18px;
  text-decoration: underline;
  display: inline-block;
  margin-top: 3rem;
}
@media screen and (max-width: 1200px) {
  .top__banner .banner-link {
    font-size: 16px;
  }
}
.top__banner .to-beginner {
  background-color: #2b9e76;
  border-radius: 10px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  text-align: left;
  z-index: 1;
  margin-top: 6rem;
}
@media (max-width: 1400px) {
  .top__banner .to-beginner {
    padding: 3rem 5rem;
    max-width: 90%;
  }
}
@media screen and (max-width: 1200px) {
  .top__banner .to-beginner {
    padding: 3rem 5rem;
    margin-top: 4rem;
    gap: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .top__banner .to-beginner {
    padding: 2rem 3rem;
    margin-top: 3rem;
    flex-direction: column;
    gap: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .top__banner .to-beginner {
    padding: 1rem 2rem;
    margin-top: 3rem;
    gap: 1rem;
  }
}
.top__banner .to-beginner-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .top__banner .to-beginner-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 834px) {
  .top__banner .to-beginner-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .top__banner .to-beginner-title {
    font-size: 20px;
  }
}
.top__banner .to-beginner-title::before {
  content: "";
  display: block;
  width: 35px;
  height: 49px;
  background: url(../img/top/banner-acc-mark.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 499px) {
  .top__banner .to-beginner-title::before {
    width: 25px;
    height: 34px;
  }
}

/* ====================================================
TOP-REASON
==================================================== */
.top__reason {
  padding: 12rem 0 0;
}
@media screen and (max-width: 1200px) {
  .top__reason {
    padding: 10rem 0 0;
  }
}
@media screen and (max-width: 834px) {
  .top__reason {
    padding: 8rem 0 0;
  }
}
@media screen and (max-width: 640px) {
  .top__reason {
    padding: 6rem 0 0;
  }
}
.top__reason-wrapper {
  background: url(../img/top/reason-bg.webp) no-repeat center center;
  background-size: cover;
  width: 100%;
  color: var(--wh);
  padding: 11rem 0 17rem;
  border-radius: 10px;
  max-width: 1500px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .top__reason-wrapper {
    padding: 9rem 0 9rem;
  }
}
@media screen and (max-width: 834px) {
  .top__reason-wrapper {
    padding: 7rem 0 7rem;
  }
}
@media screen and (max-width: 640px) {
  .top__reason-wrapper {
    padding: 5rem 0 5rem;
    border-radius: 0;
  }
}
.top__reason-ttl {
  font-size: 42px;
  font-weight: 700;
  color: var(--wh);
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .top__reason-ttl {
    font-size: 38px;
  }
}
@media screen and (max-width: 834px) {
  .top__reason-ttl {
    font-size: 34px;
  }
}
@media screen and (max-width: 640px) {
  .top__reason-ttl {
    font-size: 26px;
  }
}
@media screen and (max-width: 376px) {
  .top__reason-ttl {
    font-size: 22px;
  }
}
.top__reason-list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 5rem;
  margin-top: 9rem;
}
@media screen and (max-width: 1200px) {
  .top__reason-list {
    margin-top: 7rem;
    gap: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .top__reason-list {
    flex-direction: column;
    margin-top: 5rem;
    gap: 4rem;
  }
}
@media screen and (max-width: 640px) {
  .top__reason-list {
    margin-top: 3rem;
    gap: 4rem;
  }
}
.top__reason-item {
  position: relative;
}
.top__reason-item-img {
  border-radius: 10px;
}
@media screen and (max-width: 834px) {
  .top__reason-item-img {
    aspect-ratio: 3/2;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.top__reason-item-img-wrapper {
  position: relative;
}
.top__reason-item-title {
  font-size: 21px;
  font-weight: bold;
  position: absolute;
  bottom: -5px;
  left: -5px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
@media screen and (max-width: 1200px) {
  .top__reason-item-title {
    font-size: 19px;
  }
}
@media screen and (max-width: 834px) {
  .top__reason-item-title {
    font-size: 21px;
  }
}
@media screen and (max-width: 640px) {
  .top__reason-item-title {
    font-size: 17px;
  }
}
.top__reason-item-title p {
  width: -moz-fit-content;
  width: fit-content;
  color: #fff600;
  background-color: var(--main-color);
  border-radius: 5px;
  padding: 1rem;
}
@media screen and (max-width: 640px) {
  .top__reason-item-title p {
    padding: 5px;
  }
}
.top__reason-item-text {
  margin-top: 3rem;
  font-size: 17px;
}
@media screen and (max-width: 1200px) {
  .top__reason-item-text {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .top__reason-item-text {
    margin-top: 1.5rem;
    font-size: 16px;
  }
}
.top__reason-item .number {
  color: #fff600;
  font-size: 60px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  position: absolute;
  top: -30px;
  right: 1rem;
  z-index: 1;
  line-height: 1;
}

/* ====================================================
TOP-SLIDER
==================================================== */
.top__slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 14rem 0;
}
@media screen and (max-width: 1200px) {
  .top__slider {
    padding: 7rem 0;
  }
}
@media screen and (max-width: 834px) {
  .top__slider {
    padding: 5rem 0;
  }
}
@media screen and (max-width: 640px) {
  .top__slider {
    padding: 3rem 0;
  }
}
.top__slider-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.top__slider-ttl {
  margin-top: 8rem;
}
@media screen and (max-width: 1200px) {
  .top__slider-ttl {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 834px) {
  .top__slider-ttl {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 640px) {
  .top__slider-ttl {
    margin-top: 5rem;
  }
}
.top__slider-ttl .inner {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 1200px) {
  .top__slider-ttl .inner {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 834px) {
  .top__slider-ttl .inner {
    flex-direction: column;
    align-items: center;
  }
}
.top__slider-ttl-title {
  font-size: 70px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: var(--main-color);
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .top__slider-ttl-title {
    font-size: 60px;
  }
}
@media screen and (max-width: 834px) {
  .top__slider-ttl-title {
    font-size: 50px;
  }
}
@media screen and (max-width: 640px) {
  .top__slider-ttl-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 376px) {
  .top__slider-ttl-title {
    font-size: 30px;
  }
}
.top__slider-ttl-title-text {
  font-size: 18px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .top__slider-ttl-title-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 834px) {
  .top__slider-ttl-title-text {
    font-size: 14px;
  }
}
.top__slider-ttl-title-text::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: var(--text-color);
}
@media screen and (max-width: 640px) {
  .top__slider-ttl-wrapper {
    align-self: flex-start;
  }
}
.top__slider-text {
  font-size: 24px;
  font-weight: bold;
  flex-shrink: 0;
}
@media (max-width: 1400px) {
  .top__slider-text {
    flex-shrink: 1;
  }
}
@media screen and (max-width: 1200px) {
  .top__slider-text {
    font-size: 22px;
  }
}
@media screen and (max-width: 834px) {
  .top__slider-text {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .top__slider-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 376px) {
  .top__slider-text {
    font-size: 16px;
  }
}
.top__slider-text .--s {
  display: block;
  font-size: 17px;
  font-weight: 600;
  margin-top: 2rem;
}
@media screen and (max-width: 1200px) {
  .top__slider-text .--s {
    font-size: 16px;
  }
}

/* ====================================================
    TOP-その他
    ==================================================== */
@media screen and (max-width: 1024px) {
  .top-sp-cta {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 4rem 0 0;
  }
}
@media screen and (max-width: 640px) {
  .top-sp-cta {
    margin: 3rem 0 0;
  }
}
@media screen and (max-width: 376px) {
  .top-sp-cta {
    margin: 2rem 0 0;
  }
}/*# sourceMappingURL=top.css.map */