@charset "UTF-8";
body {
  color: #727374;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: bold;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #727374;
  transition: all 0.3s;
}

img {
  width: 100%;
}

.fadein {
  transform: translateY(120px);
  transition: all 0.5s;
}

.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .sp-only {
    display: inline;
  }
  .pc-only {
    display: none;
  }
}
.container {
  max-width: 1072px;
  margin: 0 auto;
  padding-inline: 16px;
}

section {
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  section {
    margin-bottom: 60px;
  }
}

.banner {
  display: none;
}
@media (max-width: 767px) {
  .banner {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #AB905E;
    text-align: center;
    z-index: 20;
  }
  .banner a {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    padding-block: 16px;
  }
}

header.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #46687f;
  background-color: rgba(255, 255, 255, 0.7);
  height: 75px;
  padding-inline: 16px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
@media (max-width: 767px) {
  header.top {
    height: 60px;
  }
}
header.top .logo h1 {
  font-size: 32px;
}
@media (max-width: 767px) {
  header.top .logo h1 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  header.top .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 200px;
    height: 100vh;
    background-color: #000;
    padding: 100px 32px 0;
    transform: translateX(100%);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
  }
}
header.top .menu ul {
  display: flex;
}
@media (max-width: 767px) {
  header.top .menu ul {
    flex-direction: column;
  }
}
header.top .menu ul li {
  margin-left: 24px;
}
@media (max-width: 767px) {
  header.top .menu ul li {
    margin-left: 0;
    margin-bottom: 24px;
    width: -moz-fit-content;
    width: fit-content;
    border-bottom: 1px solid #fff;
  }
}
header.top .menu ul li a {
  color: #46687f;
}
@media (max-width: 767px) {
  header.top .menu ul li a {
    color: #fff;
  }
}
header.top .hamburger {
  display: none;
  height: 32px;
  width: 32px;
  position: relative;
  cursor: pointer;
  transition: all 0.5s;
  z-index: 20;
}
@media (max-width: 767px) {
  header.top .hamburger {
    display: block;
  }
}
header.top .hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #46687f;
  transition: all 0.5s;
}
header.top .hamburger span:nth-of-type(1) {
  top: 8%;
}
header.top .hamburger span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
header.top .hamburger span:nth-of-type(3) {
  bottom: 8%;
}

