@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
/*
  ブレイクポイント
  PC:   min-width: 1024px 
  @media screen and (min-width: 64em)
  TAB:  max-width: 1023px
  @media screen and (min-width: 48em) and (max-width: 63.9375em)
  SP:   max-width: 767px
  @media screen and (max-width: 47.9375em))
*/
/* constant */
:root {
  --main-color: #ECAF00;
  --sub-color01: #FFD443;
  --font-color-text: #3C3C3C;
  --bg-color: #fff;
  --bg-highlight: #ECF0F3;
  --font-family: "Noto Sans JP", sans-serif;
  --font-family-en: "Noto Sans", sans-serif;
  --container-width: 1100px;
}

/* initialize */
html, body, div, span,
object, iframe,
h1, h2, h3, h4, h5, h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
}

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

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main {
  display: block;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
  color: inherit;
  text-decoration: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/*layout*/
html {
  font-size: 16px;
  height: 100%;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

/* common */
body {
  font-family: var(--font-family);
  color: var(--font-color-text);
  background: var(--bg-color);
  letter-spacing: 0.05rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
  font-size: clamp(0.875rem, 0.815rem + 0.27vw, 1rem);
}

main {
  overflow: hidden;
  padding-top: 90px;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 60px;
  }
}

a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}

.container {
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding: 0 10px;
  max-width: var(--container-width);
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}

section {
  position: relative;
  padding: 60px 0;
  scroll-margin-top: 90px;
}
@media screen and (max-width: 767px) {
  section {
    padding: 40px 0;
    scroll-margin-top: 60px;
  }
}

.bg-highlight {
  background-color: var(--bg-highlight);
}

.marker-orange {
  background: linear-gradient(transparent 70%, var(--sub-color01) 70%);
  padding: 0 5px;
  font-weight: 700;
}

.text-orange {
  color: var(--main-color);
}

.section__title h2 {
  font-size: clamp(1.25rem, 0.735rem + 2.35vw, 2.5rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .section__title h2 {
    margin-bottom: 20px;
  }
}

.title__en {
  font-family: var(--font-family-en);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.5px;
  font-size: clamp(1rem, 0.521rem + 2.19vw, 2rem);
  transform: scaleY(1.2);
  color: var(--main-color);
  margin-bottom: 10px;
  text-align: center;
}

.cta-button a img {
  width: 472px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .cta-button a img {
    width: 327px;
  }
}

/* スマホ（768px以下）で非表示：PCだけ表示 */
.pc-only {
  display: block !important;
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}
/* PC（769px以上）で非表示：SPだけ表示 */
.sp-only {
  display: none !important;
}

@media screen and (max-width: 767px) {
  .sp-only {
    display: block !important;
  }
}
/* header */
header {
  height: 90px;
  background-color: #fff;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: calc(100% - 80px);
}
header .container .logo a {
  display: block;
}
header .container .logo a img {
  height: auto;
  width: 46px;
}
header .container .sitename__sp {
  display: none;
}
header .container nav .site-gnav {
  display: flex;
  align-items: center;
  gap: 12px;
}
header .container nav .site-gnav a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0;
  font-size: 14px;
}
header .container nav .site-gnav li:last-child {
  margin-left: 12px;
}
header .container nav .contact-button a {
  color: #fff;
  background-color: #06C755;
  padding: 10px 33px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 4px;
}
header .container nav .contact-button a:hover {
  text-decoration: none;
}
header + #nav-menu {
  display: none;
}
header #hamburger {
  display: none;
}

@media screen and (max-width: 1120px) {
  header {
    height: 60px;
  }
  header .container {
    max-width: 100%;
    padding: 0 0 0 10px;
  }
  header .container .logo a img {
    width: 33px;
  }
  header .container .sitename__sp {
    display: block;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.1;
    margin-left: 11px;
    flex: 1;
  }
  header #hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 5px;
    font-weight: 500;
    font-size: 8px;
    width: 60px;
    height: 100%;
    padding: 8px 6px;
  }
  header #hamburger img {
    padding: 3px 0;
  }
  header nav.nav {
    display: none;
  }
  header + #nav-menu {
    display: block;
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100vw;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 7px 8px rgba(0, 0, 0, 0.1);
    padding: 50px 0;
    transition: all 0.5s;
    height: 100vh;
    overflow-y: auto;
  }
  header + #nav-menu #close {
    position: absolute;
    top: 20px;
    right: 20px;
  }
  header + #nav-menu.active {
    top: 0;
  }
  header + #nav-menu .site-gnav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 0 40px;
    margin-bottom: 10px;
  }
  header + #nav-menu .site-gnav li {
    border-bottom: 1px solid #CBCBCB;
    width: 100%;
    position: relative;
    font-weight: 500;
  }
  header + #nav-menu .site-gnav li:last-child {
    border-bottom: none;
  }
  header + #nav-menu .site-gnav li a {
    padding: 12px 0;
    width: 100%;
    display: block;
    position: relative;
  }
  header + #nav-menu .site-gnav li a::after {
    content: "";
    width: 5px;
    height: 9px;
    background-image: url("img/icon_arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    transition: 0.3s;
    z-index: 2;
  }
  header + #nav-menu .button-wrapper a {
    max-width: 295px;
    margin: 0 auto;
    display: block;
  }
  header + #nav-menu .button-wrapper a.tel-button {
    background: #4A4A4A;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 16px;
    border-radius: 30px;
    padding: 16px;
    width: 100%;
    margin-top: 16px;
  }
}
/* footer */
.fixed-button {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: end;
  background: #fff;
}
.fixed-button img.sp-only {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .fixed-button a {
    width: 50%;
  }
  .fixed-button a img {
    max-width: auto;
    width: 100%;
  }
}

#footer {
  background: #555555;
  color: #fff;
  padding-top: 35px;
}
#footer .footer__logo {
  background: #fff;
  width: 120px;
  height: 120px;
  padding: 10px;
  text-align: center;
  margin-bottom: 40px;
}
#footer .footer__logo img {
  height: 100%;
}
#footer .footer__logo p {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  #footer .footer__logo {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }
}
#footer .footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 50px;
  margin-bottom: 40px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #footer .footer__inner {
    flex-direction: column;
    gap: 0;
    margin-bottom: 20px;
  }
}
#footer .footer__inner .footer__info {
  flex: 1;
}
#footer .footer__inner .footer__info table th {
  width: 100px;
  text-align: left;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}
#footer .footer__inner .footer__info table td {
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  #footer .footer__inner .footer__info {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    width: 100%;
  }
  #footer .footer__inner .footer__info table th {
    width: 100%;
    display: block;
  }
  #footer .footer__inner .footer__info table td {
    width: 100%;
    display: block;
  }
}
#footer .footer__inner .footer__menu ul li {
  margin-bottom: 17px;
}
#footer .footer__inner .footer__menu ul li a {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
#footer .footer__inner .footer__menu ul li .icon-arrow {
  display: block;
  width: 8px;
  height: 16px;
  background: #fff;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
