:root {
  --text-black: #222;
  --blue01: #55a86c;
  --bg-green: #f7f9f5;
  --orange01: #f78e37;
  --bg01: #fffef8;
  --yellow01: #ffec5d;
  --en: "Plus Jakarta Sans", sans-serif;
  --ja: "Noto Sans JP", sans-serif;
  --shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  --shadow-text: 0 3px 6px rgba(0, 0, 0, 0.25);
}

* {
  margin: 0;
  padding: 0;
}

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

html {
  font-size: 62.5%;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body {
  font-family: var(--ja);
  font-size: clamp(14px, 1.1713030747vw, 16px);
  line-height: 1.625;
  font-weight: 500;
  color: var(--text-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  color: var(--text-black);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
}

table thead th,
table thead td {
  background-color: #f2f2f2;
}

table th,
table td {
  border-collapse: collapse;
}

table th {
  text-align: left;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.is-pc {
  display: block;
}

@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}
.is-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}
a[href^=tel] {
  text-decoration: none;
  color: inherit;
}

.en {
  font-family: var(--en);
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 89.6%;
}

.bold {
  font-weight: 700;
}

.flex {
  display: flex;
}

.en {
  font-family: var(--en);
}

.under {
  text-decoration: underline;
  text-underline-offset: 0;
  text-decoration-thickness: 0.4em;
  -webkit-text-decoration-color: var(--yellow01);
  text-decoration-color: var(--yellow01);
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.btn01 {
  background: var(--blue01);
  font-size: 1.5rem;
  font-weight: 700;
  display: grid;
  place-content: center;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  height: 44px;
  transition: all 0.3s ease-out;
  -webkit-animation: pulse 1.5s ease-out infinite;
  animation: pulse 1.5s ease-out infinite;
}
.btn01:hover {
  background-color: #1ea4e2;
}

@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}
.btn02 {
  background: var(--orange01);
  color: white;
  font-size: 2rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  max-width: 346px;
  width: 100%;
  position: relative;
  border-radius: 40px;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn02::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border-top: 3px solid var(--yellow01);
  border-right: 3px solid var(--yellow01);
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 2em;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn02:hover::after {
  transform: translate(0.5em, -50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .btn02 {
    max-width: 280px;
    font-size: 1.8rem;
  }
  .btn02::after {
    right: 1.5em;
  }
}

.btn03 {
  background: var(--blue01);
  color: white;
  font-size: 2rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  max-width: 346px;
  width: 100%;
  position: relative;
  border-radius: 40px;
}
.btn03::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border-top: 3px solid var(--yellow01);
  border-right: 3px solid var(--yellow01);
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 2em;
  transition: all 0.3s ease-out;
}
.btn03:hover::after {
  transform: translate(0.5em, -50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .btn03 {
    font-size: 1.8rem;
  }
  .btn03::after {
    right: 1.5em;
  }
}

.ta-c {
  text-align: center;
}

.fz20 {
  font-size: clamp(16px, 1.4641288433vw, 20px);
}

.fz24 {
  font-size: clamp(18px, 1.756954612vw, 24px);
}

.fz32 {
  font-size: clamp(18px, 2.3426061493vw, 32px);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}
.header .header-inner {
  justify-content: space-between;
  align-items: center;
  
  width: 100%;
}
.header-inner .btn01{
  margin-right: 16px;
}
.header-logo{
  width: 100px;
  display: block;
}
@media (max-width:639px){
  .header-logo {
    width: 60px;
  } 
  .header-inner .btn01{
  margin-right: 8px;
}
}
.main {
  background-color: var(--bg01);
  overflow: hidden;
}

.mv {
  height: 100dvh;
  padding-left: 5.270863836vw;
  width: 100%;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .mv {
    flex-direction: column-reverse;
    padding-left: 0;
    height: auto;
  }
}
.mv .img-wrapper {
  flex: 1;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv .img-wrapper {
    padding-left: 11.1627906977%;
  }
}
.mv .img-wrapper::before {
  content: "";
  width: 91.9472913616vw;
  height: 91.9472913616vw;
  background: url(../images/circle1.png) no-repeat center/contain;
  position: absolute;
  top: 1vw;
  left: -2vw;
}
@media screen and (max-width: 768px) {
  .mv .img-wrapper::before {
    top: 16vw;
    left: 2vw;
  }
}
.mv .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-position: left;
  object-position: left;
  position: relative;
  z-index: 1;
  -o-object-fit: cover;
  object-fit: cover;
}
.mv .text-wrapper {
  margin-right: -40px;
  width:33vw;
  height: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
 padding-top: calc(100/1920*100vw);
}
@media screen and (max-width: 768px) {
  .mv .text-wrapper {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-top: -11.6279069767vw;
    padding-top: 0;
  }
}
.mv .btn02 {
  margin-top: 24px;
  margin-bottom: 40px;
}

hgroup {
  text-align: center;
  margin-bottom: 40px;
}
hgroup h2 {
  font-size: clamp(21px, 2.3426061493vw, 32px);
  font-weight: 700;
  line-height: 1.3;
}
hgroup .sub-ttl {
  color: var(--blue01);
  line-height: 1.6;
  font-weight: 900;
}
hgroup .sub-ttl::after {
  content: "";
  background: url(../images/sub-ttl_dot.png) no-repeat bottom center/contain;
  width: 30px;
  height: 6px;
  display: block;
  margin: 0 auto;
}

.fade {
  opacity: 0;
  transform: translateY(25px);
}

.section {
  padding: 72px 0;
}

.worry {
  margin-top: -64px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .worry {
    margin-top: 0;
  }
}
.worry .content {
  padding: 64px 4.6852122987vw 24px;
  width: 100%;
  border-radius: 20px;
  border: 12px solid #e7f5ed;
  background: white;
}
.worry .content .text {
  font-weight: 700;
  line-height: 2;
}
.worry .content .flex-wrapper {
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .worry .content .flex-wrapper {
    flex-wrap: wrap;
  }
  .worry .content .flex-wrapper .text {
    order: 1;
    width: 100%;
    margin-bottom: 16px;
  }
  .worry .content .flex-wrapper .worry-man {
    order: 2;
    width: 30%;
    object-fit: contain;
  }
  .worry .content .flex-wrapper .worry-woman {
    width: 30%;
    order: 3;
    object-fit: contain;
  }
}

.reason .reason-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  counter-reset: reason-counter;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .reason .reason-list {
    flex-direction: column;
  }
}
.reason .reason-list .item {
  counter-increment: reason-counter;
  width: calc(50% - 12px);
  gap: 16px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .reason .reason-list .item {
    width: 100%;
  }
}
.reason .reason-list .item .text-wrapper {
  flex: 1;
}
.reason .reason-list .item .text {
  font-size: clamp(1.8rem, 1.6105417277vw, 22px);
  color: var(--blue01);
  font-weight: 900;
}
.reason .reason-list .item .text::before {
  content: "0" counter(reason-counter);
  font-family: var(--en);
  font-weight: 600;
  display: block;
  color: var(--text-black);
}
.reason .reason-list .item .img-wrapper {
  width: 45.0819672131%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .reason .reason-list .item .img-wrapper {
    width: 100px;
  }
}

.btn-wrapper {
  text-align: center;
  margin: 0 auto;
}

.program {
  background: var(--blue01);
  border-radius: clamp(50px, 7.6134699854vw, 104px);
}
.program hgroup h2 {
  color: white;
}
.program hgroup .sub-ttl {
  color: var(--yellow01);
}
.program hgroup .sub-ttl::after {
  background: url(../images/sub-ttl_dot-white.png) no-repeat bottom center/contain;
}
.program .program-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: program-counter;
  gap: 40px 16px;
  border-radius: 104px;
}
@media screen and (max-width: 768px) {
  .program .program-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.program .program-list .item {
  counter-increment: program-counter;
}
.program .program-list .item .img-wrapper {
  position: relative;
  margin-bottom: 16px;
}
.program .program-list .item .img-wrapper::after {
  content: "0" counter(program-counter);
  color: white;
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-60%);
  font-size: clamp(4rem, 5.5636896047vw, 7.6rem);
  font-weight: 800;
  opacity: 0.27;
}
.program .program-list .item .text {
  text-align: center;
  color: white;
  font-weight: 900;
  font-size: clamp(1.7rem, 1.756954612vw, 2.4rem);
}

