html {
  font-size: 10px;
}

body {
  background: #fff;
  color: #505050;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Yu Gothic Medium", "Meiryo", sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  min-height: 100dvh;
}

a {
  display: block;
  transition: 0.2s;
}

a:hover {
  opacity: 0.7;
  transition: 0.2s;
}

dt {
  font-weight: normal;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
}

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

/* Remove default padding */

ul,
ol {
  padding: 0;
}

/* Remove default margin */

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

/* Set core root defaults */

/* Set core body defaults */

body {
  text-rendering: optimizeSpeed;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*
 * footer
 * -------------------------------------------------------------
 */

.footer {
  background: #f0f1f0;
  color: #688a83;
  padding: 9.5rem 0 5.8rem;
  position: sticky;
  top: 100%;
}

.footer__inner {
  display: flex;
  gap: 6.5rem;
  max-width: 110rem;
}

.footer__address {
  font-size: 1.8rem;
  line-height: 1.94;
}

.footer__name {
  font-size: 2.4rem;
  line-height: 1;
}

.footer__service {
  margin-top: 2.5rem;
}

.footer__location {
  margin-top: 2.5rem;
}

.footer__sns {
  display: flex;
  gap: 2.8rem;
  margin-top: 2.5rem;
}

.footer__sns a {
  width: 5.5rem;
}

.footer__sns a img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.footer__link {
  align-items: center;
  display: flex;
  font-size: 2.1rem;
  gap: 0.7rem;
}

.footer__link::before {
  content: "-";
}

.footer__blog {
  flex: 1;
}

/*
 * header
 * -------------------------------------------------------------
 */

.header {
  background: #f0f1f0;
  height: 13.5rem;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.header.--top {
  height: 11.4rem;
  padding-top: 1rem;
}

.header__inner {
  align-items: center;
  display: flex;
  gap: 3.4rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 130rem;
  padding: 0 5rem;
}

.header__logo {
  flex-grow: 0;
  max-width: max(90px, 9rem);
}

.header__logo img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.header__nav {
  flex-grow: 1;
}

.header__rsv {
  flex-grow: 1;
  max-width: 15.2rem;
}

.header_btn {
  background: #82b491;
  border-radius: 2.4rem;
  color: #fff;
  font-size: max(14px, 1.4rem);
  font-weight: 700;
  padding: 1.6rem;
  text-align: center;
  width: 100%;
}

.header_btn:hover {
  filter: brightness(110%);
  opacity: 1;
}

/*
 * l-inner
 * -------------------------------------------------------------
 */

.l-inner {
  margin-left: auto;
  margin-right: auto;
  padding: 0 4rem;
}

/*
 * l-main
 * -------------------------------------------------------------
 */

.l-main {
  overflow: hidden;
  padding-top: 13.4rem;
}

.l-main.--top {
  padding-top: 11.4rem;
}

/*
 * burger
 * -------------------------------------------------------------
 */

.burger {
  display: none;
  height: 1.6rem;
  position: relative;
  width: 6.4rem;
  z-index: 2000;
}

.burger span {
  background: #003366;
  display: block;
  height: 2px;
  position: absolute;
  transition: all 0.2s;
  width: 100%;
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  right: 0;
  top: 100%;
  width: 4rem;
}

.burger span.is-active {
  background: #fff;
}

.burger span.is-active:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-40deg);
}

.burger span.is-active:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(40deg);
  width: 100%;
}

/*
 * c-btn
 * -------------------------------------------------------------
 */

.c-btn {
  color: #669875;
  font-size: 1.7rem;
  position: relative;
  text-align: right;
}

.c-btn::after {
  background: url(./../images/common/btn.webp) no-repeat center/100%;
  bottom: -1rem;
  content: "";
  display: block;
  height: 1.6rem;
  margin-left: auto;
  opacity: 0.8;
  position: absolute;
  right: 0;
  transition: transform 0.2s;
  width: 5.2rem;
}

.c-btn span {
  display: block;
  padding-right: 2rem;
}

.c-btn:hover {
  opacity: 1;
}

.c-btn:hover::after {
  transform: translateX(0.5rem);
}

.c-btn.--fslg {
  font-size: 2.1rem;
  text-transform: uppercase;
}

.c-btn.--fssm {
  font-size: 1.55rem;
}

/*
 * c-floatCta
 * -------------------------------------------------------------
 */

.c-floatCta {
  max-width: 15.7rem;
  position: fixed;
  right: 0;
  top: 48rem;
  width: 100%;
  z-index: 10;
}

.c-floatCta__btn {
  background: #fff;
  border: 3px solid #58545D;
  border-radius: 1.5rem 0 0 1.5rem;
  border-right: none;
  padding: 1.5rem 1.5rem 1rem 2rem;
}

.c-floatCta__btn:hover {
  opacity: 1;
}

.c-floatCta__btn.--web {
  color: #58545d;
}

.c-floatCta__btn.--line {
  border-color: #669875;
  color: #669875;
  margin-top: 0.4rem;
}