.top .mainvisual {
  background-image: url("../img/top-mainvisual.png");
  background-size: cover;
  background-position: center top;
  height: 100vh;
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  margin-bottom: 0;
}
.top .mainvisual .mainvisual-text {
  background: linear-gradient(to bottom, transparent, rgba(89, 169, 254, 0.7));
  padding-inline: 16px;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.top .mainvisual .mainvisual-text .mainvisual-text-en {
  font-size: 48px;
  font-weight: bold;
}
.top .mainvisual .mainvisual-text h2 {
  font-size: 36px;
  margin-block: 16px;
}
@media (max-width: 767px) {
  .top .mainvisual .mainvisual-text h2:last-of-type {
    font-size: 22px;
  }
}
.top .mainvisual .mainvisual-text h2 span {
  background: linear-gradient(transparent 70%, #0066b3 0%);
}
.top .counseling {
  display: block;
  max-width: 648px;
  margin: 56px auto 96px;
  padding-block: 20px;
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
  background: linear-gradient(to right, #7fbce5, #46687f);
}
@media (max-width: 767px) {
  .top .counseling {
    font-size: 20px;
  }
}
.top .section-title {
  text-align: center;
  position: relative;
  margin-bottom: 48px;
}
.top .section-title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  width: 104px;
  height: 2px;
  background-color: #4699ca;
}
.top .section-title h2 {
  display: inline-block;
  background-color: #4699ca;
  color: #fff;
  font-size: 16px;
  padding: 8px 32px;
  border-radius: 20px;
}
.top .section-title h3 {
  font-size: 28px;
  padding: 16px 0 24px;
}
@media (max-width: 767px) {
  .top .section-title h3 {
    font-size: 20px;
  }
}
.top .section-title p {
  padding-bottom: 24px;
}
.top .about-swiper {
  padding: 40px 0;
}
@media (max-width: 767px) {
  .top .about-swiper {
    padding-top: 0;
  }
}
.top .about-swiper .swiper-slide {
  width: 400px; /* ← 重要！Swiperが自動でslide幅を使う */
  height: 440px;
  padding: 24px;
  margin-right: 0;
  text-align: center;
  border: 1px solid #8c9ca8;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .top .about-swiper .swiper-slide {
    width: 220px;
    height: 360px;
  }
}
.top .about-swiper .swiper-slide .slide-img {
  width: 220px;
  margin: 0 auto 24px;
}
@media (max-width: 767px) {
  .top .about-swiper .swiper-slide .slide-img {
    width: 120px;
  }
}
.top .about-swiper .swiper-slide .slide-img img {
  width: 100%;
  height: auto;
}
.top .about-swiper .swiper-slide h4 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .top .about-swiper .swiper-slide h4 {
    font-size: 20px;
  }
}
.top .about-swiper .swiper-slide p {
  font-size: 20px;
  line-height: 1.6;
  color: #444;
}
@media (max-width: 767px) {
  .top .about-swiper .swiper-slide p {
    font-size: 16px;
  }
}
.top .top-message {
  margin-bottom: 160px;
}
.top .top-message .top-message-text {
  max-width: 720px;
  height: 420px;
  margin: 0 auto;
  background: linear-gradient(to right, #7fbce5, #46687f);
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}
.top .top-message .top-message-text .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  z-index: 10;
}
.top .top-message .top-message-text .content h4 {
  font-size: 24px;
  margin-bottom: 16px;
  text-align: center;
}
.top .top-message .top-message-text .content h5 {
  font-size: 24px;
}
.top .top-message .top-message-text .content p {
  margin-top: 16px;
}
.top .top-message .top-message-text .content p span {
  font-size: 24px;
}
.top .top-message .top-message-text .content .top-name {
  text-align: right;
}
.top .top-message .top-message-text img {
  position: absolute;
  bottom: 10px;
  right: 0;
  width: 240px;
  z-index: 0;
}
.top .service-content {
  background: linear-gradient(to right, #7fbce5, #46687f);
  padding-block: 32px;
}
.top .service-content .container {
  max-width: 720px;
}
.top .service-content .container .service-video {
  position: relative;
  padding-bottom: 32px;
}
.top .service-content .container .service-video img {
  display: block;
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 44px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .top .service-content .container .service-video img {
    height: 200px;
  }
}
.top .service-content .container .service-video .video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 48px;
  border: none;
  width: 80px;
  height: 80px;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s;
}
.top .service-content .container .service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 32px;
}
.top .service-content .container .service-list li {
  height: 184px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
  border-radius: 16px;
  position: relative;
}
@media (max-width: 767px) {
  .top .service-content .container .service-list li {
    height: 120px;
  }
}
.top .service-content .container .service-list li img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.top .service-content .container .service-list li p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .top .service-content .container .service-list li p {
    font-size: 24px;
  }
}
.top .reason .reason-img {
  max-width: 640px;
  margin: 0 auto 24px;
}
.top .reason .reason-img img {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .top .reason .reason-img img {
    height: 240px;
  }
}
.top .reason .reason-list li {
  display: flex;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .top .reason .reason-list li {
    flex-direction: column;
    align-items: center;
  }
}
.top .reason .reason-list li .reason-list-img {
  width: 80px;
  margin-right: 32px;
}
.top .reason .reason-list li h4 {
  font-size: 24px;
  margin-bottom: 8px;
}
.top .reason .recommendation {
  margin: 64px 0 160px;
}
.top .reason .recommendation h4 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 32px;
}
.top .reason .recommendation h4 span {
  background: linear-gradient(transparent 70%, rgba(36, 161, 255, 0.5098039216) 0%);
}
.top .reason .recommendation .recommendation-list {
  border: 1px solid;
  padding: 48px 32px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .top .reason .recommendation .recommendation-list {
    padding: 24px 16px;
  }
}
.top .reason .recommendation .recommendation-list li {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  color: #0066b3;
  font-weight: bold;
}
.top .reason .recommendation .recommendation-list li img {
  width: 42px;
  margin-right: 32px;
}
@media (max-width: 767px) {
  .top .reason .recommendation .recommendation-list li img {
    margin-right: 16px;
  }
}
.top .reason .recommendation .recommendation-list li span {
  background: linear-gradient(transparent 80%, #ffee00 0%);
}
.top .reason .recommendation .recommendation-list p {
  font-size: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .top .reason .recommendation .recommendation-list p {
    font-size: 18px;
    text-align: left;
  }
}
.top .price {
  margin-bottom: 160px;
}
.top .price .price-text {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .top .price .price-text {
    font-size: 20px;
  }
}
.top .price .price-text p {
  margin-bottom: 32px;
}
.top .price .price-text p span {
  font-size: 48px;
  color: #0066b3;
}
@media (max-width: 767px) {
  .top .price .price-text p span {
    font-size: 32px;
  }
}
.top .stores {
  max-width: 720px;
  margin: 0 auto 160px;
  padding-inline: 16px;
}
.top .stores .stores-list {
  display: flex;
  flex-wrap: wrap;
}
.top .stores .stores-list .store {
  width: 50%;
  text-align: center;
  border-bottom: 1px solid #b8b8b8;
  padding-bottom: 24px;
  margin-bottom: 48px;
  cursor: pointer;
}
.top .stores .stores-list .store:last-of-type {
  border-bottom: none;
}
.top .stores .stores-list .store .store-name {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .top .stores .stores-list .store .store-name {
    font-size: 20px;
  }
}
.top .stores .stores-list .store img {
  width: 160px;
}
@media (max-width: 767px) {
  .top .stores .stores-list .store img {
    width: 120px;
  }
}
.top .stores .stores-list .store .map-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100vw;
  height: 100vh;
  transform: translateY(-50%);
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.top .stores .stores-list .store .map-modal .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top .stores .stores-list .store .map-modal .container .map iframe {
  display: block;
}
.top .stores .stores-list .store .map-modal .container .map-text {
  margin-left: 32px;
  text-align: left;
}
.top .stores .stores-list .store .map-modal .container .map-text p {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 32px;
}
.top .stores .stores-list .store .map-modal .container .map-text dd {
  margin-bottom: 24px;
}
.top .stores .stores-list .open .map-modal {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.top .news {
  margin-bottom: 120px;
}
.top .news .column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 767px) {
  .top .news .column {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.top .news .column li {
  width: 100%;
}
@media (max-width: 767px) {
  .top .news .column li .column-date {
    font-size: 12px;
  }
}
.top .news .column li h4 {
  font-size: 18px;
  margin-block: 8px;
}
@media (max-width: 767px) {
  .top .news .column li h4 {
    font-size: 12px;
  }
}
.top .news .column li .column-cat {
  display: inline-block;
  padding: 4px;
  background-color: #4699ca;
  color: #fff;
}
@media (max-width: 767px) {
  .top .news .column li .column-cat {
    font-size: 12px;
  }
}

.menu {
  padding: 16px;
  position: fixed;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}
.menu nav {
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  padding: 60px;
  background-color: #fff;
  transform: translateX(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 10;
}
.menu nav li {
  margin-bottom: 24px;
}
.menu nav li a {
  font-size: 20px;
}
.menu .hamburger {
  margin-left: auto;
  width: 40px;
  height: 40px;
  transition: all 0.5s;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
.menu .hamburger span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all 0.5s;
}
.menu .hamburger span:nth-of-type(1) {
  top: 22%;
}
.menu .hamburger span:nth-of-type(2) {
  top: 50%;
}
.menu .hamburger span:nth-of-type(3) {
  top: 78%;
}

header.open {
  position: fixed;
}
header.open nav {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
header.open .hamburger span:nth-of-type(1) {
  top: 50%;
  transform: rotate(-45deg);
}
header.open .hamburger span:nth-of-type(2) {
  opacity: 0;
}
header.open .hamburger span:nth-of-type(3) {
  top: 50%;
  transform: rotate(45deg);
}

.sub .mainvisual {
  background-size: cover;
  background-position: center top;
  height: 100vh;
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  margin: 0 auto;
  max-width: 1500px;
}
@media (max-width: 767px) {
  .sub .mainvisual {
    height: 75vh;
  }
}
.sub .mainvisual .vertical {
  writing-mode: vertical-rl;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.4), 2px 2px 4px rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 32px;
  left: 32px;
}
@media (max-width: 767px) {
  .sub .mainvisual .vertical {
    font-size: 24px;
  }
}
.sub .mainvisual .mainvisual-text {
  padding-inline: 16px;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.sub .mainvisual .mainvisual-text p {
  font-size: 24px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px;
}
@media (max-width: 767px) {
  .sub .mainvisual .mainvisual-text p {
    font-size: 16px;
  }
}
.sub .mainvisual .mainvisual-text h1 {
  font-size: 40px;
  margin-block: 16px;
  line-height: 96px;
}
@media (max-width: 767px) {
  .sub .mainvisual .mainvisual-text h1 {
    font-size: 24px;
    line-height: 40px;
    margin-block: 8px;
  }
}
.sub .mainvisual .mainvisual-text h1 span {
  font-size: 64px;
}
@media (max-width: 767px) {
  .sub .mainvisual .mainvisual-text h1 span {
    font-size: 32px;
  }
}
.sub .mainvisual .mainvisual-text h1 .bgpink {
  background: linear-gradient(to right, #de83a8, #d3aae1);
}
.sub .experience {
  display: block;
  max-width: 720px;
  margin: 40px auto;
  padding-block: 20px;
  text-align: center;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
  background: linear-gradient(to right, #de83a8, #d3aae1);
}
@media (max-width: 767px) {
  .sub .experience {
    font-size: 16px;
    width: -moz-fit-content;
    width: fit-content;
    padding: 16px;
  }
}
.sub .campaign {
  max-width: 720px;
  margin: 0 auto 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-block: 8px;
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  background: linear-gradient(to right, #de83a8, #d3aae1);
  cursor: pointer;
}
@media (max-width: 767px) {
  .sub .campaign {
    margin-bottom: 60px;
  }
}
.sub .campaign .campaign-img {
  margin-right: 24px;
}
.sub .campaign .campaign-img img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
.sub .campaign .campaign-text h3 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .sub .campaign .campaign-text h3 {
    font-size: 16px;
  }
}
.sub .campaign .campaign-text p {
  font-size: 24px;
}
@media (max-width: 767px) {
  .sub .campaign .campaign-text p {
    font-size: 16px;
  }
}
.sub .modal {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.sub .modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 4px;
  width: 90%;
  max-width: 600px;
  border-radius: 8px;
  text-align: center;
}
.sub .modal .modal-content img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
.sub .modal .modal-content .close {
  position: absolute;
  top: 8px;
  right: 12px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.sub .modal .modal-content .close:hover {
  color: #000;
}
.sub .section-title {
  text-align: center;
}
.sub .section-title p {
  font-size: 32px;
}
@media (max-width: 767px) {
  .sub .section-title p {
    font-size: 16px;
  }
}
.sub .section-title h3 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 56px;
  color: #df83a7;
  position: relative;
}
@media (max-width: 767px) {
  .sub .section-title h3 {
    font-size: 24px;
  }
}
.sub .section-title h3::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -24px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #df83a7;
}
.sub .section-title h3::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -24px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #df83a7;
}
.sub .section-title h2 {
  font-size: 48px;
  color: #df83a7;
}
@media (max-width: 767px) {
  .sub .section-title h2 {
    font-size: 32px;
    margin-bottom: 16px;
  }
}
.sub .sub-swiper {
  padding: 40px 0;
}
@media (max-width: 767px) {
  .sub .sub-swiper {
    padding-top: 0;
  }
}
.sub .sub-swiper .swiper-slide {
  width: 600px; /* ← 重要！Swiperが自動でslide幅を使う */
  height: 700px;
  padding: 24px;
  margin-right: 0;
  text-align: center;
  border: 3px solid #df83a7;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
@media (max-width: 767px) {
  .sub .sub-swiper .swiper-slide {
    padding: 10px;
    width: 320px;
    height: 620px;
  }
}
.sub .sub-swiper .swiper-slide .slide-img {
  width: 70%;
  margin: 24px auto;
}
@media (max-width: 767px) {
  .sub .sub-swiper .swiper-slide .slide-img {
    width: 100%;
    margin-block: 8px;
  }
}
.sub .sub-swiper .swiper-slide .slide-img img {
  width: 100%;
}
.sub .sub-swiper .swiper-slide h4 {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: bold;
  color: #df83a7;
}
@media (max-width: 767px) {
  .sub .sub-swiper .swiper-slide h4 {
    font-size: 24px;
    margin-bottom: 0;
  }
}
.sub .sub-swiper .swiper-slide h5 {
  color: #df83a7;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .sub .sub-swiper .swiper-slide h5 {
    font-size: 24px;
  }
}
.sub .sub-swiper .swiper-slide h5 span {
  font-size: 30px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .sub .sub-swiper .swiper-slide h5 span {
    font-size: 24px;
  }
}
.sub .sub-swiper .swiper-slide p {
  text-align: left;
  font-size: 20px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .sub .sub-swiper .swiper-slide p {
    font-size: 16px;
  }
}
.sub .sub-swiper .swiper-slide a {
  display: inline-block;
  color: blue;
  margin-top: 16px;
}
.sub .sub-swiper .swiper-button-prev {
  margin-left: 10%;
  background-color: #df83a7;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
}
@media (max-width: 767px) {
  .sub .sub-swiper .swiper-button-prev {
    width: 16px;
    height: 16px;
    display: none;
  }
}
.sub .sub-swiper .swiper-button-prev::after {
  content: "◀︎";
  font-size: 30px;
  cursor: pointer;
  display: block;
}
@media (max-width: 767px) {
  .sub .sub-swiper .swiper-button-prev::after {
    font-size: 8px;
  }
}
@media (max-width: 767px) {
  .sub .sub-swiper .swiper-button-prev {
    margin-left: 1%;
  }
}
.sub .sub-swiper .swiper-button-next {
  margin-right: 10%;
  background-color: #df83a7;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
}
@media (max-width: 767px) {
  .sub .sub-swiper .swiper-button-next {
    width: 16px;
    height: 16px;
    display: none;
  }
}
.sub .sub-swiper .swiper-button-next::after {
  content: "▶︎";
  font-size: 30px;
  cursor: pointer;
  display: block;
}
@media (max-width: 767px) {
  .sub .sub-swiper .swiper-button-next::after {
    font-size: 8px;
  }
}
@media (max-width: 767px) {
  .sub .sub-swiper .swiper-button-next {
    margin-right: 1%;
  }
}
.sub .sub-swiper .swiper-pagination-bullet {
  background-color: #ccc;
  opacity: 1;
}
.sub .sub-swiper .swiper-pagination-bullet-active {
  background-color: #df83a7;
  border: 1px solid #ccc;
  width: 16px;
  height: 16px;
  transform: translateY(4px);
}
.sub .promotion {
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .sub .promotion {
    margin-bottom: 60px;
  }
}
.sub .promotion h2 {
  text-align: center;
  font-size: 24px;
  color: #fff;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.4), 2px 2px 4px rgba(0, 0, 0, 0.6);
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .sub .promotion h2 {
    font-size: 18px;
  }
}
.sub .promotion h2 span {
  font-size: 32px;
}
@media (max-width: 767px) {
  .sub .promotion h2 span {
    font-size: 20px;
  }
}
.sub .promotion .promotion-img {
  max-width: 720px;
  margin: 0 auto;
}
.sub .promotion .promotion-img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.sub .promotion .promotion-img video {
  width: 100%;
}
.sub .promotion .top-message-text {
  max-width: 720px;
  height: 420px;
  margin: 0 auto;
  background: linear-gradient(to right, #de83a8, #d3aae1);
  color: #fff;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
  position: relative;
}
.sub .promotion .top-message-text .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  z-index: 10;
}
.sub .promotion .top-message-text .content h4 {
  font-size: 24px;
  margin-bottom: 16px;
  text-align: center;
}
.sub .promotion .top-message-text .content h5 {
  font-size: 24px;
}
.sub .promotion .top-message-text .content p {
  margin-top: 16px;
}
.sub .promotion .top-message-text .content p span {
  font-size: 24px;
}
.sub .promotion .top-message-text .content .top-name {
  text-align: right;
}
.sub .promotion .top-message-text img {
  position: absolute;
  bottom: -8px;
  right: 0;
  width: 240px;
  z-index: 0;
}
.sub .before-after {
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .sub .before-after {
    margin-bottom: 60px;
  }
}
.sub .before-after h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  font-size: 48px;
  color: #df83a7;
  position: relative;
}
@media (max-width: 767px) {
  .sub .before-after h2 {
    font-size: 32px;
  }
}
.sub .before-after h2::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -24px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #df83a7;
}
.sub .before-after h2::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -24px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #df83a7;
}
.sub .before-after .example {
  max-width: 720px;
  margin: 0 auto 32px;
  border: 4px solid #df83a7;
  border-radius: 16px;
}
.sub .before-after .example h3 {
  padding: 16px;
  font-size: 20px;
  color: #fff;
  background-color: #df83a7;
  border-radius: 11px;
  cursor: pointer;
  position: relative;
}
@media (max-width: 767px) {
  .sub .before-after .example h3 {
    font-size: 16px;
  }
}
.sub .before-after .example h3::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 20.78px 12px 0px 12px;
}
.sub .before-after .example .example-content {
  display: none;
  text-align: center;
}
.sub .before-after .example .example-content .toggle-switch {
  margin-top: 16px;
  display: inline-flex;
  border-radius: 999px;
  overflow: hidden;
  background: #ccc;
  font-weight: bold;
  font-size: 16px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  /* チェックされた時の見た目を入れ替え */
}
.sub .before-after .example .example-content .toggle-switch input {
  display: none;
}
.sub .before-after .example .example-content .toggle-switch .switch {
  padding: 8px 24px;
  cursor: pointer;
  color: #fff;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 999px;
}
.sub .before-after .example .example-content .toggle-switch .before-btn {
  background-color: #d86c99; /* ピンク */
}
.sub .before-after .example .example-content .toggle-switch .after-btn {
  background-color: #ccc;
}
.sub .before-after .example .example-content .toggle-switch input:checked ~ .before-btn {
  background-color: #ccc;
}
.sub .before-after .example .example-content .toggle-switch input:checked ~ .after-btn {
  background-color: #d86c99;
  color: #fff;
}
.sub .before-after .example .example-content .before,
.sub .before-after .example .example-content .after {
  padding: 16px;
  text-align: center;
}
.sub .before-after .example .example-content .before .example-img,
.sub .before-after .example .example-content .after .example-img {
  max-width: 480px;
  margin: 0 auto;
}
.sub .before-after .example .example-content .before .example-img img,
.sub .before-after .example .example-content .after .example-img img {
  height: 320px;
  width: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.sub .before-after .example .example-content .before .point-list dt,
.sub .before-after .example .example-content .after .point-list dt {
  font-size: 20px;
  font-weight: bold;
  margin-top: 16px;
}
.sub .before-after .example .example-content .before p,
.sub .before-after .example .example-content .after p {
  font-size: 20px;
  font-weight: bold;
  color: #df83a7;
  margin-top: 24px;
}
.sub .before-after .example .example-content .after {
  display: none;
}
.sub .before-after .example.change .before {
  display: none;
}
.sub .before-after .example.change .after {
  display: block;
}
.sub .before-after .open h3::after {
  border-color: transparent transparent #fff transparent;
  border-width: 0px 12px 20.78px 12px;
}
.sub .before-after .open .example-content {
  display: block;
}
.sub .voice {
  text-align: center;
}
.sub .voice h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  font-size: 48px;
  color: #df83a7;
  position: relative;
}
@media (max-width: 767px) {
  .sub .voice h2 {
    font-size: 32px;
  }
}
.sub .voice h2::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -24px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #df83a7;
}
.sub .voice h2::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -24px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #df83a7;
}
.sub .voice .sub-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .sub .voice .sub-title {
    font-size: 20px;
  }
}
.sub .voice .video {
  max-width: 720px;
  margin: 0 auto 16px;
}
.sub .voice .video img {
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .sub .voice .video img {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .sub .voice .sub-swiper .swiper-slide {
    height: 440px;
  }
}
.sub .voice .sub-swiper .swiper-slide h3 {
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: bold;
  color: #df83a7;
}
@media (max-width: 767px) {
  .sub .voice .sub-swiper .swiper-slide h3 {
    font-size: 20px;
    margin-bottom: 8px;
  }
}
.sub .voice .sub-swiper .swiper-slide .evaluation {
  width: 240px;
}
@media (max-width: 767px) {
  .sub .voice .sub-swiper .swiper-slide .evaluation {
    width: 120px;
  }
}
.sub .voice .sub-swiper .swiper-slide p {
  text-align: left;
  font-size: 20px;
  line-height: 1.6;
  margin-top: 16px;
}
.sub .voice .sub-swiper .swiper-slide p span {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .sub .voice .sub-swiper .swiper-slide p span {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .sub .voice .sub-swiper .swiper-slide p {
    font-size: 16px;
  }
}
.sub .voice .phrase {
  font-size: 32px;
  transform: translateY(32px);
}
@media (max-width: 767px) {
  .sub .voice .phrase {
    font-size: 16px;
    transform: translateY(32px);
  }
}
.sub .problems {
  text-align: center;
  padding-block: 32px;
  margin-bottom: 120px;
  background-color: #313131;
}
@media (max-width: 767px) {
  .sub .problems {
    margin-bottom: 60px;
  }
}
.sub .problems .container > p {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .sub .problems .container > p {
    font-size: 16px;
  }
}
.sub .problems .container > p span {
  color: #FFEE00;
}
.sub .problems h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  font-size: 32px;
  color: #FFEE00;
  position: relative;
}
@media (max-width: 767px) {
  .sub .problems h2 {
    font-size: 32px;
  }
}
.sub .problems h2::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -24px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #FFEE00;
}
.sub .problems h2::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -24px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #FFEE00;
}
.sub .problems .underline {
  max-width: 600px;
  margin: 0 auto 32px;
}
.sub .problems li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 64px;
}
@media (max-width: 767px) {
  .sub .problems li {
    margin-bottom: 24px;
  }
}
.sub .problems li:nth-of-type(1) .promblem-text, .sub .problems li:nth-of-type(3) .promblem-text, .sub .problems li:nth-of-type(5) .promblem-text {
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translateY(-50%);
}
.sub .problems li:nth-of-type(1) .promblem-text p, .sub .problems li:nth-of-type(3) .promblem-text p, .sub .problems li:nth-of-type(5) .promblem-text p {
  margin-left: auto;
}
.sub .problems li:nth-of-type(5) .problem-img {
  width: 400px;
  text-align: left;
}
.sub .problems li:nth-of-type(5) .problem-img img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-right-radius: 58px;
  border-bottom-right-radius: 58px;
}
@media (max-width: 767px) {
  .sub .problems li:nth-of-type(5) .problem-img img {
    height: 194px;
  }
}
.sub .problems li:nth-of-type(2), .sub .problems li:nth-of-type(4) {
  flex-direction: row-reverse;
}
.sub .problems li:nth-of-type(2) .promblem-text, .sub .problems li:nth-of-type(4) .promblem-text {
  position: absolute;
  top: 50%;
  right: 16%;
  transform: translateY(-50%);
}
.sub .problems li .problem-img img {
  width: 400px;
}
@media (max-width: 767px) {
  .sub .problems li .problem-img img {
    width: 260px;
  }
}
.sub .problems li p {
  -moz-text-align-last: left;
       text-align-last: left;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background-color: #000000;
  margin-bottom: 16px;
  padding: 8px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .sub .problems li p {
    font-size: 16px;
  }
}
.sub .problems li p:last-of-type {
  color: #FFEE00;
}
@media (max-width: 767px) {
  .sub .problems li p:last-of-type {
    font-size: 16px;
  }
}
.sub .problems .arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-bottom: 64px;
}
.sub .problems .arrow .bar {
  position: relative;
  width: 600px;
  height: 20px;
  background-color: #d86c99;
}
@media (max-width: 767px) {
  .sub .problems .arrow .bar {
    width: 300px;
  }
}
.sub .problems .arrow .bar::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 300px solid transparent;
  border-right: 300px solid transparent;
  border-top: 20px solid #d86c99;
}
@media (max-width: 767px) {
  .sub .problems .arrow .bar::after {
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
  }
}
.sub .problems .arrow .bar:nth-child(2) {
  background-color: #d86c99;
  opacity: 0.6;
}
.sub .problems .arrow .bar:nth-child(2)::after {
  border-top-color: #d86c99;
}
.sub .problems .arrow .bar:nth-child(3) {
  background-color: #d86c99;
  opacity: 0.3;
}
.sub .problems .arrow .bar:nth-child(3)::after {
  border-top-color: #d86c99;
}
.sub .features > P {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .sub .features > P {
    font-size: 32px;
  }
}
.sub .features h2 {
  font-size: 48px;
  color: #df83a7;
  text-align: center;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .sub .features h2 {
    font-size: 32px;
  }
}
.sub .features h2 span {
  font-size: 64px;
}
@media (max-width: 767px) {
  .sub .features h2 span {
    font-size: 48px;
  }
}
.sub .features .swiper-slide {
  height: 620px;
}
@media (max-width: 767px) {
  .sub .features .swiper-slide {
    height: 460px;
  }
}
.sub .features .swiper-slide img {
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .sub .features .swiper-slide img {
    height: 180px;
  }
}
.sub .lesson {
  text-align: center;
  background: url("../img/lesson-bg.png");
  background-size: cover;
  padding-block: 32px;
}
.sub .lesson .container .phrase {
  font-size: 32px;
}
@media (max-width: 767px) {
  .sub .lesson .container .phrase {
    font-size: 16px;
  }
}
.sub .lesson .container h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  font-size: 64px;
  color: #df83a7;
  position: relative;
}
@media (max-width: 767px) {
  .sub .lesson .container h2 {
    font-size: 32px;
  }
}
.sub .lesson .container h2::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -24px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #df83a7;
}
.sub .lesson .container h2::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -24px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #df83a7;
}
.sub .lesson .container p {
  font-size: 24px;
}
@media (max-width: 767px) {
  .sub .lesson .container p {
    font-size: 16px;
  }
}
.sub .lesson .sub-swiper {
  margin-top: 24px;
}
.sub .lesson .sub-swiper .swiper-slide {
  height: 540px;
  background-color: #fff;
  position: relative;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .sub .lesson .sub-swiper .swiper-slide {
    height: 380px;
  }
}
.sub .lesson .sub-swiper .swiper-slide .slide-img {
  width: 100%;
}
.sub .lesson .sub-swiper .swiper-slide .slide-img img {
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .sub .lesson .sub-swiper .swiper-slide .slide-img img {
    height: 160px;
  }
}
.sub .lesson .sub-swiper .swiper-slide h4 {
  margin-bottom: 0;
  position: absolute;
  top: -24px;
  left: -24px;
  background-color: #df83a7;
  color: #fff;
  width: 96px;
  height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  font-size: 16px;
}
.sub .lesson .sub-swiper .swiper-slide h4 span {
  font-size: 32px;
}
.sub .lesson .sub-swiper .swiper-slide h5 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .sub .lesson .sub-swiper .swiper-slide h5 {
    font-size: 24px;
  }
}
.sub .instructor {
  text-align: center;
}
.sub .instructor .container h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  font-size: 64px;
  color: #df83a7;
  position: relative;
}
@media (max-width: 767px) {
  .sub .instructor .container h2 {
    font-size: 28px;
  }
}
.sub .instructor .container h2::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -24px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #df83a7;
}
.sub .instructor .container h2::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -24px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #df83a7;
}
.sub .instructor .container p {
  font-size: 24px;
}
@media (max-width: 767px) {
  .sub .instructor .container p {
    font-size: 16px;
  }
}
.sub .instructor .sub-swiper {
  margin-block: 24px;
}
.sub .instructor .sub-swiper .swiper-slide {
  height: 460px;
}
@media (max-width: 767px) {
  .sub .instructor .sub-swiper .swiper-slide {
    height: 340px;
  }
}
.sub .instructor .sub-swiper .swiper-slide h4 {
  margin-bottom: 0;
}
.sub .instructor .sub-swiper .slide-img {
  width: 100%;
}
.sub .instructor .sub-swiper .slide-img img {
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .sub .instructor .sub-swiper .slide-img img {
    height: 160px;
  }
}
.sub .questions {
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .sub .questions {
    margin-bottom: 60px;
  }
}
.sub .questions h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  font-size: 64px;
  color: #df83a7;
  position: relative;
}
@media (max-width: 767px) {
  .sub .questions h2 {
    font-size: 32px;
  }
}
.sub .questions h2::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -24px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #df83a7;
}
.sub .questions h2::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -24px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #df83a7;
}
.sub .questions ul li {
  border: 3px solid #df83a7;
  margin-bottom: 24px;
  border-radius: 16px;
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .sub .questions ul li {
    font-size: 16px;
  }
}
.sub .questions ul li .question {
  background-color: #df83a7;
  color: #fff;
  padding: 16px 16px 16px 56px;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
}
@media (max-width: 767px) {
  .sub .questions ul li .question {
    padding: 16px 40px;
  }
}
.sub .questions ul li .question::before {
  position: absolute;
  top: 16px;
  left: 10px;
  content: "Q.";
  color: #fff;
}
.sub .questions ul li .question::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 20.78px 12px 0px 12px;
}
.sub .questions ul li .answer {
  padding: 16px 16px 16px 56px;
  position: relative;
  display: none;
}
@media (max-width: 767px) {
  .sub .questions ul li .answer {
    padding: 16px 16px 16px 32px;
  }
}
.sub .questions ul li .answer::before {
  position: absolute;
  top: 16px;
  left: 10px;
  content: "A.";
}
.sub .questions ul .open .question::after {
  border-color: transparent transparent #fff transparent;
  border-width: 0px 12px 20.78px 12px;
}
.sub .price {
  text-align: center;
  font-weight: bold;
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .sub .price {
    margin-bottom: 60px;
  }
}
.sub .price h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  font-size: 64px;
  color: #df83a7;
  position: relative;
}
@media (max-width: 767px) {
  .sub .price h2 {
    font-size: 32px;
  }
}
.sub .price h2::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -24px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #df83a7;
}
.sub .price h2::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -24px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #df83a7;
}
.sub .price p {
  margin-bottom: 16px;
  font-size: 24px;
}
@media (max-width: 767px) {
  .sub .price p {
    font-size: 16px;
  }
}
.sub .price p span {
  color: #df83a7;
}
.sub .price p a {
  color: blue;
}
.sub .price .price-text {
  font-size: 32px;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .sub .price .price-text {
    font-size: 16px;
  }
}
.sub .price .price-text .relative {
  position: relative;
  color: #df83a7;
}
.sub .price .price-text .relative .tax {
  position: absolute;
  bottom: -16px;
  right: 0;
  font-size: 10px;
  width: -moz-fit-content;
  width: fit-content;
  color: #727374;
}
.sub .news {
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .sub .news {
    margin-bottom: 60px;
  }
}
.sub .news h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  font-size: 64px;
  color: #df83a7;
  position: relative;
}
@media (max-width: 767px) {
  .sub .news h2 {
    font-size: 32px;
  }
}
.sub .news h2::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -24px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #df83a7;
}
.sub .news h2::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -24px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #df83a7;
}
.sub .news .column {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 767px) {
  .sub .news .column {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.sub .news .column li {
  width: 100%;
}
@media (max-width: 767px) {
  .sub .news .column li .column-date {
    font-size: 12px;
  }
}
.sub .news .column li h4 {
  font-size: 18px;
  margin-block: 8px;
}
@media (max-width: 767px) {
  .sub .news .column li h4 {
    font-size: 12px;
  }
}
.sub .news .column li .column-cat {
  display: inline-block;
  padding: 4px;
  background-color: #df83a7;
  color: #fff;
}
@media (max-width: 767px) {
  .sub .news .column li .column-cat {
    font-size: 12px;
  }
}
.sub .stores h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  font-size: 64px;
  color: #df83a7;
  position: relative;
}
@media (max-width: 767px) {
  .sub .stores h2 {
    font-size: 32px;
  }
}
.sub .stores h2::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -24px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #df83a7;
}
.sub .stores h2::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -24px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #df83a7;
}
.sub .stores .store {
  padding: 16px;
  background-color: #f8f9fa;
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .sub .stores .store {
    flex-direction: column;
    margin-bottom: 60px;
  }
}
.sub .stores .store .store-left,
.sub .stores .store .store-right {
  width: 48%;
  background-color: white;
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .sub .stores .store .store-left,
  .sub .stores .store .store-right {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .sub .stores .store .store-left {
    margin-bottom: 24px;
  }
}
.sub .stores .store .store-left img {
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}
.sub .stores .store .store-left dl {
  display: flex;
  flex-wrap: wrap;
  padding: 16px;
  font-size: 10px;
}
.sub .stores .store .store-left dl dt {
  width: 20%;
}
.sub .stores .store .store-left dl dd {
  width: 80%;
}
.sub .stores .store .store-right {
  display: flex;
  flex-direction: column;
  max-height: 1000px;
}
@media (max-width: 767px) {
  .sub .stores .store .store-right {
    height: 360px;
  }
}
.sub .stores .store .store-right a {
  display: block;
  margin: 0 auto;
  background-color: #df83a7;
  padding: 16px;
  margin-top: 24px;
  color: #fff;
  font-weight: bold;
  border-radius: 16px;
}
.sub .access {
  margin-bottom: 120px;
}
.sub .access h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  font-size: 64px;
  color: #df83a7;
  position: relative;
}
@media (max-width: 767px) {
  .sub .access h2 {
    font-size: 24px;
  }
}
.sub .access h2::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -24px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #df83a7;
}
.sub .access h2::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -24px;
  content: "";
  width: 24px;
  height: 2px;
  background-color: #df83a7;
}
.sub .access .access-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .sub .access .access-content {
    flex-direction: column;
  }
}
.sub .access .access-content .text {
  width: 50%;
}
@media (max-width: 767px) {
  .sub .access .access-content .text {
    width: 100%;
  }
}
.sub .access .access-content .text .text-term {
  color: #4699ca;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
.sub .access .access-content .text .text-description {
  margin-bottom: 32px;
}
.sub .access .access-content .text .text-description dl {
  display: flex;
  flex-wrap: wrap;
}
.sub .access .access-content .text .text-description dl dt {
  width: 15%;
  margin-bottom: 8px;
}
.sub .access .access-content .text .text-description dl dd {
  width: 85%;
  margin-bottom: 8px;
}
.sub .access .access-content .map {
  width: 50%;
}
@media (max-width: 767px) {
  .sub .access .access-content .map {
    width: 100%;
  }
}

.sub header {
  padding-top: 32px;
}
.sub header p {
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 64px;
  position: relative;
}
@media (max-width: 767px) {
  .sub header p {
    font-size: 24px;
  }
}
.sub header p::before {
  position: absolute;
  top: 56px;
  left: 24px;
  content: "";
  width: 120px;
  height: 1px;
  background-color: #727374;
}
@media (max-width: 767px) {
  .sub header p::before {
    top: 40px;
    left: 16px;
    width: 80px;
  }
}
.sub .mainphrase {
  background: linear-gradient(to bottom, transparent, rgba(89, 215, 254, 0.4));
}
.sub .mainphrase h1 {
  font-size: 32px;
}
@media (max-width: 767px) {
  .sub .mainphrase h1 {
    font-size: 24px;
  }
}
.sub .mainphrase p {
  font-size: 32px;
  padding-bottom: 64px;
}
@media (max-width: 767px) {
  .sub .mainphrase p {
    font-size: 24px;
  }
}
.sub .trial {
  background-color: #3d4550;
  color: #fff;
  text-align: center;
}
.sub .trial .inner {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 32px;
}
.sub .trial .inner .trial-cta1 {
  display: inline-block;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  margin-block: 38px;
  padding: 16px;
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
@media (max-width: 767px) {
  .sub .trial .inner .trial-cta1 {
    font-size: 20px;
  }
}
.sub .trial .inner .trial-img {
  max-width: 580px;
  margin: 0 auto;
}
.sub .trial .inner h2 {
  text-align: left;
  font-size: 32px;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #fff;
}
@media (max-width: 767px) {
  .sub .trial .inner h2 {
    font-size: 24px;
  }
}
.sub .trial .inner p {
  text-align: left;
  font-size: 20px;
}
@media (max-width: 767px) {
  .sub .trial .inner p {
    font-size: 16px;
  }
}
.sub .trial .trial-cta2 {
  display: block;
  text-align: center;
  background-color: #ab905e;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  padding-block: 32px;
}
@media (max-width: 767px) {
  .sub .trial .trial-cta2 {
    padding-block: 16px;
    font-size: 18px;
  }
}
.sub .subscription .subscription-top {
  background-image: url("../img/subscription.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 600px;
  color: #fff;
}
.sub .subscription .subscription-top .container {
  position: relative;
  height: 100%;
}
.sub .subscription .subscription-top .container .top-msg {
  position: absolute;
  top: 24px;
  left: 16px;
}
.sub .subscription .subscription-top .container .top-msg p {
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .sub .subscription .subscription-top .container .top-msg p {
    font-size: 24px;
  }
}
.sub .subscription .subscription-top .container .top-msg h2 {
  font-size: 48px;
}
@media (max-width: 767px) {
  .sub .subscription .subscription-top .container .top-msg h2 {
    font-size: 32px;
  }
}
.sub .subscription .subscription-top .container .slide-msg {
  position: absolute;
  bottom: 24px;
  right: 16px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .sub .subscription .subscription-top .container .slide-msg {
    font-size: 16px;
  }
}
.sub .subscription .subscription-top .container .slide-msg p {
  background-color: rgba(171, 144, 94, 0.8705882353);
  padding: 16px 16px 16px 48px;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-clip-path: polygon(40px 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(40px 0%, 100% 0%, 100% 100%, 0% 100%);
  margin-top: 16px;
  margin-left: auto;
  text-align: right;
}
.sub .subscription .subscription-top .container .slide-msg a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-top: 16px;
  color: #fff;
  font-size: 14px;
  text-decoration: underline;
}
.sub .subscription .subscription-content {
  margin-top: 48px;
  text-align: center;
}
.sub .subscription .subscription-content .en {
  font-weight: bold;
}
.sub .subscription .subscription-content h3 {
  font-size: 48px;
  color: #4699ca;
  border-bottom: 1px solid black;
  width: -moz-fit-content;
  width: fit-content;
  margin: 8px auto;
}
@media (max-width: 767px) {
  .sub .subscription .subscription-content h3 {
    font-size: 32px;
  }
}
.sub .subscription .subscription-content .monthly h4 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 32px auto 48px;
  background-color: #4699ca;
  color: #fff;
  font-size: 24px;
  padding: 8px;
}
@media (max-width: 767px) {
  .sub .subscription .subscription-content .monthly h4 {
    font-size: 20px;
  }
}
.sub .subscription .subscription-content .monthly ul {
  max-width: 720px;
  margin: 0 auto;
}
.sub .subscription .subscription-content .monthly ul li {
  padding: 32px;
  border: 3px solid #4699ca;
  position: relative;
  margin-bottom: 48px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.sub .subscription .subscription-content .monthly ul li h5 {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  left: -3px;
  padding: 8px 16px;
  font-size: 20px;
  color: #fff;
  background-color: #4699ca;
  border-radius: 100px;
}
@media (max-width: 767px) {
  .sub .subscription .subscription-content .monthly ul li h5 {
    font-size: 16px;
  }
}
.sub .subscription .subscription-content .monthly ul li .sub-title {
  background-color: #4699ca;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding: 8px;
}
@media (max-width: 767px) {
  .sub .subscription .subscription-content .monthly ul li .sub-title {
    font-size: 16px;
  }
}
.sub .subscription .subscription-content .monthly ul li .subscription-price {
  margin: 24px auto;
  width: -moz-fit-content;
  width: fit-content;
}
.sub .subscription .subscription-content .monthly ul li .subscription-price p:first-of-type {
  text-align: left;
}
.sub .subscription .subscription-content .monthly ul li .subscription-price p:nth-of-type(2) {
  font-size: 40px;
}
@media (max-width: 767px) {
  .sub .subscription .subscription-content .monthly ul li .subscription-price p:nth-of-type(2) {
    font-size: 24px;
  }
}
.sub .subscription .subscription-content .monthly ul li .subscription-price p:nth-of-type(2) span {
  color: #4699ca;
}
.sub .subscription .subscription-content .monthly ul li .subscription-price p:last-of-type {
  text-align: right;
}
.sub .subscription .subscription-content .monthly ul li .last-text {
  color: #4699ca;
}
.sub .subscription .subscription-content .monthly ul .shape {
  border: 3px solid #ab905e;
}
.sub .subscription .subscription-content .monthly ul .shape h5 {
  background: linear-gradient(to right, #ab905e, #ffe5b6);
}
.sub .subscription .subscription-content .monthly ul .shape .sub-title {
  background: linear-gradient(to right, #ab905e, #ffe5b6);
}
.sub .subscription .subscription-content .monthly ul .shape .subscription-price p:nth-of-type(2) span {
  color: #ab905e;
}
.sub .subscription .subscription-content .monthly ul .shape .last-text {
  color: #ab905e;
}
.sub .subscription .subscription-content .short-term {
  background-color: #3d4550;
  color: #fff;
}
.sub .subscription .subscription-content .short-term .inner {
  max-width: 720px;
  margin: 0 auto;
  padding-block: 32px;
}
.sub .subscription .subscription-content .short-term .inner h4 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
  background-color: #ab905e;
  color: #fff;
  font-size: 24px;
  padding: 8px;
}
@media (max-width: 767px) {
  .sub .subscription .subscription-content .short-term .inner h4 {
    font-size: 20px;
  }
}
.sub .subscription .subscription-content .short-term .inner .short-term-img {
  max-width: 580px;
  margin: 16px auto;
}
.sub .subscription .subscription-content .short-term .inner .short-term-text {
  text-align: left;
  font-size: 20px;
}
@media (max-width: 767px) {
  .sub .subscription .subscription-content .short-term .inner .short-term-text {
    font-size: 16px;
  }
}
.sub .subscription .subscription-content .short-term .inner .short-term-text p:first-of-type {
  font-size: 32px;
}
@media (max-width: 767px) {
  .sub .subscription .subscription-content .short-term .inner .short-term-text p:first-of-type {
    font-size: 24px;
  }
}
.sub .subscription .subscription-content .short-term .short-term-cta {
  display: block;
  text-align: center;
  background-color: #ab905e;
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  padding-block: 32px;
}
@media (max-width: 767px) {
  .sub .subscription .subscription-content .short-term .short-term-cta {
    font-size: 18px;
  }
}
.sub .shop-list {
  max-width: 720px;
  margin: 0 auto 160px;
  padding-inline: 16px;
}
.sub .shop-list h2 {
  color: #4699ca;
  margin-bottom: 32px;
}
.sub .shop-list .store .store-right a {
  background-color: #4699ca;
}
.sub .shop-list .stores-list {
  display: flex;
  flex-wrap: wrap;
}
.sub .shop-list .stores-list .store {
  width: 50%;
  text-align: center;
  border-bottom: 1px solid #b8b8b8;
  padding-bottom: 24px;
  margin-bottom: 48px;
  cursor: pointer;
}
.sub .shop-list .stores-list .store:last-of-type {
  border-bottom: none;
}
.sub .shop-list .stores-list .store .store-name {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .sub .shop-list .stores-list .store .store-name {
    font-size: 20px;
  }
}
.sub .shop-list .stores-list .store img {
  width: 160px;
}
@media (max-width: 767px) {
  .sub .shop-list .stores-list .store img {
    width: 120px;
  }
}
.sub .shop-list .stores-list .store .map-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100vw;
  height: 100vh;
  transform: translateY(-50%);
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}
.sub .shop-list .stores-list .store .map-modal .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sub .shop-list .stores-list .store .map-modal .container .map iframe {
  display: block;
}
.sub .shop-list .stores-list .store .map-modal .container .map-text {
  margin-left: 32px;
  text-align: left;
}
.sub .shop-list .stores-list .store .map-modal .container .map-text p {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 32px;
}
.sub .shop-list .stores-list .store .map-modal .container .map-text dd {
  margin-bottom: 24px;
}
.sub .shop-list .stores-list .open .map-modal {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.recruit header .logo {
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 146px;
  border-bottom: 1px solid;
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .recruit header .logo {
    margin-bottom: 60px;
  }
}
.recruit .mainphrase {
  background: linear-gradient(to bottom, transparent, rgba(89, 215, 254, 0.4));
  text-align: center;
}
.recruit .mainphrase h1 {
  font-size: 32px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .recruit .mainphrase h1 {
    font-size: 24px;
  }
}
.recruit .mainphrase p {
  font-size: 32px;
}
@media (max-width: 767px) {
  .recruit .mainphrase p {
    font-size: 16px;
  }
}
.recruit .mainphrase p:last-of-type {
  padding-bottom: 120px;
}
.recruit .top-content {
  background-color: #2b7bff;
  color: #fff;
  text-align: center;
  padding-top: 56px;
}
.recruit .top-content .inner {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 32px;
}
.recruit .top-content .inner .top-content-img {
  max-width: 580px;
  margin: 0 auto;
}
.recruit .top-content .inner h2 {
  text-align: left;
  font-size: 32px;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #fff;
}
@media (max-width: 767px) {
  .recruit .top-content .inner h2 {
    font-size: 24px;
  }
}
.recruit .top-content .inner p {
  text-align: left;
  font-size: 20px;
}
@media (max-width: 767px) {
  .recruit .top-content .inner p {
    font-size: 16px;
  }
}
.recruit .welcome {
  text-align: center;
  margin-bottom: 120px;
}
.recruit .welcome h2 {
  font-size: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .recruit .welcome h2 {
    font-size: 20px;
  }
}
.recruit .welcome h2 span {
  color: #1e66b3;
}
.recruit .welcome .inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 16px;
  background-color: #7fbce5;
  font-size: 20px;
}
@media (max-width: 767px) {
  .recruit .welcome .inner {
    font-size: 16px;
  }
}
.recruit .welcome .inner p {
  margin-bottom: 16px;
}
.recruit .welcome .inner p:nth-of-type(1),
.recruit .welcome .inner p:nth-of-type(2),
.recruit .welcome .inner p:nth-of-type(3) {
  color: #fff;
}
.recruit .welcome .inner p:last-of-type {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .recruit .welcome .inner p:last-of-type {
    font-size: 20px;
  }
}
.recruit .welcome .inner p:last-of-type span {
  color: #1e66b3;
}
.recruit .charm h2 {
  font-size: 32px;
  text-align: center;
}
@media (max-width: 767px) {
  .recruit .charm h2 {
    font-size: 24px;
  }
}
.recruit .charm h2 span {
  color: #1e66b3;
  font-size: 72px;
}
@media (max-width: 767px) {
  .recruit .charm h2 span {
    font-size: 32px;
  }
}
.recruit .charm .wrapper {
  background-color: rgba(184, 224, 255, 0.6901960784);
  padding-block: 64px;
}
.recruit .charm .wrapper ul li {
  max-width: 720px;
  margin: 0 auto 80px;
}
.recruit .charm .wrapper ul li .charm-img {
  position: relative;
}
.recruit .charm .wrapper ul li .charm-img img {
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit .charm .wrapper ul li .charm-img h3 {
  position: absolute;
  top: 0;
  left: 80px;
  transform: translateY(-50%);
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding: 0 16px 0 48px;
  background-color: #1e66b3;
}
@media (max-width: 767px) {
  .recruit .charm .wrapper ul li .charm-img h3 {
    font-size: 16px;
    left: 40px;
  }
}
.recruit .charm .wrapper ul li .charm-img .num {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-10%, -50%);
  color: #fff;
  font-size: 64px;
  font-weight: bold;
  width: 110px;
  height: 110px;
  background-color: #1e66b3;
  border-radius: 999px;
  text-align: center;
  line-height: 110px;
}
@media (max-width: 767px) {
  .recruit .charm .wrapper ul li .charm-img .num {
    font-size: 32px;
    width: 72px;
    height: 72px;
    line-height: 72px;
  }
}
.recruit .charm .wrapper ul li .charm-text {
  font-size: 32px;
  font-weight: bold;
  color: #1e66b3;
  margin-block: 8px;
}
@media (max-width: 767px) {
  .recruit .charm .wrapper ul li .charm-text {
    font-size: 24px;
  }
}
.recruit .charm .wrapper ul li p {
  font-size: 20px;
}
@media (max-width: 767px) {
  .recruit .charm .wrapper ul li p {
    font-size: 16px;
  }
}
.recruit .charm .wrapper ul li:last-of-type {
  margin-bottom: 0;
}
.recruit .description h2 {
  text-align: center;
  font-size: 40px;
  color: #0066b3;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .recruit .description h2 {
    font-size: 32px;
  }
}
.recruit .description .en {
  background-color: #0066b3;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 8px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.recruit .description .inner {
  border: 2px solid #46687f;
  max-width: 720px;
  margin: 0 auto;
}
.recruit .description .inner .description-title {
  background-color: #46687f;
  color: #fff;
  text-align: center;
  padding-block: 24px;
}
.recruit .description .inner .description-title h3 {
  font-size: 40px;
}
@media (max-width: 767px) {
  .recruit .description .inner .description-title h3 {
    font-size: 24px;
  }
}
.recruit .description .inner h4 {
  color: #46687f;
  font-size: 32px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 24px auto;
  padding-bottom: 8px;
  border-bottom: 1px solid #46687f;
}
@media (max-width: 767px) {
  .recruit .description .inner h4 {
    font-size: 24px;
  }
}
.recruit .description .inner .work-list {
  list-style-type: disc;
  padding: 24px 24px 24px 48px;
  margin-bottom: 32px;
  font-size: 20px;
}
@media (max-width: 767px) {
  .recruit .description .inner .work-list {
    font-size: 16px;
  }
}
.recruit .description .inner .work-list li {
  margin-bottom: 16px;
}
.recruit .description .inner .education-list {
  padding: 24px;
}
.recruit .description .inner .education-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}
.recruit .description .inner .education-list li .description-text {
  width: 80%;
}
.recruit .description .inner .education-list li .description-text .description-content-title {
  display: flex;
  align-items: center;
}
.recruit .description .inner .education-list li .description-text .description-content-title p {
  width: 88px;
  height: 88px;
  background-color: #0066b3;
  color: #fff;
  text-align: center;
  line-height: 88px;
  font-size: 48px;
  border-radius: 999px;
}
@media (max-width: 767px) {
  .recruit .description .inner .education-list li .description-text .description-content-title p {
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 24px;
  }
}
.recruit .description .inner .education-list li .description-text .description-content-title h5 {
  font-size: 24px;
  margin-inline: 16px;
}
@media (max-width: 767px) {
  .recruit .description .inner .education-list li .description-text .description-content-title h5 {
    font-size: 16px;
  }
}
.recruit .description .inner .education-list li .description-text .txt {
  padding: 16px 32px;
  font-size: 20px;
}
@media (max-width: 767px) {
  .recruit .description .inner .education-list li .description-text .txt {
    font-size: 16px;
  }
}
.recruit .description .inner .education-list li .description-img {
  width: 20%;
}
.recruit .description .inner .education-list li:nth-of-type(2),
.recruit .description .inner .education-list li:nth-of-type(4) {
  flex-direction: row-reverse;
}
.recruit .description .inner .education-list li:nth-of-type(2) .description-content-title,
.recruit .description .inner .education-list li:nth-of-type(4) .description-content-title {
  flex-direction: row-reverse;
}
.recruit .career {
  margin-bottom: 120px;
}
.recruit .career h2 {
  text-align: center;
  font-size: 40px;
  color: #0066b3;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .recruit .career h2 {
    font-size: 32px;
  }
}
.recruit .career .en {
  background-color: #0066b3;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 8px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.recruit .career .inner {
  max-width: 720px;
  margin: 0 auto;
}
.recruit .career .inner .career-top-text {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .recruit .career .inner .career-top-text {
    font-size: 20px;
  }
}
.recruit .career .inner ul li {
  display: flex;
}
.recruit .career .inner ul li .career-list-img {
  width: 20%;
  background-color: #cee6fd;
  -webkit-clip-path: polygon(0 0, 0 80%, 50% 100%, 100% 80%, 100% 0, 50% 20%);
          clip-path: polygon(0 0, 0 80%, 50% 100%, 100% 80%, 100% 0, 50% 20%);
  position: relative;
}
.recruit .career .inner ul li .career-list-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
}
.recruit .career .inner ul li .career-list-text {
  width: 80%;
  padding: 24px 0 24px 24px;
  font-size: 20px;
}
@media (max-width: 767px) {
  .recruit .career .inner ul li .career-list-text {
    font-size: 16px;
    padding: 16px 0 16px 16px;
  }
}
.recruit .career .inner ul li .career-list-text h3 {
  font-size: 24px;
}
@media (max-width: 767px) {
  .recruit .career .inner ul li .career-list-text h3 {
    font-size: 16px;
  }
}
.recruit .career .inner .career-text {
  margin-top: 32px;
  font-size: 20px;
}
@media (max-width: 767px) {
  .recruit .career .inner .career-text {
    font-size: 16px;
  }
}
.recruit .application-details {
  background-color: #f0f7ff;
  padding-block: 56px;
}
.recruit .application-details h2 {
  text-align: center;
  font-size: 30px;
  color: #004c97;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .recruit .application-details h2 {
    font-size: 24px;
  }
}
.recruit .application-details h2 img {
  width: 32px;
  vertical-align: middle;
  margin-inline: 8px;
}
@media (max-width: 767px) {
  .recruit .application-details h2 img {
    width: 24px;
  }
}
.recruit .application-details .inner {
  padding: 24px;
  background-color: #fff;
  border: 2px solid #e4eefa;
  border-radius: 16px;
}
.recruit .application-details .inner ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .recruit .application-details .inner ul {
    grid-template-columns: repeat(1, 1fr);
  }
}
.recruit .application-details .inner ul li {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.recruit .application-details .inner ul li .application-img {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background-color: #e1eeff;
  position: relative;
}
.recruit .application-details .inner ul li .application-img img {
  width: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.recruit .application-details .inner ul li .application-text {
  margin-left: 24px;
  width: 80%;
}
.recruit .application-details .inner ul li .application-text h3 {
  font-size: 24px;
  color: #004c97;
}
@media (max-width: 767px) {
  .recruit .application-details .inner ul li .application-text h3 {
    font-size: 16px;
  }
}
.recruit .flow {
  margin-bottom: 120px;
}
.recruit .flow h2 {
  text-align: center;
  font-size: 30px;
  color: #004c97;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .recruit .flow h2 {
    font-size: 24px;
  }
}
.recruit .flow h2 img {
  width: 32px;
  vertical-align: middle;
  margin-inline: 8px;
}
@media (max-width: 767px) {
  .recruit .flow h2 img {
    width: 24px;
  }
}
.recruit .flow .inner li {
  display: flex;
  align-items: center;
  background-color: #f0f7ff;
  padding: 24px;
  margin-bottom: 24px;
  border: 1px solid #e0eefe;
  border-radius: 24px;
}
.recruit .flow .inner li .flow-img {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background-color: #2673e2;
  position: relative;
}
@media (max-width: 767px) {
  .recruit .flow .inner li .flow-img {
    width: 48px;
    height: 48px;
  }
}
.recruit .flow .inner li .flow-img img {
  width: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .recruit .flow .inner li .flow-img img {
    width: 24px;
  }
}
.recruit .flow .inner li .flow-text {
  margin-left: 24px;
  width: calc(100% - 64px);
}
.recruit .flow .inner li .flow-text h3 {
  font-size: 12px;
  border: 1px solid #b9ddfe;
  color: #0066b3;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.recruit .flow .inner li .flow-text p {
  font-weight: bold;
  color: #004c97;
}
.recruit .ai {
  background-color: #004c97;
  color: #fff;
  padding-block: 64px;
  margin-bottom: 0;
}
.recruit .ai h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .recruit .ai h2 {
    font-size: 24px;
  }
}
.recruit .ai h2 img {
  width: 32px;
  vertical-align: middle;
  margin-inline: 8px;
}
@media (max-width: 767px) {
  .recruit .ai h2 img {
    width: 24px;
  }
}
.recruit .ai p {
  font-size: 20px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .recruit .ai p {
    font-size: 16px;
  }
}
.recruit .ai .ai-top-text {
  text-align: center;
}
.recruit .ai .ai-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .recruit .ai .ai-content {
    flex-direction: column;
  }
}
.recruit .ai .ai-content .ai-list {
  background-color: #24589a;
  width: 48%;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #5378ac;
}
@media (max-width: 767px) {
  .recruit .ai .ai-content .ai-list {
    width: 100%;
    margin-bottom: 16px;
    padding: 10px;
  }
}
.recruit .ai .ai-content .ai-list .ai-list-title {
  font-size: 18px;
  margin-bottom: 40px;
}
.recruit .ai .ai-content .ai-list .ai-list-title img {
  width: 24px;
  vertical-align: middle;
  margin-right: 8px;
}
.recruit .ai .ai-content .ai-list .ai-list-text li {
  margin-bottom: 12px;
  font-size: 14px;
}
.recruit .ai .ai-content .ai-list .ai-list-text li img {
  width: 20px;
  vertical-align: middle;
  margin-right: 8px;
}
.recruit .entry {
  background-color: #0072e3;
  color: #fff;
  padding-block: 64px;
  margin-bottom: 0;
  text-align: center;
}
.recruit .entry h2 {
  font-size: 30px;
  margin-bottom: 48px;
}
@media (max-width: 767px) {
  .recruit .entry h2 {
    font-size: 24px;
  }
}
.recruit .entry h2 img {
  width: 32px;
  vertical-align: middle;
  margin-inline: 8px;
}
.recruit .entry p {
  font-size: 18px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .recruit .entry p {
    font-size: 16px;
  }
}
.recruit .entry .entry-link {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .recruit .entry .entry-link {
    flex-direction: column;
  }
}
.recruit .entry .entry-link li {
  background-color: #fff;
  margin-inline: 8px;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .recruit .entry .entry-link li {
    margin-bottom: 16px;
  }
}
.recruit .entry .entry-link li a {
  color: #24589a;
  font-size: 14px;
  display: inline-block;
  padding: 16px 32px;
}
.recruit .entry .entry-link li a span {
  margin-inline: 16px;
}
@media (max-width: 767px) {
  .recruit .entry .entry-link li a span {
    margin-inline: 8px;
  }
}
.recruit .entry .entry-link li a img {
  width: 20px;
  vertical-align: middle;
}
.recruit .entry .entry-text {
  font-size: 18px;
  font-weight: bold;
  margin-top: 32px;
}
.recruit .entry .entry-text img {
  width: 20px;
}