.color-green {
  color: var(--blue01);
}

.voice .voice-list {
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .voice .voice-list {
    grid-template-columns: 1fr;
  }
}
.voice .voice-list .item {
  display: flex;
  width: 100%;
  background: white;
  border-radius: 15px;
  align-items: flex-start;
  gap: 16px;
  padding: 32px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .voice .voice-list .item {
    flex-direction: column;
    padding: 20px;
  }
}
.voice .voice-list .item .text-wrapper .color-green {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--blue01);
}
@media screen and (max-width: 768px) {
  .voice .voice-list .item .text-wrapper .color-green {
    font-size: 1.6rem;
  }
}
.voice .voice-list .item .text-wrapper .text-bg {
  background-color: #A8C4B0;
  color: white;
  margin-top: 8px;
  margin-bottom: 8px;
  padding: 4px 8px;
}
.voice .voice-list .item .img-wrapper {
  position: relative;
  width: 140px;
  flex-shrink: 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .voice .voice-list .item .img-wrapper {
    margin: 0 auto;
    width: 100px;
  }
}
.voice .voice-list .item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.voice .btn-wrapper {
  margin: 0 auto;
  text-align: center;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  opacity: 0;
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
}

.color-orange {
  color: var(--orange01);
}

.plan {
  position: relative;
  z-index: 1;
}
.plan .content {
  padding: 72px 40px;
  background: white;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .plan .content {
    padding: 60px 20px;
  }
}
.plan .content .table-wrapper {
  overflow-x: auto;
  margin-bottom: 24px;
}
.plan .content table {
  width: 100%;
  margin-bottom: 10px;
  margin-top: 24px;
  min-width: 600px;
}
.plan .content table td, .plan .content table th {
  padding: 8px;
  text-align: center;
  border: 1px solid #ccc;
}
.plan .content table thead th {
  background: transparent;
  border-top: none;
  border-left: none;
}
.plan .content table thead {
  color: white;
  background: transparent;
}
.plan .content table thead td {
  background-color: var(--blue01);
}
.plan .content table tbody th {
  background-color: #F1F9F3;
}
.plan .content .text {
  text-align: center;
  font-size: clamp(1.8rem, 1.9033674963vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .plan .content .text {
    text-align: center;
  }
}

.trainer {
  position: relative;
  z-index: 0;
}
.trainer .contents {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .trainer .contents {
    margin-right: 0;
    flex-direction: column;
  }
}
.trainer .contents .text-wrapper {
  flex-shrink: 0;
}
.trainer .contents .text-wrapper hgroup {
  text-align: left;
}
.trainer .contents .text-wrapper h2 {
  color: var(--blue01);
  font-size: clamp(80px, 11.7130307467vw, 160px);
  line-height: 1.2;
  font-weight: 800;
  text-align: left;
}
.trainer .contents .text-wrapper .sub-ttl {
  color: white;
  background: var(--blue01);
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  margin-right: auto;
}
.trainer .contents .text-wrapper .sub-ttl::after {
  content: none;
}
@media screen and (max-width: 768px) {
  .trainer .contents .text-wrapper .sub-ttl {
    font-size: 1.4rem;
    padding: 4px 8px;
  }
}
.trainer .contents .text-wrapper .name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.trainer .contents .text-wrapper .licence {
  margin-bottom: 16px;
}
.trainer .contents .text-wrapper .text {
  max-width: 472px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .trainer .contents .text-wrapper .text {
    max-width: 100%;
  }
}
.trainer .contents .img-wrapper {
  width: 52.196193265vw;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .trainer .contents .img-wrapper {
    margin-bottom: 40px;
    margin-top: 24px;
  }
}
.trainer .contents .img-wrapper::before {
  content: "";
  background: url(../images/circle1.png) no-repeat center/contain;
  width: 51.9033674963vw;
  height: 51.9033674963vw;
  position: absolute;
  top: -12.298682284vw;
  z-index: -1;
  max-width: 709px;
  max-height: 709px;
}
.trainer .contents .img-wrapper::after {
  content: "";
  background: url(../images/circle2.png) no-repeat center/contain;
  width: 51.9033674963vw;
  height: 51.9033674963vw;
  position: absolute;
  top: 20%;
  left: -3vw;
  z-index: -1;
  max-width: 709px;
  max-height: 709px;
}

.faq {
  background-color: var(--blue01);
  border-radius: 104px;
}
@media screen and (max-width: 768px) {
  .faq {
    border-radius: 72px;
  }
}
.faq h2 {
  color: white;
}
.faq .sub-ttl {
  color: var(--yellow01);
}
.faq .sub-ttl::after {
  content: "";
  background: url(../images/sub-ttl_dot-white.png) no-repeat center/contain;
}
.faq .content {
  max-width: 900px;
  margin: 0 auto;
}
.faq .content li:not(:last-child) section {
  margin-bottom: 20px;
}
.faq .content section {
  border-radius: 10px;
  overflow: hidden;
}
.faq .content section .title,
.faq .content section .box {
  background-color: white;
  padding: 16px 60px 16px 16px;
}
.faq .content section .title span,
.faq .content section .box span {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--en);
  line-height: 1;
}
.faq .content section .title {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5em;
  font-size: 1.7rem;
  transition: all 0.5s ease;
  position: relative;
}
.faq .content section .title::before, .faq .content section .title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: var(--blue01);
}
.faq .content section .title::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
.faq .content section .title::after {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}
.faq .content section .title.close::before {
  transform: rotate(45deg);
}
.faq .content section .title.close::after {
  transform: rotate(-45deg);
}
.faq .content section .title span {
  color: var(--blue01);
}
.faq .content section .box {
  border-top: 1px solid rgba(0, 113, 190, 0.3);
  font-size: 1.5rem;
  display: none;
}
.faq .content section .box .box-inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5em;
}
.faq .content section .box .box-inner .text {
  font-weight: 400;
}
.faq .content section .box span {
  color: var(--orange01);
}