#footer .footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #footer .footer__bottom {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
#footer .footer__bottom .footer__cta a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 26px 50px;
  border-radius: 40px;
  font-size: clamp(1rem, 0.88rem + 0.55vw, 1.25rem);
  font-weight: 700;
  color: #555555;
  letter-spacing: 0;
}
#footer .footer__bottom .footer__cta a img {
  width: 33px;
  height: 33px;
}
#footer .footer__bottom .footer__cta a:hover {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  #footer .footer__bottom .footer__cta a {
    padding: 26px 40px;
  }
}
#footer .footer__bottom .footer__sns ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
#footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0 110px;
  font-size: clamp(0.625rem, 0.565rem + 0.27vw, 0.75rem);
  text-align: right;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #footer .copyright {
    text-align: center;
  }
}

.fv {
  background: url("img/fv_bg.webp") no-repeat left bottom/cover;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
  height: 620px;
}
@media screen and (min-width: 1500px) {
  .fv {
    height: calc(100vh - 210px);
  }
}
@media screen and (max-width: 767px) {
  .fv {
    flex-direction: column;
    height: auto;
  }
}
.fv .fv-textwrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0;
}
.fv .fv-textwrapper .fv-text__title {
  margin-bottom: 10px;
}
.fv .fv-textwrapper .fv-text__title .fv-text__title__text {
  font-size: clamp(1rem, 0.76rem + 1.1vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0;
}
.fv .fv-textwrapper .fv-text__catch {
  font-size: 58px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
  display: flex;
  background: url("img/fv_catch_bg.webp") no-repeat bottom right/60% auto;
  padding-bottom: 20px;
}
.fv .fv-textwrapper .fv-text__catch span {
  position: relative;
  display: inline-block;
}
.fv .fv-textwrapper .fv-text__catch span::after {
  content: "●";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: var(--main-color);
}
.fv .fv-textwrapper .fv-text__bg-orange {
  background-color: var(--main-color);
  color: #fff;
  padding: 5px 6%;
  font-size: clamp(1.25rem, 1.01rem + 1.1vw, 1.75rem);
  font-weight: 700;
  border-radius: 4px;
}
.fv .fv-textwrapper .fv-text__feature-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.fv .fv-textwrapper .fv-button img {
  display: block;
  margin: 0 auto;
}
.fv .fv-text__access {
  font-size: clamp(0.625rem, 0.316rem + 1.41vw, 1.375rem);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .fv .fv-text__access {
    text-align: center;
    padding: 4px;
  }
}
.fv .fv-img__wrapper {
  width: 45%;
  height: 100%;
  background: url("img/fv_pc.webp") no-repeat center left/cover;
}
.fv .fv-img__mark {
  position: absolute;
  right: 40px;
  bottom: 30px;
  width: 200px;
  height: 185px;
  background: url("img/fv_mark.svg") no-repeat center center/contain;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.fv .fv-img__mark p {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}
.fv .fv-img__mark .text-orange {
  font-size: 24px;
  font-weight: 900;
}
.fv .fv-img__mark p:last-child {
  font-size: 12px;
}

.ctaSec {
  background: url("img/cta_bg_pc.webp") no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .ctaSec {
    background: url("img/cta_bg_sp.webp") no-repeat center center/cover;
  }
}
.ctaSec .ctaSec__inner {
  border-radius: 13px;
  background: #fff;
  margin-bottom: 40px;
}
.ctaSec .ctaSec__inner .ctaSec__counter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: var(--main-color);
  color: #fff;
  font-size: clamp(0.75rem, 0.151rem + 2.74vw, 2rem);
  font-weight: 700;
  padding: 15px 15px;
  border-radius: 13px 13px 0 0;
}
.ctaSec .ctaSec__inner .ctaSec__counter .js-countdown {
  display: flex;
  align-items: baseline;
}
.ctaSec .ctaSec__inner .ctaSec__counter .js-countdown span {
  font-size: clamp(1.875rem, 1.336rem + 2.47vw, 3rem);
  margin: 0 3px;
  line-height: 1.2;
}
@media screen and (max-width: 991px) {
  .ctaSec .ctaSec__inner .ctaSec__counter {
    flex-direction: column;
  }
  .ctaSec .ctaSec__inner .ctaSec__counter .js-countdown {
    font-size: 16px;
  }
}
.ctaSec .ctaSec__inner .ctaSec__middle {
  display: flex;
  gap: 30px;
  padding: 40px 40px 26px;
}
.ctaSec .ctaSec__inner .ctaSec__middle .ctaSec__trial {
  flex: 1;
  background: #F6F6F6;
  border-radius: 8px;
  padding: 18px;
  text-align: center;
}
.ctaSec .ctaSec__inner .ctaSec__middle .ctaSec__trial img {
  max-width: 297px;
  width: 100%;
}
.ctaSec .ctaSec__inner .ctaSec__middle .ctaSec__flow {
  width: 60%;
  background: #FFF6DC;
  border-radius: 8px;
  padding: 13px 20px 13px 30px;
}
.ctaSec .ctaSec__inner .ctaSec__middle .ctaSec__flow .ctaSec__flow__title {
  font-size: clamp(1rem, 0.76rem + 1.1vw, 1.5rem);
  font-weight: 900;
  margin-bottom: 25px;
  margin-top: -35px;
  text-align: center;
}
.ctaSec .ctaSec__inner .ctaSec__middle .ctaSec__flow .ctaSec__flow__list {
  display: flex;
  gap: 5%;
  margin-bottom: 10px;
}
.ctaSec .ctaSec__inner .ctaSec__middle .ctaSec__flow .ctaSec__flow__list li {
  position: relative;
}
.ctaSec .ctaSec__inner .ctaSec__middle .ctaSec__flow .ctaSec__flow__list li .ctaSec__flow__list__no {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--main-color);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  top: -19px;
  left: -19px;
}
.ctaSec .ctaSec__inner .ctaSec__middle .ctaSec__flow .ctaSec__flow__list li img {
  margin-bottom: 17px;
}
.ctaSec .ctaSec__inner .ctaSec__middle .ctaSec__flow .ctaSec__flow__list li:nth-child(2) img {
  margin-bottom: 8px;
}
.ctaSec .ctaSec__inner .ctaSec__middle .ctaSec__flow .ctaSec__flow__list li p {
  font-size: clamp(0.625rem, 0.565rem + 0.27vw, 0.75rem);
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .ctaSec .ctaSec__inner .ctaSec__middle .ctaSec__flow .ctaSec__flow__list li {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .ctaSec .ctaSec__inner .ctaSec__middle .ctaSec__flow .ctaSec__flow__list li .ctaSec__flow__list__no {
    position: relative;
    top: auto;
    left: auto;
    width: 18px;
    height: 18px;
  }
  .ctaSec .ctaSec__inner .ctaSec__middle .ctaSec__flow .ctaSec__flow__list li img {
    display: none;
  }
  .ctaSec .ctaSec__inner .ctaSec__middle .ctaSec__flow .ctaSec__flow__list li p {
    text-align: left;
    letter-spacing: 0;
    font-size: 14px;
    flex: 1;
  }
  .ctaSec .ctaSec__inner .ctaSec__middle .ctaSec__flow .ctaSec__flow__list li p br {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .ctaSec .ctaSec__inner .ctaSec__middle .ctaSec__flow .ctaSec__flow__list {
    flex-direction: column;
    gap: 8px;
  }
}
.ctaSec .ctaSec__inner .ctaSec__middle .ctaSec__flow .ctaSec__flow__memo {
  font-size: 10px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .ctaSec .ctaSec__inner .ctaSec__middle .ctaSec__flow {
    flex-direction: column;
    width: 100%;
    padding: 20px;
  }
  .ctaSec .ctaSec__inner .ctaSec__middle .ctaSec__flow .ctaSec__flow__title {
    margin-top: -29px;
    margin-bottom: 8px;
  }
  .ctaSec .ctaSec__inner .ctaSec__middle .ctaSec__flow .ctaSec__flow__memo {
    text-align: left;
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .ctaSec .ctaSec__inner .ctaSec__middle {
    flex-direction: column;
    width: 100%;
    padding: 17px 20px;
  }
}
.ctaSec .ctaSec__inner .ctaSec__bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 23px 23px;
}
.ctaSec .ctaSec__inner .ctaSec__bottom .ctaSec__bottom__icon {
  width: 48px;
}
.ctaSec .ctaSec__inner .ctaSec__bottom .ctaSec__bottom__text {
  width: 99px;
}
.ctaSec .ctaSec__inner .ctaSec__bottom span {
  font-size: clamp(0.875rem, 0.695rem + 0.82vw, 1.25rem);
  font-weight: 900;
}
@media screen and (max-width: 991px) {
  .ctaSec .ctaSec__inner .ctaSec__bottom {
    padding: 0 15px 20px;
  }
  .ctaSec .ctaSec__inner .ctaSec__bottom .ctaSec__bottom__icon {
    width: 24px;
  }
  .ctaSec .ctaSec__inner .ctaSec__bottom .ctaSec__bottom__text {
    width: 78px;
  }
}
.ctaSec .cta-button {
  text-align: center;
}
.ctaSec .cta-button a {
  display: inline-block;
  line-height: 0;
}
.ctaSec .cta-button a img {
  display: block;
  height: auto;
  margin: 0 auto;
}

.conceptSec {
  padding-bottom: 0;
}
.conceptSec .container {
  display: flex;
  justify-content: space-between;
  gap: 10%;
}
.conceptSec .container .conceptSec__inner {
  width: 50%;
}
.conceptSec .container .conceptSec__inner .section__title {
  margin-bottom: 24px;
}
.conceptSec .container .conceptSec__inner .section__title .title__en {
  text-align: left;
}
.conceptSec .container .conceptSec__inner .section__title h2 {
  text-align: left;
  font-size: clamp(2rem, 1.76rem + 1.1vw, 2.5rem);
  margin-bottom: 0;
}
.conceptSec .container .conceptSec__inner .section__title h2 .bg-orange {
  background-color: var(--main-color);
  color: #fff;
  font-size: clamp(2rem, 1.76rem + 1.1vw, 2.5rem);
  font-weight: 900;
  border-radius: 8px;
}
.conceptSec .container .conceptSec__inner .conceptSec__text {
  margin-bottom: 56px;
}
.conceptSec .container .conceptSec__inner .conceptSec__text p {
  line-height: 2;
}
.conceptSec .container .conceptSec__inner .cta-button {
  text-align: center;
}
.conceptSec .container .conceptSec__inner .cta-button a {
  display: inline-block;
}
.conceptSec .container .conceptSec__inner .cta-button a img {
  display: block;
}
.conceptSec .container .conceptSec__img {
  margin-right: -65px;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .conceptSec .container {
    flex-direction: column;
  }
  .conceptSec .container .conceptSec__inner {
    width: 100%;
  }
  .conceptSec .container .conceptSec__inner .section__title .title__en {
    text-align: center;
  }
  .conceptSec .container .conceptSec__inner .section__title h2 {
    text-align: center;
  }
  .conceptSec .container .conceptSec__inner .conceptSec__text {
    margin-bottom: 24px;
  }
  .conceptSec .container .conceptSec__img {
    margin: 0 auto 20px;
  }
}

.methodSec {
  background: url("img/method_bg_dotted.webp") no-repeat center bottom/100%, linear-gradient(to bottom, #FEE491 0%, #FBCA05 100%);
  padding-top: 200px;
  padding-bottom: 250px;
}
.methodSec::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 100vw solid transparent;
  border-top: 150px solid #fff; /* 三角形の色（背景にかぶせる色） */
}
.methodSec::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 100vw solid transparent;
  border-bottom: 150px solid #fff; /* 三角形の色（背景にかぶせる色） */
}
@media screen and (max-width: 767px) {
  .methodSec {
    padding-top: 89px;
    padding-bottom: 50px;
  }
  .methodSec::before {
    border-top: 50px solid #fff;
  }
  .methodSec::after {
    border-bottom: 50px solid #fff;
  }
}
.methodSec .container .methodSec__title {
  margin-bottom: 24px;
  text-align: center;
}
.methodSec .container .methodSec__title .title__sub {
  font-size: clamp(1rem, 0.76rem + 1.1vw, 1.5rem);
  font-weight: 700;
}
.methodSec .container .methodSec__title img {
  width: 60vw;
  max-width: 327px;
}
.methodSec .container .methodSec__title h2 {
  font-size: clamp(1.25rem, 0.735rem + 2.35vw, 2.5rem);
  font-weight: 900;
}
.methodSec .container .methodSec__title h2 .bg-white {
  color: var(--main-color);
  background-color: #fff;
  border-radius: 3px;
}
.methodSec .container .methodSec-list li {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 60px;
}
.methodSec .container .methodSec-list li img {
  width: 45%;
  position: relative;
  display: block;
  z-index: 2;
}
.methodSec .container .methodSec-list li .methodSec-list__inner {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  flex: 1;
  position: relative;
  z-index: 1;
  margin-top: 37px;
}
.methodSec .container .methodSec-list li .methodSec-list__inner .methodSec-list__title {
  position: relative;
}
.methodSec .container .methodSec-list li .methodSec-list__inner .methodSec-list__title .methodSec-list__no {
  position: absolute;
  top: -30px;
  left: 0;
  font-size: clamp(2.5rem, 1.601rem + 4.11vw, 4.375rem);
  opacity: 0.4;
  font-family: var(--font-family-en);
  transform: scaleY(1.2);
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  color: #EFCB7E;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .methodSec .container .methodSec-list li .methodSec-list__inner .methodSec-list__title .methodSec-list__no {
    top: -14px;
  }
}
.methodSec .container .methodSec-list li .methodSec-list__inner h3 {
  font-size: clamp(1.25rem, 1.01rem + 1.1vw, 1.75rem);
  font-weight: 900;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}