footer {
  background-color: #004C97;
  text-align: center;
  padding-top: 32px;
  padding-bottom: 80px;
}
footer h2 {
  color: #fff;
  font-size: 24px;
}
footer p {
  color: #7CC2FD;
}

.pilates .mainvisual {
  background-image: url("../img/pilates-mainvisual.png");
}
.pilates .mainvisual .vertical {
  font-size: 32px;
}
@media (max-width: 767px) {
  .pilates .mainvisual .vertical {
    font-size: 32px;
  }
}
.pilates .mainvisual .mainvisual-text p {
  background: none;
}
.pilates .mainvisual .mainvisual-text h1 {
  font-size: 32px;
  line-height: 72px;
}
@media (max-width: 767px) {
  .pilates .mainvisual .mainvisual-text h1 {
    font-size: 24px;
    line-height: 48px;
  }
}
.pilates .mainvisual .mainvisual-text h1 span {
  font-size: 48px;
}
@media (max-width: 767px) {
  .pilates .mainvisual .mainvisual-text h1 span {
    font-size: 32px;
  }
}
.pilates .access h2 {
  color: #df83a7;
}
.pilates .access h2::before {
  background-color: #df83a7;
}
.pilates .access h2::after {
  background-color: #df83a7;
}
.pilates .shop-list .section-title h2 {
  color: #df83a7;
}
.pilates .lesson {
  background-image: url("../img/lesson-bg-pink.png");
}
.pilates .instructor .sub-swiper .swiper-slide {
  height: 500px;
}
@media (max-width: 767px) {
  .pilates .instructor .sub-swiper .swiper-slide {
    height: 320px;
  }
}
@media (max-width: 767px) {
  .pilates .voice .sub-swiper .swiper-slide {
    height: 480px;
  }
}

