@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "Shippori Mincho", "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, serif;
  line-height: 1.7;
  color: #1E293B;
  background-color: #fff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .inner {
    padding: 0 24px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 96px;
}
header .logo-link {
  display: inline-block;
  padding: 12px 16px;
}
header .logo-link img {
  width: 69px;
  height: auto;
}
@media (max-width: 768px) {
  header .logo-link img {
    width: 57px;
  }
}
header .tel-box .sp {
  display: none;
}
header .hamburger {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: none;
  width: 96px;
  height: 96px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 35px 24px;
  background: #36BABF;
}
header .hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}
header .hamburger span:not(.txt) {
  transform-origin: center;
}
header .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}
header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
header .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}
header .gnav {
  display: flex;
}
header .gnav ul {
  display: flex;
  align-items: center;
  gap: 1px;
}
header .gnav ul.nav-meun {
  gap: 32px;
  padding: 0 32px 0 0;
}
header .gnav .link-txt a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
  font-family: "Noto Sans JP", sans-serif;
}
header .gnav .link-txt a:hover {
  color: #0CA3A9;
}
header .gnav .link-txt a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #0CA3A9;
  transition: all 0.3s ease;
}
header .gnav .link-txt a:hover::after {
  width: 100%;
}
header .btn-txt .btn {
  width: 136px;
  height: 96px;
  font-size: 0.8rem;
  line-height: 1.3;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: "Noto Sans JP", sans-serif;
}
header .btn-txt .btn .btn-icon {
  width: 32px;
  height: 32px;
}
@media (max-width: 1400px) {
  header .header-container {
    flex-wrap: wrap;
  }
  header .hamburger {
    display: flex;
  }
  header .gnav {
    position: fixed;
    display: block;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    -webkit-backdrop-filter: blur(15px);
            backdrop-filter: blur(15px);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  header .gnav.active {
    transform: translateY(0);
    opacity: 1;
    height: 100dvh;
    visibility: visible;
    padding: 40px 104px;
  }
  header .gnav.active ul.nav-meun {
    display: block;
    margin-bottom: 32px;
  }
  header .gnav.active ul.nav-meun li {
    margin-bottom: 16px;
  }
  header .gnav.active ul.nav-meun li a {
    font-size: 20px;
  }
  header .gnav.active ul.cta-menu-box li {
    width: calc((100% - 4px) / 3);
  }
  header .gnav.active ul.cta-menu-box li a {
    width: 100%;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  header .gnav.active {
    padding: 40px;
  }
  header .gnav.active ul.cta-menu-box {
    display: block;
  }
  header .gnav.active ul.cta-menu-box li {
    width: 100%;
    margin-top: 2px;
  }
  header .gnav.active ul.cta-menu-box li a br {
    display: none;
  }
}
@media (max-width: 576px) {
  header .header-container {
    height: 80px;
  }
  header .tel-box {
    position: absolute;
    top: 0;
    right: 82px;
  }
  header .tel-box .pc {
    display: none;
  }
  header .tel-box .sp {
    display: block;
    width: 80px;
    height: 80px;
  }
  header .hamburger {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    padding: 27px 22px;
  }
}

.btn-box {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0 0;
}
.btn-box .btn img {
  margin-right: 12px;
}
@media (max-width: 1400px) {
  .btn-box {
    gap: 20px;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 340px;
  height: 72px;
  padding: 0;
  border-radius: 36px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}
.btn:hover::before {
  width: 800px;
  height: 800px;
}
@media (max-width: 1400px) {
  .btn {
    width: calc((100% - 40px) / 3);
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .btn {
    width: 320px;
  }
}
@media (max-width: 768px) {
  .btn {
    width: 100%;
  }
}
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
  color: #FFFFFF;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.btn-contact {
  background: linear-gradient(90deg, #C49B5A, #807946);
}
.btn-line {
  background: linear-gradient(90deg, #00CF2E, #7BCCCF);
}
.btn-instagram {
  background: linear-gradient(-135deg, #F9ED32 0%, #EE2A7B 36%, #D22A8A 44%, #8B2AB2 100%);
}
.btn-googlemap {
  width: 240px;
  height: 64px;
  background: transparent;
  border: 1px solid #0CA3A9;
  color: #0CA3A9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
}
.btn-googlemap:hover {
  background: rgba(12, 163, 169, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(12, 163, 169, 0.2);
}

.mv {
  height: 740px;
  background: url("../img/mv.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #1E293B;
  position: relative;
  overflow: hidden;
  margin-top: 96px;
  padding-top: 72px;
}
.mv::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.1) 50%);
}
.mv .inner {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1s ease-out;
}
.mv .cath-txt {
  font-size: 40px;
  font-weight: 600;
}
.mv h1 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.3;
}
.mv h1 .font-56 {
  font-weight: 500;
  font-size: 56px;
}
.mv h1 strong {
  color: white;
  font-weight: 500;
  background-color: #36BABF;
  padding: 8px 4px 0;
}
.mv h1 strong .font-72 {
  font-size: 72px;
}
.mv .blue {
  color: #0CA3A9;
}
.mv .medal-box {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin: 40px 0 32px;
}
.mv .medal-box img {
  width: 180px;
  height: 180px;
  animation: float 3s ease-in-out infinite;
}
.mv .medal-box img:nth-child(2) {
  animation-delay: 0.5s;
}
.mv .medal-box img:nth-child(3) {
  animation-delay: 1s;
}
.mv .mv-final-message {
  font-size: 56px;
  font-weight: 500;
  line-height: 1.2;
}
.mv .mv-final-message br {
  display: none;
}
.mv .mv-final-message .sp {
  display: none;
}
.mv .move-txt {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}
.mv .move-txt .loop-wrapper {
  display: flex;
}
.mv .move-txt .loop-content {
  display: inline-block;
  font-size: 96px;
  font-weight: 700;
  color: rgba(123, 204, 207, 0.2);
  white-space: nowrap;
  animation: scrollText 60s linear infinite;
}
@media (max-width: 1400px) {
  .mv .mv-final-message {
    font-size: 48px;
  }
}
@media (max-width: 1024px) {
  .mv {
    margin-top: 0;
  }
  .mv h1 {
    font-size: 40px;
  }
  .mv h1 .font-56 {
    font-size: 48px;
  }
  .mv h1 strong .font-72 {
    font-size: 64px;
  }
  .mv .mv-final-message {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .mv {
    height: 800px;
    background: url("../img/mv-sp.jpg") top/cover no-repeat;
    margin-top: 0;
    padding-top: 40%;
  }
  .mv .cath-txt {
    font-size: 28px;
  }
  .mv h1 {
    font-size: 28px;
  }
  .mv h1 .font-56 {
    font-size: 36px;
  }
  .mv h1 strong .font-72 {
    font-size: 48px;
  }
  .mv .mv-final-message {
    font-size: 36px;
    line-height: 1.3;
  }
  .mv .mv-final-message br {
    display: block;
  }
  .mv .medal-box {
    margin: 32px 0;
    gap: 16px;
  }
  .mv .medal-box img {
    width: 160px;
    height: 160px;
  }
  .mv .move-txt {
    bottom: 48px;
  }
}
@media (max-width: 576px) {
  .mv {
    height: 640px;
  }
  .mv .inner {
    padding: 0 12px;
  }
  .mv .cath-txt {
    font-size: 20px;
  }
  .mv h1 {
    font-size: 20px;
  }
  .mv h1 .font-56 {
    font-size: 24px;
  }
  .mv h1 strong {
    font-size: 32px;
    padding: 0 4px;
  }
  .mv h1 strong .font-72 {
    font-size: 40px;
  }
  .mv .mv-final-message {
    font-size: 28px;
  }
  .mv .mv-final-message .sp {
    display: block;
  }
  .mv .medal-box img {
    width: 120px;
    height: 120px;
  }
  .mv .move-txt {
    bottom: 80px;
  }
  .mv .move-txt .loop-content {
    font-size: 64px;
  }
}

section {
  position: relative;
  padding: 80px 0;
}
section .move-txt {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  font-size: 96px;
  font-weight: 700;
  color: rgba(102, 102, 102, 0.3);
  white-space: nowrap;
  pointer-events: none;
  overflow: hidden;
}
section .move-txt .loop-content {
  animation: scrollText 100s linear infinite;
}
@media (max-width: 768px) {
  section .move-txt {
    font-size: 64px;
  }
}
section .flex-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
section.top-access, section.bottom-access {
  padding: 64px 0;
}
section.top-access .studio-title, section.bottom-access .studio-title {
  color: #0CA3A9;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 500;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 12px;
  margin-bottom: 16px;
}
section.top-access img.img-box, section.bottom-access img.img-box {
  width: 500px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
section.top-access .studio-info, section.bottom-access .studio-info {
  margin-bottom: 32px;
}
section.top-access .studio-info li, section.bottom-access .studio-info li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
section.top-access .studio-info li span, section.bottom-access .studio-info li span {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-size: 14px;
  background-color: #0CA3A9;
  min-width: 88px;
  height: 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 15px;
}
section.top-access .studio-info li p, section.bottom-access .studio-info li p {
  margin: 0;
  color: #1E293B;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
}
section.top-access .studio-info li p br, section.bottom-access .studio-info li p br {
  display: none;
}
section.top-access .btn-googlemap, section.bottom-access .btn-googlemap {
  color: #0CA3A9;
  font-size: 16px;
  border: 1px solid #0CA3A9;
  background: transparent;
  width: 240px;
  height: 64px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
section.top-access .btn-googlemap .btn-icon, section.bottom-access .btn-googlemap .btn-icon {
  width: 24px;
  height: 24px;
}
section.top-access .btn-googlemap:hover, section.bottom-access .btn-googlemap:hover {
  background: #0CA3A9;
  color: white;
}
section.top-access .btn-googlemap:hover .btn-icon, section.bottom-access .btn-googlemap:hover .btn-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}
@media (max-width: 1400px) {
  section.top-access img.img-box, section.bottom-access img.img-box {
    width: 480px;
    height: 300px;
  }
  section.top-access .txt-box, section.bottom-access .txt-box {
    width: calc(100% - 520px);
  }
}
@media (max-width: 1200px) {
  section.top-access img.img-box, section.bottom-access img.img-box {
    width: 400px;
    height: 320px;
  }
  section.top-access .txt-box, section.bottom-access .txt-box {
    width: calc(100% - 440px);
  }
}
@media (max-width: 768px) {
  section.top-access img.img-box, section.bottom-access img.img-box {
    width: 100%;
  }
  section.top-access .txt-box, section.bottom-access .txt-box {
    width: 100%;
  }
  section.top-access .txt-box .studio-title, section.bottom-access .txt-box .studio-title {
    text-align: center;
  }
  section.top-access .txt-box .studio-info li, section.bottom-access .txt-box .studio-info li {
    margin-bottom: 2px;
    background: #0CA3A9;
  }
  section.top-access .txt-box .studio-info li span, section.bottom-access .txt-box .studio-info li span {
    display: inline-table;
    padding: 12px;
    border-radius: 0;
    margin-right: 0;
    text-align: center;
  }
  section.top-access .txt-box .studio-info li p, section.bottom-access .txt-box .studio-info li p {
    width: -webkit-fill-available;
    padding: 12px;
    background: #E5F5F5;
  }
  section.top-access .txt-box .btn-googlemap, section.bottom-access .txt-box .btn-googlemap {
    width: 100%;
  }
}
@media (max-width: 576px) {
  section.top-access, section.bottom-access {
    padding: 24px 0 48px;
  }
  section.top-access .inner, section.bottom-access .inner {
    padding: 0;
  }
  section.top-access .btn-box, section.bottom-access .btn-box {
    padding: 0 16px;
  }
  section.top-access img.img-box, section.bottom-access img.img-box {
    height: 256px;
  }
  section.top-access .txt-box, section.bottom-access .txt-box {
    padding: 0 16px;
  }
  section.top-access .txt-box .studio-title, section.bottom-access .txt-box .studio-title {
    font-size: 20px;
  }
  section.top-access .txt-box .studio-info li p br, section.bottom-access .txt-box .studio-info li p br {
    display: block;
  }
  section.top-access .txt-box .btn-googlemap, section.bottom-access .txt-box .btn-googlemap {
    position: relative;
  }
  section.top-access .txt-box .btn-googlemap .btn-icon, section.bottom-access .txt-box .btn-googlemap .btn-icon {
    position: absolute;
    top: 20px;
    right: 24px;
  }
}
section .users-head,
section .comparison-head,
section .support-head {
  position: relative;
  background: linear-gradient(90deg, #C49B5A, #807946);
  text-align: center;
  padding: 48px 0;
}
section .users-head::before,
section .comparison-head::before,
section .support-head::before {
  position: absolute;
  content: "";
  width: 64px;
  height: 24px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #A28A50;
  left: calc(50% - 32px);
  bottom: -16px;
  z-index: 1;
}
section .users-head .inner,
section .comparison-head .inner,
section .support-head .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
section .users-head .inner span,
section .comparison-head .inner span,
section .support-head .inner span {
  color: white;
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}
section .users-head .inner span br,
section .comparison-head .inner span br,
section .support-head .inner span br {
  display: none;
}
section .users-head .inner h2,
section .comparison-head .inner h2,
section .support-head .inner h2 {
  color: white;
  font-size: 32px;
  font-weight: 500;
}
section .users-head .inner h2 br,
section .comparison-head .inner h2 br,
section .support-head .inner h2 br {
  display: none;
}
@media (max-width: 1200px) {
  section .users-head .inner h2 br,
  section .comparison-head .inner h2 br,
  section .support-head .inner h2 br {
    display: block;
  }
  section .users-head .inner h2 .md,
  section .comparison-head .inner h2 .md,
  section .support-head .inner h2 .md {
    display: none;
  }
}
@media (max-width: 1024px) {
  section .users-head .inner span,
  section .comparison-head .inner span,
  section .support-head .inner span {
    font-size: 20px;
  }
  section .users-head .inner h2,
  section .comparison-head .inner h2,
  section .support-head .inner h2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  section .users-head,
  section .comparison-head,
  section .support-head {
    padding: 32px 0;
  }
  section .users-head .inner span,
  section .comparison-head .inner span,
  section .support-head .inner span {
    font-size: 18px;
  }
  section .users-head .inner span .md,
  section .comparison-head .inner span .md,
  section .support-head .inner span .md {
    display: block;
  }
  section .users-head .inner h2,
  section .comparison-head .inner h2,
  section .support-head .inner h2 {
    font-size: 24px;
  }
  section .users-head .inner h2 .md,
  section .comparison-head .inner h2 .md,
  section .support-head .inner h2 .md {
    display: block;
  }
}
section.users-question {
  padding: 0;
}
section.users-question .bg-gradation {
  background: linear-gradient(to bottom, white 50%, #36BABF 100%) !important;
  padding: 40px 0 80px;
  position: relative;
}
section.users-question .bg-gradation .move-txt {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  pointer-events: none;
}
section.users-question .bg-gradation .move-txt .loop-wrapper {
  display: flex;
}
section.users-question .bg-gradation .move-txt .loop-content {
  display: inline-block;
  font-size: 96px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  animation: scrollText 60s linear infinite;
}
section.users-question .users-box {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
section.users-question .users-box li {
  width: calc((100% - 72px) / 4);
}
section.users-question .users-box li span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 32px);
  margin: 0 auto;
  background: linear-gradient(-90deg, #7BCCCF, #0CA3A9);
  color: white;
  height: 48px;
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  border-radius: 40px;
  z-index: 2;
  text-align: center;
}
section.users-question .users-box li span br {
  display: none;
}
section.users-question .users-box li img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: -24px;
}
section.users-question .users-box li p {
  padding: 20px 0 0;
  text-align: center;
  color: #1E293B;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
}
section.users-question .support-box {
  text-align: center;
  padding: 40px;
  background: white;
  border: 1px solid #7BCCCF;
}
section.users-question .support-box p {
  font-size: 32px;
  font-weight: 500;
  color: #1E293B;
}
section.users-question .support-box p strong {
  font-weight: 500;
}
section.users-question .support-box p .blue {
  color: #0066CC;
}
section.users-question .support-box p br {
  display: none;
}
@media (max-width: 1400px) {
  section.users-question .users-box li span {
    width: calc(100% - 24px);
    font-size: 16px;
  }
  section.users-question .users-box li p {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  section.users-question .users-box li {
    width: calc((100% - 24px) / 2);
  }
  section.users-question .users-box li span {
    width: calc(100% - 32px);
    font-size: 18px;
  }
  section.users-question .users-box li p {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  section.users-question .support-box p br {
    display: block;
  }
}
@media (max-width: 576px) {
  section.users-question .users-box {
    gap: 16px;
  }
  section.users-question .users-box li {
    width: calc((100% - 24px) / 2);
  }
  section.users-question .users-box li span {
    width: 100%;
    height: auto;
    padding: 12px;
    font-size: 18px;
    border-radius: 8px 8px 0 0;
    line-height: 1.2;
  }
  section.users-question .users-box li span br {
    display: block;
  }
  section.users-question .users-box li img {
    height: 160px;
    margin-top: 0;
  }
  section.users-question .users-box li p {
    font-size: 14px;
    padding: 12px 0 16px;
  }
  section.users-question .support-box {
    padding: 24px;
  }
  section.users-question .support-box p {
    font-size: 24px;
  }
}
section.section-six-features {
  padding: 0;
}
section.section-six-features .bg-green {
  position: relative;
}
section.section-six-features .bg-green::after {
  position: absolute;
  content: "";
  width: 100%;
  height: calc(300% - 80px);
  top: 80px;
  left: 0;
  background: #7BCCCF;
}
@media (max-width: 576px) {
  section.section-six-features .bg-green::after {
    top: -212px;
  }
}
section.section-six-features > .head {
  background: url("../img/bg-six-contents.jpg") center/cover no-repeat;
  background-attachment: fixed;
  height: 380px;
  color: #fff;
  padding-top: 94px;
  text-align: center;
}
section.section-six-features > .head h2 {
  font-size: 48px;
  font-weight: 500;
}
section.section-six-features > .head h2 br {
  display: none;
}
section.section-six-features > .head span {
  font-size: 24px;
}
section.section-six-features .question-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: -104px;
  padding: 48px 48px 200px;
  background: #fff;
}
section.section-six-features .question-box::before {
  position: absolute;
  content: "";
  width: 112px;
  height: 40px;
  left: calc(50% - 56px);
  bottom: 120px;
  background: #7BCCCF;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
section.section-six-features .question-box .box {
  width: calc((100% - 48px) / 3);
}
section.section-six-features .question-box .box img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.section-six-features .question-box .box h3 {
  padding: 24px 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: #1E293B;
  line-height: 1.5;
}
section.section-six-features .question-box .box p {
  padding: 0 0 25px;
  color: #1E293B;
  line-height: 1.7;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
section.section-six-features .features-box > .box {
  position: relative;
  margin-bottom: 64px;
}
section.section-six-features .features-box > .box::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 480px;
  top: -64px;
  left: calc((100% - 1440px) / 2);
  z-index: 1;
}
section.section-six-features .features-box > .box .inner {
  display: flex;
  justify-content: flex-end;
}
section.section-six-features .features-box > .box:nth-of-type(2), section.section-six-features .features-box > .box:nth-of-type(5), section.section-six-features .features-box > .box:nth-of-type(7) {
  justify-content: flex-start;
  margin-bottom: 196px;
}
section.section-six-features .features-box > .box:nth-of-type(2)::before, section.section-six-features .features-box > .box:nth-of-type(5)::before, section.section-six-features .features-box > .box:nth-of-type(7)::before {
  top: auto;
  left: auto;
  right: calc((100% - 1440px) / 2);
  bottom: -64px;
}
section.section-six-features .features-box > .box:nth-of-type(2) .inner, section.section-six-features .features-box > .box:nth-of-type(5) .inner, section.section-six-features .features-box > .box:nth-of-type(7) .inner {
  display: flex;
  justify-content: flex-start;
}
section.section-six-features .features-box > .box:nth-of-type(1)::before {
  background: url(../img/img-features01.jpg) no-repeat;
  background-size: cover;
}
section.section-six-features .features-box > .box:nth-of-type(2)::before {
  background: url(../img/img-features02.jpg) no-repeat;
  background-size: cover;
}
section.section-six-features .features-box > .box:nth-of-type(3)::before {
  background: url(../img/img-features03.jpg) no-repeat;
  background-size: cover;
}
section.section-six-features .features-box > .box:nth-of-type(5)::before {
  background: url(../img/img-features04.jpg) no-repeat;
  background-size: cover;
}
section.section-six-features .features-box > .box:nth-of-type(6)::before {
  background: url(../img/img-features05.jpg) no-repeat;
  background-size: cover;
}
section.section-six-features .features-box > .box:nth-of-type(7)::before {
  background: url(../img/img-features06.jpg) no-repeat;
  background-size: cover;
}
section.section-six-features .features-box > .box .txt-box {
  position: relative;
  width: 728px;
  padding: 64px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
  z-index: 2;
}
section.section-six-features .features-box > .box .txt-box .number {
  position: absolute;
  top: 24px;
  right: 48px;
  font-size: 32px;
  color: #C49B5A;
}
section.section-six-features .features-box > .box .txt-box .number span {
  font-size: 64px;
}
section.section-six-features .features-box > .box .txt-box .features {
  font-size: 24px;
  color: #C49B5A;
  margin-bottom: 8px;
}
section.section-six-features .features-box > .box .txt-box h3 {
  font-size: 40px;
  font-weight: 500;
  color: #1E293B;
  margin-bottom: 16px;
  line-height: 1.4;
}
section.section-six-features .features-box > .box .txt-box h3 .font-56 {
  font-size: 56px;
  color: #1E293B;
  font-weight: 500;
}
section.section-six-features .features-box > .box .txt-box h3 br.md {
  display: none;
}
section.section-six-features .features-box > .box .txt-box strong {
  display: block;
  font-size: 28px;
  font-weight: 500;
  color: #009197;
  margin-bottom: 24px;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
}
section.section-six-features .features-box > .box .txt-box p {
  color: #1E293B;
  font-size: 20px;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
}
section.section-six-features .trainer-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: -64px 0 64px;
}
section.section-six-features .trainer-box::before {
  position: absolute;
  content: "HIROFUMI WATANABE";
  width: 100%;
  height: 116px;
  top: -24px;
  left: 0;
  font-size: 80px;
  color: #7BCCCF;
  opacity: 0.3;
  z-index: 1;
}
section.section-six-features .trainer-box .txt-box {
  position: relative;
  padding-top: 40px;
  z-index: 2;
}
section.section-six-features .trainer-box .txt-box .head {
  text-align: left;
  margin-bottom: 30px;
}
section.section-six-features .trainer-box .txt-box .head .name-box {
  display: flex;
  align-items: last baseline;
  margin-bottom: 16px;
}
section.section-six-features .trainer-box .txt-box .head .name-box h4 {
  color: #1E293B;
  font-size: 48px;
  font-weight: 500;
  margin-right: 20px;
}
section.section-six-features .trainer-box .txt-box .head .name-box span {
  color: #1E293B;
  font-size: 24px;
  font-weight: 600;
}
section.section-six-features .trainer-box .txt-box .head p {
  color: #009197;
  font-size: 20px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  border-bottom: 1px solid #C49B5A;
  padding-bottom: 24px;
  margin-bottom: 32px;
}
section.section-six-features .trainer-box .txt-box h5 {
  font-size: 24px;
  font-weight: 500;
  color: #1E293B;
  margin-bottom: 24px;
  line-height: 1.6;
}
section.section-six-features .trainer-box .txt-box ul li {
  position: relative;
  padding: 0 0 8px 20px;
  color: #1E293B;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
}
section.section-six-features .trainer-box .txt-box ul li::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 12px;
  top: 11px;
  left: 0;
  background: #7BCCCF;
}
@media (max-width: 576px) {
  section.section-six-features .trainer-box .txt-box {
    margin-bottom: 40px;
  }
}
section.section-six-features .trainer-box img {
  width: 432px;
  height: 585px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}
section.section-six-features .review-box {
  margin-top: -64px;
}
section.section-six-features .review-box .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 48px;
  background: rgba(196, 155, 90, 0.1);
  border: 1px solid #C49B5A;
  margin-bottom: 32px;
}
section.section-six-features .review-box .box:nth-last-of-type(1) {
  margin-bottom: 0;
}
section.section-six-features .review-box .box .left {
  width: 440px;
}
section.section-six-features .review-box .box .left h4 {
  font-size: 28px;
  font-weight: 700;
  color: #1E293B;
  margin-bottom: 8px;
  line-height: 1.5;
}
section.section-six-features .review-box .box .left p {
  color: #1E293B;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
}
section.section-six-features .review-box .box .left .star-box {
  display: flex;
  align-items: center;
  gap: 8px;
}
section.section-six-features .review-box .box .left .star-box img {
  width: 24px;
  height: 24px;
}
section.section-six-features .review-box .box .left .star-box span {
  margin-left: 12px;
  color: #1E293B;
  font-size: 20px;
  font-weight: 600;
}
section.section-six-features .review-box .box .right {
  width: calc(100% - 440px);
  border-left: #7C7C7C 1px solid;
  padding-left: 40px;
}
section.section-six-features .review-box .box .right p {
  color: #1E293B;
  line-height: 1.8;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
section.section-six-features .review-box small {
  display: block;
  text-align: center;
  color: #1E293B;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 20px;
}
@media (max-width: 1400px) {
  section.section-six-features .question-box .box h3 {
    font-size: 20px;
  }
}
@media (max-width: 1200px) {
  section.section-six-features .question-box {
    padding: 32px 32px 200px;
  }
  section.section-six-features .features-box > .box::before {
    width: 720px;
    height: 360px;
  }
  section.section-six-features .features-box > .box .txt-box {
    width: 640px;
    padding: 40px;
  }
  section.section-six-features .features-box > .box .txt-box .number {
    top: 16px;
    right: 40px;
    font-size: 32px;
  }
  section.section-six-features .features-box > .box .txt-box .number span {
    font-size: 48px;
  }
  section.section-six-features .features-box > .box .txt-box .features {
    font-size: 20px;
    margin-bottom: 0;
  }
  section.section-six-features .features-box > .box .txt-box h3 {
    font-size: 32px;
  }
  section.section-six-features .features-box > .box .txt-box h3 .font-56 {
    font-size: 48px;
  }
  section.section-six-features .features-box > .box .txt-box strong {
    font-size: 24px;
    margin-bottom: 16px;
  }
  section.section-six-features .features-box > .box .txt-box p {
    font-size: 16px;
  }
  section.section-six-features .trainer-box {
    margin: -64px 0 64px;
  }
  section.section-six-features .trainer-box::before {
    font-size: 64px;
  }
  section.section-six-features .trainer-box .txt-box {
    padding-top: 24px;
  }
  section.section-six-features .trainer-box .txt-box .head {
    margin-bottom: 24px;
  }
  section.section-six-features .trainer-box .txt-box .head p {
    font-size: 18px;
    margin-bottom: 24px;
  }
  section.section-six-features .trainer-box .txt-box h5 {
    font-size: 18px;
    margin-bottom: 16px;
  }
  section.section-six-features .trainer-box .txt-box ul li {
    font-size: 16px;
  }
  section.section-six-features .trainer-box .txt-box ul li::before {
    top: 7px;
  }
  section.section-six-features .trainer-box img {
    width: 432px;
    height: 440px;
  }
  section.section-six-features .review-box .box {
    padding: 40px;
    margin-bottom: 24px;
  }
  section.section-six-features .review-box .box .left {
    width: 380px;
  }
  section.section-six-features .review-box .box .left h4 {
    font-size: 24px;
  }
  section.section-six-features .review-box .box .left p {
    font-size: 18px;
    margin-bottom: 24px;
  }
  section.section-six-features .review-box .box .left .star-box span {
    font-size: 18px;
  }
  section.section-six-features .review-box .box .right {
    width: calc(100% - 400px);
  }
  section.section-six-features .review-box .box .right p {
    font-size: 15px;
  }
}
@media (max-width: 1024px) {
  section.section-six-features > .head h2 {
    font-size: 40px;
  }
  section.section-six-features > .head span {
    font-size: 24px;
  }
  section.section-six-features .question-box {
    display: none;
  }
  section.section-six-features .features-box > .box {
    margin-bottom: 160px;
  }
  section.section-six-features .features-box > .box::before {
    width: 100%;
    height: 480px;
    top: -96px;
    left: 0;
  }
  section.section-six-features .features-box > .box:nth-of-type(2), section.section-six-features .features-box > .box:nth-of-type(5), section.section-six-features .features-box > .box:nth-of-type(7) {
    margin-bottom: 160px;
  }
  section.section-six-features .features-box > .box:nth-of-type(2)::before, section.section-six-features .features-box > .box:nth-of-type(5)::before, section.section-six-features .features-box > .box:nth-of-type(7)::before {
    top: -96px;
    left: 0;
    right: auto;
    bottom: auto;
  }
  section.section-six-features .features-box > .box .txt-box {
    width: 100%;
    padding: 64px;
    margin: 240px 0 0;
  }
  section.section-six-features .features-box > .box .txt-box .number {
    top: 24px;
    right: 48px;
    font-size: 32px;
  }
  section.section-six-features .features-box > .box .txt-box .number span {
    font-size: 64px;
  }
  section.section-six-features .features-box > .box .txt-box .features {
    font-size: 24px;
  }
  section.section-six-features .features-box > .box .txt-box h3 {
    font-size: 32px;
    margin-bottom: 16px;
  }
  section.section-six-features .features-box > .box .txt-box h3 .font-56 {
    font-size: 48px;
  }
  section.section-six-features .features-box > .box .txt-box strong {
    font-size: 24px;
  }
  section.section-six-features .features-box > .box .txt-box p {
    font-size: 18px;
  }
  section.section-six-features .trainer-box {
    flex-wrap: wrap;
    margin: -160px 0 160px;
  }
  section.section-six-features .trainer-box::before {
    font-size: 64px;
    top: -4px;
    line-height: 1.2;
  }
  section.section-six-features .trainer-box .txt-box {
    width: 50%;
    padding-top: 24px;
  }
  section.section-six-features .trainer-box .txt-box .head {
    margin-bottom: 24px;
  }
  section.section-six-features .trainer-box .txt-box .head .name-box {
    display: block;
  }
  section.section-six-features .trainer-box .txt-box .head p {
    font-size: 18px;
    margin-bottom: 24px;
  }
  section.section-six-features .trainer-box .txt-box h5 {
    font-size: 18px;
    margin-bottom: 16px;
  }
  section.section-six-features .trainer-box .txt-box h5 br {
    display: none;
  }
  section.section-six-features .trainer-box .txt-box ul li {
    font-size: 16px;
  }
  section.section-six-features .trainer-box .txt-box ul li::before {
    top: 7px;
  }
  section.section-six-features .trainer-box img {
    width: calc(50% - 32px);
    height: 480px;
  }
  section.section-six-features .review-box {
    margin-top: -114px;
  }
  section.section-six-features .review-box .box {
    flex-wrap: wrap;
    padding: 40px;
    margin-bottom: 24px;
  }
  section.section-six-features .review-box .box .left {
    width: 100%;
  }
  section.section-six-features .review-box .box .left h4 {
    font-size: 24px;
  }
  section.section-six-features .review-box .box .left p {
    font-size: 18px;
    margin-bottom: 12px;
  }
  section.section-six-features .review-box .box .left .star-box span {
    font-size: 18px;
  }
  section.section-six-features .review-box .box .right {
    width: 100%;
    padding: 24px 0 0;
    margin-top: 24px;
    border: 0;
    border-top: #7C7C7C 1px solid;
  }
  section.section-six-features .review-box .box .right p {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  section.section-six-features > .head h2 {
    font-size: 40px;
    line-height: 1.3;
  }
  section.section-six-features > .head h2 br {
    display: block;
  }
  section.section-six-features > .head span {
    display: none;
  }
  section.section-six-features .features-box > .box {
    margin-bottom: 120px;
  }
  section.section-six-features .features-box > .box::before {
    top: -64px;
  }
  section.section-six-features .features-box > .box:nth-of-type(2), section.section-six-features .features-box > .box:nth-of-type(5), section.section-six-features .features-box > .box:nth-of-type(7) {
    margin-bottom: 120px;
  }
  section.section-six-features .features-box > .box:nth-of-type(2)::before, section.section-six-features .features-box > .box:nth-of-type(5)::before, section.section-six-features .features-box > .box:nth-of-type(7)::before {
    top: -64px;
  }
  section.section-six-features .features-box > .box .txt-box {
    width: 100%;
    padding: 48px;
  }
  section.section-six-features .features-box > .box .txt-box .number {
    top: -56px;
    right: 20px;
    font-size: 32px;
  }
  section.section-six-features .features-box > .box .txt-box .number span {
    font-size: 64px;
  }
  section.section-six-features .features-box > .box .txt-box .features {
    display: block;
    text-align: center;
  }
  section.section-six-features .features-box > .box .txt-box h3 {
    text-align: center;
  }
  section.section-six-features .features-box > .box .txt-box h3 .font-56 {
    font-size: 48px;
  }
  section.section-six-features .features-box > .box .txt-box h3 br.md {
    display: block;
  }
  section.section-six-features .features-box > .box .txt-box strong {
    font-size: 24px;
    text-align: center;
  }
  section.section-six-features .features-box > .box .txt-box p {
    font-size: 18px;
  }
  section.section-six-features .features-box > .box .txt-box p br {
    display: none;
  }
  section.section-six-features .trainer-inner {
    width: 100%;
    padding: 0;
  }
  section.section-six-features .trainer-box {
    margin: -120px 0 160px;
  }
  section.section-six-features .trainer-box::before {
    font-size: 64px;
    top: 300px;
    text-align: center;
  }
  section.section-six-features .trainer-box .txt-box {
    width: 100%;
    padding: 0 24px;
    margin-top: 400px;
  }
  section.section-six-features .trainer-box .txt-box .head {
    margin-bottom: 24px;
  }
  section.section-six-features .trainer-box .txt-box .head .name-box {
    display: block;
    text-align: center;
  }
  section.section-six-features .trainer-box .txt-box .head .name-box h4 {
    margin-right: 0;
  }
  section.section-six-features .trainer-box .txt-box .head .name-box span {
    font-size: 20px;
  }
  section.section-six-features .trainer-box .txt-box .head p {
    text-align: center;
  }
  section.section-six-features .trainer-box .txt-box h5 {
    font-size: 18px;
    margin-bottom: 16px;
  }
  section.section-six-features .trainer-box .txt-box h5 br {
    display: none;
  }
  section.section-six-features .trainer-box .txt-box ul li {
    font-size: 16px;
  }
  section.section-six-features .trainer-box .txt-box ul li::before {
    top: 7px;
  }
  section.section-six-features .trainer-box img {
    position: absolute;
    top: -24px;
    left: 0;
    width: 100%;
    height: 400px;
    z-index: -1;
    -o-object-position: top;
       object-position: top;
  }
  section.section-six-features .review-box {
    margin-top: -96px;
  }
}
@media (max-width: 576px) {
  section.section-six-features .bg-green::after {
    height: 395%;
  }
  section.section-six-features > .head {
    padding-top: 48px;
  }
  section.section-six-features > .head h2 {
    font-size: 32px;
  }
  section.section-six-features .features-box > .box {
    margin-bottom: 200px;
  }
  section.section-six-features .features-box > .box::before {
    top: -160px;
    height: 248px;
  }
  section.section-six-features .features-box > .box:nth-of-type(2), section.section-six-features .features-box > .box:nth-of-type(5), section.section-six-features .features-box > .box:nth-of-type(7) {
    margin-bottom: 200px;
  }
  section.section-six-features .features-box > .box:nth-of-type(2)::before, section.section-six-features .features-box > .box:nth-of-type(5)::before, section.section-six-features .features-box > .box:nth-of-type(7)::before {
    top: -160px;
  }
  section.section-six-features .features-box > .box .txt-box {
    padding: 24px;
    margin: 0;
  }
  section.section-six-features .features-box > .box .txt-box .features {
    font-size: 16px;
  }
  section.section-six-features .features-box > .box .txt-box h3 {
    font-size: 24px;
  }
  section.section-six-features .features-box > .box .txt-box strong {
    font-size: 20px;
  }
  section.section-six-features .features-box > .box .txt-box p {
    font-size: 16px;
  }
  section.section-six-features .trainer-box {
    margin: -196px 0 200px;
  }
  section.section-six-features .trainer-box::before {
    font-size: 48px;
  }
  section.section-six-features .trainer-box .txt-box {
    width: 100%;
    padding: 0 24px;
    margin-top: 400px;
  }
  section.section-six-features .trainer-box .txt-box .head .name-box h4 {
    font-size: 48px;
  }
  section.section-six-features .trainer-box .txt-box ul li {
    font-size: 15px;
  }
  section.section-six-features .trainer-box img {
    position: absolute;
    top: 46px;
    left: 0;
    width: 100%;
    height: 340px;
    z-index: 0;
  }
  section.section-six-features .review-box {
    margin-top: -180px;
  }
  section.section-six-features .review-box .box {
    padding: 24px;
  }
  section.section-six-features .review-box .box .left h4 {
    font-size: 24px;
  }
  section.section-six-features .review-box .box .left h4 br {
    display: none;
  }
  section.section-six-features .review-box .box .left p {
    font-size: 16px;
  }
  section.section-six-features .review-box .box .left .star-box span {
    font-size: 16px;
  }
  section.section-six-features .review-box .box .right p {
    font-size: 15px;
  }
}
section.section-training {
  padding: 80px 0 0;
}
section.section-training .head {
  height: 552px;
  background: url("../img/bg-training.jpg") center/cover no-repeat;
  background-attachment: fixed;
  padding-top: 96px;
}
section.section-training .head .inner {
  text-align: center;
}
section.section-training .head .inner p:first-child {
  font-size: 36px;
  color: #1E293B;
}
section.section-training .head .inner h2 {
  font-size: 64px;
  color: #1E293B;
}
section.section-training .head .inner p:last-child {
  font-size: 24px;
  color: #1E293B;
}
section.section-training .head .inner p:last-child .font-36 {
  font-size: 36px;
}
section.section-training .head span {
  color: #1E293B !important;
}
section.section-training .head span::after {
  display: none !important;
}
section.section-training .trial-intro {
  position: relative;
  margin-top: -64px;
  padding: 64px 48px 48px;
  background: #fff;
  text-align: center;
}
section.section-training .trial-intro span {
  display: block;
  font-size: 24px;
  font-weight: 500;
  color: #1E293B;
  margin-bottom: 8px;
}
section.section-training .trial-intro h3 {
  font-size: 40px;
  font-weight: 500;
  color: #1E293B;
}
section.section-training .trial-intro h3 br {
  display: none;
}
section.section-training .trial-intro .hukidashi-trial {
  position: absolute;
  top: -56px;
  right: 24px;
}
section.section-training .counseling-box {
  display: flex;
  justify-content: space-between;
  padding: 0 48px;
  margin-bottom: 64px;
}
section.section-training .counseling-box .box {
  position: relative;
  width: calc((100% - 128px) / 3);
}
section.section-training .counseling-box .box::before {
  position: absolute;
  content: "";
  width: 28px;
  height: 40px;
  top: 92px;
  right: -48px;
  background: #7BCCCF;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
section.section-training .counseling-box .box:last-child::before {
  display: none;
}
section.section-training .counseling-box .box img {
  width: 100%;
  height: 224px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 24px;
}
section.section-training .counseling-box .box h3 {
  font-size: 24px;
  font-weight: 500;
  color: #1E293B;
  margin-bottom: 8px;
  text-align: center;
}
section.section-training .counseling-box .box p {
  color: #1E293B;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
}
section.section-training .trial-plan {
  text-align: center;
  padding: 32px;
  border: 1px solid #7BCCCF;
  margin-bottom: 24px;
}
section.section-training .trial-plan .flex-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
section.section-training .trial-plan .flex-box .hukidashi-limited {
  position: absolute;
  top: -80px;
  right: -72px;
}
section.section-training .trial-plan .flex-box h3 {
  font-size: 24px;
  font-weight: 500;
  color: #1E293B;
}
section.section-training .trial-plan .flex-box p {
  font-size: 20px;
  color: #1E293B;
}
section.section-training .trial-plan .flex-box p:first-of-type {
  color: #1E293B;
}
section.section-training .trial-plan .flex-box p:last-child {
  font-size: 24px;
  font-weight: 500;
  color: #1E293B;
}
section.section-training .trial-plan .flex-box p .line-through {
  text-decoration: line-through;
}
section.section-training .trial-plan .flex-box p .font-36 {
  font-size: 36px;
  font-weight: 500;
}
section.section-training .trial-plan .flex-box p .font-20 {
  font-size: 20px;
  font-weight: 500;
}
section.section-training .trial-plan strong {
  display: block;
  font-size: 24px;
  color: white;
  font-weight: 500;
  background: #0CA3A9;
  padding: 16px 24px;
}
section.section-training .trial-plan strong .font-32 {
  font-size: 32px;
}
section.section-training .trial-plan strong br {
  display: none;
}
section.section-training .trial-plan + small {
  display: block;
  text-align: center;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  color: #1E293B;
  margin-bottom: 20px;
}
@media (max-width: 1400px) {
  section.section-training .counseling-box {
    padding: 0 32px;
  }
}
@media (max-width: 1200px) {
  section.section-training .trial-intro {
    padding: 64px 32px 32px;
  }
  section.section-training .trial-intro span {
    font-size: 24px;
  }
  section.section-training .trial-intro h3 {
    font-size: 36px;
  }
  section.section-training .trial-intro .hukidashi-trial {
    width: 136px;
    height: 136px;
  }
  section.section-training .counseling-box .box {
    width: calc((100% - 80px) / 3);
  }
  section.section-training .counseling-box .box::before {
    width: 20px;
    height: 32px;
    top: 102px;
    right: -32px;
  }
  section.section-training .counseling-box .box img {
    margin-bottom: 16px;
  }
  section.section-training .counseling-box .box h3 {
    font-size: 20px;
    margin-bottom: 4px;
  }
  section.section-training .counseling-box .box p {
    font-size: 15px;
  }
  section.section-training .trial-plan {
    padding: 24px;
    margin-bottom: 20px;
  }
  section.section-training .trial-plan .flex-box {
    gap: 20px;
    margin-bottom: 24px;
  }
  section.section-training .trial-plan .flex-box .hukidashi-limited {
    width: 96px;
    height: 96px;
    top: -80px;
    right: -40px;
  }
}
@media (max-width: 1024px) {
  section.section-training .head {
    height: 480px;
    background: url("../img/bg-training-sp.jpg") top/cover no-repeat;
    background-attachment: fixed;
    padding-top: 64px;
  }
  section.section-training .head .inner p:first-child {
    font-size: 32px;
  }
  section.section-training .head .inner h2 {
    font-size: 48px;
  }
  section.section-training .head .inner p:last-child {
    font-size: 20px;
  }
  section.section-training .head .inner p:last-child .font-36 {
    font-size: 28px;
  }
  section.section-training .trial-intro {
    margin-top: -88px;
    padding: 64px 32px 48px;
  }
  section.section-training .trial-intro h3 {
    line-height: 1.3;
  }
  section.section-training .trial-intro h3 br {
    display: block;
  }
  section.section-training .counseling-box {
    flex-wrap: wrap;
  }
  section.section-training .counseling-box .box {
    width: 100%;
    margin-bottom: 64px;
  }
  section.section-training .counseling-box .box::before {
    width: 20px;
    height: 32px;
    top: auto;
    right: calc(50% - 16px);
    bottom: -48px;
    transform: rotate(90deg);
  }
  section.section-training .counseling-box .box:last-child {
    margin-bottom: 0;
  }
  section.section-training .counseling-box .box img {
    height: 400px;
    margin-bottom: 16px;
  }
  section.section-training .counseling-box .box h3 {
    font-size: 24px;
    margin-bottom: 4px;
  }
  section.section-training .counseling-box .box p {
    font-size: 16px;
    text-align: center;
  }
  section.section-training .trial-plan {
    padding: 20px 32px 32px;
    margin-bottom: 20px;
  }
  section.section-training .trial-plan .flex-box {
    display: block;
    margin-bottom: 20px;
  }
  section.section-training .trial-plan .flex-box h3 {
    font-size: 24px;
    border-bottom: #7BCCCF 1px solid;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  section.section-training .trial-plan .flex-box p {
    position: relative;
    margin-bottom: 40px;
  }
  section.section-training .trial-plan .flex-box p::before {
    position: absolute;
    content: "";
    width: 32px;
    height: 20px;
    top: auto;
    right: calc(50% - 16px);
    bottom: -32px;
    background: #7BCCCF;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
  }
  section.section-training .trial-plan .flex-box p:last-child {
    margin-bottom: 0;
  }
  section.section-training .trial-plan .flex-box p:last-child::before {
    display: none;
  }
  section.section-training .trial-plan .flex-box p .font-36 {
    font-size: 32px;
  }
  section.section-training .trial-plan .flex-box .hukidashi-limited {
    top: 144px;
    right: -16px;
  }
  section.section-training .trial-plan strong .font-32 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  section.section-training .head {
    height: 520px;
  }
  section.section-training .trial-intro {
    margin-top: -88px;
    padding: 48px 24px 32px;
  }
  section.section-training .trial-intro .hukidashi-trial {
    width: 120px;
    height: 120px;
    top: -80px;
    right: 16px;
  }
  section.section-training .counseling-box .box img {
    height: 320px;
  }
  section.section-training .trial-plan .flex-box p {
    margin-bottom: 32px;
  }
  section.section-training .trial-plan .flex-box .hukidashi-limited {
    top: 160px;
    right: -16px;
  }
  section.section-training .trial-plan strong {
    line-height: 1.3;
  }
  section.section-training .trial-plan strong br {
    display: block;
  }
}
@media (max-width: 576px) {
  section.section-training .head {
    height: 560px;
    background: url("../img/bg-training-sp.jpg") center/100% no-repeat;
    padding-top: 160px;
  }
  section.section-training .head .inner p:first-child {
    font-size: 20px;
    font-weight: 600;
    text-shadow: 0 0 8px #fff;
  }
  section.section-training .head .inner h2 {
    font-size: 40px;
    text-shadow: 0 0 8px #fff;
  }
  section.section-training .head .inner p:last-child {
    font-size: 18px;
    font-weight: 600;
    text-shadow: 0 0 8px #fff;
  }
  section.section-training .head .inner p:last-child .font-36 {
    font-size: 24px;
  }
  section.section-training .trial-intro {
    padding: 48px 0 32px;
    margin-top: -64px;
  }
  section.section-training .trial-intro .hukidashi-trial {
    top: -56px;
    width: 88px;
    height: 88px;
  }
  section.section-training .trial-intro span {
    font-size: 18px;
    font-weight: 600;
  }
  section.section-training .trial-intro h3 {
    font-size: 26px;
    font-weight: 600;
  }
  section.section-training .counseling-box {
    padding: 0;
  }
  section.section-training .counseling-box .box img {
    height: 224px;
  }
  section.section-training .trial-plan {
    padding: 20px 24px 24px;
  }
  section.section-training .trial-plan .flex-box p {
    margin-bottom: 32px;
  }
  section.section-training .trial-plan .flex-box p .font-36 {
    font-size: 28px;
  }
  section.section-training .trial-plan .flex-box .hukidashi-limited {
    width: 88px;
    height: 88px;
    top: 160px;
    right: -24px;
  }
  section.section-training .trial-plan strong {
    line-height: 1.3;
    font-size: 16px;
    padding: 16px 20px;
  }
  section.section-training .trial-plan strong .font-32 {
    font-size: 20px;
  }
  section.section-training .trial-plan strong br {
    display: block;
  }
}
section .table-box {
  overflow: auto;
}
section table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: #D9D9D9 1px solid;
  margin-top: 64px;
}
section table thead th {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  padding: 20px;
  text-align: center;
  border: #D9D9D9 1px solid;
}
section table thead th:nth-of-type(1) {
  background: #1E293B;
}
section table thead th:nth-of-type(2) {
  background: #C49B5A;
}
section table thead th:nth-of-type(3), section table thead th:nth-of-type(4) {
  background: #848484;
}
section table tbody tr th {
  background: #1E293B;
  font-weight: 600;
  text-align: center;
  color: white;
  padding: 16px;
  font-size: 20px;
  border: #D9D9D9 1px solid;
  word-break: keep-all;
}
section table tbody tr th br {
  display: none;
}
section table tbody tr td {
  padding: 15px;
  text-align: center;
  color: #1E293B;
  font-size: 20px;
  font-weight: 600;
  border: #D9D9D9 1px solid;
}
section table tbody tr td br {
  display: none;
}
section table tbody tr td .font-14 {
  font-size: 14px;
  font-weight: 600;
}
section table tbody tr td .font-14 br {
  display: none;
}
section table tbody tr td .font-24 {
  font-size: 24px;
  font-weight: 600;
}
section table tbody tr td .font-32 {
  font-size: 32px;
  font-weight: 600;
}
section table tbody tr td:nth-of-type(2), section table tbody tr td:nth-of-type(3) {
  background: #F4F4F4;
}
@media (max-width: 1200px) {
  section table {
    margin-top: 32px;
  }
  section table thead th {
    font-size: 20px;
    padding: 16px;
  }
  section table tbody tr th {
    padding: 12px;
    font-size: 16px;
  }
  section table tbody tr td {
    padding: 12px;
    font-size: 18px;
  }
  section table tbody tr td .font-14 {
    display: block;
    line-height: 1.3;
    font-size: 14px;
  }
  section table tbody tr td .font-14 br {
    display: block;
  }
  section table tbody tr td .font-24 {
    font-size: 20px;
  }
  section table tbody tr td .font-32 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  section table {
    min-width: 700px;
    margin-top: 32px;
  }
  section table thead th {
    font-size: 20px;
    padding: 16px;
  }
  section table tbody tr th {
    padding: 12px;
    font-size: 16px;
  }
  section table tbody tr th br {
    display: block;
  }
  section table tbody tr td {
    line-height: 1.3;
    padding: 12px;
    font-size: 18px;
    word-break: keep-all;
  }
  section table tbody tr td br {
    display: block;
  }
  section table tbody tr td .font-14 {
    display: block;
    line-height: 1.3;
    font-size: 14px;
  }
  section table tbody tr td .font-14 br {
    display: block;
  }
  section table tbody tr td .font-24 {
    font-size: 20px;
  }
  section table tbody tr td .font-32 {
    font-size: 28px;
  }
}
section.plan {
  background: #7BCCCF url(../img/bg-plan.jpg) no-repeat top right;
}
section.plan .head {
  margin-bottom: 80px;
}
section.plan .head span {
  color: #fff;
  font-size: 96px;
  font-weight: 600;
  opacity: 0.2;
}
section.plan .head h3 {
  color: #fff;
  font-size: 48px;
  margin: -80px 0 24px 48px;
}
section.plan .head p {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  margin-left: 48px;
}
section.plan .plan-box .box {
  display: flex;
  margin-bottom: 48px;
  background: #fff;
}
section.plan .plan-box .box .left {
  width: 360px;
  text-align: center;
  padding: 30px;
  background: rgba(30, 41, 59, 0.9);
}
section.plan .plan-box .box .left .plan-txt {
  display: block;
  color: #fff;
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  border: #fff 1px solid;
  padding: 12px;
  margin-bottom: 24px;
  background: #1E293B;
}
section.plan .plan-box .box .left h3 {
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 36px;
  line-height: 1.4;
}
section.plan .plan-box .box .left p {
  font-size: 24px;
  color: #fff;
  border-top: 1px solid #fff;
  padding-top: 24px;
  line-height: 1;
}
section.plan .plan-box .box .left p br {
  display: block;
}
section.plan .plan-box .box .left p .font-36 {
  font-size: 36px;
  font-weight: 700;
}
section.plan .plan-box .box .left p .font-48 {
  font-size: 48px;
  font-weight: 800;
}
section.plan .plan-box .box .left small {
  display: flex;
  align-items: first baseline;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}
section.plan .plan-box .box .left small .font-24 {
  font-size: 24px;
  font-weight: 600;
}
section.plan .plan-box .box .right {
  width: calc(100% - 360px);
  padding: 48px;
  box-sizing: border-box;
}
section.plan .plan-box .box .right .plan {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.plan .plan-box .box .right .plan .title {
  font-size: 24px;
  font-weight: 600;
  color: #1E293B;
}
section.plan .plan-box .box .right .plan .price {
  font-size: 36px;
  font-weight: 600;
}
section.plan .plan-box .box .right .plan .price .font-28 {
  font-size: 28px;
}
section.plan .plan-box .box .right .plan .price .font-20 {
  font-size: 20px;
  font-weight: 400;
}
section.plan .plan-box .box .right .plan .price .font-16 {
  font-size: 16px;
}
section.plan .plan-box .box .right ul.plan-list {
  width: 100%;
}
section.plan .plan-box .box .right ul.plan-list li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0 4px 24px;
}
section.plan .plan-box .box .right ul.plan-list li::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 18px;
  left: 0;
  border-radius: 16px;
  background: #7BCCCF;
}
section.plan .plan-box .box .right ul.plan-list li p:first-child {
  font-size: 24px;
  font-weight: 600;
}
section.plan .plan-box .box .right ul.plan-list li p:last-child {
  font-size: 24px;
  font-weight: 600;
}
section.plan .plan-box .box .right ul.plan-list li .font-20 {
  font-size: 20px;
}
section.plan .plan-box .box .right ul.plan-list li .font-16 {
  font-size: 16;
}
section.plan .plan-box .box .right small {
  display: block;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: right;
}
section.plan .plan-box .box .right .detail-box {
  margin-top: 30px;
  padding: 24px;
  background: rgba(123, 204, 207, 0.2);
}
section.plan .plan-box .box .right .detail-box ul li {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  padding-left: 24px;
}
section.plan .plan-box .box .right .detail-box ul li::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 9px;
  left: 0;
  border-radius: 16px;
  background: #7BCCCF;
}
section.plan .plan-box .plan1 .left {
  background: url(../img/bg-plan01.jpg) no-repeat center;
  background-size: cover;
}
section.plan .plan-box .plan2 .left {
  background: url(../img/bg-plan02.jpg) no-repeat center;
  background-size: cover;
}
@media (max-width: 1200px) {
  section.plan .head span {
    font-size: 80px;
  }
  section.plan .head h3 {
    font-size: 40px;
    margin: -64px 0 16px 32px;
  }
  section.plan .head p {
    font-size: 18px;
    margin-left: 32px;
  }
  section.plan .plan-box .box {
    display: block;
  }
  section.plan .plan-box .box .left {
    width: 100%;
    padding: 32px;
  }
  section.plan .plan-box .box .left h3 br {
    display: none;
  }
  section.plan .plan-box .box .left h3 .md {
    display: block;
  }
  section.plan .plan-box .box .left p br {
    display: none;
  }
  section.plan .plan-box .box .right {
    width: 100%;
    padding: 32px;
  }
}
@media (max-width: 768px) {
  section.plan .head span {
    font-size: 80px;
  }
  section.plan .head h3 {
    font-size: 40px;
    margin: -64px 0 16px 32px;
  }
  section.plan .head p {
    font-size: 18px;
    margin-left: 32px;
  }
  section.plan .head p br {
    display: none;
  }
  section.plan .plan-box .box {
    display: block;
    margin-bottom: 24px;
  }
  section.plan .plan-box .box .left .plan-txt {
    font-size: 18px;
  }
  section.plan .plan-box .box .left h3 {
    font-size: 28px;
    margin-bottom: 24px;
  }
  section.plan .plan-box .box .left p {
    font-size: 20px;
    padding-top: 24px;
  }
  section.plan .plan-box .box .left p .font-36 {
    font-size: 28px;
  }
  section.plan .plan-box .box .left p .font-48 {
    font-size: 36px;
  }
  section.plan .plan-box .box .left small {
    font-size: 16px;
  }
  section.plan .plan-box .box .left small .font-24 {
    font-size: 20px;
  }
  section.plan .plan-box .box .right .plan {
    display: block;
    text-align: center;
  }
  section.plan .plan-box .box .right .plan:nth-child(3) .price {
    border: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  section.plan .plan-box .box .right .plan .title {
    font-size: 16px;
  }
  section.plan .plan-box .box .right .plan .price {
    font-size: 36px;
    border-bottom: #D9D9D9 1px solid;
    padding-bottom: 20px;
    margin-bottom: 24px;
  }
  section.plan .plan-box .box .right .plan .price .font-28 {
    font-size: 28px;
  }
  section.plan .plan-box .box .right .plan .price .font-20 {
    font-size: 20px;
  }
  section.plan .plan-box .box .right .plan .price .font-16 {
    font-size: 14px;
  }
  section.plan .plan-box .box .right ul.plan-list li {
    padding: 0 0 20px 20px;
    flex-wrap: wrap;
  }
  section.plan .plan-box .box .right ul.plan-list li::before {
    width: 12px;
    height: 12px;
    top: 11px;
  }
  section.plan .plan-box .box .right ul.plan-list li p:first-child {
    font-size: 18px;
  }
  section.plan .plan-box .box .right ul.plan-list li p:last-child {
    font-size: 24px;
    width: 100%;
    text-align: center;
  }
  section.plan .plan-box .box .right ul.plan-list li .font-20 {
    font-size: 14px;
  }
  section.plan .plan-box .box .right ul.plan-list li .font-16 {
    font-size: 14px;
  }
  section.plan .plan-box .box .right small {
    font-size: 14px;
    text-align: center;
  }
  section.plan .plan-box .box .right .detail-box {
    padding: 16px 24px;
    margin-top: 20px;
  }
  section.plan .plan-box .box .right .detail-box ul li {
    font-size: 16px;
    padding-left: 20px;
  }
  section.plan .plan-box .box .right .detail-box ul li::before {
    width: 12px;
    height: 12px;
    top: 8px;
  }
}
@media (max-width: 576px) {
  section.plan {
    background: #7BCCCF url(../img/bg-plan-sp.jpg) no-repeat top 200px center;
    background-size: contain;
  }
  section.plan .head {
    margin-bottom: 160px;
  }
  section.plan .head span {
    display: block;
    font-size: 64px;
    text-align: center;
  }
  section.plan .head h3 {
    margin: -48px 0 0;
    font-size: 28px;
    text-align: center;
  }
  section.plan .head p {
    margin: 0;
  }
  section.plan .plan-box .box {
    display: block;
  }
  section.plan .plan-box .box .left {
    padding: 24px;
  }
  section.plan .plan-box .box .left h3 br {
    display: block;
  }
  section.plan .plan-box .box .left p br {
    display: block;
  }
  section.plan .plan-box .box .right {
    padding: 24px;
  }
}
section.review {
  padding-top: 0;
}
section.review .head span {
  font-size: 36px;
}
section.review .head h2 {
  font-size: 48px;
}
section.review .review-main {
  margin-top: 96px;
}
section.review .review-main h3 {
  text-align: center;
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 56px;
}
section.review .review-main h3 br {
  display: none;
}
section.review .review-main .flex-box {
  display: flex;
  justify-content: space-between;
}
section.review .review-main .flex-box .left {
  width: 624px;
}
section.review .review-main .flex-box .left .program {
  display: block;
  padding: 12px;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid #C49B5A;
  text-align: center;
}
section.review .review-main .flex-box .left .program br {
  display: none;
}
section.review .review-main .flex-box .left .profile {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
}
section.review .review-main .flex-box .left .profile img {
  width: 156px;
  height: 156px;
  border-radius: 156px;
  -o-object-fit: cover;
     object-fit: cover;
}
section.review .review-main .flex-box .left .profile .txt-box {
  flex: 1;
}
section.review .review-main .flex-box .left .profile .txt-box span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
section.review .review-main .flex-box .left .profile .txt-box p {
  line-height: 1.7;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
section.review .review-main .flex-box .left table {
  margin: 24px 0 24px;
}
section.review .review-main .flex-box .left table th, section.review .review-main .flex-box .left table td {
  padding: 12px;
}
section.review .review-main .flex-box .left table thead th:nth-of-type(2),
section.review .review-main .flex-box .left table thead th:nth-of-type(3) {
  background: #848484;
}
section.review .review-main .flex-box .left table thead th:nth-of-type(4) {
  background: #C49B5A;
}
section.review .review-main .flex-box .left table tbody td {
  font-size: 24px;
  background: #fff;
}
section.review .review-main .flex-box .left table tbody td:last-child {
  color: #fff;
  background: #C49B5A;
}
section.review .review-main .flex-box .left small {
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
}
section.review .review-main .flex-box .right {
  width: calc(100% - 664px);
}
section.review .review-main .flex-box .right img {
  width: 100%;
}
@media (max-width: 1400px) {
  section.review .review-main {
    margin-top: 64px;
  }
  section.review .review-main h3 {
    font-size: 40px;
    margin-bottom: 24px;
  }
  section.review .review-main .flex-box .left {
    width: 520px;
  }
  section.review .review-main .flex-box .left .program {
    font-size: 18px;
  }
  section.review .review-main .flex-box .left .profile {
    gap: 24px;
  }
  section.review .review-main .flex-box .left .profile img {
    width: 136px;
    height: 136px;
  }
  section.review .review-main .flex-box .left .profile .txt-box p {
    font-size: 15px;
  }
  section.review .review-main .flex-box .left table {
    margin: 24px 0 24px;
  }
  section.review .review-main .flex-box .left table th, section.review .review-main .flex-box .left table td {
    padding: 12px;
  }
  section.review .review-main .flex-box .left table thead th {
    font-size: 18px;
  }
  section.review .review-main .flex-box .left table tbody th {
    font-size: 18px;
  }
  section.review .review-main .flex-box .left table tbody td {
    font-size: 20px;
  }
  section.review .review-main .flex-box .left table tbody td .font-32 {
    font-size: 28px;
  }
  section.review .review-main .flex-box .left small {
    font-size: 14px;
  }
  section.review .review-main .flex-box .right {
    width: calc(100% - 560px);
  }
  section.review .review-main .flex-box .right img {
    width: 100%;
  }
}
@media (max-width: 1024px) {
  section.review .head span {
    font-size: 32px;
  }
  section.review .head h2 {
    font-size: 40px;
  }
  section.review .review-main h3 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  section.review .review-main .flex-box {
    display: block;
  }
  section.review .review-main .flex-box .left {
    width: 100%;
  }
  section.review .review-main .flex-box .left .program {
    font-size: 20px;
  }
  section.review .review-main .flex-box .left table {
    width: 100%;
    min-width: auto;
    margin: 24px 0 16px;
  }
  section.review .review-main .flex-box .left small {
    display: block;
    font-size: 14px;
    text-align: center;
  }
  section.review .review-main .flex-box .right {
    width: 70%;
    margin: 40px auto 0;
  }
}
@media (max-width: 768px) {
  section.review .head span {
    font-size: 24px;
  }
  section.review .head h2 {
    font-size: 32px;
    line-height: 1.3;
  }
  section.review .review-main h3 {
    font-size: 32px;
    margin-bottom: 32px;
    line-height: 1.3;
  }
  section.review .review-main h3 br {
    display: block;
  }
  section.review .review-main .flex-box .left .program br {
    display: block;
  }
  section.review .review-main .flex-box .right {
    width: 80%;
  }
}
@media (max-width: 576px) {
  section.review .head span {
    font-size: 18px;
  }
  section.review .head h2 {
    font-size: 24px;
  }
  section.review .review-main h3 {
    font-size: 24px;
  }
  section.review .review-main .flex-box .left .program {
    font-size: 18px;
  }
  section.review .review-main .flex-box .left .profile {
    gap: 20px;
  }
  section.review .review-main .flex-box .left .profile img {
    width: 96px;
    height: 96px;
  }
  section.review .review-main .flex-box .right {
    width: 100%;
  }
}
section.campaign-contact-section {
  padding-top: 128px;
  text-align: center;
}
section.campaign-contact-section .hukidashi-box {
  position: relative;
  padding: 80px 48px 24px;
  background: #fff;
  margin-bottom: 64px;
  text-align: center;
}
section.campaign-contact-section .hukidashi-box .hukidashi {
  position: absolute;
  top: -40px;
  left: 40px;
  display: inline-block;
  width: calc(100% - 80px);
  padding: 16px 64px;
  border-radius: 120px;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  background: #0CA3A9;
}
section.campaign-contact-section .hukidashi-box .hukidashi::before {
  position: absolute;
  content: "";
  width: 64px;
  height: 24px;
  left: calc(50% - 32px);
  bottom: -16px;
  background: #0CA3A9;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
section.campaign-contact-section .hukidashi-box .hukidashi br {
  display: none;
}
section.campaign-contact-section .hukidashi-box .flex-box {
  display: flex;
  text-align: left;
  align-items: flex-start;
}
section.campaign-contact-section .hukidashi-box .flex-box img {
  width: 200px;
  height: 200px;
}
section.campaign-contact-section .hukidashi-box .flex-box .txt-box {
  width: calc(100% - 240px);
}
section.campaign-contact-section .hukidashi-box .flex-box p {
  font-size: 32px;
  font-weight: 600;
}
section.campaign-contact-section .hukidashi-box .flex-box p:last-child {
  margin-top: -40px;
}
section.campaign-contact-section .hukidashi-box .flex-box p br {
  display: none;
}
section.campaign-contact-section .hukidashi-box .flex-box p strong {
  color: #C49B5A;
  font-size: 32px;
}
section.campaign-contact-section .hukidashi-box .flex-box p .font-88 {
  font-size: 88px;
}
section.campaign-contact-section .hukidashi-box .flex-box p .font-50 {
  font-size: 50px;
}
section.campaign-contact-section .hukidashi-box .flex-box p .font-56 {
  font-size: 56px;
}
section.campaign-contact-section .contact-title {
  position: relative;
  display: inline-block;
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  padding: 0 64px;
}
section.campaign-contact-section .contact-title::before, section.campaign-contact-section .contact-title::after {
  position: absolute;
  top: 0;
}
section.campaign-contact-section .contact-title::before {
  content: "＼";
  left: 0;
}
section.campaign-contact-section .contact-title::after {
  content: "／";
  right: 0;
}
section.campaign-contact-section .contact-title br {
  display: none;
}
@media (max-width: 1400px) {
  section.campaign-contact-section .hukidashi-box .hukidashi {
    font-size: 28px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box img {
    width: 180px;
    height: 180px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box .txt-box {
    width: calc(100% - 220px);
  }
  section.campaign-contact-section .hukidashi-box .flex-box p {
    font-size: 28px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p:last-child {
    margin-top: -24px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p strong {
    font-size: 32px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p .font-88 {
    font-size: 72px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p .font-50 {
    font-size: 48px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p .font-56 {
    font-size: 48px;
  }
  section.campaign-contact-section .contact-title {
    font-size: 32px;
  }
}
@media (max-width: 1200px) {
  section.campaign-contact-section .hukidashi-box {
    padding: 64px 32px 24px;
  }
  section.campaign-contact-section .hukidashi-box .hukidashi {
    font-size: 24px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box img {
    width: 160px;
    height: 160px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box .txt-box {
    width: calc(100% - 200px);
  }
  section.campaign-contact-section .hukidashi-box .flex-box p {
    font-size: 24px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p:last-child {
    margin-top: -24px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p strong {
    font-size: 32px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p .font-88 {
    font-size: 56px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p .font-50 {
    font-size: 36px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p .font-56 {
    font-size: 48px;
  }
  section.campaign-contact-section .contact-title {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  section.campaign-contact-section .hukidashi-box {
    padding: 48px 32px 24px;
  }
  section.campaign-contact-section .hukidashi-box .hukidashi {
    font-size: 20px;
    padding: 12px 48px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box img {
    width: 136px;
    height: 136px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box .txt-box {
    width: calc(100% - 180px);
  }
  section.campaign-contact-section .hukidashi-box .flex-box p {
    font-size: 20px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p:last-child {
    margin-top: -24px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p strong {
    font-size: 28px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p .font-88 {
    font-size: 48px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p .font-50 {
    font-size: 32px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p .font-56 {
    font-size: 40px;
  }
  section.campaign-contact-section .contact-title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  section.campaign-contact-section {
    padding-top: 160px;
  }
  section.campaign-contact-section .hukidashi-box {
    padding: 96px 32px 32px;
  }
  section.campaign-contact-section .hukidashi-box .hukidashi {
    font-size: 20px;
    padding: 12px 48px;
    line-height: 1.3;
  }
  section.campaign-contact-section .hukidashi-box .hukidashi br {
    display: block;
  }
  section.campaign-contact-section .hukidashi-box .flex-box img {
    position: absolute;
    width: 136px;
    height: 136px;
    top: -136px;
    left: -24px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box .txt-box {
    width: 100%;
    text-align: center;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p {
    font-size: 20px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p:last-child {
    margin-top: 20px;
    line-height: 1.2;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p br {
    display: block;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p strong {
    font-size: 28px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p .font-88 {
    font-size: 48px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p .font-50 {
    font-size: 32px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p .font-56 {
    font-size: 40px;
  }
  section.campaign-contact-section .contact-title {
    font-size: 24px;
  }
  section.campaign-contact-section .contact-title br {
    display: block;
  }
}
@media (max-width: 576px) {
  section.campaign-contact-section {
    padding-top: 160px;
  }
  section.campaign-contact-section .hukidashi-box {
    padding: 96px 32px 32px;
  }
  section.campaign-contact-section .hukidashi-box .hukidashi {
    font-size: 20px;
    padding: 12px 32px;
    line-height: 1.3;
    left: 16px;
    width: calc(100% - 32px);
  }
  section.campaign-contact-section .hukidashi-box .hukidashi br {
    display: block;
  }
  section.campaign-contact-section .hukidashi-box .flex-box img {
    position: absolute;
    width: 120px;
    height: 120px;
    top: -136px;
    left: 0;
  }
  section.campaign-contact-section .hukidashi-box .flex-box .txt-box {
    width: 100%;
    text-align: center;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p {
    font-size: 20px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p:last-child {
    margin-top: 20px;
    line-height: 1.2;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p br {
    display: block;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p strong {
    font-size: 28px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p .font-88 {
    font-size: 48px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p .font-50 {
    font-size: 32px;
  }
  section.campaign-contact-section .hukidashi-box .flex-box p .font-56 {
    font-size: 40px;
  }
  section.campaign-contact-section .contact-title {
    padding: 0 32px;
    font-size: 20px;
  }
}

section#news {}
section#news .head {text-align: center; margin-bottom: 40px; }
section#news .head span { color: rgba(123, 204, 207, 0.2); font-size: 96px; font-weight: 600;}
section#news .head h2 { font-size: 48px; margin: -80px 0 24px;}
section#news .inner dl {  }
section#news .inner dl dt { margin:0; padding:1em; font-size: 20px; font-weight: 600; background: #0CA3A9; color:#FFFFFF; }
section#news .inner dl dd { margin:0; padding:1em; }
section#news .inner dl dd a { text-decoration:underline; }

section.faq {
  background: #FAF5EF;
}
section.faq .head {
  text-align: center;
  margin-bottom: 40px;
}
section.faq .head span {
  color: rgba(123, 204, 207, 0.2);
  font-size: 96px;
  font-weight: 600;
}
section.faq .head h2 {
  font-size: 48px;
  margin: -80px 0 24px;
}
section.faq .faq-box .box {
  padding: 24px;
  margin-bottom: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #7BCCCF;
  transition: all 0.3s ease;
}
section.faq .faq-box .box:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
section.faq .faq-box .box .question {
  cursor: pointer;
  position: relative;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}
section.faq .faq-box .box .question::before {
  content: "Q. ";
  color: #0CA3A9;
  font-size: 24px;
  font-weight: 700;
  margin-right: 8px;
}
section.faq .faq-box .box .question::after {
  content: "＋";
  position: absolute;
  top: 20px;
  right: 0;
  transform: translateY(-50%);
  color: #0CA3A9;
  font-size: 48px;
  font-weight: 700;
  transition: all 0.3s ease;
}
section.faq .faq-box .box .question.active::after {
  content: "－";
  font-weight: 400;
  transform: translateY(-50%);
}
section.faq .faq-box .box .answer {
  display: none;
  color: #1E293B;
  line-height: 1.8;
  font-size: 16px;
  font-weight: 600;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #7BCCCF;
}
section.faq .faq-box .box .answer::before {
  content: "A. ";
  color: #0CA3A9;
  font-size: 24px;
  font-weight: 700;
  margin-right: 8px;
}
section.faq .faq-box .box .answer.active {
  display: block;
  animation: fadeInDown 0.3s ease-out;
}
@media (max-width: 1200px) {
  section.faq .head span {
    font-size: 80px;
  }
  section.faq .head h2 {
    font-size: 40px;
  }
}
@media (max-width: 1024px) {
  section.faq .faq-box .box {
    padding: 24px;
    margin-bottom: 24px;
  }
  section.faq .faq-box .box .question {
    font-size: 20px;
    padding: 0 48px 0 40px;
  }
  section.faq .faq-box .box .question::before {
    position: absolute;
    top: -4px;
    left: 0;
  }
  section.faq .faq-box .box .question::after {
    top: 16px;
  }
  section.faq .faq-box .box .answer {
    position: relative;
    font-size: 16px;
    margin-top: 24px;
    padding: 16px 0 0 40px;
  }
  section.faq .faq-box .box .answer::before {
    position: absolute;
    top: 8px;
    left: 0;
  }
  section.faq .faq-box .box .answer.active {
    display: block;
    animation: fadeInDown 0.3s ease-out;
  }
}
@media (max-width: 768px) {
  section.faq .head span {
    font-size: 64px;
  }
  section.faq .head h2 {
    font-size: 32px;
    margin: -48px 0 24px;
  }
  section.faq .faq-box .box {
    padding: 24px;
    margin-bottom: 20px;
  }
  section.faq .faq-box .box .question {
    font-size: 18px;
    padding: 0 48px 0 40px;
  }
  section.faq .faq-box .box .question::after {
    font-size: 40px;
    top: 14px;
  }
  section.faq .faq-box .box .answer {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  section.faq .head {
    margin: 0 0 24px;
  }
  section.faq .head span {
    font-size: 64px;
  }
  section.faq .head h2 {
    font-size: 28px;
    margin: -48px 0 0;
  }
}
section .google-map {
  width: 100%;
  height: 380px;
}
section.bottom-access {
  padding-top: 0;
}
section.bottom-access .head {
  text-align: center;
  margin: 48px 0 40px;
}
section.bottom-access .head span {
  color: rgba(123, 204, 207, 0.2);
  font-size: 96px;
  font-weight: 600;
}
section.bottom-access .head h2 {
  font-size: 48px;
  margin: -80px 0 24px;
}
@media (max-width: 1200px) {
  section.bottom-access .head span {
    font-size: 80px;
  }
  section.bottom-access .head h2 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  section.bottom-access .head span {
    font-size: 64px;
  }
  section.bottom-access .head h2 {
    font-size: 32px;
    margin: -48px 0 24px;
  }
}
@media (max-width: 576px) {
  section.bottom-access .head {
    margin: 40px 0 24px;
  }
  section.bottom-access .head span {
    font-size: 64px;
  }
  section.bottom-access .head h2 {
    font-size: 28px;
    margin: -48px 0 0;
  }
}

footer {
  background: #1E293B;
  text-align: center;
  padding: 24px 0;
}
footer small {
  color: #fff;
  font-size: 16px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scrollTextLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes scrollTextContinuous {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes loop-text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.font-56 {
  font-size: 56px;
}
@media (max-width: 768px) {
  .font-56 {
    font-size: 48px;
  }
}

.font-48 {
  font-size: 48px;
}
@media (max-width: 768px) {
  .font-48 {
    font-size: 40px;
  }
}

.font-36 {
  font-size: 36px;
}
@media (max-width: 768px) {
  .font-36 {
    font-size: 30px;
  }
}

.font-32 {
  font-size: 32px;
}
@media (max-width: 768px) {
  .font-32 {
    font-size: 24px;
  }
}

.font-28 {
  font-size: 28px;
}
@media (max-width: 768px) {
  .font-28 {
    font-size: 24px;
  }
}

.font-24 {
  font-size: 24px;
}
@media (max-width: 768px) {
  .font-24 {
    font-size: 20px;
  }
}

.font-20 {
  font-size: 20px;
}

.font-16 {
  font-size: 16px;
}

.blue {
  color: #0CA3A9 !important;
}

@media (max-width: 1400px) {
  .inner {
    max-width: 1200px;
  }
}
@media (max-width: 1200px) {
  .inner {
    max-width: auto;
    width: 100%;
    padding: 0 40px;
  }
}
@media (max-width: 1024px) {
  body {
    padding-top: 96px;
  }
}
@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }
  section {
    padding: 48px 0;
  }
}
@media (max-width: 576px) {
  .inner {
    padding: 0 16px;
  }
  section {
    padding: 40px 0;
  }
}
@media print {
  header {
    position: static;
    box-shadow: none;
  }
  body {
    padding-top: 0;
  }
  .btn, .hamburger {
    display: none;
  }
  * {
    animation: none !important;
    transition: none !important;
  }
}
.campaign-contact-section {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/bg-pick.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .campaign-contact-section {
    background-attachment: scroll;
  }
}

.cta-box {
  display: none;
}

@media (max-width: 768px) {
  footer {
    margin-bottom: 92px;
  }
  .cta-box {
    position: fixed;
    display: flex;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 999;
    gap: 2px;
    background: #fff;
  }
  .cta-box a {
    display: block;
    height: 92px;
    padding: 8px;
    border-radius: 0;
    line-height: 1.3;
  }
  .cta-box a img {
    display: block;
    height: 32px;
    margin: 0 auto;
  }
}/*# sourceMappingURL=style.css.map */



.ctbtn1 {
	width: calc(500vw / 7.2); max-width: 500px; display: block; text-align: center; background-color: #36BABF; color: #FFFFFF;
	border-radius: 50vmax; margin: 1em auto 0 auto; padding: 0.4em; box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
}
.ctbtn1 strong { display: block; font-size: 1.4em; }
.ctbtn1 span { font-weight: bold; font-size: 1.2em; }