.methodSec .container .methodSec-list li .methodSec-list__inner p {
  line-height: 2;
}
.methodSec .container .methodSec-list li:nth-child(odd) .methodSec-list__inner {
  margin-left: -30px;
  padding-left: 60px;
}
.methodSec .container .methodSec-list li:nth-child(even) {
  flex-direction: row-reverse;
}
.methodSec .container .methodSec-list li:nth-child(even) .methodSec-list__inner {
  margin-right: -30px;
  padding-right: 60px;
}
@media screen and (max-width: 767px) {
  .methodSec .container .methodSec-list li {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    flex-direction: column;
    margin-bottom: 24px;
  }
  .methodSec .container .methodSec-list li img {
    width: 100%;
    margin-bottom: 20px;
  }
  .methodSec .container .methodSec-list li .methodSec-list__inner {
    margin-top: 0;
    padding: 0;
  }
  .methodSec .container .methodSec-list li:nth-child(odd) .methodSec-list__inner, .methodSec .container .methodSec-list li:nth-child(even) .methodSec-list__inner {
    margin: 0;
    padding: 0;
  }
  .methodSec .container .methodSec-list li:nth-child(even) {
    flex-direction: column;
  }
}

.comparisonSec .comparisonSec__inner {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .comparisonSec .comparisonSec__inner__th img {
    width: 95px;
    max-width: 95px;
  }
  .comparisonSec .comparisonSec__inner__td {
    overflow-x: scroll;
  }
  .comparisonSec .comparisonSec__inner__td img {
    width: 495px;
    max-width: 495px;
  }
}