.pilates-store.sub .mainvisual {
  background-image: url("../img/pilates-mainvisual.png");
}
.pilates-store.sub .mainvisual .vertical {
  font-size: 32px;
}
@media (max-width: 767px) {
  .pilates-store.sub .mainvisual .vertical {
    font-size: 24px;
  }
}
.pilates-store.sub .mainvisual .mainvisual-text h1 {
  font-size: 32px;
  line-height: 72px;
}
@media (max-width: 767px) {
  .pilates-store.sub .mainvisual .mainvisual-text h1 {
    font-size: 24px;
    line-height: 48px;
  }
}
.pilates-store.sub .mainvisual .mainvisual-text h1 span {
  font-size: 48px;
}
@media (max-width: 767px) {
  .pilates-store.sub .mainvisual .mainvisual-text h1 span {
    font-size: 32px;
  }
}
.pilates-store.sub .access h2 {
  color: #df83a7;
}
.pilates-store.sub .access h2::before {
  background-color: #df83a7;
}
.pilates-store.sub .access h2::after {
  background-color: #df83a7;
}
.pilates-store.sub .access .access-content .text .text-term {
  color: #df83a7;
}
.pilates-store.sub .lesson {
  background-image: url("../img/lesson-bg-pink.png");
}

.pilates-price header {
  padding-top: 32px;
}
.pilates-price header p {
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 64px;
  position: relative;
}
@media (max-width: 767px) {
  .pilates-price header p {
    font-size: 24px;
  }
}
.pilates-price header p::before {
  position: absolute;
  top: 56px;
  left: 24px;
  content: "";
  width: 120px;
  height: 1px;
  background-color: #727374;
}
@media (max-width: 767px) {
  .pilates-price header p::before {
    top: 40px;
    left: 16px;
    width: 80px;
  }
}
.pilates-price .sub .mainphrase {
  background: linear-gradient(to bottom, transparent, hsla(343, 100%, 84%, 0.4));
}
.pilates-price .sub .mainphrase h1 {
  font-size: 48px;
  margin-bottom: 64px;
  color: #df83a7;
}
@media (max-width: 767px) {
  .pilates-price .sub .mainphrase h1 {
    font-size: 32px;
  }
}
.pilates-price .sub .mainphrase p {
  font-style: italic;
}
.pilates-price .sub .mainphrase p .line {
  background: linear-gradient(transparent 80%, #df83a7 0%);
}
.pilates-price .sub .mainphrase p .dots {
  text-emphasis: filled;
  -webkit-text-emphasis: filled;
}
.pilates-price .sub .trial .inner .trial-cta1 {
  background: linear-gradient(to right, #de83a8, #d3aae1);
}
.pilates-price .sub .subscription .subscription-content h3 {
  color: #df83a7;
}
.pilates-price .sub .subscription .subscription-content .monthly h4 {
  background-color: #df83a7;
}
.pilates-price .sub .subscription .subscription-content .monthly ul li {
  border: 3px solid #df83a7;
}
.pilates-price .sub .subscription .subscription-content .monthly ul li h5 {
  background-color: #df83a7;
}
.pilates-price .sub .subscription .subscription-content .monthly ul li .sub-title {
  background-color: #df83a7;
}
.pilates-price .sub .subscription .subscription-content .monthly ul li .subscription-price p:nth-of-type(2) span {
  color: #df83a7;
}
.pilates-price .sub .subscription .subscription-content .monthly ul li .last-text {
  color: #df83a7;
}
.pilates-price .sub .subscription .subscription-content .monthly ul .shape {
  border: 3px solid #ab905e;
}
.pilates-price .sub .subscription .subscription-content .monthly ul .shape h5 {
  background: linear-gradient(to right, #ab905e, #ffe5b6);
}
.pilates-price .sub .subscription .subscription-content .monthly ul .shape .sub-title {
  background: linear-gradient(to right, #ab905e, #ffe5b6);
}
.pilates-price .sub .subscription .subscription-content .monthly ul .shape .subscription-price p:nth-of-type(2) span {
  color: #ab905e;
}
.pilates-price .sub .subscription .subscription-content .monthly ul .shape .last-text {
  color: #ab905e;
}
.pilates-price .sub .shop-list h2 {
  color: #df83a7;
}
.pilates-price .sub .shop-list .store .store-right a {
  background-color: #df83a7;
}
.pilates-price .lesson {
  background-image: url("../img/lesson-bg-pink.png");
}
@media (max-width: 767px) {
  .pilates-price .voice .sub-swiper .swiper-slide {
    height: 480px;
  }
}
.pilates-price .review .review-text {
  text-align: center;
  font-size: 32px;
  margin-block: 64px;
}
@media (max-width: 767px) {
  .pilates-price .review .review-text {
    font-size: 24px;
  }
}
.pilates-price .review .review-text span {
  font-size: 48px;
  color: #df83a7;
}
@media (max-width: 767px) {
  .pilates-price .review .review-text span {
    font-size: 32px;
  }
}
.pilates-price .review li {
  margin-bottom: 64px;
}
.pilates-price .review li h2 {
  font-size: 24px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 8px 16px;
  border-radius: 100px;
  background-color: #df83a7;
  color: #fff;
}
@media (max-width: 767px) {
  .pilates-price .review li h2 {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
.pilates-price .review li .swiper-slide {
  height: 540px;
}
@media (max-width: 767px) {
  .pilates-price .review li .swiper-slide {
    height: 500px;
  }
}
.pilates-price .review li .swiper-slide .slide-img img {
  height: 300px;
  width: auto;
}

.training .mainvisual {
  background-image: url("../img/training-mainvisual.png");
  background-position: center;
}
@media (max-width: 767px) {
  .training .mainvisual .vertical {
    font-size: 32px;
  }
}
.training .mainvisual .mainvisual-text p {
  background: none;
}
@media (max-width: 767px) {
  .training .mainvisual .mainvisual-text h1 {
    line-height: 48px;
  }
}
@media (max-width: 767px) {
  .training .mainvisual .mainvisual-text h1 span {
    font-size: 32px;
  }
}
.training .mainvisual .mainvisual-text h1 .bgpink {
  background: linear-gradient(to right, #4699ca, #46a7ca);
  font-size: 48px;
}
@media (max-width: 767px) {
  .training .mainvisual .mainvisual-text h1 .bgpink {
    font-size: 30px;
  }
}
.training .experience {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.training .campaign {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.training .section-title h3 {
  color: #4699ca;
}
.training .section-title h3::before {
  background-color: #4699ca;
}
.training .section-title h3::after {
  background-color: #4699ca;
}
.training .section-title h2 {
  color: #4699ca;
}
.training .sub-swiper .swiper-slide {
  border: 3px solid #4699ca;
  height: 740px;
}
@media (max-width: 767px) {
  .training .sub-swiper .swiper-slide {
    height: 660px;
  }
}
.training .sub-swiper .swiper-slide h4 {
  color: #4699ca;
}
.training .sub-swiper .swiper-slide h5 {
  color: #4699ca;
}
.training .sub-swiper .swiper-button-prev {
  background-color: #4699ca;
}
.training .sub-swiper .swiper-button-next {
  background-color: #4699ca;
}
.training .sub-swiper .swiper-pagination-bullet-active {
  background-color: #4699ca;
}
.training .promotion .top-message-text {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.training .before-after h2 {
  color: #4699ca;
}
.training .before-after h2::before {
  background-color: #4699ca;
}
.training .before-after h2::after {
  background-color: #4699ca;
}
.training .before-after .example {
  border: 4px solid #4699ca;
}
.training .before-after .example h3 {
  background-color: #4699ca;
}
.training .before-after .example .example-content .toggle-switch .before-btn {
  background-color: #4699ca; /* ピンク */
}
.training .before-after .example .example-content .toggle-switch input:checked ~ .after-btn {
  background-color: #4699ca;
}
.training .before-after .example .example-content .before p,
.training .before-after .example .example-content .after p {
  color: #4699ca;
}
.training .voice h2 {
  color: #4699ca;
}
.training .voice h2::before {
  background-color: #4699ca;
}
.training .voice h2::after {
  background-color: #4699ca;
}
.training .voice .sub-swiper .swiper-slide {
  height: 520px;
}
@media (max-width: 767px) {
  .training .voice .sub-swiper .swiper-slide {
    height: 380px;
  }
}
.training .voice .sub-swiper .swiper-slide h3 {
  color: #4699ca;
}
.training .features h2 {
  color: #4699ca;
}
.training .features .swiper-slide {
  height: 620px;
}
@media (max-width: 767px) {
  .training .features .swiper-slide {
    height: 480px;
  }
}
.training .lesson .container h2 {
  color: #4699ca;
}
@media (max-width: 767px) {
  .training .lesson .container h2 {
    font-size: 24px;
  }
}
.training .lesson .container h2::before {
  background-color: #4699ca;
}
.training .lesson .container h2::after {
  background-color: #4699ca;
}
.training .lesson .sub-swiper .swiper-slide {
  height: 540px;
}
@media (max-width: 767px) {
  .training .lesson .sub-swiper .swiper-slide {
    height: 360px;
  }
}
.training .lesson .sub-swiper .swiper-slide h4 {
  background-color: #4699ca;
}
.training .lesson .sub-swiper .swiper-slide h5 {
  font-size: 32px;
}
@media (max-width: 767px) {
  .training .lesson .sub-swiper .swiper-slide h5 {
    font-size: 20px;
  }
}
.training .instructor .container h2 {
  color: #4699ca;
}
.training .instructor .container h2::before {
  background-color: #4699ca;
}
.training .instructor .container h2::after {
  background-color: #4699ca;
}
.training .instructor .sub-swiper .swiper-slide {
  height: 500px;
}
@media (max-width: 767px) {
  .training .instructor .sub-swiper .swiper-slide {
    height: 320px;
  }
}
.training .questions h2 {
  color: #4699ca;
}
.training .questions h2::before {
  background-color: #4699ca;
}
.training .questions h2::after {
  background-color: #4699ca;
}
.training .questions ul li {
  border: 3px solid #4699ca;
}
.training .questions ul li .question {
  background-color: #4699ca;
}
.training .price h2 {
  color: #4699ca;
}
.training .price h2::before {
  background-color: #4699ca;
}
.training .price h2::after {
  background-color: #4699ca;
}
.training .price p span {
  color: #4699ca;
}
.training .price .price-text .relative {
  color: #4699ca;
}
.training .news h2 {
  color: #4699ca;
}
.training .news h2::before {
  background-color: #4699ca;
}
.training .news h2::after {
  background-color: #4699ca;
}
.training .news .column li .column-cat {
  background-color: #4699ca;
}
.training .stores h2 {
  color: #4699ca;
}
.training .stores h2::before {
  background-color: #4699ca;
}
.training .stores h2::after {
  background-color: #4699ca;
}
.training .stores .store .store-right a {
  background-color: #4699ca;
}

.training .mainvisual .mainvisual-text p {
  font-size: 24px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .training .mainvisual .mainvisual-text p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .training .mainvisual .mainvisual-text h1 span {
    font-size: 24px;
  }
}
.training .mainvisual .mainvisual-text h1 .bgpink {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.training .access h2 {
  color: #4699ca;
}
.training .access h2::before {
  background-color: #4699ca;
}
.training .access h2::after {
  background-color: #4699ca;
}

.training-price header {
  padding-top: 32px;
}
.training-price header p {
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 64px;
  position: relative;
}
@media (max-width: 767px) {
  .training-price header p {
    font-size: 24px;
  }
}
.training-price header p::before {
  position: absolute;
  top: 56px;
  left: 24px;
  content: "";
  width: 120px;
  height: 1px;
  background-color: #727374;
}
@media (max-width: 767px) {
  .training-price header p::before {
    top: 40px;
    left: 16px;
    width: 80px;
  }
}
.training-price .sub .mainphrase {
  background: linear-gradient(to bottom, transparent, rgba(89, 215, 254, 0.4));
}
.training-price .sub .mainphrase h1 {
  font-size: 48px;
  margin-bottom: 64px;
  color: #4699ca;
}
@media (max-width: 767px) {
  .training-price .sub .mainphrase h1 {
    font-size: 32px;
  }
}
.training-price .sub .mainphrase p {
  font-style: italic;
}
.training-price .sub .mainphrase p .line {
  background: linear-gradient(transparent 80%, #4699ca 0%);
}
.training-price .sub .mainphrase p .dots {
  text-emphasis: filled;
  -webkit-text-emphasis: filled;
}
.training-price .sub .section-title h3 {
  color: #4699ca;
}
.training-price .sub .section-title h3::before {
  background-color: #4699ca;
}
.training-price .sub .section-title h3::after {
  background-color: #4699ca;
}
.training-price .sub .section-title h2 {
  color: #4699ca;
}
.training-price .sub .sub-swiper .swiper-slide {
  border: 3px solid #4699ca;
  height: 740px;
}
@media (max-width: 767px) {
  .training-price .sub .sub-swiper .swiper-slide {
    height: 660px;
  }
}
.training-price .sub .sub-swiper .swiper-slide h4 {
  color: #4699ca;
}
.training-price .sub .sub-swiper .swiper-slide h5 {
  color: #4699ca;
}
.training-price .sub .sub-swiper .swiper-button-prev {
  background-color: #4699ca;
}
.training-price .sub .sub-swiper .swiper-button-next {
  background-color: #4699ca;
}
.training-price .sub .sub-swiper .swiper-pagination-bullet-active {
  background-color: #4699ca;
}
.training-price .sub .voice h2 {
  color: #4699ca;
}
.training-price .sub .voice h2::before {
  background-color: #4699ca;
}
.training-price .sub .voice h2::after {
  background-color: #4699ca;
}
.training-price .sub .voice .sub-swiper {
  margin-bottom: 64px;
}
.training-price .sub .voice .sub-swiper .voice-text {
  font-size: 24px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
  padding: 8px 16px;
  border-radius: 100px;
  background-color: #4699ca;
  color: #fff;
}
@media (max-width: 767px) {
  .training-price .sub .voice .sub-swiper .voice-text {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
.training-price .sub .voice .sub-swiper .swiper-slide {
  border: 3px solid #4699ca;
}
.training-price .sub .voice .sub-swiper .swiper-slide h3 {
  color: #4699ca;
}
.training-price .sub .voice .sub-swiper .swiper-button-prev {
  background-color: #4699ca;
}
.training-price .sub .voice .sub-swiper .swiper-button-next {
  background-color: #4699ca;
}
.training-price .sub .voice .sub-swiper .swiper-pagination-bullet-active {
  background-color: #4699ca;
}
.training-price .sub .voice .sub-swiper .swiper-slide-kokkaku {
  height: 660px;
}
@media (max-width: 767px) {
  .training-price .sub .voice .sub-swiper .swiper-slide-kokkaku {
    height: 520px;
  }
}
.training-price .sub .voice .sub-swiper .swiper-slide-kokkaku h3 {
  color: #4699ca;
}
.training-price .sub .voice .sub-swiper .swiper-slide-kokkaku .slide-img {
  width: 40%;
}
.training-price .sub .voice .sub-swiper .swiper-slide-healthcare {
  height: 640px;
}
@media (max-width: 767px) {
  .training-price .sub .voice .sub-swiper .swiper-slide-healthcare {
    height: 520px;
  }
}
.training-price .sub .voice .sub-swiper .swiper-slide-healthcare h3 {
  color: #4699ca;
}
.training-price .sub .voice .sub-swiper .swiper-slide-healthcare .slide-img {
  width: 40%;
}
.training-price .sub .voice .sub-swiper .swiper-slide-women {
  height: 680px;
}
@media (max-width: 767px) {
  .training-price .sub .voice .sub-swiper .swiper-slide-women {
    height: 560px;
  }
}
.training-price .sub .voice .sub-swiper .swiper-slide-women h3 {
  color: #4699ca;
}
.training-price .sub .voice .sub-swiper .swiper-slide-women .slide-img {
  width: 40%;
}
.training-price .sub .voice .sub-swiper .swiper-slide-junior {
  height: 760px;
}
@media (max-width: 767px) {
  .training-price .sub .voice .sub-swiper .swiper-slide-junior {
    height: 640px;
  }
}
.training-price .sub .voice .sub-swiper .swiper-slide-junior h3 {
  color: #4699ca;
}
.training-price .sub .voice .sub-swiper .swiper-slide-junior .slide-img {
  width: 40%;
}
.training-price .sub .experience {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.training-price .sub .lesson .container h2 {
  color: #4699ca;
}
@media (max-width: 767px) {
  .training-price .sub .lesson .container h2 {
    font-size: 24px;
  }
}
.training-price .sub .lesson .container h2::before {
  background-color: #4699ca;
}
.training-price .sub .lesson .container h2::after {
  background-color: #4699ca;
}
.training-price .sub .lesson .sub-swiper .swiper-slide {
  height: 540px;
  border: 3px solid #4699ca;
}
@media (max-width: 767px) {
  .training-price .sub .lesson .sub-swiper .swiper-slide {
    height: 360px;
  }
}
.training-price .sub .lesson .sub-swiper .swiper-slide h4 {
  background-color: #4699ca;
  color: #fff;
}
.training-price .sub .lesson .sub-swiper .swiper-slide h5 {
  font-size: 32px;
  color: #4699ca;
}
@media (max-width: 767px) {
  .training-price .sub .lesson .sub-swiper .swiper-slide h5 {
    font-size: 20px;
  }
}
.training-price .sub .lesson .swiper-button-prev {
  background-color: #4699ca;
}
.training-price .sub .lesson .swiper-button-next {
  background-color: #4699ca;
}
.training-price .sub .lesson .swiper-pagination-bullet-active {
  background-color: #4699ca;
}
.training-price .review .review-text {
  text-align: center;
  font-size: 32px;
  margin-block: 64px;
}
@media (max-width: 767px) {
  .training-price .review .review-text {
    font-size: 24px;
  }
}
.training-price .review .review-text span {
  font-size: 48px;
  color: #4699ca;
}
@media (max-width: 767px) {
  .training-price .review .review-text span {
    font-size: 32px;
  }
}
.training-price .review li {
  margin-bottom: 64px;
}
.training-price .review li h2 {
  font-size: 24px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 8px 16px;
  border-radius: 100px;
  background-color: #4699ca;
  color: #fff;
}
@media (max-width: 767px) {
  .training-price .review li h2 {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
.training-price .review li .swiper-slide {
  border: 3px solid #4699ca;
  height: 540px;
}
@media (max-width: 767px) {
  .training-price .review li .swiper-slide {
    height: 500px;
  }
}
.training-price .review li .swiper-slide h4 {
  color: #4699ca;
}
.training-price .review li .swiper-slide .slide-img img {
  height: 300px;
  width: auto;
}
.training-price .review li .swiper-button-prev {
  background-color: #4699ca;
}
.training-price .review li .swiper-button-next {
  background-color: #4699ca;
}
.training-price .review li .swiper-pagination-bullet-active {
  background-color: #4699ca;
}

.seitai .mainvisual {
  background-image: url("../img/seitai-mainvisual.png");
}
@media (max-width: 767px) {
  .seitai .mainvisual .vertical {
    font-size: 32px;
  }
}
.seitai .mainvisual .mainvisual-text p {
  background: none;
}
@media (max-width: 767px) {
  .seitai .mainvisual .mainvisual-text h1 {
    line-height: 48px;
  }
}
@media (max-width: 767px) {
  .seitai .mainvisual .mainvisual-text h1 span {
    font-size: 28px;
  }
}
.seitai .mainvisual .mainvisual-text h1 .bgpink {
  background: linear-gradient(to right, #4699ca, #46a7ca);
  font-size: 48px;
}
@media (max-width: 767px) {
  .seitai .mainvisual .mainvisual-text h1 .bgpink {
    font-size: 32px;
  }
}
.seitai .experience {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.seitai .campaign {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.seitai .section-title h3 {
  color: #4699ca;
}
.seitai .section-title h3::before {
  background-color: #4699ca;
}
.seitai .section-title h3::after {
  background-color: #4699ca;
}
.seitai .section-title h2 {
  color: #4699ca;
}
.seitai .sub-swiper .swiper-slide {
  border: 3px solid #4699ca;
  height: 700px;
}
@media (max-width: 767px) {
  .seitai .sub-swiper .swiper-slide {
    height: 600px;
  }
}
.seitai .sub-swiper .swiper-slide h4 {
  color: #4699ca;
}
.seitai .sub-swiper .swiper-slide h5 {
  color: #4699ca;
}
.seitai .sub-swiper .swiper-button-prev {
  background-color: #4699ca;
}
.seitai .sub-swiper .swiper-button-next {
  background-color: #4699ca;
}
.seitai .sub-swiper .swiper-pagination-bullet-active {
  background-color: #4699ca;
}
.seitai .promotion .top-message-text {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.seitai .before-after h2 {
  color: #4699ca;
}
.seitai .before-after h2::before {
  background-color: #4699ca;
}
.seitai .before-after h2::after {
  background-color: #4699ca;
}
.seitai .before-after .example {
  border: 4px solid #4699ca;
}
.seitai .before-after .example h3 {
  background-color: #4699ca;
}
.seitai .before-after .example .example-content .toggle-switch .before-btn {
  background-color: #4699ca; /* ピンク */
}
.seitai .before-after .example .example-content .toggle-switch input:checked ~ .after-btn {
  background-color: #4699ca;
}
.seitai .before-after .example .example-content .before p,
.seitai .before-after .example .example-content .after p {
  color: #4699ca;
}
.seitai .voice h2 {
  color: #4699ca;
}
.seitai .voice h2::before {
  background-color: #4699ca;
}
.seitai .voice h2::after {
  background-color: #4699ca;
}
.seitai .voice .sub-swiper .swiper-slide {
  height: 650px;
}
@media (max-width: 767px) {
  .seitai .voice .sub-swiper .swiper-slide {
    height: 500px;
  }
}
.seitai .voice .sub-swiper .swiper-slide h3 {
  color: #4699ca;
}
.seitai .features h2 {
  color: #4699ca;
}
.seitai .features .swiper-slide {
  height: 620px;
}
@media (max-width: 767px) {
  .seitai .features .swiper-slide {
    height: 440px;
  }
}
.seitai .lesson .container h2 {
  color: #4699ca;
}
@media (max-width: 767px) {
  .seitai .lesson .container h2 {
    font-size: 24px;
  }
}
.seitai .lesson .container h2::before {
  background-color: #4699ca;
}
.seitai .lesson .container h2::after {
  background-color: #4699ca;
}
.seitai .lesson .sub-swiper .swiper-slide {
  height: 580px;
}
@media (max-width: 767px) {
  .seitai .lesson .sub-swiper .swiper-slide {
    height: 388px;
  }
}
.seitai .lesson .sub-swiper .swiper-slide h4 {
  background-color: #4699ca;
}
.seitai .lesson .sub-swiper .swiper-slide h5 {
  font-size: 32px;
}
@media (max-width: 767px) {
  .seitai .lesson .sub-swiper .swiper-slide h5 {
    font-size: 20px;
  }
  .seitai .lesson .sub-swiper .swiper-slide h5 span {
    font-size: 16px;
  }
}
.seitai .instructor .container h2 {
  color: #4699ca;
}
.seitai .instructor .container h2::before {
  background-color: #4699ca;
}
.seitai .instructor .container h2::after {
  background-color: #4699ca;
}
.seitai .instructor .sub-swiper .swiper-slide {
  height: 510px;
}
@media (max-width: 767px) {
  .seitai .instructor .sub-swiper .swiper-slide {
    height: 320px;
  }
}
.seitai .questions h2 {
  color: #4699ca;
}
.seitai .questions h2::before {
  background-color: #4699ca;
}
.seitai .questions h2::after {
  background-color: #4699ca;
}
.seitai .questions ul li {
  border: 3px solid #4699ca;
}
.seitai .questions ul li .question {
  background-color: #4699ca;
}
.seitai .price h2 {
  color: #4699ca;
}
.seitai .price h2::before {
  background-color: #4699ca;
}
.seitai .price h2::after {
  background-color: #4699ca;
}
.seitai .price p span {
  color: #4699ca;
}
.seitai .price .price-text .relative {
  color: #4699ca;
}
.seitai .news h2 {
  color: #4699ca;
}
.seitai .news h2::before {
  background-color: #4699ca;
}
.seitai .news h2::after {
  background-color: #4699ca;
}
.seitai .news .column li .column-cat {
  background-color: #4699ca;
}
.seitai .stores h2 {
  color: #4699ca;
}
.seitai .stores h2::before {
  background-color: #4699ca;
}
.seitai .stores h2::after {
  background-color: #4699ca;
}
.seitai .stores .store .store-right a {
  background-color: #4699ca;
}

.seitai .mainvisual .mainvisual-text h1 p {
  background: none;
}
@media (max-width: 767px) {
  .seitai .mainvisual .mainvisual-text h1 span {
    font-size: 28px;
  }
}
.seitai .mainvisual .mainvisual-text h1 .bgpink {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.seitai .access h2 {
  color: #4699ca;
}
.seitai .access h2::before {
  background-color: #4699ca;
}
.seitai .access h2::after {
  background-color: #4699ca;
}
.seitai .access .access-content .text .text-term {
  color: #4699ca;
}

.seitai-price header {
  padding-top: 32px;
}
.seitai-price header p {
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 64px;
  position: relative;
}
@media (max-width: 767px) {
  .seitai-price header p {
    font-size: 24px;
  }
}
.seitai-price header p::before {
  position: absolute;
  top: 56px;
  left: 24px;
  content: "";
  width: 120px;
  height: 1px;
  background-color: #727374;
}
@media (max-width: 767px) {
  .seitai-price header p::before {
    top: 40px;
    left: 16px;
    width: 80px;
  }
}
.seitai-price .sub .mainphrase {
  background: linear-gradient(to bottom, transparent, rgba(89, 215, 254, 0.4));
}
.seitai-price .sub .mainphrase h1 {
  font-size: 48px;
  margin-bottom: 64px;
  color: #4699ca;
}
@media (max-width: 767px) {
  .seitai-price .sub .mainphrase h1 {
    font-size: 32px;
  }
}
.seitai-price .sub .mainphrase p {
  font-style: italic;
}
.seitai-price .sub .mainphrase p .line {
  background: linear-gradient(transparent 80%, #4699ca 0%);
}
.seitai-price .sub .mainphrase p .dots {
  text-emphasis: filled;
  -webkit-text-emphasis: filled;
}
.seitai-price .section-title h3 {
  color: #4699ca;
}
.seitai-price .section-title h3::before {
  background-color: #4699ca;
}
.seitai-price .section-title h3::after {
  background-color: #4699ca;
}
.seitai-price .section-title h2 {
  color: #4699ca;
}
.seitai-price .sub-swiper .swiper-slide {
  border: 3px solid #4699ca;
  height: 700px;
}
@media (max-width: 767px) {
  .seitai-price .sub-swiper .swiper-slide {
    height: 600px;
  }
}
.seitai-price .sub-swiper .swiper-slide h4 {
  color: #4699ca;
}
.seitai-price .sub-swiper .swiper-slide h5 {
  color: #4699ca;
}
.seitai-price .sub-swiper .swiper-button-prev {
  background-color: #4699ca;
}
.seitai-price .sub-swiper .swiper-button-next {
  background-color: #4699ca;
}
.seitai-price .sub-swiper .swiper-pagination-bullet-active {
  background-color: #4699ca;
}
.seitai-price .voice h2 {
  color: #4699ca;
}
.seitai-price .voice h2::before {
  background-color: #4699ca;
}
.seitai-price .voice h2::after {
  background-color: #4699ca;
}
.seitai-price .voice .sub-swiper .swiper-slide {
  border: 3px solid #4699ca;
  height: 650px;
}
@media (max-width: 767px) {
  .seitai-price .voice .sub-swiper .swiper-slide {
    height: 500px;
  }
}
.seitai-price .voice .sub-swiper .swiper-slide h3 {
  color: #4699ca;
}
.seitai-price .voice .sub-swiper .swiper-button-prev {
  background-color: #4699ca;
}
.seitai-price .voice .sub-swiper .swiper-button-next {
  background-color: #4699ca;
}
.seitai-price .voice .sub-swiper .swiper-pagination-bullet-active {
  background-color: #4699ca;
}
.seitai-price .voice .experience {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.seitai-price .lesson .container h2 {
  color: #4699ca;
}
@media (max-width: 767px) {
  .seitai-price .lesson .container h2 {
    font-size: 24px;
  }
}
.seitai-price .lesson .container h2::before {
  background-color: #4699ca;
}
.seitai-price .lesson .container h2::after {
  background-color: #4699ca;
}
.seitai-price .lesson .sub-swiper .swiper-slide {
  border: 3px solid #4699ca;
  height: 580px;
}
@media (max-width: 767px) {
  .seitai-price .lesson .sub-swiper .swiper-slide {
    height: 388px;
  }
}
.seitai-price .lesson .sub-swiper .swiper-slide h4 {
  background-color: #4699ca;
}
.seitai-price .lesson .sub-swiper .swiper-slide h5 {
  font-size: 32px;
  color: #4699ca;
}
@media (max-width: 767px) {
  .seitai-price .lesson .sub-swiper .swiper-slide h5 {
    font-size: 20px;
  }
  .seitai-price .lesson .sub-swiper .swiper-slide h5 span {
    font-size: 16px;
  }
}
.seitai-price .lesson .sub-swiper .swiper-button-prev {
  background-color: #4699ca;
}
.seitai-price .lesson .sub-swiper .swiper-button-next {
  background-color: #4699ca;
}
.seitai-price .lesson .sub-swiper .swiper-pagination-bullet-active {
  background-color: #4699ca;
}
.seitai-price .lesson .experience {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.seitai-price .review .review-text {
  text-align: center;
  font-size: 32px;
  margin-block: 64px;
}
@media (max-width: 767px) {
  .seitai-price .review .review-text {
    font-size: 24px;
  }
}
.seitai-price .review .review-text span {
  font-size: 48px;
  color: #4699ca;
}
@media (max-width: 767px) {
  .seitai-price .review .review-text span {
    font-size: 32px;
  }
}
.seitai-price .review li {
  margin-bottom: 64px;
}
.seitai-price .review li h2 {
  font-size: 24px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 8px 16px;
  border-radius: 100px;
  background-color: #4699ca;
  color: #fff;
}
@media (max-width: 767px) {
  .seitai-price .review li h2 {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
.seitai-price .review li .swiper-slide {
  border: 3px solid #4699ca;
  height: 540px;
}
@media (max-width: 767px) {
  .seitai-price .review li .swiper-slide {
    height: 500px;
  }
}
.seitai-price .review li .swiper-slide h4 {
  color: #4699ca;
}
.seitai-price .review li .swiper-slide .slide-img img {
  height: 300px;
  width: auto;
}
.seitai-price .review li .swiper-button-prev {
  background-color: #4699ca;
}
.seitai-price .review li .swiper-button-next {
  background-color: #4699ca;
}
.seitai-price .review li .swiper-pagination-bullet-active {
  background-color: #4699ca;
}

.stretch.sub .mainvisual {
  background-image: url("../img/stretch-mainvisual.png");
}
@media (max-width: 767px) {
  .stretch.sub .mainvisual .vertical {
    font-size: 32px;
  }
}
.stretch.sub .mainvisual .mainvisual-text p {
  background: none;
}
@media (max-width: 767px) {
  .stretch.sub .mainvisual .mainvisual-text h1 {
    line-height: 48px;
  }
}
@media (max-width: 767px) {
  .stretch.sub .mainvisual .mainvisual-text h1 span {
    font-size: 24px;
  }
}
.stretch.sub .mainvisual .mainvisual-text h1 .bgpink {
  background: linear-gradient(to right, #8BC34A, #a5c34a);
  font-size: 32px;
}
.stretch.sub .experience {
  background: linear-gradient(to right, #8BC34A, #a5c34a);
}
.stretch.sub .campaign {
  background: linear-gradient(to right, #8BC34A, #a5c34a);
}
.stretch.sub .section-title h3 {
  color: #8BC34A;
}
.stretch.sub .section-title h3::before {
  background-color: #8BC34A;
}
.stretch.sub .section-title h3::after {
  background-color: #8BC34A;
}
.stretch.sub .section-title h2 {
  color: #8BC34A;
}
.stretch.sub .sub-swiper .swiper-slide {
  border: 3px solid #8BC34A;
}
@media (max-width: 767px) {
  .stretch.sub .sub-swiper .swiper-slide {
    height: 620px;
  }
}
.stretch.sub .sub-swiper .swiper-slide h4 {
  color: #8BC34A;
}
.stretch.sub .sub-swiper .swiper-slide h5 {
  color: #8BC34A;
}
.stretch.sub .sub-swiper .swiper-button-prev {
  background-color: #8BC34A;
}
.stretch.sub .sub-swiper .swiper-button-next {
  background-color: #8BC34A;
}
.stretch.sub .sub-swiper .swiper-pagination-bullet-active {
  background-color: #8BC34A;
}
.stretch.sub .promotion .top-message-text {
  background: linear-gradient(to right, #8BC34A, #a5c34a);
}
.stretch.sub .before-after h2 {
  color: #8BC34A;
}
.stretch.sub .before-after h2::before {
  background-color: #8BC34A;
}
.stretch.sub .before-after h2::after {
  background-color: #8BC34A;
}
.stretch.sub .before-after .example {
  border: 4px solid #8BC34A;
}
.stretch.sub .before-after .example h3 {
  background-color: #8BC34A;
}
.stretch.sub .before-after .example .example-content .toggle-switch .before-btn {
  background-color: #8BC34A;
}
.stretch.sub .before-after .example .example-content .toggle-switch input:checked ~ .after-btn {
  background-color: #8BC34A;
}
.stretch.sub .before-after .example .example-content .before p,
.stretch.sub .before-after .example .example-content .after p {
  color: #8BC34A;
}
.stretch.sub .voice h2 {
  color: #8BC34A;
}
.stretch.sub .voice h2::before {
  background-color: #8BC34A;
}
.stretch.sub .voice h2::after {
  background-color: #8BC34A;
}
.stretch.sub .voice .sub-swiper .swiper-slide {
  height: 640px;
}
@media (max-width: 767px) {
  .stretch.sub .voice .sub-swiper .swiper-slide {
    height: 520px;
  }
}
.stretch.sub .voice .sub-swiper .swiper-slide h3 {
  color: #8BC34A;
}
.stretch.sub .features h2 {
  color: #8BC34A;
}
.stretch.sub .features .sub-swiper .swiper-slide {
  height: 640px;
}
@media (max-width: 767px) {
  .stretch.sub .features .sub-swiper .swiper-slide {
    height: 480px;
  }
}
.stretch.sub .features .sub-swiper .swiper-slide h3 {
  color: #8BC34A;
}
.stretch.sub .lesson {
  background-image: url("../img/lesson-bg-green.png");
}
.stretch.sub .lesson .container h2 {
  color: #8BC34A;
}
@media (max-width: 767px) {
  .stretch.sub .lesson .container h2 {
    font-size: 24px;
  }
}
.stretch.sub .lesson .container h2::before {
  background-color: #8BC34A;
}
.stretch.sub .lesson .container h2::after {
  background-color: #8BC34A;
}
.stretch.sub .lesson .sub-swiper .swiper-slide {
  height: 600px;
}
@media (max-width: 767px) {
  .stretch.sub .lesson .sub-swiper .swiper-slide {
    height: 400px;
  }
}
.stretch.sub .lesson .sub-swiper .swiper-slide h4 {
  background-color: #8BC34A;
  color: #fff;
}
.stretch.sub .lesson .sub-swiper .swiper-slide h5 {
  font-size: 32px;
}
@media (max-width: 767px) {
  .stretch.sub .lesson .sub-swiper .swiper-slide h5 {
    font-size: 20px;
  }
}
.stretch.sub .instructor .container h2 {
  color: #8BC34A;
}
@media (max-width: 767px) {
  .stretch.sub .instructor .container h2 {
    font-size: 24px;
  }
}
.stretch.sub .instructor .container h2::before {
  background-color: #8BC34A;
}
.stretch.sub .instructor .container h2::after {
  background-color: #8BC34A;
}
.stretch.sub .instructor .sub-swiper .swiper-slide {
  height: 520px;
}
@media (max-width: 767px) {
  .stretch.sub .instructor .sub-swiper .swiper-slide {
    height: 320px;
  }
}
.stretch.sub .instructor .sub-swiper .swiper-slide h3 {
  color: #8BC34A;
}
.stretch.sub .questions h2 {
  color: #8BC34A;
}
.stretch.sub .questions h2::before {
  background-color: #8BC34A;
}
.stretch.sub .questions h2::after {
  background-color: #8BC34A;
}
.stretch.sub .questions ul li {
  border: 3px solid #8BC34A;
}
.stretch.sub .questions ul li .question {
  background-color: #8BC34A;
}
.stretch.sub .price h2 {
  color: #8BC34A;
}
.stretch.sub .price h2::before {
  background-color: #8BC34A;
}
.stretch.sub .price h2::after {
  background-color: #8BC34A;
}
.stretch.sub .price p span {
  color: #8BC34A;
}
.stretch.sub .price .price-text .relative {
  color: #8BC34A;
}
.stretch.sub .news h2 {
  color: #8BC34A;
}
.stretch.sub .news h2::before {
  background-color: #8BC34A;
}
.stretch.sub .news h2::after {
  background-color: #8BC34A;
}
.stretch.sub .news .column li .column-cat {
  background-color: #8BC34A;
}
.stretch.sub .shop-list .section-title h2 {
  color: #8BC34A;
}

.stretch .mainvisual .mainvisual-text p {
  background: linear-gradient(to right, #8BC34A, #a5c34a);
}
@media (max-width: 767px) {
  .stretch .mainvisual .mainvisual-text h1 span {
    font-size: 24px;
  }
}
.stretch .mainvisual .mainvisual-text h1 .bgpink {
  background: linear-gradient(to right, #8BC34A, #a5c34a);
}
.stretch .experience {
  background: linear-gradient(to right, #8BC34A, #a5c34a);
}
.stretch .access h2 {
  color: #8BC34A;
}
.stretch .access h2::before {
  background-color: #8BC34A;
}
.stretch .access h2::after {
  background-color: #8BC34A;
}
.stretch .access .access-content .text .text-term {
  color: #8BC34A;
}

.stretch-price header {
  padding-top: 32px;
}
.stretch-price header p {
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 64px;
  position: relative;
}
@media (max-width: 767px) {
  .stretch-price header p {
    font-size: 24px;
  }
}
.stretch-price header p::before {
  position: absolute;
  top: 56px;
  left: 24px;
  content: "";
  width: 120px;
  height: 1px;
  background-color: #727374;
}
@media (max-width: 767px) {
  .stretch-price header p::before {
    top: 40px;
    left: 16px;
    width: 80px;
  }
}
.stretch-price .sub .mainphrase {
  background: linear-gradient(to bottom, transparent, rgba(180, 255, 137, 0.4));
}
.stretch-price .sub .mainphrase h1 {
  font-size: 48px;
  margin-bottom: 64px;
  color: #8BC34A;
}
@media (max-width: 767px) {
  .stretch-price .sub .mainphrase h1 {
    font-size: 32px;
  }
}
.stretch-price .sub .mainphrase p {
  font-style: italic;
}
.stretch-price .sub .mainphrase p .line {
  background: linear-gradient(transparent 80%, #8BC34A 0%);
}
.stretch-price .sub .mainphrase p .dots {
  text-emphasis: filled;
  -webkit-text-emphasis: filled;
}
.stretch-price .sub .trial .inner .trial-cta1 {
  background: linear-gradient(to right, #8BC34A, #a5c34a);
}
.stretch-price .sub .section-title h3 {
  color: #8BC34A;
}
.stretch-price .sub .section-title h3::before {
  background-color: #8BC34A;
}
.stretch-price .sub .section-title h3::after {
  background-color: #8BC34A;
}
.stretch-price .sub .section-title h2 {
  color: #8BC34A;
}
.stretch-price .sub .sub-swiper .swiper-slide {
  border: 3px solid #8BC34A;
}
@media (max-width: 767px) {
  .stretch-price .sub .sub-swiper .swiper-slide {
    height: 620px;
  }
}
.stretch-price .sub .sub-swiper .swiper-slide h4 {
  color: #8BC34A;
}
.stretch-price .sub .sub-swiper .swiper-slide h5 {
  color: #8BC34A;
}
.stretch-price .sub .sub-swiper .swiper-button-prev {
  background-color: #8BC34A;
}
.stretch-price .sub .sub-swiper .swiper-button-next {
  background-color: #8BC34A;
}
.stretch-price .sub .sub-swiper .swiper-pagination-bullet-active {
  background-color: #8BC34A;
}
.stretch-price .sub .subscription .subscription-content h3 {
  color: #8BC34A;
}
.stretch-price .sub .subscription .subscription-content .monthly h4 {
  background-color: #8BC34A;
}
.stretch-price .sub .subscription .subscription-content .monthly ul li {
  border: 3px solid #8BC34A;
}
.stretch-price .sub .subscription .subscription-content .monthly ul li h5 {
  background-color: #8BC34A;
}
.stretch-price .sub .subscription .subscription-content .monthly ul li .sub-title {
  background-color: #8BC34A;
}
.stretch-price .sub .subscription .subscription-content .monthly ul li .subscription-price p:nth-of-type(2) span {
  color: #8BC34A;
}
.stretch-price .sub .subscription .subscription-content .monthly ul li .last-text {
  color: #8BC34A;
}
.stretch-price .sub .subscription .subscription-content .monthly ul .shape {
  border: 3px solid #ab905e;
}
.stretch-price .sub .subscription .subscription-content .monthly ul .shape h5 {
  background: linear-gradient(to right, #ab905e, #ffe5b6);
}
.stretch-price .sub .subscription .subscription-content .monthly ul .shape .sub-title {
  background: linear-gradient(to right, #ab905e, #ffe5b6);
}
.stretch-price .sub .subscription .subscription-content .monthly ul .shape .subscription-price p:nth-of-type(2) span {
  color: #ab905e;
}
.stretch-price .sub .subscription .subscription-content .monthly ul .shape .last-text {
  color: #ab905e;
}
.stretch-price .sub .lesson {
  background-image: url("../img/lesson-bg-green.png");
}
.stretch-price .sub .lesson .container h2 {
  color: #8BC34A;
}
@media (max-width: 767px) {
  .stretch-price .sub .lesson .container h2 {
    font-size: 24px;
  }
}
.stretch-price .sub .lesson .container h2::before {
  background-color: #8BC34A;
}
.stretch-price .sub .lesson .container h2::after {
  background-color: #8BC34A;
}
.stretch-price .sub .lesson .sub-swiper .swiper-slide {
  height: 600px;
}
@media (max-width: 767px) {
  .stretch-price .sub .lesson .sub-swiper .swiper-slide {
    height: 400px;
  }
}
.stretch-price .sub .lesson .sub-swiper .swiper-slide h4 {
  background-color: #8BC34A;
  color: #fff;
}
.stretch-price .sub .lesson .sub-swiper .swiper-slide h5 {
  font-size: 32px;
}
@media (max-width: 767px) {
  .stretch-price .sub .lesson .sub-swiper .swiper-slide h5 {
    font-size: 20px;
  }
}
.stretch-price .sub .lesson .experience {
  background: linear-gradient(to right, #8BC34A, #a5c34a);
}
.stretch-price .sub .shop-list h2 {
  color: #8BC34A;
}
.stretch-price .sub .shop-list .store .store-right a {
  background-color: #8BC34A;
}
.stretch-price .sub .voice h2 {
  color: #8BC34A;
}
.stretch-price .sub .voice h2::before {
  background-color: #8BC34A;
}
.stretch-price .sub .voice h2::after {
  background-color: #8BC34A;
}
.stretch-price .sub .voice .sub-swiper .swiper-slide {
  height: 640px;
}
@media (max-width: 767px) {
  .stretch-price .sub .voice .sub-swiper .swiper-slide {
    height: 520px;
  }
}
.stretch-price .sub .voice .sub-swiper .swiper-slide h3 {
  color: #8BC34A;
}
.stretch-price .sub .voice .experience {
  background: linear-gradient(to right, #8BC34A, #a5c34a);
}
.stretch-price .sub .review .review-text {
  text-align: center;
  font-size: 32px;
  margin-block: 64px;
}
@media (max-width: 767px) {
  .stretch-price .sub .review .review-text {
    font-size: 24px;
  }
}
.stretch-price .sub .review .review-text span {
  font-size: 48px;
  color: #8BC34A;
}
@media (max-width: 767px) {
  .stretch-price .sub .review .review-text span {
    font-size: 32px;
  }
}
.stretch-price .sub .review li {
  margin-bottom: 64px;
}
.stretch-price .sub .review li h2 {
  font-size: 24px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 8px 16px;
  border-radius: 100px;
  background-color: #8BC34A;
  color: #fff;
}
@media (max-width: 767px) {
  .stretch-price .sub .review li h2 {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
.stretch-price .sub .review li .swiper-slide {
  border: 3px solid #8BC34A;
  height: 540px;
}
@media (max-width: 767px) {
  .stretch-price .sub .review li .swiper-slide {
    height: 500px;
  }
}
.stretch-price .sub .review li .swiper-slide h4 {
  color: #8BC34A;
}
.stretch-price .sub .review li .swiper-slide .slide-img img {
  height: 300px;
  width: auto;
}
.stretch-price .sub .review li .swiper-button-prev {
  background-color: #8BC34A;
}
.stretch-price .sub .review li .swiper-button-next {
  background-color: #8BC34A;
}
.stretch-price .sub .review li .swiper-pagination-bullet-active {
  background-color: #8BC34A;
}

.healthcare .mainvisual {
  background-image: url("../img/training-mainvisual.png");
  background-position: center;
}
@media (max-width: 767px) {
  .healthcare .mainvisual .mainvisual-text h1 span {
    font-size: 28px;
  }
}
.healthcare .mainvisual .mainvisual-text h1 .bgpink {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.healthcare .experience {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.healthcare .campaign {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.healthcare .section-title h3 {
  color: #4699ca;
}
.healthcare .section-title h3::before {
  background-color: #4699ca;
}
.healthcare .section-title h3::after {
  background-color: #4699ca;
}
.healthcare .section-title h2 {
  color: #4699ca;
}
.healthcare .sub-swiper .swiper-slide {
  border: 3px solid #4699ca;
}
@media (max-width: 767px) {
  .healthcare .sub-swiper .swiper-slide {
    height: 560px;
  }
}
.healthcare .sub-swiper .swiper-slide h4 {
  color: #4699ca;
}
.healthcare .sub-swiper .swiper-slide h5 {
  color: #4699ca;
}
.healthcare .sub-swiper .swiper-button-prev {
  background-color: #4699ca;
}
.healthcare .sub-swiper .swiper-button-next {
  background-color: #4699ca;
}
.healthcare .sub-swiper .swiper-pagination-bullet-active {
  background-color: #4699ca;
}
.healthcare .promotion .top-message-text {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.healthcare .before-after h2 {
  color: #4699ca;
}
.healthcare .before-after h2::before {
  background-color: #4699ca;
}
.healthcare .before-after h2::after {
  background-color: #4699ca;
}
.healthcare .before-after .example {
  border: 4px solid #4699ca;
}
.healthcare .before-after .example h3 {
  background-color: #4699ca;
}
.healthcare .before-after .example .example-content .toggle-switch .before-btn {
  background-color: #4699ca; /* ピンク */
}
.healthcare .before-after .example .example-content .toggle-switch input:checked ~ .after-btn {
  background-color: #4699ca;
}
.healthcare .before-after .example .example-content .before p,
.healthcare .before-after .example .example-content .after p {
  color: #4699ca;
}
.healthcare .voice h2 {
  color: #4699ca;
}
.healthcare .voice h2::before {
  background-color: #4699ca;
}
.healthcare .voice h2::after {
  background-color: #4699ca;
}
.healthcare .voice .sub-swiper .swiper-slide {
  height: 640px;
}
@media (max-width: 767px) {
  .healthcare .voice .sub-swiper .swiper-slide {
    height: 520px;
  }
}
.healthcare .voice .sub-swiper .swiper-slide h3 {
  color: #4699ca;
}
.healthcare .voice .sub-swiper .swiper-slide .slide-img {
  width: 40%;
}
.healthcare .features h2 {
  color: #4699ca;
}
.healthcare .features .swiper-slide {
  height: 620px;
}
@media (max-width: 767px) {
  .healthcare .features .swiper-slide {
    height: 460px;
  }
}
.healthcare .lesson .container h2 {
  color: #4699ca;
}
@media (max-width: 767px) {
  .healthcare .lesson .container h2 {
    font-size: 24px;
  }
}
.healthcare .lesson .container h2::before {
  background-color: #4699ca;
}
.healthcare .lesson .container h2::after {
  background-color: #4699ca;
}
.healthcare .lesson .sub-swiper .swiper-slide {
  height: 540px;
}
@media (max-width: 767px) {
  .healthcare .lesson .sub-swiper .swiper-slide {
    height: 360px;
  }
}
.healthcare .lesson .sub-swiper .swiper-slide h4 {
  background-color: #4699ca;
}
.healthcare .lesson .sub-swiper .swiper-slide h5 {
  font-size: 32px;
}
@media (max-width: 767px) {
  .healthcare .lesson .sub-swiper .swiper-slide h5 {
    font-size: 20px;
  }
}
.healthcare .instructor .container h2 {
  color: #4699ca;
}
.healthcare .instructor .container h2::before {
  background-color: #4699ca;
}
.healthcare .instructor .container h2::after {
  background-color: #4699ca;
}
.healthcare .instructor .sub-swiper .swiper-slide {
  height: 500px;
}
@media (max-width: 767px) {
  .healthcare .instructor .sub-swiper .swiper-slide {
    height: 320px;
  }
}
.healthcare .questions h2 {
  color: #4699ca;
}
.healthcare .questions h2::before {
  background-color: #4699ca;
}
.healthcare .questions h2::after {
  background-color: #4699ca;
}
.healthcare .questions ul li {
  border: 3px solid #4699ca;
}
.healthcare .questions ul li .question {
  background-color: #4699ca;
}
.healthcare .price h2 {
  color: #4699ca;
}
.healthcare .price h2::before {
  background-color: #4699ca;
}
.healthcare .price h2::after {
  background-color: #4699ca;
}
.healthcare .price p span {
  color: #4699ca;
}
.healthcare .price .price-text .relative {
  color: #4699ca;
}
.healthcare .news h2 {
  color: #4699ca;
}
.healthcare .news h2::before {
  background-color: #4699ca;
}
.healthcare .news h2::after {
  background-color: #4699ca;
}
.healthcare .news .column li .column-cat {
  background-color: #4699ca;
}
.healthcare .stores h2 {
  color: #4699ca;
}
.healthcare .stores h2::before {
  background-color: #4699ca;
}
.healthcare .stores h2::after {
  background-color: #4699ca;
}
.healthcare .stores .store .store-right a {
  background-color: #4699ca;
}

.kokkaku-reset .mainvisual {
  background-image: url("../img/kokkaku-mainvisual.png");
}
@media (max-width: 767px) {
  .kokkaku-reset .mainvisual .vertical {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .kokkaku-reset .mainvisual .mainvisual-text h1 span {
    font-size: 28px;
  }
}
.kokkaku-reset .mainvisual .mainvisual-text h1 .bgpink {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.kokkaku-reset .experience {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.kokkaku-reset .campaign {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.kokkaku-reset .section-title h3 {
  color: #4699ca;
}
.kokkaku-reset .section-title h3::before {
  background-color: #4699ca;
}
.kokkaku-reset .section-title h3::after {
  background-color: #4699ca;
}
.kokkaku-reset .section-title h2 {
  color: #4699ca;
}
.kokkaku-reset .sub-swiper .swiper-slide {
  border: 3px solid #4699ca;
  height: 740px;
}
@media (max-width: 767px) {
  .kokkaku-reset .sub-swiper .swiper-slide {
    height: 600px;
  }
}
.kokkaku-reset .sub-swiper .swiper-slide h4 {
  color: #4699ca;
}
.kokkaku-reset .sub-swiper .swiper-slide h5 {
  color: #4699ca;
}
.kokkaku-reset .sub-swiper .swiper-button-prev {
  background-color: #4699ca;
}
.kokkaku-reset .sub-swiper .swiper-button-next {
  background-color: #4699ca;
}
.kokkaku-reset .sub-swiper .swiper-pagination-bullet-active {
  background-color: #4699ca;
}
.kokkaku-reset .promotion .top-message-text {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.kokkaku-reset .before-after h2 {
  color: #4699ca;
}
.kokkaku-reset .before-after h2::before {
  background-color: #4699ca;
}
.kokkaku-reset .before-after h2::after {
  background-color: #4699ca;
}
.kokkaku-reset .before-after .example {
  border: 4px solid #4699ca;
}
.kokkaku-reset .before-after .example h3 {
  background-color: #4699ca;
}
.kokkaku-reset .before-after .example .example-content .toggle-switch .before-btn {
  background-color: #4699ca; /* ピンク */
}
.kokkaku-reset .before-after .example .example-content .toggle-switch input:checked ~ .after-btn {
  background-color: #4699ca;
}
.kokkaku-reset .before-after .example .example-content .before p,
.kokkaku-reset .before-after .example .example-content .after p {
  color: #4699ca;
}
.kokkaku-reset .voice h2 {
  color: #4699ca;
}
.kokkaku-reset .voice h2::before {
  background-color: #4699ca;
}
.kokkaku-reset .voice h2::after {
  background-color: #4699ca;
}
.kokkaku-reset .voice .sub-swiper .swiper-slide {
  height: 660px;
}
@media (max-width: 767px) {
  .kokkaku-reset .voice .sub-swiper .swiper-slide {
    height: 520px;
  }
}
.kokkaku-reset .voice .sub-swiper .swiper-slide h3 {
  color: #4699ca;
}
.kokkaku-reset .voice .sub-swiper .swiper-slide .slide-img {
  width: 40%;
}
.kokkaku-reset .features h2 {
  color: #4699ca;
}
.kokkaku-reset .features .swiper-slide {
  height: 620px;
}
@media (max-width: 767px) {
  .kokkaku-reset .features .swiper-slide {
    height: 480px;
  }
}
.kokkaku-reset .lesson .container h2 {
  color: #4699ca;
}
@media (max-width: 767px) {
  .kokkaku-reset .lesson .container h2 {
    font-size: 24px;
  }
}
.kokkaku-reset .lesson .container h2::before {
  background-color: #4699ca;
}
.kokkaku-reset .lesson .container h2::after {
  background-color: #4699ca;
}
.kokkaku-reset .lesson .sub-swiper .swiper-slide {
  height: 540px;
}
@media (max-width: 767px) {
  .kokkaku-reset .lesson .sub-swiper .swiper-slide {
    height: 360px;
  }
}
.kokkaku-reset .lesson .sub-swiper .swiper-slide h4 {
  background-color: #4699ca;
}
.kokkaku-reset .lesson .sub-swiper .swiper-slide h5 {
  font-size: 32px;
}
@media (max-width: 767px) {
  .kokkaku-reset .lesson .sub-swiper .swiper-slide h5 {
    font-size: 20px;
  }
}
.kokkaku-reset .instructor .container h2 {
  color: #4699ca;
}
.kokkaku-reset .instructor .container h2::before {
  background-color: #4699ca;
}
.kokkaku-reset .instructor .container h2::after {
  background-color: #4699ca;
}
.kokkaku-reset .instructor .sub-swiper .swiper-slide {
  height: 500px;
}
@media (max-width: 767px) {
  .kokkaku-reset .instructor .sub-swiper .swiper-slide {
    height: 320px;
  }
}
.kokkaku-reset .questions h2 {
  color: #4699ca;
}
.kokkaku-reset .questions h2::before {
  background-color: #4699ca;
}
.kokkaku-reset .questions h2::after {
  background-color: #4699ca;
}
.kokkaku-reset .questions ul li {
  border: 3px solid #4699ca;
}
.kokkaku-reset .questions ul li .question {
  background-color: #4699ca;
}
.kokkaku-reset .price h2 {
  color: #4699ca;
}
.kokkaku-reset .price h2::before {
  background-color: #4699ca;
}
.kokkaku-reset .price h2::after {
  background-color: #4699ca;
}
.kokkaku-reset .price p span {
  color: #4699ca;
}
.kokkaku-reset .price .price-text .relative {
  color: #4699ca;
}
.kokkaku-reset .news h2 {
  color: #4699ca;
}
.kokkaku-reset .news h2::before {
  background-color: #4699ca;
}
.kokkaku-reset .news h2::after {
  background-color: #4699ca;
}
.kokkaku-reset .news .column li .column-cat {
  background-color: #4699ca;
}
.kokkaku-reset .stores h2 {
  color: #4699ca;
}
.kokkaku-reset .stores h2::before {
  background-color: #4699ca;
}
.kokkaku-reset .stores h2::after {
  background-color: #4699ca;
}
.kokkaku-reset .stores .store .store-right a {
  background-color: #4699ca;
}

.women .mainvisual {
  background-image: url("../img/women-mainvisual.png");
}
@media (max-width: 767px) {
  .women .mainvisual .mainvisual-text h1 span {
    font-size: 28px;
  }
}
.women .mainvisual .mainvisual-text h1 .bgpink {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.women .experience {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.women .campaign {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.women .section-title h3 {
  color: #4699ca;
}
.women .section-title h3::before {
  background-color: #4699ca;
}
.women .section-title h3::after {
  background-color: #4699ca;
}
.women .section-title h2 {
  color: #4699ca;
}
.women .sub-swiper .swiper-slide {
  border: 3px solid #4699ca;
}
@media (max-width: 767px) {
  .women .sub-swiper .swiper-slide {
    height: 570px;
  }
}
.women .sub-swiper .swiper-slide h4 {
  color: #4699ca;
}
.women .sub-swiper .swiper-slide h5 {
  color: #4699ca;
}
.women .sub-swiper .swiper-button-prev {
  background-color: #4699ca;
}
.women .sub-swiper .swiper-button-next {
  background-color: #4699ca;
}
.women .sub-swiper .swiper-pagination-bullet-active {
  background-color: #4699ca;
}
.women .promotion .top-message-text {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.women .before-after h2 {
  color: #4699ca;
}
.women .before-after h2::before {
  background-color: #4699ca;
}
.women .before-after h2::after {
  background-color: #4699ca;
}
.women .before-after .example {
  border: 4px solid #4699ca;
}
.women .before-after .example h3 {
  background-color: #4699ca;
}
.women .before-after .example .example-content .toggle-switch .before-btn {
  background-color: #4699ca; /* ピンク */
}
.women .before-after .example .example-content .toggle-switch input:checked ~ .after-btn {
  background-color: #4699ca;
}
.women .before-after .example .example-content .before p,
.women .before-after .example .example-content .after p {
  color: #4699ca;
}
.women .voice h2 {
  color: #4699ca;
}
.women .voice h2::before {
  background-color: #4699ca;
}
.women .voice h2::after {
  background-color: #4699ca;
}
.women .voice .sub-swiper .swiper-slide {
  height: 680px;
}
@media (max-width: 767px) {
  .women .voice .sub-swiper .swiper-slide {
    height: 560px;
  }
}
.women .voice .sub-swiper .swiper-slide h3 {
  color: #4699ca;
}
.women .voice .sub-swiper .swiper-slide .slide-img {
  width: 40%;
}
.women .features h2 {
  color: #4699ca;
}
.women .features .swiper-slide {
  height: 620px;
}
@media (max-width: 767px) {
  .women .features .swiper-slide {
    height: 460px;
  }
}
.women .lesson .container h2 {
  color: #4699ca;
}
@media (max-width: 767px) {
  .women .lesson .container h2 {
    font-size: 24px;
  }
}
.women .lesson .container h2::before {
  background-color: #4699ca;
}
.women .lesson .container h2::after {
  background-color: #4699ca;
}
.women .lesson .sub-swiper .swiper-slide {
  height: 540px;
}
@media (max-width: 767px) {
  .women .lesson .sub-swiper .swiper-slide {
    height: 360px;
  }
}
.women .lesson .sub-swiper .swiper-slide h4 {
  background-color: #4699ca;
}
.women .lesson .sub-swiper .swiper-slide h5 {
  font-size: 32px;
}
@media (max-width: 767px) {
  .women .lesson .sub-swiper .swiper-slide h5 {
    font-size: 20px;
  }
}
.women .instructor .container h2 {
  color: #4699ca;
}
.women .instructor .container h2::before {
  background-color: #4699ca;
}
.women .instructor .container h2::after {
  background-color: #4699ca;
}
.women .questions h2 {
  color: #4699ca;
}
.women .questions h2::before {
  background-color: #4699ca;
}
.women .questions h2::after {
  background-color: #4699ca;
}
.women .questions ul li {
  border: 3px solid #4699ca;
}
.women .questions ul li .question {
  background-color: #4699ca;
}
.women .price h2 {
  color: #4699ca;
}
.women .price h2::before {
  background-color: #4699ca;
}
.women .price h2::after {
  background-color: #4699ca;
}
.women .price p span {
  color: #4699ca;
}
.women .price .price-text .relative {
  color: #4699ca;
}
.women .news h2 {
  color: #4699ca;
}
.women .news h2::before {
  background-color: #4699ca;
}
.women .news h2::after {
  background-color: #4699ca;
}
.women .news .column li .column-cat {
  background-color: #4699ca;
}
.women .stores h2 {
  color: #4699ca;
}
.women .stores h2::before {
  background-color: #4699ca;
}
.women .stores h2::after {
  background-color: #4699ca;
}
.women .stores .store .store-right a {
  background-color: #4699ca;
}

.junior .mainvisual {
  background-image: url("../img/junior-mainvisual.png");
}
@media (max-width: 767px) {
  .junior .mainvisual .mainvisual-text h1 span {
    font-size: 28px;
  }
}
.junior .mainvisual .mainvisual-text h1 .bgpink {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.junior .experience {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.junior .campaign {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.junior .section-title h3 {
  color: #4699ca;
}
.junior .section-title h3::before {
  background-color: #4699ca;
}
.junior .section-title h3::after {
  background-color: #4699ca;
}
.junior .section-title h2 {
  color: #4699ca;
}
.junior .sub-swiper .swiper-slide {
  border: 3px solid #4699ca;
}
@media (max-width: 767px) {
  .junior .sub-swiper .swiper-slide {
    height: 560px;
  }
}
.junior .sub-swiper .swiper-slide h4 {
  color: #4699ca;
}
.junior .sub-swiper .swiper-slide h5 {
  color: #4699ca;
}
.junior .sub-swiper .swiper-button-prev {
  background-color: #4699ca;
}
.junior .sub-swiper .swiper-button-next {
  background-color: #4699ca;
}
.junior .sub-swiper .swiper-pagination-bullet-active {
  background-color: #4699ca;
}
.junior .promotion .top-message-text {
  background: linear-gradient(to right, #4699ca, #46a7ca);
}
.junior .before-after h2 {
  color: #4699ca;
}
.junior .before-after h2::before {
  background-color: #4699ca;
}
.junior .before-after h2::after {
  background-color: #4699ca;
}
.junior .before-after .example {
  border: 4px solid #4699ca;
}
.junior .before-after .example h3 {
  background-color: #4699ca;
}
.junior .before-after .example .example-content .toggle-switch .before-btn {
  background-color: #4699ca; /* ピンク */
}
.junior .before-after .example .example-content .toggle-switch input:checked ~ .after-btn {
  background-color: #4699ca;
}
.junior .before-after .example .example-content .before p,
.junior .before-after .example .example-content .after p {
  color: #4699ca;
}
.junior .voice h2 {
  color: #4699ca;
}
.junior .voice h2::before {
  background-color: #4699ca;
}
.junior .voice h2::after {
  background-color: #4699ca;
}
.junior .voice .sub-swiper .swiper-slide {
  height: 760px;
}
@media (max-width: 767px) {
  .junior .voice .sub-swiper .swiper-slide {
    height: 640px;
  }
}
.junior .voice .sub-swiper .swiper-slide h3 {
  color: #4699ca;
}
.junior .voice .sub-swiper .swiper-slide .slide-img {
  width: 40%;
}
.junior .features h2 {
  color: #4699ca;
}
.junior .features .swiper-slide {
  height: 620px;
}
@media (max-width: 767px) {
  .junior .features .swiper-slide {
    height: 480px;
  }
}
.junior .lesson .container h2 {
  color: #4699ca;
}
@media (max-width: 767px) {
  .junior .lesson .container h2 {
    font-size: 24px;
  }
}
.junior .lesson .container h2::before {
  background-color: #4699ca;
}
.junior .lesson .container h2::after {
  background-color: #4699ca;
}
.junior .lesson .sub-swiper .swiper-slide {
  height: 540px;
}
@media (max-width: 767px) {
  .junior .lesson .sub-swiper .swiper-slide {
    height: 360px;
  }
}
.junior .lesson .sub-swiper .swiper-slide h4 {
  background-color: #4699ca;
}
.junior .lesson .sub-swiper .swiper-slide h5 {
  font-size: 32px;
}
@media (max-width: 767px) {
  .junior .lesson .sub-swiper .swiper-slide h5 {
    font-size: 20px;
  }
}
.junior .instructor .container h2 {
  color: #4699ca;
}
.junior .instructor .container h2::before {
  background-color: #4699ca;
}
.junior .instructor .container h2::after {
  background-color: #4699ca;
}
.junior .instructor .sub-swiper .swiper-slide {
  height: 500px;
}
@media (max-width: 767px) {
  .junior .instructor .sub-swiper .swiper-slide {
    height: 320px;
  }
}
.junior .questions h2 {
  color: #4699ca;
}
.junior .questions h2::before {
  background-color: #4699ca;
}
.junior .questions h2::after {
  background-color: #4699ca;
}
.junior .questions ul li {
  border: 3px solid #4699ca;
}
.junior .questions ul li .question {
  background-color: #4699ca;
}
.junior .price h2 {
  color: #4699ca;
}
.junior .price h2::before {
  background-color: #4699ca;
}
.junior .price h2::after {
  background-color: #4699ca;
}
.junior .price p span {
  color: #4699ca;
}
.junior .price .price-text .relative {
  color: #4699ca;
}
.junior .news h2 {
  color: #4699ca;
}
.junior .news h2::before {
  background-color: #4699ca;
}
.junior .news h2::after {
  background-color: #4699ca;
}
.junior .news .column li .column-cat {
  background-color: #4699ca;
}
.junior .stores h2 {
  color: #4699ca;
}
.junior .stores h2::before {
  background-color: #4699ca;
}
.junior .stores h2::after {
  background-color: #4699ca;
}
.junior .stores .store .store-right a {
  background-color: #4699ca;
}/*# sourceMappingURL=main.css.map */