.news {
  padding-bottom: 0;
}
.news .news-list .item {
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}
.news .news-list .item:nth-child(1) {
  padding-top: 0;
}
.news .news-list .item:last-child {
  padding-bottom: 0;
  border: none;
}
.news .news-list .item a {
  display: flex;
}
.news .news-list .item a:hover .img-wrapper img {
  transform: scale(1.1);
}
.news .news-list .item a .img-wrapper {
  overflow: hidden;
  border-radius: 10px;
  width: 24%;
  flex-shrink: 0;
}
.news .news-list .item a .img-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.4s ease;
}
.news .news-list .item a .text-wrapper {
  padding: 10px 24px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .news .news-list .item a .text-wrapper {
    padding: 10px 16px;
  }
}
.news .news-list .item a .text-wrapper .date {
  font-family: var(--en);
  font-weight: 600;
  color: var(--blue01);
  margin-bottom: 10px;
}
.news .news-list .item a .arrow {
  content: "";
  width: 20px;
  height: 70px;
  background: url(../images/news-arrow.svg) no-repeat center right/contain;
  display: block;
  align-self: center;
  flex-shrink: 0;
}

.column .column-swiper {
  overflow: hidden;
  position: relative;
  padding-bottom: 38px;
}
.column .column-swiper .slide-item .img-wrapper {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 16px;
}
.column .column-swiper .slide-item .img-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.column .column-swiper .slide-item .text-wrapper .date {
  color: var(--blue01);
  margin-bottom: 10px;
  font-family: var(--en);
}
.column .column-swiper .slide-item .text-wrapper .text {
  font-weight: 700;
  font-size: 1.7rem;
}
.column .column-swiper .swiper-pagination-bullet {
  border-radius: 0;
  width: 40px;
  height: 6px;
  background: #ccc;
}
.column .column-swiper .swiper-pagination-bullet-active {
  background-color: var(--blue01);
}

.area {
  padding-bottom: 70px;
}
.area .content {
  padding: 72px 20px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
.area .content .text {
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .area .content .text {
    font-size: 1.7rem;
  }
}

.footer {
  padding: 32px;
  background: white;
  text-align: center;
}
.footer .footer-logo {
  margin-bottom: 16px;
  display: block;
  width: 80px;
  margin: 0 auto 16px;
}
@media (max-width:639px){
  .footer .footer-logo{
    width: 60px;
    margin: 0 auto 16px;
  }
}
.footer .sns-list {
  margin-bottom: 40px;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.footer .nav-list {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 16px;
  justify-content: center;
  gap: 16px 32px;
  flex-wrap: wrap;
}
.footer small {
  display: block;
  font-family: var(--en);
  text-align: center;
  font-size: 1.2rem;
  color: var(--blue01);
}
@media (max-width: 768px) {
  body.wp-singular > header.header { position: sticky; }
}