.beforeAfterSec {
  background-color: #ECF0F3;
  background-image: url("img/option_bg.webp");
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-top: 200px;
}
.beforeAfterSec::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 100vw solid transparent;
  border-top: 150px solid #fff;
}
@media screen and (max-width: 767px) {
  .beforeAfterSec {
    padding-top: 100px;
  }
  .beforeAfterSec::before {
    border-top: 50px solid #fff;
  }
}
.beforeAfterSec .slider-swiper-prev {
  position: absolute;
  left: -35px;
  z-index: 100;
  top: 430px;
}
.beforeAfterSec .slider-swiper-prev:hover {
  cursor: pointer;
}
.beforeAfterSec .slider-swiper-next {
  position: absolute;
  right: -35px;
  z-index: 100;
  top: 430px;
}
.beforeAfterSec .slider-swiper-next:hover {
  cursor: pointer;
}
.beforeAfterSec .swiper-slide {
  position: relative;
}
.beforeAfterSec .swiper-slide__top {
  position: relative;
}
.beforeAfterSec .swiper-slide__top .beforeafter-banner {
  position: absolute;
  bottom: -20px;
  right: 10px;
  z-index: 2;
}
.beforeAfterSec .slide-image-wrapper {
  max-height: 800px; /* 初期高さを固定 */
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.beforeAfterSec .slide-image-wrapper.expanded {
  max-height: 2390px;
}
.beforeAfterSec .read-more {
  display: block;
  width: 100%;
  padding: 40px 12px 20px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0px, rgb(255, 255, 255) 15px, #ffffff 100%);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  font-weight: 900;
  font-size: 20px;
  margin: -30px auto 0;
  position: relative;
}
.beforeAfterSec .read-more::before {
  content: "";
  left: 20px;
  bottom: 30px;
  width: 40%;
  height: 1px;
  border-top: 2px dashed var(--font-color-text);
  position: absolute;
}
.beforeAfterSec .read-more::after {
  content: "";
  right: 20px;
  bottom: 30px;
  width: 40%;
  height: 1px;
  border-top: 2px dashed var(--font-color-text);
  position: absolute;
}
@media screen and (max-width: 767px) {
  .beforeAfterSec .read-more {
    font-size: 12px;
    padding: 36px 10px 16px;
    font-weight: 600;
  }
  .beforeAfterSec .read-more::before, .beforeAfterSec .read-more::after {
    width: 30%;
    border-width: 1px;
    bottom: 22px;
  }
}
@media screen and (max-width: 767px) {
  .beforeAfterSec .container {
    padding: 0;
  }
  .beforeAfterSec .swiper {
    padding: 0 20px;
  }
  .beforeAfterSec .beforeafter-top {
    max-width: calc(100% + 30px);
  }
  .beforeAfterSec .slider-swiper-prev,
  .beforeAfterSec .slider-swiper-next {
    width: 35px;
    height: 35px;
    top: 330px;
  }
  .beforeAfterSec .slider-swiper-prev {
    left: 0;
  }
  .beforeAfterSec .slider-swiper-next {
    right: 0;
  }
  .beforeAfterSec .swiper-slide__top .beforeafter-banner {
    bottom: 5px;
    right: auto;
    left: 5px;
  }
}

.voiceSec {
  /* スライダーコンテナ */
  /* ナビゲーションボタン */
  /* ページネーションドット */
  /* レスポンシブ対応 */
  /* 非表示の地図コンテナ */
}
.voiceSec .reviews-container {
  background: linear-gradient(to bottom, #FFECAF 100%, #FBCA05 100%);
  padding: 50px 36px;
  border-radius: 12px;
}
.voiceSec .rating-summary {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 14px;
}
.voiceSec .rating-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.voiceSec .rating-wrapper .rating-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.voiceSec .rating-wrapper .rating-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.voiceSec .rating-wrapper .view-all {
  text-align: right;
  width: 100%;
}
.voiceSec .google-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 32px;
}
.voiceSec .logo-text {
  font-weight: 500;
}
.voiceSec .rating-score {
  display: flex;
  align-items: center;
  gap: 15px;
}
.voiceSec .stars {
  color: #fbbc04;
  font-size: 28px;
  letter-spacing: 2px;
}
.voiceSec .score-text {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
.voiceSec .rating-bar {
  display: flex;
  align-items: center;
  gap: 15px;
}
.voiceSec .bar-stars {
  color: #fbbc04;
  width: 100px;
  font-size: 16px;
}
.voiceSec .bar-container {
  flex: 1;
  height: 14px;
  background: #e8e8e8;
  border-radius: 7px;
  overflow: hidden;
}
.voiceSec .bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #4285f4 0%, #5a9df7 100%);
  border-radius: 7px;
  transition: width 0.6s ease;
}
.voiceSec .bar-count {
  width: 50px;
  text-align: right;
  color: #666;
  font-size: 14px;
}
.voiceSec .view-all a {
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.voiceSec .view-all a:hover {
  color: #1557b0;
  text-decoration: underline;
}
.voiceSec .reviews-carousel {
  background: white;
  border-radius: 20px;
  padding: 40px 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}
.voiceSec .slider-container {
  overflow: hidden;
  position: relative;
}
.voiceSec .slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.voiceSec .slider-nav:hover {
  background: #f8f9fa;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%) scale(1.1);
}
.voiceSec .slider-nav:active {
  transform: translateY(-50%) scale(0.95);
}
.voiceSec .slider-nav-left {
  left: 3px;
}
.voiceSec .slider-nav-right {
  right: 3px;
}
.voiceSec .slider-nav svg {
  width: 24px;
  height: 24px;
  fill: #5f6368;
}
.voiceSec .slider-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.voiceSec .review-slide {
  min-width: 33.3333333333%;
  box-sizing: border-box;
  padding: 0 15px;
}
@media screen and (max-width: 767px) {
  .voiceSec .review-slide {
    padding: 0 10px;
  }
}
.voiceSec .review-card {
  background: #F4F4F4;
  border-radius: 16px;
  padding: 25px;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.voiceSec .review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.voiceSec .reviewer-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.voiceSec .reviewer-info {
  flex: 1;
}
.voiceSec .reviewer-name {
  font-weight: 600;
  margin-bottom: 4px;
  color: #202124;
  font-size: 15px;
}
.voiceSec .review-date {
  color: #5f6368;
  font-size: 13px;
}
.voiceSec .review-stars {
  color: #fbbc04;
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.voiceSec .review-text {
  line-height: 1.6;
  font-size: 12px;
}
.voiceSec .pagination-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.voiceSec .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d0d0d0;
  cursor: pointer;
  transition: all 0.3s;
}
.voiceSec .dot.active {
  background: #fbbc04;
  transform: scale(1.2);
}
.voiceSec .dot:hover {
  background: #b0b0b0;
}
.voiceSec .loading {
  text-align: center;
  padding: 60px;
  color: #666;
  font-size: 16px;
}
.voiceSec .error {
  text-align: center;
  padding: 40px;
  background: #fce8e6;
  color: #c5221f;
  border-radius: 12px;
  margin: 20px 0;
}
.voiceSec .g-blue {
  color: #4285f4;
}
.voiceSec .g-red {
  color: #ea4335;
}
.voiceSec .g-yellow {
  color: #fbbc04;
}
.voiceSec .g-green {
  color: #34a853;
}
@media (max-width: 1024px) {
  .voiceSec .review-slide {
    min-width: 50%;
  }
  .voiceSec .slider-nav {
    width: 30px;
    height: 30px;
  }
  .voiceSec .slider-nav svg {
    width: 20px;
    height: 20px;
  }
  .voiceSec .slider-nav-left {
    left: 3px;
  }
  .voiceSec .slider-nav-right {
    right: 3px;
  }
}
@media (max-width: 768px) {
  .voiceSec .reviews-container {
    padding: 0;
    background: none;
  }
  .voiceSec .rating-summary {
    display: none !important;
  }
  .voiceSec .reviews-carousel {
    padding: 20px 10px;
  }
  .voiceSec .google-logo {
    font-size: 24px;
  }
  .voiceSec .review-slide {
    min-width: 100%;
  }
  .voiceSec .slider-nav {
    width: 25px;
    height: 25px;
  }
  .voiceSec .slider-nav svg {
    width: 15px;
    height: 15px;
  }
  .voiceSec .slider-nav-left {
    left: 3px;
  }
  .voiceSec .slider-nav-right {
    right: 3px;
  }
}
.voiceSec #map {
  display: none;
}

.trainerSec {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .trainerSec {
    padding: 60px 0;
  }
}
.trainerSec .trainerSec__inner {
  display: flex;
  justify-content: space-between;
  gap: 6%;
}
.trainerSec .trainerSec__inner .trainerSec__img {
  width: 45%;
  margin-left: -60px;
}
.trainerSec .trainerSec__inner .trainerSec__text {
  flex: 1;
}
.trainerSec .trainerSec__inner .trainerSec__text .text-orange {
  font-size: clamp(1.5rem, 1.26rem + 1.1vw, 2rem);
  font-weight: 700;
  margin-bottom: 10px;
}
.trainerSec .trainerSec__inner .trainerSec__text .trainerSec-position {
  font-size: clamp(0.875rem, 0.755rem + 0.55vw, 1.125rem);
}
.trainerSec .trainerSec__inner .trainerSec__text .trainerSec-name {
  font-size: clamp(1.5rem, 1.14rem + 1.64vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 17px;
}
.trainerSec .trainerSec__inner .trainerSec__text .trainerSec__message {
  margin-top: 30px;
  background: #FFF6DC;
  border-radius: 6px;
  padding: 16px 40px 40px;
  line-height: 2;
}
.trainerSec .trainerSec__inner .trainerSec__text .trainerSec__message .trainerSec__message__title {
  font-size: clamp(1rem, 0.88rem + 0.55vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 20px;
  font-weight: 700;
  background: var(--main-color);
  color: #fff;
  padding: 5px 40px;
  border-radius: 0 4px 4px 0;
  margin-left: -40px;
}
.trainerSec .trainerSec__inner .trainerSec__text .trainerSec__message .trainerSec__message__text {
  margin-top: 17px;
}
@media screen and (max-width: 767px) {
  .trainerSec .trainerSec__inner {
    flex-direction: column;
  }
  .trainerSec .trainerSec__inner .trainerSec__img {
    margin-left: -20px;
    width: calc(100% + 20px);
    margin-bottom: 20px;
  }
  .trainerSec .trainerSec__inner .trainerSec__name__wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }
  .trainerSec .trainerSec__inner .trainerSec__name__wrapper .trainerSec-name {
    margin-bottom: 0;
  }
  .trainerSec .trainerSec__inner .trainerSec__text .trainerSec__message {
    padding: 20px;
  }
  .trainerSec .trainerSec__inner .trainerSec__text .trainerSec__message .trainerSec__message__title {
    margin-left: -20px;
  }
}

.priceSec {
  background: #ECF0F3;
  padding-top: 200px;
}
.priceSec::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 100vw solid transparent;
  border-top: 150px solid #fff;
}
@media screen and (max-width: 767px) {
  .priceSec {
    padding-top: 100px;
  }
  .priceSec::before {
    border-top: 50px solid #fff;
  }
}
.priceSec .container {
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  .priceSec .container {
    padding: 0 10px;
  }
}
.priceSec .priceSec__title {
  text-align: center;
  margin-bottom: 45px;
}
.priceSec .priceSec__title span {
  font-size: clamp(1.25rem, 0.89rem + 1.64vw, 2rem);
  font-weight: 900;
  color: #fff;
  border-radius: 8px;
  background: linear-gradient(to right, #EDB000 57%, #FFDA20 100%);
  padding: 8px 22px;
}
@media screen and (max-width: 767px) {
  .priceSec .priceSec__title span {
    display: block;
  }
}
.priceSec .priceSec__inner {
  background: #fff;
  border-radius: 16px;
  padding: 60px;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .priceSec .priceSec__inner {
    padding: 35px 16px;
  }
  .priceSec .priceSec__inner .sp-left {
    text-align: left;
  }
}
.priceSec .priceSec__inner .price__banner {
  position: absolute;
  top: 30px;
  right: 20%;
}
@media screen and (max-width: 767px) {
  .priceSec .priceSec__inner .price__banner {
    width: 96px;
    height: 96px;
    right: 20px;
  }
}
.priceSec .priceSec__inner h3 {
  font-size: clamp(1.25rem, 0.651rem + 2.74vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 40px;
}
.priceSec .priceSec__inner h3:has(+ .text-orange) {
  margin-bottom: 7px;
}
.priceSec .priceSec__inner h3 + p.text-orange {
  margin-bottom: 33px;
  font-size: clamp(0.875rem, 0.695rem + 0.82vw, 1.25rem);
  font-weight: 700;
}
.priceSec .priceSec__inner p:has(+ table) {
  margin-bottom: 40px;
}
.priceSec .priceSec__inner .priceSec__plan-list {
  width: 710px;
  max-width: 100%;
  margin: 40px auto;
  gap: 4%;
  text-align: left;
}
.priceSec .priceSec__inner .priceSec__plan-list.text-center {
  text-align: center;
}
.priceSec .priceSec__inner .priceSec__plan-list li {
  font-weight: 500;
  display: inline;
  margin-right: 40px;
  margin-bottom: 16px;
  white-space: nowrap;
}
.priceSec .priceSec__inner .priceSec__plan-list li img {
  margin-right: 8px;
}
.priceSec .priceSec__inner .priceSec__plan-list li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .priceSec .priceSec__inner .priceSec__plan-list {
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 12px;
    width: 100%;
  }
  .priceSec .priceSec__inner .priceSec__plan-list li {
    font-size: 12px;
    letter-spacing: 0;
    width: 48%;
    margin-right: 12px;
    margin-bottom: 10px;
  }
  .priceSec .priceSec__inner .priceSec__plan-list li img {
    margin-right: 4px;
  }
}
.priceSec table {
  border-radius: 8px;
  background: #fff;
  font-size: clamp(0.875rem, 0.575rem + 1.37vw, 1.5rem);
  letter-spacing: 0;
  font-weight: 700;
  text-align: center;
  width: 100%;
  border-collapse: separate;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.08);
}
.priceSec table.no-th {
  border: 1px solid #D9D9D9;
  max-width: 1080px;
  box-shadow: none;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  .priceSec table.no-th .marker-orange {
    font-size: 20px;
  }
}
.priceSec table:not(:last-of-type) {
  margin-bottom: 40px;
}
.priceSec table td {
  padding: 10px;
  width: 50%;
  vertical-align: middle;
}
.priceSec table td:not(:last-child) {
  border-right: 1px solid #D9D9D9;
}
.priceSec table td.price {
  font-size: clamp(1.25rem, 1.13rem + 0.55vw, 1.5rem);
  font-weight: 700;
  padding: 10px 3%;
}
.priceSec table td.price small {
  font-size: clamp(0.625rem, 0.565rem + 0.27vw, 0.75rem);
}
.priceSec table td .sp-column {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .priceSec table td .sp-column {
    flex-direction: column;
    line-height: 1;
    font-size: 20px;
  }
  .priceSec table td .sp-column .price__arrow::before {
    content: "↓";
    vertical-align: middle;
  }
  .priceSec table td .sp-column .sp-large {
    font-size: 32px;
  }
}
.priceSec table td small {
  font-size: clamp(0.625rem, 0.565rem + 0.27vw, 0.75rem);
  font-weight: 400;
  vertical-align: 3px;
}
.priceSec table td small.sp-middle {
  font-size: clamp(0.875rem, 0.824rem + 0.24vw, 1rem);
}
.priceSec table td .marker-orange {
  padding: 0;
}
.priceSec table td .price__before {
  font-size: clamp(0.625rem, 0.723rem + 0.41vw, 1rem);
  text-decoration: line-through;
  font-weight: 500;
}
.priceSec table td .price__arrow::before {
  content: "→";
  font-size: 12px;
  margin: 0 5px;
  line-height: 1;
  vertical-align: 5px;
}
.priceSec table td .price__1kai {
  font-size: 10px;
  font-weight: 900;
}
.priceSec table td .price__1kai .marker-orange {
  font-size: 16px;
}
.priceSec table td.p0 {
  padding: 10px 3px;
}
@media screen and (max-width: 767px) {
  .priceSec table td:first-of-type:not(.width-50) {
    width: 36%;
  }
  .priceSec table td .price__1kai {
    display: block;
  }
}
.priceSec table tr:not(:last-child) td {
  border-bottom: 1px solid #D9D9D9;
}
.priceSec table th {
  text-align: center;
  color: #fff;
  background: var(--main-color);
  padding: 10px;
}
.priceSec table th:first-child {
  border-radius: 8px 0 0 0;
  border-right: 1px solid #D9D9D9;
  white-space: nowrap;
}
.priceSec table th:last-child {
  border-radius: 0 8px 0 0;
}
.priceSec table .th-color01 th {
  background: var(--main-color);
}
.priceSec table .th-color02 th {
  background: #FACE4E;
}
.priceSec table .th-color03 th {
  background: #E4831A;
}
.priceSec .note {
  margin-top: 24px;
}

.optionSec {
  background-color: #ECF0F3;
  background-image: url("img/option_bg.webp");
  padding-top: 0;
}
.optionSec .optionSec-list li {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 5%;
}
.optionSec .optionSec-list li img {
  width: 30%;
  position: relative;
  display: block;
  z-index: 2;
}
.optionSec .optionSec-list li .optionSec-list__inner {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  flex: 1;
  position: relative;
  z-index: 1;
  margin-top: 37px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.optionSec .optionSec-list li .optionSec-list__inner h3 {
  font-size: clamp(1.25rem, 0.89rem + 1.64vw, 2rem);
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--main-color);
}
.optionSec .optionSec-list li .optionSec-list__inner .optionSec-list__price {
  font-size: clamp(1rem, 0.88rem + 0.55vw, 1.25rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.optionSec .optionSec-list li .optionSec-list__inner .optionSec-list__price .bg-orange {
  background: var(--main-color);
  color: #fff;
  font-size: clamp(0.875rem, 0.815rem + 0.27vw, 1rem);
  padding: 3px 20px;
  border-radius: 4px;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .optionSec .optionSec-list li .optionSec-list__inner .optionSec-list__price {
    letter-spacing: 0;
  }
  .optionSec .optionSec-list li .optionSec-list__inner .optionSec-list__price .bg-orange {
    padding: 3px 12px;
  }
}
.optionSec .optionSec-list li .optionSec-list__inner p {
  line-height: 2;
}
.optionSec .optionSec-list li:nth-child(odd) .optionSec-list__inner {
  margin-left: -30px;
  padding-left: 60px;
}
.optionSec .optionSec-list li:nth-child(even) {
  flex-direction: row-reverse;
}
.optionSec .optionSec-list li:nth-child(even) .optionSec-list__inner {
  margin-right: -30px;
  padding-right: 60px;
}
@media screen and (max-width: 767px) {
  .optionSec .optionSec-list li {
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
  }
  .optionSec .optionSec-list li img {
    width: 100%;
    margin-bottom: 16px;
  }
  .optionSec .optionSec-list li .optionSec-list__inner {
    box-shadow: none;
    padding: 0;
    margin-top: 0;
  }
  .optionSec .optionSec-list li:nth-child(odd) .optionSec-list__inner {
    margin-left: 0;
    padding-left: 0;
  }
  .optionSec .optionSec-list li:nth-child(even) {
    flex-direction: column;
  }
  .optionSec .optionSec-list li:nth-child(even) .optionSec-list__inner {
    margin-right: 0;
    padding-right: 0;
  }
}
.optionSec .optionSec-credit {
  background: #fff;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  width: 100%;
}
.optionSec .optionSec-credit .optionSec-credit__title {
  font-size: clamp(1.25rem, 1.13rem + 0.55vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 3px solid rgba(60, 60, 60, 0.1);
  padding-bottom: 10px;
  color: var(--font-color-text);
}
.optionSec .optionSec-credit .optionSec-credit__title small {
  font-size: clamp(0.625rem, 0.505rem + 0.55vw, 0.875rem);
  font-weight: 400;
  margin-left: 60px;
}
@media screen and (max-width: 767px) {
  .optionSec .optionSec-credit .optionSec-credit__title {
    text-align: center;
  }
  .optionSec .optionSec-credit .optionSec-credit__title small {
    margin: 0;
    line-height: 1;
    display: block;
  }
}
.optionSec .optionSec-credit img {
  margin-bottom: 20px;
  max-width: 545px;
  width: 100%;
}
.optionSec .optionSec-credit p {
  color: #AAAAAA;
  font-size: clamp(0.625rem, 0.505rem + 0.55vw, 0.875rem);
}
@media screen and (max-width: 767px) {
  .optionSec .optionSec-credit {
    padding: 20px;
  }
  .optionSec .optionSec-credit h3 {
    text-align: center;
  }
  .optionSec .optionSec-credit h3 small {
    margin-left: 0;
    text-align: center;
    display: block;
  }
}

.flowSec {
  background: url("img/method_bg_dotted.webp") no-repeat center bottom/100%, linear-gradient(to bottom, #FEE491 0%, #FBCA05 100%);
  padding-bottom: 250px;
}
.flowSec::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-left: 100vw solid transparent;
  border-bottom: 150px solid #fff; /* 三角形の色（背景にかぶせる色） */
}
@media screen and (max-width: 767px) {
  .flowSec {
    padding-bottom: 100px;
  }
  .flowSec::after {
    border-bottom: 50px solid #fff;
  }
}
.flowSec .flowSec-list .flowSec-list__inner {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 40px;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  gap: 5%;
}
.flowSec .flowSec-list .flowSec-list__inner img {
  width: 30%;
}
.flowSec .flowSec-list .flowSec-list__inner .flowSec-list__inner__text {
  flex: 1;
  position: relative;
}
.flowSec .flowSec-list .flowSec-list__inner .flowSec-list__inner__text .flowSec-list__no {
  font-size: clamp(3rem, 2.521rem + 2.19vw, 4rem);
  font-weight: 700;
  color: rgba(239, 203, 126, 0.4);
  position: absolute;
  z-index: 1;
  top: -57px;
  left: 0;
  font-style: italic;
  font-family: var(--font-family-en);
  transform: scaleY(1.2);
}
.flowSec .flowSec-list .flowSec-list__inner .flowSec-list__inner__text .flowSec-list__no small {
  font-size: clamp(1.25rem, 0.771rem + 2.19vw, 2.25rem);
}
@media screen and (max-width: 767px) {
  .flowSec .flowSec-list .flowSec-list__inner .flowSec-list__inner__text .flowSec-list__no {
    top: -43px;
  }
}
.flowSec .flowSec-list .flowSec-list__inner .flowSec-list__inner__text h3 {
  font-size: clamp(1.25rem, 1.13rem + 0.55vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.flowSec .flowSec-list .flowSec-list__inner .flowSec-list__inner__text h3 small {
  font-size: clamp(0.625rem, 0.565rem + 0.27vw, 0.75rem);
  font-weight: 400;
  margin-left: 16px;
}
@media screen and (max-width: 767px) {
  .flowSec .flowSec-list .flowSec-list__inner .flowSec-list__inner__text h3 small {
    font-size: 14px;
    margin-left: 0px;
  }
}
.flowSec .flowSec-list .flowSec-list__inner .flowSec-list__inner__text p {
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .flowSec .flowSec-list .flowSec-list__inner {
    flex-direction: column;
    padding: 24px;
  }
  .flowSec .flowSec-list .flowSec-list__inner img {
    width: 100%;
    margin-bottom: 25px;
  }
}
.flowSec .flowSec-list .flowSec-list__arrow {
  --w: 60px;
  --h: 25px;
  display: block;
  width: var(--w);
  height: var(--h);
  background: #3C3C3C;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  margin: 0 auto 40px;
}
.flowSec .cta-button {
  text-align: center;
  margin-bottom: 60px;
}
.flowSec .cta-button a {
  display: inline-block;
  line-height: 0;
}
.flowSec .cta-button a img {
  display: block;
}
.flowSec .essential-list {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.flowSec .essential-list h3 {
  font-size: clamp(1rem, 0.76rem + 1.1vw, 1.5rem);
  font-weight: 700;
  padding: 10px;
  text-align: center;
  background: #3C3C3C;
  color: #fff;
  border-radius: 12px 12px 0 0;
}
.flowSec .essential-list ul {
  display: flex;
  justify-content: space-between;
  gap: 4%;
  width: calc(100% - 80px);
  margin: 0 auto;
  padding: 40px 0;
}
.flowSec .essential-list ul li img {
  margin-bottom: 16px;
}
.flowSec .essential-list ul li p {
  font-size: clamp(1rem, 0.94rem + 0.27vw, 1.125rem);
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flowSec .essential-list ul {
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px;
    width: 100%;
  }
  .flowSec .essential-list ul li {
    width: calc(50% - 8px);
  }
  .flowSec .essential-list ul li img {
    margin-bottom: 8px;
  }
}

.infoSec .section__title {
  margin-bottom: 40px;
}
.infoSec .section__title + p {
  text-align: center;
  margin-bottom: 60px;
}
.infoSec .shopSec__inner {
  display: flex;
  justify-content: space-between;
  gap: 5%;
}
.infoSec .shopSec__inner .shopSec__inner__text {
  width: 55%;
}
.infoSec .shopSec__inner .shopSec__inner__text table {
  width: 100%;
  font-size: clamp(1rem, 0.88rem + 0.55vw, 1.25rem);
}
.infoSec .shopSec__inner .shopSec__inner__text table th {
  font-weight: 600;
  vertical-align: top;
  padding: 30px 20px 30px 0;
  text-align: left;
}
.infoSec .shopSec__inner .shopSec__inner__text table td {
  vertical-align: top;
  padding: 30px 0;
}
.infoSec .shopSec__inner .shopSec__inner__text table tr:not(:last-child) td, .infoSec .shopSec__inner .shopSec__inner__text table tr:not(:last-child) th {
  border-bottom: 2px solid #DDDDDD;
}
.infoSec .shopSec__inner .shopSec__inner__map {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .infoSec .shopSec__inner {
    flex-direction: column;
  }
  .infoSec .shopSec__inner .shopSec__inner__text {
    width: 100%;
  }
  .infoSec .shopSec__inner .shopSec__inner__text table th {
    padding-bottom: 0;
  }
  .infoSec .shopSec__inner .shopSec__inner__text table td {
    padding: 8px 0 15px;
  }
  .infoSec .shopSec__inner .shopSec__inner__text table th, .infoSec .shopSec__inner .shopSec__inner__text table td {
    width: 100%;
    display: block;
  }
  .infoSec .shopSec__inner .shopSec__inner__text table tr:not(:last-child) th {
    border: none;
  }
  .infoSec .shopSec__inner .shopSec__inner__map iframe {
    width: 100%;
    height: 200px;
  }
}

.accessSec {
  /* タブボタン */
}
.accessSec .section__title {
  margin-bottom: 40px;
}
.accessSec .section__title .title__en, .accessSec .section__title h2 {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .accessSec .section__title .title__en, .accessSec .section__title h2 {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .accessSec .container {
    padding: 0;
  }
}
.accessSec .accessSec__tab-list {
  display: flex;
  justify-content: space-between;
  gap: 5%;
}
.accessSec .accessSec__tab-list .accessSec__tab {
  padding: 10px;
  background: #D0D0D0;
  cursor: pointer;
  font-size: clamp(1rem, 0.76rem + 1.1vw, 1.5rem);
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  flex: 1;
  border-radius: 12px 12px 0 0;
  color: #fff;
}
.accessSec .accessSec__tab-list .accessSec__tab.is-active {
  background: var(--main-color);
}
.accessSec .accessSec__panel {
  display: none;
  padding: 50px 40px;
  background: #FFFEE6;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.accessSec .accessSec__panel.is-show {
  display: block;
}
.accessSec .accessSec__panel .accessSec__list {
  display: flex;
  justify-content: space-between;
}
.accessSec .accessSec__panel .accessSec__list li {
  position: relative;
  width: 27%;
}
.accessSec .accessSec__panel .accessSec__list li .accessSec__list__no {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--main-color);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  position: absolute;
  top: -19px;
  left: -19px;
}
.accessSec .accessSec__panel .accessSec__list li img {
  margin-bottom: 17px;
}
.accessSec .accessSec__panel .accessSec__list .accessSec__list__arrow {
  display: block;
  width: 15px;
  height: 40px;
  background: #3C3C3C;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  margin-top: 68px;
}
@media screen and (max-width: 767px) {
  .accessSec .accessSec__panel {
    padding: 50px 30px;
  }
  .accessSec .accessSec__panel .accessSec__list {
    flex-direction: column;
  }
  .accessSec .accessSec__panel .accessSec__list li {
    width: 100%;
  }
  .accessSec .accessSec__panel .accessSec__list li .accessSec__list__no {
    left: 50%;
    transform: translateX(-50%);
  }
  .accessSec .accessSec__panel .accessSec__list li img {
    margin-bottom: 8px;
  }
  .accessSec .accessSec__panel .accessSec__list .accessSec__list__arrow {
    margin: 24px auto 33px;
    width: 41px;
    height: 14px;
    -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
            clip-path: polygon(50% 100%, 0 0, 100% 0);
  }
}

.faqSec {
  background-color: #ECF0F3;
  background-image: url("img/option_bg.webp");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
}
.faqSec .faqSec__inner .row {
  margin-bottom: 40px;
}
.faqSec .faqSec__inner .row .question {
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  line-height: 1.5;
  font-weight: 700;
  background-color: var(--main-color);
  font-size: clamp(0.875rem, 0.575rem + 1.37vw, 1.5rem);
  padding: 12px 64px 12px 40px;
  color: #fff;
  border-radius: 12px;
}
.faqSec .faqSec__inner .row .question .icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  width: 45px;
  height: 45px;
  margin: auto;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .faqSec .faqSec__inner .row .question .icon {
    right: 20px;
    width: 34px;
    height: 34px;
  }
}
.faqSec .faqSec__inner .row .answer {
  display: none;
  padding: 24px 40px;
  background: #fff;
  border-radius: 0 0 12px 12px;
}
.faqSec .faqSec__inner .row .answer .inner {
  display: flex;
  line-height: 2;
  font-weight: 400;
  align-items: flex-start;
}
.faqSec .faqSec__inner .row .answer .font-en {
  color: var(--main-color);
}
.faqSec .faqSec__inner .row .font-en {
  color: #fff;
  margin-right: 27px;
  font-family: var(--font-family-en);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.25rem, 1.98rem + 1.23vw, 2.813rem);
  transform: scaleY(1.2);
  line-height: 1.2;
  position: relative;
  top: -5px;
}
@media screen and (max-width: 767px) {
  .faqSec .faqSec__inner .row .font-en {
    margin-right: 10px;
  }
}
.faqSec .faqSec__inner .row.open .question {
  border-radius: 12px 12px 0 0;
}
.faqSec .faqSec__inner .row.open .question .icon {
  transform: rotate(180deg);
}
.faqSec .faqSec__inner .row.open .answer {
  display: block;
}
@media screen and (max-width: 767px) {
  .faqSec .faqSec__inner .row {
    margin-bottom: 23px;
  }
  .faqSec .faqSec__inner .row .question {
    padding: 12px 60px 12px 20px;
  }
  .faqSec .faqSec__inner .row .answer {
    padding: 12px 20px;
  }
}/*# sourceMappingURL=style.css.map */