.c-floatCta__ttl {
  align-items: center;
  display: flex;
  font-size: 1.7rem;
  font-weight: 500;
  gap: 0.8rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.c-floatCta__btn.--web .c-floatCta__ttl::before {
  background: url(./../images/common/icon_mail_sm.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 2.4rem;
  width: 3.2rem;
}

.c-floatCta__btn.--line .c-floatCta__ttl::before {
  background: url(./../images/common/icon_line_sm.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 3.1rem;
  width: 3.1rem;
}

.c-floatCta__text {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  line-height: 1.39;
  margin-top: 0.6rem;
  text-align: center;
}

/*
 * c-omTrialCta
 * -------------------------------------------------------------
 */

.c-omTrialCta {
  background: url(./../images/common/trial_cta_bg.webp) no-repeat center/cover;
  padding: 6rem 0 7rem;
}

.c-omTrialCta__inner {
  color: #668b6d;
  max-width: 80rem;
  position: relative;
  text-align: center;
  z-index: 1;
}

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

.c-omTrialCta__lead {
  font-size: 2.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.c-omTrialCta__ttl {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 2.5rem;
}

/* Price block */

.c-omTrialCta__price {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 5.5rem;
}

.c-omTrialCta__limit {
  align-items: center;
  border: 0.2rem solid #669875;
  display: inline-flex;
  font-size: 2.7rem;
  justify-content: center;
  letter-spacing: 0.15em;
  padding: 1.6rem 1rem;
}

.c-omTrialCta__priceMain {
  align-items: center;
  display: flex;
  margin-left: 3.6rem;
}

.c-omTrialCta__arrow {
  font-size: 2.8rem;
  margin-left: 1.8rem;
}

.c-omTrialCta__priceLabel {
  font-size: 2.5rem;
  letter-spacing: 0.15em;
}

.c-omTrialCta__oldPrice {
  display: inline-block;
  font-size: 3.2rem;
  letter-spacing: 0.15em;
  margin-top: 1rem;
  text-decoration-thickness: 0.3rem;
}

.c-omTrialCta__newPriceWrap {
  align-items: baseline;
  display: inline-flex;
  margin-left: 2.5rem;
  position: relative;
}

.c-omTrialCta__newPrice {
  font-size: 8.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
}

.c-omTrialCta__newPrice .yen {
  display: inline-block;
  font-size: 5.7rem;
}

.c-omTrialCta__badge {
  display: inline-block;
  max-width: 7.8rem;
  position: absolute;
  right: -7.8rem;
  top: -4rem;
  width: 100%;
}

.c-omTrialCta__badge img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

/* note */

.c-omTrialCta__note {
  display: block;
  font-size: 1.8rem;
  line-height: 1.77;
  margin-top: 3rem;
  text-align: center;
}

/* actions */

.c-omTrialCta__btns {
  display: flex;
  gap: 5rem;
  justify-content: space-between;
  margin: 3.6rem auto 0;
  max-width: 69.8rem;
}

.c-omTrialCta__btn {
  align-items: center;
  border: 0.2rem solid #669875;
  display: inline-flex;
  font-size: 1.8rem;
  font-weight: 700;
  gap: 14px;
  height: 6.6rem;
  justify-content: center;
  letter-spacing: 0.15em;
  max-width: 32rem;
  width: 100%;
}

.c-omTrialCta__btnText {
  align-items: center;
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}

.c-omTrialCta__btnText.--line::before {
  background: url(./../images/common/icon_mail_clear.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 3rem;
  width: 4.2rem;
}

.c-omTrialCta__btnText.--web::before {
  background: url(./../images/common/icon_web.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 3.9rem;
  width: 3.1rem;
}

/*
 * c-problems
 * -------------------------------------------------------------
 */

.c-problems {
  background: url(./../images/common/problems_bg.webp) no-repeat top/cover;
  padding: 6.5rem 0 5.5rem;
}

.c-problems__inner {
  max-width: 103.5rem;
}

.c-problems__secTtl {
  color: #64696b;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
}

.c-problems__lists {
  grid-gap: 10.2rem;
  display: grid;
  gap: 10.2rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 5.5rem;
}

.c-problems__list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.c-problems__item {
  align-items: center;
  display: flex;
  gap: 0.7rem;
}

.c-problems__text {
  background: #64696a;
  border-radius: 1rem;
  color: #fff;
  flex: 1;
  font-size: 1.85rem;
  padding: 1.8rem 3.2rem;
  text-align: center;
}

.c-problems__item span {
  color: #64696b;
  font-family: "Noto Color Emoji", sans-serif;
  font-size: 1.85rem;
  position: relative;
  z-index: 1;
}

.c-problems__item span::before {
  background: #fff;
  border-radius: 50%;
  content: "";
  display: block;
  height: 7.1rem;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 7.1rem;
  z-index: -1;
}

/*
 * c-secTtl
 * -------------------------------------------------------------
 */

.c-secTtl {
  font-weight: 700;
}

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

.c-secTtl__eng {
  color: #699e79;
  font-size: 3.5rem;
  text-transform: uppercase;
}

.c-secTtl__ja {
  font-size: 2.7rem;
  margin-top: 3rem;
}

/*
 * c-trialCta
 * -------------------------------------------------------------
 */

.c-trialCta {
  background: url(./../images/common/trial_cta_bg.webp) no-repeat center/cover;
  padding: 8.5rem 0 8rem;
}

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

.c-trialCta__secTtl {
  color: #668b6d;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.c-trialCta__text {
  color: #668b6d;
  font-size: 1.8rem;
  line-height: 1.7777777778;
  margin-top: 4rem;
}

.c-trialCta__btns {
  align-items: center;
  display: flex;
  gap: 8.2rem;
  justify-content: center;
  margin-top: 5rem;
}

.c-trialCta__btn {
  align-items: center;
  border-radius: 1rem;
  display: flex;
  font-size: 2.4rem;
  height: 8rem;
  justify-content: center;
  max-width: 25rem;
  text-transform: uppercase;
  width: 100%;
}

.c-trialCta__btn.--web {
  background: #668b6d;
  color: #fff;
  gap: 2.3rem;
  padding-right: 1rem;
}

.c-trialCta__btn.--web::before {
  background: url(./../images/common/icon_mail.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 3.5rem;
  width: 4.6rem;
}

.c-trialCta__btn.--line {
  background: #e5ebea;
  color: #587c5e;
  gap: 1.5rem;
}

.c-trialCta__btn.--line::before {
  background: url(./../images/common/icon_line.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 4.5rem;
  width: 4.5rem;
}

.c-trialCta__btn.--line.--sp {
  display: none;
}

/*
 * nav
 * -------------------------------------------------------------
 */

.nav.is-active {
  -webkit-overflow-scrolling: touch;
  opacity: 1;
  overflow-y: auto;
  pointer-events: auto;
  transition: opacity 0.6s ease, visibility 0s;
  visibility: visible;
}

.nav__list {
  display: flex;
  gap: 3.3rem;
  justify-content: flex-end;
}

.nav__link {
  align-items: center;
  color: #636262;
  display: flex;
  flex-direction: column;
  font-size: max(14px, 1.4rem);
  font-weight: 700;
  gap: 0.6rem;
  text-transform: uppercase;
}

.nav__link span {
  color: #82b492;
  display: block;
  font-size: max(11px, 1.1rem);
  font-weight: 700;
  letter-spacing: 0;
}

.nav__sp {
  display: none;
}

/*
 * about
 * -------------------------------------------------------------
 */

.about {
  padding: 5rem 0 12.5rem;
}

.about__inner {
  max-width: 114rem;
  position: relative;
  z-index: 1;
}

.about__lead {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2.57;
  margin-bottom: 6rem;
  text-align: center;
}

.about__secTtl {
  text-align: center;
}

.about__secTtlSub {
  color: #699e79;
  display: block;
  font-size: 2.1rem;
}

.about__secTtlMain {
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.8695652174;
  margin-top: 2rem;
}

.about__items {
  display: flex;
  flex-direction: column;
  gap: 12rem;
  margin-top: 10rem;
}

.about__item {
  display: flex;
  gap: 5rem;
}

.about__item:nth-child(2n-1) {
  gap: 5rem;
}

.about__item:nth-child(2n) {
  flex-direction: row-reverse;
  gap: 6.5rem;
}

.about__imgWrap {
  position: relative;
  width: 42.75vw;
}

.about__item:nth-child(2n-1) .about__imgWrap {
  margin-left: calc(50% - 50vw);
}

.about__item:nth-child(2n) .about__imgWrap {
  margin-right: calc(50% - 50vw);
}

.about__num {
  color: #82b491;
  font-size: 10.8rem;
  font-weight: 600;
  position: absolute;
}

.about__item:nth-child(2n-1) .about__num {
  right: -6rem;
  top: -7rem;
}

.about__item:nth-child(2n) .about__num {
  left: -6rem;
  top: -5rem;
}

.about__img {
  aspect-ratio: 584/353;
  overflow: hidden;
}

.about__item:nth-child(2n-1) .about__img {
  border-radius: 0 10rem 0 0;
}

.about__item:nth-child(2n) .about__img {
  border-radius: 10rem 0 0 0;
}

.about__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.about__details {
  flex: 1;
  max-width: 53rem;
  padding-top: 6rem;
}

.about__item:nth-child(1) .about__details {
  padding-top: 10rem;
}

.about__item:nth-child(2n-1) .about__details {
  margin-left: auto;
  max-width: 58rem;
}

.about__ttl {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.about__text {
  font-size: 1.8rem;
  line-height: 2;
  margin-top: 3.5rem;
}

.about__btn {
  margin-top: 2.5rem;
}

.about__btn .c-btn {
  color: #82b491;
}

.about__text.--sp {
  display: none;
}

/*
 * blog
 * -------------------------------------------------------------
 */

.blog {
  padding: 19rem 0 10.5rem;
}

.blog__inner {
  max-width: 111rem;
}

.blog__list {
  grid-gap: 6.4rem 5.4rem;
  display: grid;
  gap: 6.4rem 5.4rem;
  grid-template-columns: repeat(3, 1fr);
}

.blog__list.is-empty {
  align-items: center;
  display: flex;
  justify-content: center;
}

.blog__empty {
  font-size: 1.6rem;
  text-align: center;
}

/*
 * blogCard
 * -------------------------------------------------------------
 */

.blogCard {
  border: 1px solid #C4C4C4;
}

.blogCard__img {
  aspect-ratio: 306/192;
  background: #eee;
}

.blogCard__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.blogCard__noImg {
  background: #eee;
}

.blogCard__body {
  background: #fff;
  font-weight: 400;
  padding: 2.3rem 5.3rem 1.8rem 2.6rem;
}

.blogCard__ttl {
  font-size: 1.8rem;
  line-height: 2;
}

.blogCard__date {
  display: block;
  font-size: 1.8rem;
  margin-top: 1.5rem;
}

/*
 * concept
 * -------------------------------------------------------------
 */

.concept {
  background: #f0f1f0;
  padding: 11.5rem 0 14rem;
}

.concept__inner {
  max-width: 136.6rem;
  padding: 0;
}

.concept__secTtlEng {
  text-transform: capitalize;
}

.concept__body {
  margin-top: 11.5rem;
}

.concept__blockInner.--blockInner1 {
  display: flex;
  gap: min(10rem, 7.32vw);
  max-width: 114.5rem;
}

.concept__blockInner.--blockInner2 {
  display: flex;
  flex-direction: row-reverse;
  gap: 4rem;
  margin: 10rem 0 0 auto;
  max-width: 118.5rem;
  padding-left: 4rem;
  position: relative;
}

.concept__cont.--cont1 {
  padding: 5rem 4rem 0 0;
}

.concept__cont.--cont2 {
  left: 8rem;
  min-width: 61rem;
  position: relative;
}

.concept__text {
  color: #5f856a;
  font-size: 2.2rem;
  line-height: 3.4;
}

.concept__img.--img1 {
  height: 67.5rem;
  max-width: 50rem;
  width: 36.6vw;
}

.concept__img.--img2 {
  height: 39.6rem;
  max-width: 62.2rem;
  width: 45.5vw;
}

.concept__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

/*
 * features
 * -------------------------------------------------------------
 */

/*
 * homeBlog
 * -------------------------------------------------------------
 */

.homeBlog__head {
  border-bottom: 1px solid #688a83;
  font-size: 2rem;
  max-width: 28.4rem;
  padding-bottom: 1rem;
  text-transform: capitalize;
}

.homeBlog__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 2.1rem;
}

.homeBlog__link {
  align-items: flex-start;
  display: flex;
  gap: 2rem;
}

.homeBlog__img {
  aspect-ratio: 191/101;
  background: #688a83;
  flex: 1;
  max-width: 19.1rem;
}

.homeBlog__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.homeBlog__content {
  flex: 2;
  max-width: 16.5rem;
}

.homeBlog__ttl {
  font-size: 1.9rem;
  font-weight: 400;
  line-height: 1.26;
}

/*
 * menu
 * -------------------------------------------------------------
 */

.menu {
  background: url(./../images/top/menu_bg.webp) no-repeat center/cover;
  padding: 7.5rem 0 13rem;
}

.menu__inner {
  max-width: 112rem;
}

.menu__secTtl {
  color: #699e79;
  text-align: center;
}

.menu__secTtlSub {
  font-size: 2.1rem;
  letter-spacing: 0.05em;
}

.menu__secTtlMain {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 2.5rem;
  text-transform: uppercase;
}

/*
 * menuOption
 * -------------------------------------------------------------
 */

.menuOption {
  margin-top: 7.2rem;
}

.menuOption__head {
  text-align: center;
}

.menuOption__headTtl {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.menuOption__lead {
  font-size: 2rem;
  line-height: 1.75;
  margin-top: 3rem;
}

.menuOption__items {
  grid-gap: 2rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  margin: 4.5rem auto 0;
  max-width: 78.5rem;
}

.menuOption__img {
  border-radius: 2.9rem;
  overflow: hidden;
}

.menuOption__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.menuOption__details {
  padding: 2rem 0.5rem 0 0.6rem;
}

.menuOption__ttl {
  font-size: 1.7rem;
  font-weight: 700;
}

.menuOption__text {
  font-feature-settings: "palt";
  font-size: 1.7rem;
  line-height: 1.6470588235;
  margin-top: 1.6rem;
}

/*
 * pageFv
 * -------------------------------------------------------------
 */

.pageFv {
  background: url(./../images/common/page_fv.webp) no-repeat center/cover;
  height: 34.8rem;
}

.pageFv__inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  justify-content: center;
  margin: 0 auto;
  max-width: 136.6rem;
  padding: 0 4rem;
}

.pageFv__ttlSub {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 400;
}

.pageFv__ttlMain {
  align-items: center;
  color: #fff;
  display: flex;
  font-size: 3.5rem;
  gap: 5rem;
  justify-content: space-between;
  letter-spacing: 0.08em;
  width: 100%;
}

.pageFv__ttlMain span {
  min-width: -moz-fit-content;
  min-width: fit-content;
}

.pageFv__ttlMain::before,
.pageFv__ttlMain::after {
  background: #fff;
  content: "";
  display: block;
  height: 0.2rem;
  max-width: 39.8rem;
  width: 100%;
}

.pageFv__ttlMain-sp {
  display: none;
}

.pageFv__ttlSub-sp {
  display: none;
}

/*
 * plan
 * -------------------------------------------------------------
 */

.plan.--monthly {
  margin-top: 4.5rem;
}

.plan.--unlimited {
  margin-top: 7rem;
}

.plan__head {
  text-align: center;
}

.plan__ttlMain {
  font-size: 2.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.plan__ttlMain.--medium {
  font-weight: 500;
}

.plan__ttlSub {
  font-size: 2.5rem;
  margin-top: 2.5rem;
}

.plan__lead {
  font-size: 2.1rem;
  line-height: 1.75;
  margin-top: 3rem;
}

.plan.--unlimited .plan__lead {
  font-size: 2rem;
  line-height: 1.75;
}

.plan__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 4rem;
}

.plan__tag {
  color: #699e79;
  font-size: 2rem;
}

.plan__block {
  align-items: flex-end;
  display: flex;
  gap: 5.2rem;
  margin: 4.5rem auto 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 93.5rem;
}

.plan__block.--light {
  margin-top: 5.5rem;
}

.plan__block.--unlimited {
  display: block;
  max-width: 63.6rem;
}

.plan__left {
  max-width: 24.8rem;
}

.plan__ttl {
  font-size: 3.2rem;
  letter-spacing: 0.1em;
  text-align: center;
}

.plan__ttl.--green {
  color: #5e9c71;
  margin: 0 calc(50% - 50vw);
}

.plan__notes {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  margin-top: 2.8rem;
  max-width: 24.8rem;
  min-width: 24.8rem;
}

.plan__note {
  font-feature-settings: "palt";
  background: #fff;
  border: 0.2rem solid #505050;
  border-radius: 1rem;
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  line-height: 1.6;
  padding: 1.1rem 2rem 1rem;
  position: relative;
}

.plan__note.--green {
  border-color: #5e9c71;
  color: #5e9c71;
}

.plan__note::before,
.plan__note::after {
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  content: "";
  display: block;
  height: 1.7rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.8rem;
}

.plan__note::before {
  background: #505050;
  right: -1.8rem;
}

.plan__note.--green::before {
  background: #5e9c71;
}

.plan__note::after {
  background: #fff;
  right: -1.4rem;
}

.plan__note span {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.plan__right {
  flex: 1;
}

.plan__taxNote {
  font-size: 1.7rem;
  margin-top: 1.5rem;
  padding-right: 5rem;
  text-align: right;
}

.plan__block.--unlimited .plan__taxNote {
  padding-right: 0;
}

.planTable__rowHead-sp {
  background: #fff;
  border: 1px solid #505050;
  border-radius: 0.6rem;
  display: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin: 0 auto 1.2rem;
  max-width: 16rem;
  padding: 0.5rem 0.3rem 0.4rem;
  position: relative;
}

.planTable__rowHead-sp::before,
.planTable__rowHead-sp::after {
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  content: "";
  display: block;
  height: 0.7rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0.6rem;
}

.planTable__rowHead-sp::before {
  background: #505050;
  bottom: -0.7rem;
}

.planTable__rowHead-sp::after {
  background: #fff;
  bottom: -0.5rem;
}

.planTable__rowHead-sp.--green {
  border-color: #5e9c71;
  color: #5e9c71;
}

.planTable__rowHead-sp.--green::before,
.planTable__rowHead-sp.--green::after {
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  content: "";
  display: block;
  height: 0.7rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0.6rem;
}

.planTable__rowHead-sp.--green::before {
  background: #5e9c71;
}

/*
 * planTable
 * -------------------------------------------------------------
 */

.planTable {
  border: 0.2rem solid #ddd7d2;
  border-collapse: collapse;
  width: 100%;
}

.planTable.--standard {
  border-color: #82b491;
}

.planTable__th {
  background: #ddd7d2;
  border-right: 0.2rem solid #b9b3af;
  font-size: 2.8rem;
  font-weight: 500;
  height: 9.2rem;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: capitalize;
  vertical-align: middle;
}

.planTable.--standard .planTable__th {
  background: #82b491;
  border-color: #5e9c71;
  color: #fff;
}

.planTable__th.--time {
  width: 27.3rem;
}

.planTable__th.--price {
  border-right: none;
}

.planTable tbody tr {
  border-bottom: 0.2rem solid #ddd7d2;
}

.planTable.--standard tbody tr {
  border-color: #82b491;
}

.planTable__rowHead {
  background: #fff;
  border-right: 0.2rem solid #b9b3af;
  font-size: 2.5rem;
  font-weight: 500;
  height: 9.3rem;
  letter-spacing: 0.1em;
  text-align: center;
  vertical-align: middle;
}

.planTable.--standard .planTable__rowHead {
  border-color: #82b491;
}

.planTable__cell {
  align-items: center;
  background: #fff;
  display: flex;
  font-size: 2.5rem;
  gap: 3.3rem;
  height: 9.3rem;
  justify-content: center;
  letter-spacing: 0.1em;
  position: relative;
  text-align: center;
  vertical-align: middle;
}

.planTable__cellNote {
  bottom: 1.2rem;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0;
  position: absolute;
  right: 0.5rem;
}

.planTable__price {
  padding-left: 4rem;
}

.planTable__badge {
  background: #ddd7d2;
  border-radius: 1rem;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.44;
  padding: 1rem 1.5rem 0.8rem 1.7rem;
  position: relative;
}

.planTable.--standard .planTable__badge {
  background: #82b491;
  color: #fff;
}

.planTable__badge::before {
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: #ddd7d2;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  content: "";
  display: block;
  height: 1.7rem;
  left: -1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
}

.planTable.--standard .planTable__badge::before {
  background: #82b491;
}

/*
 * privacy
 * -------------------------------------------------------------
 */

.privacy {
  padding: 8rem 0 10rem;
}

.privacy__inner {
  max-width: 109rem;
}

.privacy__pageTtl {
  font-size: 3.7rem;
}

.privacy__lead {
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5909090909;
  margin-top: 4rem;
  padding: 0 1rem;
}

.privacy__items {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 4rem;
}

.privacy__item,
.privacy__company {
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  line-height: 1.5909090909;
  text-align: justify;
}

.privacy__text,
.privacy__listItem,
.privacy__company {
  font-weight: 400;
}

.privacy__company {
  margin-top: 2rem;
}

/*
 * single
 * -------------------------------------------------------------
 */

.single__head {
  align-items: center;
  background: url(./../images/common/page_fv.webp) no-repeat center/cover;
  display: flex;
  flex-direction: column;
  height: 100%;
  height: 34.8rem;
  justify-content: center;
  padding: 0 4rem;
}

.single__ttl {
  color: #fff;
  font-size: 3.7rem;
}

.single__date {
  color: #fff;
  display: block;
  font-size: 2.2rem;
  font-weight: 400;
  margin-top: 4rem;
}

.single__body {
  max-width: 112.5rem;
  padding-top: 16rem;
}

.single__img {
  aspect-ratio: 1045/690;
  background: #ddd;
  height: 69rem;
  max-width: 104.5rem;
  width: 100%;
}

.single__cont {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 89.5rem;
  text-align: justify;
}

.single__cont figure {
  margin-bottom: 6rem;
}

.single__nav {
  grid-gap: 14rem;
  display: grid;
  gap: 14rem;
  grid-template-columns: 1fr 1fr 1fr;
  margin-left: auto;
  margin-right: auto;
  max-width: 89rem;
  padding: 8.5rem 0;
}

.single__navBtn {
  align-items: center;
  background: #f0f1f0;
  border: 1px solid #505050;
  display: grid;
  font-size: 2.5rem;
  font-weight: 400;
  height: 8.9rem;
  justify-items: center;
  max-width: 20.3rem;
  place-items: center;
  width: 100%;
}

.single__navBtn span {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.single__navBtn.--prev span::before {
  content: "<";
  display: inline-block;
}

.single__navBtn.--next span::after {
  content: ">";
  display: inline-block;
}

.single__navSpacer {
  height: 8.9rem;
  max-width: 20.3rem;
  width: 100%;
}

/*
 * topAbout
 * -------------------------------------------------------------
 */

.topAbout {
  padding: 6.5rem 0 3rem;
  position: relative;
}

.topAbout::before {
  background: url(./../images/top/about_line_obj.webp) no-repeat center/100%;
  content: "";
  display: block;
  height: 100%;
  left: 39.5%;
  max-width: 21.5rem;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.topAbout__items {
  gap: 8rem;
}

.topAbout__btn {
  color: #82b491;
  margin-right: 5rem;
  margin-top: 6rem;
}

/*
 * topAccess
 * -------------------------------------------------------------
 */

.topAccess {
  background: #f3f4f3;
  padding: 8rem 0 6.5rem;
}

.topAccess__inner {
  max-width: 100rem;
}

.topAccess__lead {
  font-size: 2.1rem;
  margin-top: 4rem;
}

.topAccess__table {
  margin-top: 3.8rem;
}

.topAccess__item {
  align-items: center;
  border-bottom: 1px solid #505050;
  display: flex;
  gap: 11rem;
  padding: 2.3rem 1.5rem 2.1rem;
}

.topAccess__item:first-child {
  border-top: 1px solid #505050;
}

.topAccess__item dt {
  font-size: 2.2rem;
  font-weight: 400;
  text-align: center;
  width: 11.8rem;
}

.topAccess__item dd {
  flex: 1;
  font-size: 2.2rem;
  font-weight: 400;
}

.topAccess__map {
  height: 22.6rem;
  margin-top: 2.8rem;
}

.topAccess__service {
  margin-top: 4.7rem;
}

.topAccess__serviceTtl {
  font-size: 2.1rem;
}

.topAccess__serviceList {
  grid-gap: 1.1rem;
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(8, 1fr);
  margin-top: 3.7rem;
}

.topAccess__serviceItem {
  align-items: center;
  aspect-ratio: 1/1;
  background: #82b491;
  border-radius: 0.4rem;
  display: flex;
  display: flex;
  flex-direction: column;
  flex-direction: column;
  gap: 1.1rem;
  gap: 1.4rem;
  justify-content: center;
}

.topAccess__serviceItem p {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.topAccess__serviceItem:nth-child(1) img {
  max-width: 2.9rem;
}

.topAccess__serviceItem:nth-child(2) img {
  max-width: 2.9rem;
}

.topAccess__serviceItem:nth-child(3) img {
  max-width: 4.7rem;
}

.topAccess__serviceItem:nth-child(4) img {
  max-width: 7rem;
}

.topAccess__serviceItem:nth-child(5) img {
  max-width: 5.2rem;
}

.topAccess__serviceItem:nth-child(6) img {
  max-width: 5.8rem;
}

.topAccess__serviceItem:nth-child(7) img {
  max-width: 4.1rem;
}

.topAccess__serviceItem:nth-child(8) img {
  max-width: 2.3rem;
}

.topAccess__serviceItem:nth-child(9) img {
  max-width: 6.4rem;
}

.topAccess__serviceItem:nth-child(10) img {
  max-width: 5.8rem;
}

.topAccess__serviceItem:nth-child(11) img {
  max-width: 5.9rem;
}

.topAccess__serviceItem:nth-child(12) img {
  max-width: 4.9rem;
}

.topAccess__serviceItem:nth-child(13) img {
  max-width: 3.6rem;
}

.topAccess__serviceItem:nth-child(14) img {
  max-width: 3.3rem;
}

.topAccess__serviceItem:nth-child(15) img {
  max-width: 5.1rem;
}

.topAccess__serviceItem:nth-child(16) img {
  max-width: 5.6rem;
}

/*
 * topBa
 * -------------------------------------------------------------
 */

.topBa {
  background: #f3f4f3;
  padding-top: 8rem;
}

.topBa__inner {
  max-width: 104rem;
}

.topBa__cards {
  grid-gap: 3.9rem;
  display: grid;
  gap: 3.9rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 6.2rem;
}

/* ========= base ========= */

.topBa__card {
  /* くすみグリーン */
  background: #f3f4f3;
  border: 0.2rem solid #82B491;
  overflow: hidden;
  position: relative;
}

/* 右下の薄いシルエット（画像があるなら差し替え） */

.topBa__card::after {
  bottom: 0;
  content: "";
  height: 24rem;
  position: absolute;
  right: 1.6rem;
  width: 10.1rem;
}

.topBa__card:nth-child(1):after {
  background: url(./../images/top/ba_obj1.webp) no-repeat center/100%;
}

.topBa__card:nth-child(2):after {
  background: url(./../images/top/ba_obj2.webp) no-repeat center/100%;
  width: 8rem;
}

.topBa__card:nth-child(3):after {
  background: url(./../images/top/ba_obj3.webp) no-repeat center/100%;
}

/* ========= head ========= */

.topBa__cardHead {
  align-items: center;
  background: #82B491;
  color: #fff;
  display: flex;
  font-size: 2.2rem;
  font-weight: 700;
  gap: 1rem;
  justify-content: center;
  padding: 1.9rem 1rem 1.6rem;
  position: relative;
  z-index: 1;
}

.topBa__cardTag {
  align-items: center;
  background: #fff;
  border-radius: 1rem;
  color: #82B491;
  display: grid;
  height: 4.5rem;
  justify-items: center;
  line-height: 1;
  place-items: center;
  width: 7.5rem;
}

.topBa__cardMeta {
  line-height: 1;
}

/* ========= body ========= */

.topBa__cardBody {
  padding: 1.9rem 1.2rem 6.3rem;
  position: relative;
  z-index: 1;
}

.topBa__cardItem+.topBa__cardItem {
  margin-top: 3.2rem;
}

/* ラベルの緑バー */

.topBa__cardLabel {
  background: #82B491;
  color: #fff;
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 2rem;
  padding: 0.7rem 0;
  text-align: center;
}

/* 数値行 */

.topBa__cardRow {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 0.2rem;
}

.topBa__cardVal {
  align-items: baseline;
  display: flex;
  gap: 2px;
  line-height: 1;
  white-space: nowrap;
}

.topBa__cardVal--before {
  color: #86b7a2;
  /* 左の薄い緑 */
  justify-content: flex-start;
}

.topBa__cardVal--after {
  color: #DD38C8;
  justify-content: flex-end;
}

.topBa__cardNum {
  font-size: 2.7rem;
  letter-spacing: 0;
}

.topBa__cardUnit {
  font-size: 1.8rem;
}

/* 真ん中の変化量（矢印風） */

.topBa__cardDiff {
  -webkit-clip-path: polygon(0% 0%, 80% 0, 100% 50%, 80% 100%, 0% 100%);
  background: #dd38c8;
  clip-path: polygon(0% 0%, 80% 0, 100% 50%, 80% 100%, 0% 100%);
  color: #fff;
  font-size: 2.1rem;
  letter-spacing: 0;
  line-height: 1;
  margin-left: 0.5rem;
  margin-right: 0.6rem;
  padding: 0.2rem 0.7rem 0.8rem;
  position: relative;
  width: 9rem;
}

.topBa__cardDiffText {
  display: inline-block;
  transform: translateY(1px);
}

.topBa__cardDiffText small {
  font-size: 1.7rem;
}

.topBa__note {
  display: flex;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 1.875;
  margin-left: auto;
  margin-top: 2rem;
  position: relative;
  right: -5rem;
  width: -moz-fit-content;
  width: fit-content;
}

/*
 * topCampaign
 * -------------------------------------------------------------
 */

.topCampaign {
  background: url(./../images/top/campaign_bg.webp) no-repeat top/cover;
  padding: 5rem 0;
}

.topCampaign__inner {
  max-width: 112rem;
}

.topCampaign__box {
  background: url(./../images/top/campaign_box_bg.webp) no-repeat top/cover;
  border: 0.3rem solid #82b491;
  border-radius: 2.6rem;
  padding: 2.4rem 2.8rem;
}

.topCampaign__label {
  background: #82b491;
  border-radius: 1.3rem;
  color: #fff;
  font-size: 1.8rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1.8rem;
  width: -moz-fit-content;
  width: fit-content;
}

.topCampaign__head {
  color: #82b491;
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 1.9rem;
  text-align: center;
}

.topCampaign_items {
  grid-gap: 2.2rem;
  display: grid;
  gap: 2.2rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.9rem;
}

.topCampaign__item {
  border: 0.3rem solid #82b491;
  border-radius: 1.5rem;
  color: #669875;
  display: grid;
  padding: 2.5rem 1.5rem 1.3rem;
}

.topCampaign__item:nth-child(2) {
  padding: 2.5rem 1rem 1.3rem;
}

.topCampaign__ttl {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}

.topCampaign__ttl.--sm {
  font-size: 2.7rem;
}

.topCampaign__details {
  margin-top: 1.6rem;
}

/*
 * topConcept
 * -------------------------------------------------------------
 */

.topConcept {
  background: #f3f4f3;
  padding: 8rem 0 3.2rem;
}

.topConcept__inner {
  align-items: flex-start;
  display: flex;
  gap: 5rem;
  justify-content: space-between;
  max-width: 101rem;
}

.topConcept__head {
  width: -moz-fit-content;
  width: fit-content;
}

.topConcept__secTtl {
  color: #669875;
}

.topConcept__secTtlMain {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.78;
}

.topConcept__secTtlSub {
  font-size: 1.8rem;
  margin-top: 3.6rem;
}

.topConcept__body {
  width: -moz-fit-content;
  width: fit-content;
}

.topConcept__text {
  color: #669875;
  font-size: 1.7rem;
  line-height: 2.9;
}

.topConcept__btn {
  margin-top: 3rem;
}

/*
 * topFlow
 * -------------------------------------------------------------
 */

.topFlow {
  padding: 9rem 0;
}

.topFlow__inner {
  max-width: 100rem;
}

.topFlow__lead {
  font-size: 2rem;
  line-height: 1.8;
  margin-top: 3.5rem;
}

.topFlow__list {
  display: flex;
  flex-direction: column;
  gap: 7.6rem;
  margin-top: 4.4rem;
}

.topFlow__item {
  align-items: center;
  display: flex;
  gap: 6.4rem;
  position: relative;
}

.topFlow__item:not(:last-child)::after {
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
  background: #505050;
  bottom: -5.2rem;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  content: "";
  display: block;
  height: 2.2rem;
  left: 13.4rem;
  position: absolute;
  width: 3rem;
}

.topFlow__img {
  border-radius: 3rem;
  max-width: 30.6rem;
  overflow: hidden;
}

.topFlow__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.topFlow__details {
  flex: 1;
}

.topFlow__ttl {
  font-size: 2rem;
  font-weight: 700;
}

.topFlow__text {
  font-size: 2rem;
  line-height: 1.8;
  margin-right: calc(50% - 50vw);
  margin-top: 2.5rem;
}

.topFlow__num.--sp {
  display: none;
}

.topFlow__num.--sp span {
  font-size: 1.2rem;
  text-transform: uppercase;
}

/*
 * topFv
 * -------------------------------------------------------------
 */

.topFv {
  background: #f0f1f0;
  padding-bottom: 5rem;
}

.topFv__inner {
  max-width: 130rem;
  position: relative;
}

.topFv__cont {
  left: max(5rem, 50% - 65rem + 9rem);
  position: absolute;
  top: 26rem;
}

.topFv__ttl {
  font-size: 3.9rem;
  letter-spacing: 0.1em;
  line-height: 1.46;
}

.topFv__lead {
  display: block;
  font-size: 2.8rem;
  letter-spacing: 0.06em;
  line-height: 1.75;
  margin-top: 1rem;
}

.topFv__img {
  border-radius: 3rem;
  margin-left: auto;
  max-width: 91.8rem;
  overflow: hidden;
}

.topFv__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

/*
 * topService
 * -------------------------------------------------------------
 */

.topService {
  background: url(./../images/top/service_bg.webp) no-repeat top/cover;
  background: url(./../images/top/sp/service_bg.webp) no-repeat top/cover;
  padding: 7.5rem 0;
  padding: 3.3rem 0 4rem;
}

.topService__inner {
  max-width: 103rem;
}

.topService__secTtlEng {
  font-family: "adobe-devanagari", sans-serif;
  font-size: 2rem;
  letter-spacing: 0;
}

.topService__secTtlMain {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 1.5rem;
}

.topService__secTtlSub {
  font-size: 2rem;
  margin-top: 2rem;
}

.topService__items {
  grid-gap: 2rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  margin-right: calc(50% - 50vw);
  margin-top: 4.7rem;
  max-width: 112.4rem;
}

.topService__img {
  aspect-ratio: 360/290;
  border-radius: 3.4rem 3.4rem 0 0;
  overflow: hidden;
}

.topService__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.topService__details {
  background: #f0f1f0;
  border-radius: 0 0 3.4rem 3.4rem;
  color: #58545d;
  padding: 3.2rem 1.5rem 2rem 2rem;
}

.topService__ttl {
  font-size: 2rem;
  font-weight: 700;
}

.topService__text {
  font-size: max(1.4rem, min(1.3vw, 1.6rem));
  line-height: 1.6875;
  margin-top: 2rem;
  text-align: justify;
}

.topService__text.--sp {
  display: none;
}

/*
 * topTrainer
 * -------------------------------------------------------------
 */

.topTrainer {
  background: url(./../images/top/trainer_bg.webp) no-repeat center/cover;
  padding: 7rem 0 5rem;
}

.topTrainer__inner {
  align-items: flex-start;
  display: flex;
  gap: 4.8rem;
  max-width: 107.5rem;
}

.topTrainer__head {
  max-width: 48rem;
}

.topTrainer__secTtlEng {
  text-transform: capitalize;
}

.topTrainer__img {
  border-radius: 0 7rem 0 0;
  margin-top: 5rem;
  overflow: hidden;
}

.topTrainer__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.topTrainer__prof {
  color: #699e7a;
  padding-top: 1.5rem;
}

.topTrainer__name {
  font-weight: 700;
}

.topTrainer__nameEng {
  font-size: 2.2rem;
}

.topTrainer__nameJa {
  font-size: 2.8rem;
  margin-top: 1rem;
}

.topTrainer__details {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin-top: 2.2rem;
}

.topTrainer__detail {
  font-size: 1.55rem;
  line-height: 1.8125;
}

.topTrainer__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.topTrainer__sub {
  display: flex;
  gap: 0.1rem;
  padding-left: 1.5rem;
}

.topTrainer__sub::before {
  content: "└";
}

.topTrainer__btn {
  margin-top: 4rem;
  padding-left: 3.5rem;
}

/*
 * topVoice
 * -------------------------------------------------------------
 */

.topVoice {
  background: #f3f4f3;
  padding: 7rem 0 8rem;
}

.topVoice__inner {
  max-width: 99.6rem;
}

.topVoice__cards {
  grid-gap: 4.3rem 11.2rem;
  display: grid;
  gap: 4.3rem 11.2rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 4.2rem;
}

.topVoice__card {
  border: 0.2rem solid #82B491;
  border-radius: 2rem;
  display: flex;
  padding: 3.2rem 2.2rem 2.2rem;
  position: relative;
}

.topVoice__meta {
  left: 1.4rem;
  position: absolute;
  top: 2rem;
}

.topVoice__head {
  background: #82b491;
  border-radius: 1rem;
  color: #fff;
  left: -2.8rem;
  padding: 1.4rem 1.6rem 1rem 2.1rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.topVoice__head::after {
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: #82b491;
  bottom: -0.2rem;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  content: "";
  display: block;
  height: 1.5rem;
  left: 0.5rem;
  position: absolute;
  transform: rotate(45deg);
  width: 1.4rem;
}

.topVoice__name {
  font-size: 2.85rem;
}

.topVoice__name span {
  font-feature-settings: "palt";
  display: block;
  font-size: 2rem;
  font-weight: 400;
  left: -0.5rem;
  margin-top: 1rem;
  position: relative;
}

.topVoice__img {
  margin-top: 1rem;
}

.topVoice__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.topVoice__card:nth-child(1) .topVoice__img {
  max-width: 12.3rem;
}

.topVoice__card:nth-child(2) .topVoice__img {
  left: -1.5rem;
  max-width: 15.1rem;
  position: relative;
}

.topVoice__card:nth-child(3) .topVoice__img {
  max-width: 10.9rem;
}

.topVoice__card:nth-child(4) .topVoice__img {
  max-width: 12.3rem;
}

.topVoice__cont {
  flex: 1;
  margin-left: auto;
  max-width: 22rem;
}

.topVoice__text {
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  line-height: 1.7647058824;
  text-align: justify;
}

.topVoice__text span {
  display: block;
  margin-right: calc(50% - 50vw);
}

/*
 * trainer
 * -------------------------------------------------------------
 */

.trainer {
  background: url(./../images/concept/trainer_bg.webp) no-repeat center/cover;
  padding: 8rem 0 12rem;
}

.trainer__inner {
  max-width: 126.6rem;
}

.trainer__secTtl {
  padding-left: 7rem;
}

.trainer__body {
  align-items: flex-start;
  display: flex;
  gap: 6.5rem;
  margin-top: 6rem;
}

.trainer__prof {
  color: #699e7a;
  flex: 1;
  min-width: 50.3rem;
  padding-top: 1.5rem;
}

.trainer__name {
  font-weight: 700;
}

.trainer__nameEng {
  font-size: 2.4rem;
}

.trainer__nameJa {
  font-size: 3.1rem;
  margin-top: 1rem;
}

.trainer__details {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin-top: 3rem;
}

.trainer__details.--sp {
  display: none;
}

.trainer__detail {
  font-size: 1.7rem;
  line-height: 1.6470588235;
}

.trainer__list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.trainer__sub {
  display: flex;
  gap: 0.1rem;
  padding-left: 1.5rem;
}

.trainer__sub::before {
  content: "└";
}

.trainer__imgWrap {
  height: min(88.6rem, 73.833vw);
  max-width: 54.2rem;
  position: relative;
  width: 50%;
}

.trainer__img {
  overflow: hidden;
  position: absolute;
  width: 100%;
}

.trainer__img.--img1 {
  aspect-ratio: 384/536;
  left: min(7rem, 5.833vw);
  max-width: 38.4rem;
  top: 0;
  width: 32vw;
}

.trainer__img.--img2 {
  aspect-ratio: 344/243;
  bottom: 0;
  left: 0;
  max-width: 34.4rem;
  width: 28.67vw;
}

.trainer__img.--img3 {
  aspect-ratio: 234/323;
  border-radius: 0 7rem 0 0;
  bottom: min(14.7rem, 12.25vw);
  max-width: 23.4rem;
  right: 0;
  width: 19.5vw;
}

.trainer__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

/*
 * u-pc
 * -------------------------------------------------------------
 */

.u-pc {
  display: block;
}

/*
 * u-sp
 * -------------------------------------------------------------
 */

.u-sp {
  display: none;
}

/*
 * u-visually-hidden
 * -------------------------------------------------------------
 */

.u-visually-hidden {
  clip: rect(0 0 0 0) !important;
  border: 0 !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media screen and (min-width: 1025px) {

  a[href^="tel:"] {
    pointer-events: none;
  }

}

@media screen and (max-width: 1100px) {

  html {
    font-size: 0.91vw;
  }

}

@media screen and (max-width: 900px) {

  .header {
    height: 12.6rem;
  }

  .header.--top {
    height: 14rem;
    padding: 0;
  }

  .header__inner {
    gap: 3.2rem;
    padding: 0 4rem;
  }

  .header__logo {
    max-width: 11rem;
  }

  .header__rsv {
    max-width: 20.8rem;
  }

  .header_btn {
    border-radius: 0.8rem;
    font-size: 2.4rem;
    font-weight: 500;
    padding: 1.9rem;
  }

  .l-main {
    padding-top: 12.6rem;
  }

  .l-main.--top {
    padding-top: 14rem;
  }

  .burger {
    display: block;
  }

  .nav {
    -webkit-overflow-scrolling: auto;
    background: #65877d;
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: hidden;
    padding: 15rem 2rem 2rem;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity 0.6s ease, visibility 0s linear 0.6s;
    visibility: hidden;
    width: 100%;
    z-index: 1000;
  }

  .nav__list {
    align-items: center;
    flex-direction: column;
    gap: 5rem;
    height: 100%;
    justify-content: flex-start;
  }

  .nav__link {
    color: #fff;
    font-size: 2.6rem;
    font-weight: 400;
    letter-spacing: 0.07em;
    text-transform: lowercase;
  }

  .nav__link span {
    display: none;
  }

  .nav__pc {
    display: none;
  }

  .nav__sp {
    display: block;
  }

}

@media screen and (max-width: 767px) {

  html {
    font-size: 10px;
  }

  .footer {
    padding: 3rem 0 1.2rem;
  }

  .footer__inner {
    flex-wrap: wrap;
    gap: 2.4rem;
    justify-content: center;
    padding: 0 2rem 0 2.8rem;
  }

  .footer__info {
    order: 1;
    width: 50%;
  }

  .footer__address {
    font-size: 1rem;
  }

  .footer__name {
    font-size: 1.2rem;
  }

  .footer__service {
    margin-top: 1.2rem;
  }

  .footer__location {
    margin-top: 0.9rem;
  }

  .footer__location span {
    display: none;
  }

  .footer__sns {
    gap: 1.4rem;
    margin-top: 1.3rem;
  }

  .footer__sns a {
    width: 2.8rem;
  }

  .footer__nav {
    order: 3;
    padding: 0 0.6rem;
    width: 100%;
  }

  .footer__list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.1rem 0.9rem;
    justify-content: center;
  }

  .footer__link {
    font-size: 1rem;
  }

  .footer__link::before {
    display: none;
  }

  .footer__blog {
    max-width: 18.5rem;
    order: 2;
  }

  .header {
    height: 8.5rem;
  }

  .header.--top {
    height: 8.8rem;
  }

  .header__inner {
    gap: 2rem;
    padding: 0 1.5rem 0 1.8rem;
  }

  .header__logo {
    max-width: 7rem;
  }

  .header__rsv {
    max-width: 13rem;
  }

  .header_btn {
    border-radius: 0.5rem;
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1.2rem;
  }

  .l-inner {
    max-width: 45rem;
  }

  .l-main {
    padding-top: 8.5rem;
  }

  .l-main.--top {
    padding-top: 8.8rem;
  }

  .burger {
    height: 1rem;
    width: 4rem;
  }

  .burger span {
    height: 1px;
  }

  .burger span:nth-child(2) {
    width: 2.9rem;
  }

  .c-btn {
    font-size: 1rem;
  }

  .c-btn::after {
    bottom: -0.8rem;
    height: 1rem;
    width: 2.8rem;
  }

  .c-btn span {
    padding-right: 1.2rem;
  }

  .c-btn.--fslg {
    font-size: 1.2rem;
  }

  .c-btn.--fssm {
    font-size: 1rem;
  }

  .c-floatCta {
    max-width: 11.4rem;
    top: 50.8rem;
  }

  .c-floatCta__btn {
    background: #f0f1f0;
    border-radius: 0.8rem 0 0 0.8rem;
    border-width: 2px;
    height: 5.9rem;
    padding: 1.7rem 0.4rem 1.8rem 0.9rem;
  }

  .c-floatCta__btn.--line {
    margin-top: 0.7rem;
  }

  .c-floatCta__ttl {
    font-size: 1.5rem;
    gap: 0.7rem;
    letter-spacing: 0.1em;
  }

  .c-floatCta__btn.--web .c-floatCta__ttl::before {
    height: 1.5rem;
    margin-top: 0.2rem;
    width: 1.9rem;
  }

  .c-floatCta__btn.--line .c-floatCta__ttl::before {
    height: 1.9rem;
    margin-top: 0.2rem;
    width: 1.9rem;
  }

  .c-floatCta__text {
    display: none;
  }

  .c-problems {
    background: url(./../images/common/sp/problems_bg.webp) no-repeat top/cover;
    padding: 4.5rem 0;
  }

  .c-problems__secTtl {
    font-size: 1.5rem;
    font-weight: 500;
  }

  .c-problems__lists {
    gap: 1.4rem;
    grid-template-columns: repeat(1, 1fr);
    margin: 3.2rem auto 0;
    width: -moz-fit-content;
    width: fit-content;
  }

  .c-problems__list {
    gap: 1.4rem;
  }

  .c-problems__item {
    gap: 0.5rem;
  }

  .c-problems__text {
    border-radius: 0.5rem;
    font-size: 1rem;
    padding: 1.1rem 1rem 1rem 1.7rem;
    text-align: left;
  }

  .c-problems__item span {
    font-size: 1rem;
  }

  .c-problems__item span::before {
    height: 3.9rem;
    width: 3.9rem;
  }

  .c-secTtl {
    font-weight: 500;
  }

  .c-secTtl__eng {
    font-size: 1.6rem;
  }

  .c-secTtl__ja {
    font-size: 1.5rem;
    margin-top: 1.6rem;
  }

  .c-trialCta {
    padding: 6rem 0;
  }

  .c-trialCta__secTtl {
    font-size: 1.7rem;
    font-weight: 500;
  }

  .c-trialCta__text {
    font-size: 1.2rem;
    line-height: 1.6666666667;
    margin-top: 2.2rem;
  }

  .c-trialCta__btns {
    gap: 2.7rem;
    margin-top: 2.6rem;
  }

  .c-trialCta__btn {
    border-radius: 0.5rem;
    font-size: 1.3rem;
    height: 4.5rem;
    max-width: 12.5rem;
  }

  .c-trialCta__btn.--web {
    gap: 1rem;
    padding-right: 0.5rem;
  }

  .c-trialCta__btn.--web::before {
    height: 1.8rem;
    width: 2.3rem;
  }

  .c-trialCta__btn.--line {
    gap: 1rem;
  }

  .c-trialCta__btn.--line::before {
    height: 2.3rem;
    width: 2.3rem;
  }

  .c-trialCta__btn.--line.--sp {
    display: flex;
  }

  .c-trialCta__btn.--line.--pc {
    display: none;
  }

  .nav__list {
    gap: 3.3rem;
  }

  .nav__link {
    font-size: 1.7rem;
  }

  .about {
    padding: 4rem 0 6.8rem;
    position: relative;
  }

  .about::before {
    background: url(./../images/top/sp/about_line_obj.webp) no-repeat center/100% 100%;
    content: "";
    display: block;
    height: 100%;
    left: 44.6%;
    max-width: 11rem;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
  }

  .about__inner {
    padding: 0 2.3rem;
  }

  .about__lead {
    display: none;
  }

  .about__secTtlSub {
    font-size: 1.5rem;
  }

  .about__secTtlMain {
    font-size: 1.5rem;
    line-height: 1.72;
  }

  .about__items {
    gap: 6.4rem;
    margin-top: 6.8rem;
  }

  .about__item {
    flex-direction: column;
    gap: 2.4rem;
  }

  .about__item:nth-child(2n-1) {
    gap: 2.4rem;
  }

  .about__item:nth-child(2n) {
    flex-direction: column;
    gap: 2.4rem;
  }

  .about__imgWrap {
    width: 80.8vw;
  }

  .about__item:nth-child(2n) .about__imgWrap {
    margin-left: auto;
  }

  .about__num {
    font-size: 6.7rem;
    font-weight: 500;
  }

  .about__item:nth-child(2n-1) .about__num {
    left: 3.4rem;
    right: auto;
    top: -5rem;
  }

  .about__item:nth-child(2n) .about__num {
    left: 3.9rem;
  }

  .about__img {
    aspect-ratio: 303/185;
    width: 100%;
  }

  .about__item:nth-child(2n-1) .about__img {
    border-radius: 0 5rem 0 0;
  }

  .about__item:nth-child(2n) .about__img {
    border-radius: 5rem 0 0 0;
  }

  .about__details {
    max-width: 29.8rem;
    padding-top: 0;
  }

  .about__item:nth-child(1) .about__details {
    padding-top: 0;
  }

  .about__item:nth-child(2n-1) .about__details {
    margin: 0;
    max-width: 29.8rem;
  }

  .about__item:nth-child(2n) .about__details {
    margin-left: auto;
  }

  .about__ttl {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .about__ttl.--mr {
    margin-right: calc(50% - 50vw);
  }

  .about__text {
    font-size: 1.2rem;
    line-height: 1.6666666667;
    margin-top: 1.5rem;
    max-width: 28rem;
  }

  .about__btn {
    display: none;
  }

  .about__text.--pc {
    display: none;
  }

  .about__text.--sp {
    display: block;
  }

  .blog {
    padding: 4.5rem 0 4rem;
  }

  .blog__inner {
    padding: 0 4rem;
  }

  .blog__list {
    gap: 2.6rem;
    grid-template-columns: repeat(1, 1fr);
  }

  .blog__empty {
    font-size: 1.4rem;
  }

  .blogCard__img {
    aspect-ratio: 302/190;
  }

  .blogCard__body {
    padding: 3.5rem 2.2rem;
  }

  .blogCard__ttl {
    font-size: 1.3rem;
    max-width: 17rem;
  }

  .blogCard__date {
    font-size: 1.2rem;
    margin-top: 0.8rem;
  }

  .concept {
    padding: 6.6rem 0 5rem;
  }

  .concept__inner {
    padding: 0 3.2rem;
  }

  .concept__secTtlEng {
    font-size: 2.7rem;
  }

  .concept__body {
    margin-top: 2.5rem;
  }

  .concept__blockInner.--blockInner1 {
    display: block;
    max-width: 100%;
  }

  .concept__cont.--cont1 {
    padding: 0;
    text-align: center;
  }

  .concept__text {
    font-size: 1.2rem;
    line-height: 3.3;
  }

  .concept__img-sp {
    margin: 3rem auto 0;
  }

  .homeBlog__head {
    font-size: 1rem;
    max-width: 71%;
    min-width: 14.2rem;
    padding-bottom: 0.5rem;
  }

  .homeBlog__list {
    gap: 1rem;
    margin-top: 1.1rem;
  }

  .homeBlog__link {
    gap: 0.6rem;
  }

  .homeBlog__img {
    aspect-ratio: 161/101;
    max-width: 9rem;
    min-width: 7rem;
  }

  .homeBlog__content {
    flex: 1;
  }

  .homeBlog__ttl {
    font-size: 1rem;
    line-height: 1.33;
  }

  .menu {
    background: url(./../images/top/sp/menu_bg.webp) no-repeat center/cover;
    padding: 4.8rem 0 4.3rem;
  }

  .menu__inner {
    padding: 0 1.6rem;
  }

  .menu__secTtlSub {
    font-size: 1.1rem;
  }

  .menu__secTtlMain {
    font-size: 1.9rem;
    letter-spacing: 0.1em;
    margin-top: 1.2rem;
  }

  .menuOption {
    margin-top: 6rem;
  }

  .menuOption__headTtl {
    font-size: 1.6rem;
  }

  .menuOption__lead {
    font-size: 1.2rem;
    line-height: 1.47;
    margin-top: 1.5rem;
  }

  .menuOption__items {
    gap: 2.8rem;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 2.4rem;
    max-width: 91%;
  }

  .menuOption__item {
    align-items: center;
    display: flex;
    gap: 2.5rem;
  }

  .menuOption__img {
    border-radius: 0.5rem;
    flex: 1;
    max-width: 50%;
  }

  .menuOption__details {
    flex: 2;
    max-width: -moz-fit-content;
    max-width: fit-content;
    min-width: 16rem;
    padding: 0;
  }

  .menuOption__ttl {
    font-size: 1.4rem;
  }

  .menuOption__text {
    font-size: 1.2rem;
    line-height: 1.47;
    margin-top: 1.5rem;
  }

  .pageFv {
    background: url(./../images/common/sp/page_fv.webp) no-repeat center/cover;
    height: 23rem;
  }

  .pageFv__inner {
    gap: 1rem;
    padding: 0 2rem;
  }

  .pageFv__ttlSub {
    font-size: 1.2rem;
  }

  .pageFv__ttlMain {
    font-size: 2.7rem;
    font-weight: 400;
    gap: 3rem;
    letter-spacing: 0.1em;
  }

  .pageFv__ttlMain::before,
  .pageFv__ttlMain::after {
    height: 1px;
  }

  .pageFv__ttlMain-pc {
    display: none;
  }

  .pageFv__ttlMain-sp {
    display: flex;
  }

  .pageFv__ttlSub-pc {
    display: none;
  }

  .pageFv__ttlSub-sp {
    display: flex;
  }

  .plan.--monthly {
    margin-top: 2.9rem;
  }

  .plan.--unlimited {
    margin-top: 4.5rem;
  }

  .plan__ttlMain {
    font-size: 1.6rem;
  }

  .plan__ttlMain.--medium {
    font-weight: 700;
  }

  .plan__ttlSub {
    font-size: 1.3rem;
    margin-top: 1.2rem;
  }

  .plan__lead {
    font-size: 1.2rem;
    line-height: 1.58;
    margin-top: 2.3rem;
  }

  .plan.--unlimited .plan__lead {
    font-size: 1.2rem;
    line-height: 1.58;
    margin-top: 1.5rem;
  }

  .plan.--unlimited .plan__lead span {
    display: none;
  }

  .plan__tags {
    gap: 0.9rem 1.5rem;
    margin-top: 1.8rem;
  }

  .plan__tag {
    font-size: 1.1rem;
  }

  .plan__block {
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.8rem;
  }

  .plan__block.--light {
    margin-top: 2.8rem;
  }

  .plan__ttl {
    font-size: 1.6rem;
    font-weight: 700;
  }

  .plan__notes.--pc {
    display: none;
  }

  .plan__right {
    width: 100%;
  }

  .plan__taxNote {
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 0;
  }

  .planTable__rowHead-sp {
    display: block;
  }

  .planTable {
    border-width: 1px;
  }

  .planTable__th {
    border-width: 1px;
    font-size: 1.5rem;
    height: 4rem;
  }

  .planTable__th.--time {
    width: 50%;
  }

  .planTable__rowHead {
    border-width: 1px;
    font-size: 1.5rem;
    height: 7.2rem;
  }

  .planTable__cell {
    font-size: 1.6rem;
    gap: 1.5rem;
    height: 7.2rem;
  }

  .planTable__cellNote {
    bottom: 0.5rem;
    font-size: 0.9rem;
    right: 1.6rem;
  }

  .planTable__price {
    padding-left: 0;
  }

  .planTable__badge {
    border-radius: 0.5rem;
    font-size: 1rem;
    padding: 0.5rem 0.7rem 0.4rem 0.8rem;
  }

  .planTable__badge::before {
    height: 1rem;
    left: -0.5rem;
    width: 1.1rem;
  }

  .privacy {
    padding: 2.3rem 0 3rem;
  }

  .privacy__inner {
    padding: 0 2rem;
  }

  .privacy__pageTtl {
    font-size: 1.3rem;
  }

  .privacy__lead {
    font-size: 1rem;
    letter-spacing: 0.03em;
    line-height: 1.4117647059;
    margin-top: 1.5rem;
    padding: 0;
  }

  .privacy__items {
    gap: 1.3rem;
    margin-top: 1.3rem;
  }

  .privacy__item,
  .privacy__company {
    font-size: 1rem;
    line-height: 1.4117647059;
  }

  .single__head {
    background: url(./../images/common/sp/page_fv.webp) no-repeat center/cover;
    height: 23rem;
  }

  .single__ttl {
    font-size: 2rem;
    line-height: 1.2;
    max-width: 17.8rem;
  }

  .single__date {
    font-size: 1.6rem;
    margin-top: 2.8rem;
  }

  .single__body {
    padding: 4.5rem 4rem 0;
  }

  .single__img {
    height: 19rem;
  }

  .single__cont {
    font-size: 1.3rem;
    line-height: 2.5;
    padding: 0 2.5rem;
  }

  .single__cont figure {
    margin-bottom: 1.5rem;
  }

  .single__nav {
    gap: 4rem;
    max-width: 45rem;
    padding: 5.5rem 1.9rem 4.2rem;
  }

  .single__navBtn {
    font-size: 1.1rem;
    height: 3.9rem;
    max-width: 8.8rem;
  }

  .single__navBtn span {
    gap: 0.5rem;
  }

  .topAbout {
    padding: 3rem 0 7.2rem;
  }

  .topAbout::before {
    background: url(./../images/top/sp/about_line_obj.webp) no-repeat center/100% 100%;
    left: 44.6%;
    max-width: 10.1rem;
  }

  .topAbout__secTtl {
    text-align: left;
  }

  .topAbout__items {
    gap: 6rem;
  }

  .topAbout__btn {
    margin-right: 2.5rem;
    margin-top: 3rem;
  }

  .topAccess {
    padding: 3rem 0 3.5rem;
  }

  .topAccess__inner {
    padding: 0 2rem;
  }

  .topAccess__lead {
    color: #699e79;
    font-size: 1.2rem;
    font-weight: 400;
    margin-top: 2rem;
  }

  .topAccess__table {
    margin-top: 2rem;
  }

  .topAccess__item {
    gap: 1.7rem;
    padding: 1.2rem 0;
  }

  .topAccess__item dt {
    font-size: 1.1rem;
    width: 6rem;
  }

  .topAccess__item dd {
    font-size: 1.1rem;
  }

  .topAccess__map {
    height: 25.7rem;
    margin-top: 1.2rem;
  }

  .topAccess__service {
    margin-top: 2.3rem;
  }

  .topAccess__serviceTtl {
    display: none;
  }

  .topAccess__serviceList {
    gap: 0.6rem;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 0;
  }

  .topAccess__serviceItem {
    aspect-ratio: 80/100;
    border-radius: 0.3rem;
  }

  .topAccess__serviceItem p {
    font-size: 1rem;
    letter-spacing: 0;
  }

  .topAccess__serviceItem:nth-child(1) img {
    max-width: 2.7rem;
  }

  .topAccess__serviceItem:nth-child(3) img {
    max-width: 4.4rem;
  }

  .topAccess__serviceItem:nth-child(4) img {
    max-width: 6.2rem;
  }

  .topAccess__serviceItem:nth-child(6),
  .topAccess__serviceItem:nth-child(7),
  .topAccess__serviceItem:nth-child(9),
  .topAccess__serviceItem:nth-child(10),
  .topAccess__serviceItem:nth-child(11),
  .topAccess__serviceItem:nth-child(12),
  .topAccess__serviceItem:nth-child(13),
  .topAccess__serviceItem:nth-child(14) {
    display: none;
  }

  .topAccess__serviceItem:nth-child(1) {
    order: 1;
  }

  .topAccess__serviceItem:nth-child(2) {
    order: 6;
  }

  .topAccess__serviceItem:nth-child(3) {
    order: 2;
  }

  .topAccess__serviceItem:nth-child(4) {
    order: 3;
  }

  .topAccess__serviceItem:nth-child(5) {
    order: 4;
  }

  .topAccess__serviceItem:nth-child(8) {
    order: 5;
  }

  .topAccess__serviceItem:nth-child(2) {
    order: 6;
  }

  .topAccess__serviceItem:nth-child(15) {
    order: 7;
  }

  .topAccess__serviceItem:nth-child(16) {
    order: 8;
  }

  .topBa {
    padding-top: 3rem;
  }

  .topBa__inner {
    padding: 0 3rem;
  }

  .topBa__cards {
    gap: 1.1rem;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 2.3rem;
  }

  .topBa__card {
    border-width: 1px;
    display: flex;
  }

  .topBa__card::after {
    display: none;
  }

  .topBa__cardHead {
    flex: 1;
    flex-direction: column;
    font-size: 1.2rem;
    font-weight: 500;
    gap: 0.6rem;
    letter-spacing: 0.03em;
    max-width: 9.3rem;
    min-width: 6.3rem;
    padding: 1.8rem 0.5rem 2.9rem;
  }

  .topBa__cardTag {
    border-radius: 0.5rem;
    height: 2.4rem;
    width: 5rem;
  }

  .topBa__cardMeta {
    line-height: 2;
    text-align: center;
  }

  .topBa__cardBody {
    grid-gap: 1.3rem;
    display: grid;
    flex: 2;
    gap: 1.3rem;
    grid-template-columns: repeat(3, 1fr);
    padding: 0.6rem 1.2rem 1rem;
  }

  .topBa__cardItem {
    margin-left: auto;
    margin-right: auto;
    max-width: 6.9rem;
  }

  .topBa__cardItem+.topBa__cardItem {
    margin-top: 0;
  }

  .topBa__cardLabel {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding: 0.4rem 0;
  }

  .topBa__cardRow {
    display: flex;
    flex-direction: column;
  }

  .topBa__cardVal--before {
    margin-bottom: 0.7rem;
  }

  .topBa__cardNum {
    font-size: 1.5rem;
  }

  .topBa__cardUnit {
    font-size: 1.1rem;
  }

  .topBa__cardDiff {
    -webkit-clip-path: polygon(0% 0%, 100% 0, 100% 65%, 50% 100%, 0 65%);
    clip-path: polygon(0% 0%, 100% 0, 100% 65%, 50% 100%, 0 65%);
    font-size: 1.2rem;
    height: 2.4rem;
    margin: 0 auto 0.9rem;
    text-align: center;
    width: 6.9rem;
  }

  .topBa__cardDiffText small {
    font-size: 1.2rem;
  }

  .topBa__note {
    display: none;
    font-size: 1rem;
    line-height: 1.65;
    margin-top: 1rem;
    right: 0;
  }

  .topCampaign {
    background: url(./../images/top/sp/campaign_bg.webp) no-repeat top/cover;
    padding: 1.7rem 0;
  }

  .topCampaign__inner {
    padding: 0 1.5rem;
  }

  .topCampaign__box {
    background: url(./../images/top/sp/campaign_box_bg.webp) no-repeat top/cover;
    border-radius: 1rem;
    border-width: 1px;
    padding: 0.8rem 0.8rem 1rem 0.8rem;
  }

  .topCampaign__label {
    border-radius: 0.4rem;
    font-size: 1rem;
    padding: 0.5rem 1.8rem;
  }

  .topCampaign__head {
    font-size: 1.5rem;
    margin-top: 0.7rem;
  }

  .topCampaign_items {
    gap: 0.8rem;
    margin-top: 0.8rem;
  }

  .topCampaign__item {
    border-radius: 0.5rem;
    border-width: 1px;
    padding: 1.3rem 0.5rem 0.7rem 0.4rem;
  }

  .topCampaign__item:nth-child(2) {
    padding: 1.3rem 0.5rem 0.7rem 0.4rem;
  }

  .topCampaign__ttl {
    font-size: 1.4rem;
    letter-spacing: 0.03em;
  }

  .topCampaign__ttl.--sm {
    font-size: 1.1rem;
    letter-spacing: 0;
    margin: 0 calc(50% - 50vw);
    text-align: center;
  }

  .topCampaign__details {
    margin-top: 0.8rem;
  }

  .topConcept {
    padding: 3rem 0 2.7rem;
  }

  .topConcept__inner {
    flex-direction: column;
    gap: 2.2rem;
    padding: 0 3.5rem;
  }

  .topConcept__secTtlMain {
    font-size: 1.6rem;
  }

  .topConcept__secTtlSub {
    font-size: 1.1rem;
    letter-spacing: 0.04em;
    margin-top: 1.2rem;
  }

  .topConcept__body {
    width: 100%;
  }

  .topConcept__text {
    font-size: 1rem;
    letter-spacing: 0.03em;
    line-height: 2.53;
  }

  .topConcept__text span {
    display: none;
  }

  .topConcept__btn {
    margin-top: 2rem;
  }

  .topFlow {
    padding: 3.5rem 0 3.4rem;
  }

  .topFlow__inner {
    padding: 0 3rem;
  }

  .topFlow__lead {
    font-size: 1.1rem;
    line-height: 1.76;
    margin-top: 1.5rem;
  }

  .topFlow__list {
    gap: 2.7rem;
    margin-top: 3rem;
  }

  .topFlow__item {
    align-items: flex-start;
    flex-direction: column;
    gap: 2.5rem;
  }

  .topFlow__item:not(:last-child)::after {
    display: none;
  }

  .topFlow__img {
    border-radius: 0.5rem;
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 1.3rem);
    order: 2;
  }

  .topFlow__details {
    display: contents;
  }

  .topFlow__ttl {
    align-items: center;
    display: flex;
    font-size: 1.5rem;
    gap: 1.2rem;
    order: 1;
  }

  .topFlow__text {
    font-size: 1.2rem;
    line-height: 1.6666666667;
    margin-right: 0;
    margin-top: 0;
    order: 3;
  }

  .topFlow__text span {
    display: none;
  }

  .topFlow__num.--pc {
    display: none;
  }

  .topFlow__num.--sp {
    align-items: center;
    background: #82b491;
    border-radius: 50%;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 1.6rem;
    font-weight: 500;
    gap: 0.1rem;
    height: 4.9rem;
    justify-content: center;
    padding-top: 0.4rem;
    width: 4.9rem;
  }

  .topFv {
    padding-bottom: 3.5rem;
  }

  .topFv__inner {
    padding: 0 0 0 2.1rem;
  }

  .topFv__cont {
    bottom: 8.67vw;
    left: 5.33vw;
    top: auto;
  }

  .topFv__ttl {
    font-size: 5.867vw;
    line-height: 1.795;
  }

  .topFv__lead {
    font-size: 5.333vw;
    line-height: 1.675;
  }

  .topFv__ttl .sp-color {
    color: #fff;
  }

  .topFv__img {
    border-radius: 1.4rem;
    max-width: 61rem;
    min-width: 30.5rem;
    width: 81.33%;
  }

  .topService__inner {
    padding: 0 2.3rem;
  }

  .topService__secTtlEng {
    display: none;
  }

  .topService__secTtlMain {
    font-size: 1.6rem;
    letter-spacing: 0.02em;
    line-height: 1.66;
    margin-top: 0;
  }

  .topService__secTtlSub {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-top: 1.5rem;
  }

  .topService__items {
    gap: 3.1rem;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1.9rem;
  }

  .topService__img {
    aspect-ratio: 274/176;
    border-radius: 1.5rem;
    max-width: 27.4rem;
  }

  .topService__details {
    background: none;
    border-radius: 0;
    padding: 1.5rem 0 0 1rem;
  }

  .topService__ttl {
    font-size: 1.6rem;
  }

  .topService__text {
    font-size: 1.4rem;
    line-height: 1.6;
    margin-top: 1rem;
    text-align: left;
  }

  .topService__item:last-child .topService__text {
    max-width: 31rem;
  }

  .topService__text.--pc {
    display: none;
  }

  .topService__text.--sp {
    display: block;
  }

  .topTrainer {
    padding: 3rem 0 2rem;
  }

  .topTrainer__inner {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 3rem;
  }

  .topTrainer__img {
    border-radius: 0;
    margin-top: 2.8rem;
  }

  .topTrainer__prof {
    padding-top: 0;
  }

  .topTrainer__name {
    font-weight: 500;
  }

  .topTrainer__nameEng {
    font-size: 1rem;
  }

  .topTrainer__nameJa {
    font-size: 1.4rem;
    margin-top: 0.8rem;
  }

  .topTrainer__details {
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .topTrainer__detail {
    font-size: 1rem;
    line-height: 1.69;
  }

  .topTrainer__list {
    gap: 1.5rem;
  }

  .topTrainer__sub {
    padding-left: 1rem;
  }

  .topTrainer__sub.--mr {
    margin-right: calc(50% - 50vw);
  }

  .topTrainer__btn {
    margin-top: 2rem;
    padding-left: 0;
  }

  .topVoice {
    padding: 3.8rem 0 3.3rem;
  }

  .topVoice__inner {
    padding: 0 2.3rem;
  }

  .topVoice__cards {
    gap: 1.5rem;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 3rem;
  }

  .topVoice__card {
    border-radius: 1rem;
    border-width: 1px;
    padding: 1.1rem 1rem 1.5rem;
  }

  .topVoice__meta {
    left: 0.4rem;
    position: relative;
    top: 0.2rem;
  }

  .topVoice__head {
    border-radius: 0.5rem;
    left: -2.2rem;
    padding: 0.4rem 1rem 0.4rem 0.6rem;
    text-align: center;
  }

  .topVoice__head::after {
    bottom: -0.3rem;
    height: 1.1rem;
    left: 0.3rem;
    width: 0.9rem;
  }

  .topVoice__name {
    font-size: 1.4rem;
  }

  .topVoice__name span {
    font-size: 1.2rem;
    left: 0;
    margin-top: 0.2rem;
  }

  .topVoice__img {
    margin-top: 0.6rem;
  }

  .topVoice__card:nth-child(1) .topVoice__img {
    max-width: 5.6rem;
  }

  .topVoice__card:nth-child(2) .topVoice__img {
    max-width: 6.8rem;
  }

  .topVoice__card:nth-child(3) .topVoice__img {
    max-width: 4.8rem;
  }

  .topVoice__card:nth-child(4) .topVoice__img {
    max-width: 5.9rem;
  }

  .topVoice__cont {
    margin: 0;
    max-width: 100%;
  }

  .topVoice__text {
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    line-height: 1.7;
    padding-top: 0.4rem;
  }

  .topVoice__text span {
    display: inline;
    margin-right: 0;
  }

  .trainer {
    padding: 4rem 0;
  }

  .trainer__inner {
    padding: 0;
  }

  .trainer__secTtl {
    padding-left: 0;
    text-align: center;
  }

  .trainer__secTtlEng {
    font-size: 1.7rem;
  }

  .trainer__body {
    flex-direction: column;
    gap: 3.7rem;
    margin-top: 2rem;
  }

  .trainer__prof {
    display: contents;
  }

  .trainer__name {
    font-weight: 500;
    margin-left: auto;
    margin-right: auto;
    order: 1;
    text-align: center;
  }

  .trainer__nameEng {
    font-size: 1.3rem;
  }

  .trainer__nameJa {
    font-size: 1.7rem;
    margin-top: 0.8rem;
  }

  .trainer__details {
    gap: 2.4rem;
    margin-top: 0;
    order: 3;
    padding: 0 2rem;
  }

  .trainer__details.--pc {
    display: none;
  }

  .trainer__details.--sp {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
  }

  .trainer__detail {
    font-size: 1.1rem;
    line-height: 1.66;
  }

  .trainer__ttl {
    margin-bottom: 0.5rem;
  }

  .trainer__list {
    gap: 1.8rem;
  }

  .trainer__sub {
    padding-left: 0;
  }

  .trainer__sub::before {
    display: none;
  }

  .trainer__imgWrap {
    height: 44.3rem;
    height: 53.2rem;
    max-width: 27.1rem;
    max-width: 32.5rem;
    order: 2;
    width: 100%;
  }

  .trainer__img.--img1 {
    left: 3.5rem;
    max-width: 19.2rem;
    max-width: 23rem;
    width: 100%;
  }

  .trainer__img.--img2 {
    max-width: 17.2rem;
    max-width: 20.6rem;
    width: 100%;
  }

  .trainer__img.--img3 {
    border-radius: 0 3.5rem 0 0;
    bottom: 7.4rem;
    bottom: 8.9rem;
    max-width: 11.7rem;
    max-width: 14rem;
    width: 100%;
  }

  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }

}

@media screen and (max-width: 430px) {

  .trainer__imgWrap {
    height: 44.3rem;
    max-width: 27.1rem;
  }

  .trainer__img.--img1 {
    max-width: 19.2rem;
  }

  .trainer__img.--img2 {
    max-width: 17.2rem;
  }

  .trainer__img.--img3 {
    bottom: 7.4rem;
    max-width: 11.7rem;
  }

}

@media screen and (max-width: 375px) {

  html {
    font-size: 2.67vw;
  }

}


/*# sourceMappingURL=style.css.map */