@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@300&family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700&family=Noto+Serif+JP:wght@200;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@300&family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Noto+Sans+JP:wght@100;200;300;400;500;600;700&family=Noto+Serif+JP:wght@200;600&family=Shippori+Mincho:wght@500&display=swap");
:root {
  --white: #fff;
  --orange: #f49312;
  --txt-black: #5a5a5a;
  --black: #000;
  --blue: #00a29a;
  --blue-2: #7dbab7;
  --blue-3: #3a81d4;
  --gray: #ededed;
  --bg: #def0ef;
  --medium: 500;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--txt-black);
  font-weight: 400;
  background-color: var(--white);
  text-size-adjust: 100%;
}
main {
  overflow-x: hidden;
}

input {
  border: none;
  outline: none;
}

input,
button,
select,
textarea {
  appearance: none;
}

a {
  cursor: pointer;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  opacity: 0.7;
}

p,
h1,
h2,
h3,
h4 {
  margin: 0px;
}

h2,
h3 {
  font-weight: 400;
}

ul {
  padding-left: 0px;
  margin: 0px;
}

li {
  list-style: none;
}

.container {
  padding: 0px 15px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.container--type2,
.container--type4 {
  padding: 0;
}

.container--type3 {
  padding: 0 30px;
}

@media (min-width: 1199px) {
  .container {
    max-width: 1400px;
    padding: 0px;
  }

  .container--type2 {
    max-width: 1400px;
    padding: 0px 30px;
  }

  .container--type4 {
    max-width: none;
  }

  .container--header {
    max-width: none;
    padding: 0px 30px;
  }

  .container-mv {
    max-width: 1920px;
  }
}
@media (min-width: 1599px) {
  .container--header {
    max-width: none;
    padding: 0px 70px;
  }
}

.txt-blue {
  color: var(--blue);
  font-weight: 400;
}

.txt-blue-2 {
  color: var(--blue-3);
}

.txt-orange {
  color: var(--orange);
  font-size: clamp(15px, 4vw, 36px);
}

.txt-orange-type2 {
  color: var(--orange);
  background: var(--white);
  font-weight: bold;
}

.br-pc {
  display: none;
}

.txt-bold {
  font-weight: bold;
}

@media (min-width: 1199px) {
  .br-sp {
    display: none;
  }

  .br-pc {
    display: block;
  }
}

.btn-wrap p {
  font-size: clamp(11px, 2.9vw, 28px);
  text-align: center;
  font-weight: 400;
}

.btn-wrap a {
  display: flex;
  justify-content: center;
}

.anime_jiggle {
  animation: jiggle 2s linear infinite;
}

@keyframes jiggle {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.015);
  }
  40% {
    transform: scale(0.94);
  }
  50% {
    transform: scale(1.015);
  }
  60% {
    transform: scale(0.97);
  }
  70% {
    transform: scale(1.01);
  }
  80% {
    transform: scale(0.98);
  }
  90% {
    transform: scale(1.015);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes bounceScroll {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(13px);
  }

  100% {
    transform: translateY(0px);
  }
}

.__bounceScroll {
  animation-duration: 1.7s;
  animation-delay: 0s;
  animation-direction: normal;
  animation-play-state: running;
  animation-name: bounceScroll;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both !important;
  animation-iteration-count: infinite !important;
}
/*-------------------------------------------------------------
header
 -------------------------------------------------------------*/
/* sp */
.header__nav-sp {
  display: none;
}
.is-display-navSp {
  display: block;
}
.drawer--top .header__nav-sp .drawer-hamburger {
  right: 15px;
  top: 5px;
  background: #70c0bc;
  padding: 15px;
  opacity: 0.8;
  border-radius: 5px;
  border: 1px solid #fff;
}

.header__nav-sp .drawer-hamburger-icon,
.header__nav-sp .drawer-hamburger-icon:after,
.header__nav-sp .drawer-hamburger-icon:before {
  background: #fff;
}

.drawer-open .header__nav-sp .drawer-hamburger-icon {
  background: transparent;
}

.drawer-txt {
  display: block;
  padding-top: 17px;
  font-size: 10px;
  color: #fff;
}

.drawer__txt-small {
  font-size: 8px;
}

.header__nav-sp .drawer-nav {
  background: #a6cad6;
  opacity: 0.9;
  padding: clamp(88px, 23vw, 176px) clamp(10px, 2.6vw, 20px)
    clamp(45px, 12vw, 90px);
  z-index: 3;
}

.header__nav-sp .drawer-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__nav-sp .drawer-menu li a {
  color: var(--white);
  padding: 0;
}

.header__nav-sp .drawer-menu:not(:last-child) {
  margin-bottom: clamp(46px, 12vw, 93px);
}

.header__nav-sp .drawer-menu li:not(:last-child) {
  padding-bottom: clamp(17px, 4.5vw, 35px);
  margin-bottom: clamp(17px, 4.5vw, 35px);
}

.header__nav-sp .drawer-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__nav-sp .drawer-menu li a {
  color: var(--white);
  padding: 0;
}

.drawer-menu:not(:last-child) {
  margin-bottom: clamp(46px, 12vw, 93px);
}

.header__nav-sp .drawer-menu li:not(:last-child) {
  padding-bottom: clamp(17px, 4.5vw, 35px);
  margin-bottom: clamp(17px, 4.5vw, 35px);
  position: relative;
}
/*修正  */
.drawer-menu .btn-wrap {
  width: clamp(345px, 92vw, 370px);
}

.header__nav-sp .drawer-menu li:not(:last-child)::after {
  position: absolute;
  content: "・・・・・・・・・・・・・・";
  font-size: 15px;
  color: var(--white);
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
}

/* pc */
.header__nav-pc {
  display: none;
  position: fixed;
  height: 130px;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 10px 0px;
  z-index: 999;
}

@media (min-width: 1199px) {
  .is-display-navPc {
    display: block;
  }

  .header__wrap {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    height: 130px;
  }

  .header__wrap　h1 img {
    width: 70px;
  }

  .header__wrap h1 {
    margin-top: -10px;
  }

  .header__wrap h1 img {
    width: 286px;
  }

  .header__items-nav li a {
    color: var(--txt-black);
    font-size: 16px;
    display: block;
    padding: 40px 10px;
    height: 130px;
    white-space: nowrap;
    text-align: center;
    position: relative;
  }

  .header__wrap-link img {
    width: 325px;
  }

  .header__items-nav {
    display: flex;
    height: 120px;
  }

  .header__items-nav li a:hover {
    background: #daf0ef;
  }

  .header__items-nav li:not(:last-child) a:after {
    content: "";
    position: absolute;
    background: black;
    width: 1px;
    height: 70px;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
  }

  .header__items-nav li a {
    padding: 40px 26px;
    height: 110px;
  }
  .header__wrap .btn-wrap {
    width: 300px;
  }
  /*   header-nav修正*/
  .header__wrap h1 img {
    max-width: 240px;
    width: 100%;
  }

  .header__items-nav li:nth-child(3) a {
    padding: 50px 16px;
  }

  .header__items-nav li:nth-child(5) a {
    padding: 46px 16px;
  }

  .header__items-nav li:not(:last-child) a:after {
    height: 35px;
    top: 55%;
  }

  .header__items-nav {
    margin-right: 30px;
  }
}
@media (min-width: 1299px) {
  .header__items-nav li a {
    font-size: 18px;
  }
}

@media (min-width: 1699px) {
  .header__items-nav li a {
    font-size: 22px;
  }

  .header__wrap {
    gap: 0px;
    max-width: 1920px;
    margin: auto;
  }

  .header__wrap h1 {
    margin-top: 0px;
  }

  .header__items-nav li a {
    padding: 40px 25px;
    font-size: 22px;
    height: 130px;
  }
  .header__wrap h1 img {
    width: 302px;
  }
  /* 追加 */
  .header__items-nav li:not(:last-child) a:after {
    height: 70px;
    top: 60px;
  }

  .header__items-nav li:nth-child(3) a {
    padding: 50px 25px;
  }

  .header__items-nav li:nth-child(5) a {
    padding: 48px 25px;
  }
}

/*-------------------------------------------------------------
mv
 -------------------------------------------------------------*/
.mv {
  margin-bottom: clamp(24px, 6.4vw, 69px);
  overflow: hidden;
}

.mv__wrap-heading {
  background: var(--white);
  width: 100vw;
  margin: 0px calc(50% - 50vw) 2px;
}

.mv__heading .txt-blue {
  font-weight: 400;
}

.mv__heading {
  text-align: center;
  padding: clamp(0.625rem, 0.534rem + 0.45vw, 0.875rem) 0px;
  font-size: clamp(1rem, 0.682rem + 1.59vw, 1.875rem);
  font-weight: 400;
}

.mv__wrap-img {
  width: 100vw;
  margin: 0px calc(50% - 50vw);
}

.mv__img {
  width: 100vw;
}

@media (min-width: 999px) {
  .mv__heading {
    padding-top: 28px;
    padding-bottom: 24px;
  }
}

/*-------------------------------------------------------------
.section-1
 -------------------------------------------------------------*/
.section-1 {
  margin-bottom: clamp(20px, 5.3vw, 100px);
}

.section-1 h2 {
  text-align: center;
  position: relative;
  font-size: clamp(23px, 6.1vw, 55px);
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-bottom: clamp(13px, 3.4vw, 49px);
}

.section-1 h2::before,
.section-1 h2::after {
  position: relative;
  display: inline-block;
  content: "";
  background: var(--txt-black);
  width: 2px;
  height: clamp(24px, 6.4vw, 56px);
  margin-top: -0.2em;
  vertical-align: middle;
}

.section-1 h2::before {
  transform: rotate(-25deg);
  left: -17px;
}

.section-1 h2::after {
  transform: rotate(25deg);
  right: -20px;
}

.section-1__items {
  display: flex;
  gap: clamp(6px, 1.6vw, 32px);
  justify-content: center;
  margin-bottom: clamp(14px, 3.7vw, 36px);
}

.section-1__items li {
  font-size: clamp(14px, 3.7vw, 32px);
  width: clamp(111px, 29vw, 300px);
  padding: clamp(17px, 4.5vw, 37px) 0px;
  text-align: center;
  border: 3px solid var(--txt-black);
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.2) 4px 4px 6px 0px;
}

.section-1__txt-small {
  font-size: clamp(12px, 3.2vw, 30px);
}

@media (min-width: 992px) {
  .section-1 h2::before {
    left: -58px;
  }

  .section-1 h2::after {
    right: -58px;
  }
}
/*-------------------------------------------------------------
.section-2
 -------------------------------------------------------------*/
.section-2 {
  overflow: hidden;
}

.section-2__wrap-img {
  width: 100vw;
  margin: 0px calc(50% - 50vw);
}

.section-2__wrap-img img {
  width: 100vw;
}

/*-------------------------------------------------------------
.section-3
 -------------------------------------------------------------*/
.section-3 {
  background: url("../images/bg-section-3@2x.png") 0% 0% / cover no-repeat;
  margin-bottom: clamp(40px, 10.6vw, 100px);
}

.section-3__wrap-txt {
  padding-top: 42px;
  padding-bottom: 52px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.section-3__wrap-txt p {
  text-align: center;
  line-height: 1.8;
}

.section-3__wrap-txt p:nth-child(1) {
  font-weight: normal;
  font-size: 4.8vw;
  margin-bottom: 8px;
  margin-right: 20px;
}

.section-3__wrap-txt p:nth-child(2) {
  color: var(--blue);
  font-size: 6.1vw;
  line-height: 1.4;
  margin-bottom: clamp(10px, 2.6vw, 40px);
}

.section-3__txt-star {
  position: relative;
  font-size: 11.2vw;
}

.section-3__txt-star::before,
.section-3__txt-star::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.section-3__txt-star::before {
  content: "";
  width: clamp(41px, 10.9vw, 83px);
  height: clamp(47px, 12.5vw, 95px);
  background: url("../images/arrow-section-3-left.svg") 0% 0% / contain
    no-repeat;
  left: -16.8vw;
}

.section-3__txt-star::after {
  content: "";
  width: clamp(33px, 8.8vw, 67px);
  height: clamp(44px, 11.7vw, 88px);
  background: url("../images/arrow-section-3-right.svg") 0% 0% / contain
    no-repeat;
  right: -13.3vw;
}

.section-3__txt-small {
  font-size: 5.3vw;
  color: var(--txt-black);
}

.section-3__wrap-txt p:nth-child(3) {
  font-size: 4.8vw;
  margin-right: 5.3vw;
}

.section-3__txt-small-type2 {
  font-size: 4.5vw;
}

.section-3__txt-underline {
  text-decoration-line: underline;
  text-decoration-color: #ceebe9;
  text-decoration-thickness: 10px;
}

.section-3__txt-big {
  font-size: 6.6vw;
}

@media (min-width: 749px) {
  .section-3 {
    background: url("../images/bg-section-3@2x.png") 0% 0% / cover no-repeat;
  }
}

@media (min-width: 992px) {
  .section-3 {
    background: url("../images/bg-section-3.png") 0% 0% / contain no-repeat
      rgb(245, 246, 249);
  }

  .section-3__txt-underline {
    text-underline-offset: -10px;
    text-decoration-thickness: 15px;
  }

  .section-3__wrap-txt p:nth-child(1) {
    font-size: 24px;
    white-space: nowrap;
    margin-right: 0px;
  }

  .section-3__wrap-txt p:nth-child(2) {
    font-size: 30px;
  }

  .section-3__txt-star {
    font-size: 50px;
  }

  .section-3__wrap-txt p:nth-child(3) {
    font-size: 27px;
    margin-right: 0;
  }

  .section-3__wrap-txt {
    padding-top: 15px;
    padding-bottom: 15px;
    width: 407px;
    margin-right: 90px;
    margin-left: auto;
    display: flex;
    align-items: center;
  }

  .section-3__txt-big {
    font-size: 30px;
  }

  .section-3__txt-small-type2 {
    font-size: 17px;
  }

  .section-3__txt-small {
    font-size: 20px;
  }
}
@media (min-width: 999px) {
  .section-3__txt-star::before {
    left: -120px;
  }
  .section-3__txt-star::after {
    right: -90px;
  }
}

@media (min-width: 1099px) {
  .section-3__wrap-txt {
    margin-right: 250px;
  }
}

@media (min-width: 1199px) {
  .section-3__wrap-txt {
    margin-right: 300px;
  }
}
@media (min-width: 1299px) {
  .section-3__wrap-txt {
    padding: 60px 0;
    margin-right: 350px;
  }
}

@media (min-width: 1399px) {
  .section-3__wrap-txt {
    margin-right: 420px;
  }
}
@media (min-width: 1499px) {
  .section-3__wrap-txt {
    margin-right: 470px;
  }
}

@media (min-width: 1599px) {
  .section-3__wrap-txt {
    padding: 60px 0;
    width: 599px;
    margin-right: 146px;
  }

  .section-3__wrap-txt p:nth-child(1) {
    font-size: 35px;
    margin-bottom: 0px;
  }

  .section-3__wrap-txt p:nth-child(2) {
    font-size: 50px;
  }

  .section-3__txt-star {
    font-size: 84px;
  }

  .section-3__txt-small {
    font-size: 40px;
  }

  .section-3__wrap-txt p:nth-child(3) {
    font-size: 50px;
  }

  .section-3__txt-small-type2 {
    font-size: 45px;
  }

  .section-3__txt-big {
    font-size: 55px;
  }
}
/*-------------------------------------------------------------
.section-4
 -------------------------------------------------------------*/
.section-4 {
  margin-bottom: clamp(46px, 12vw, 100px);
}

.section-4 h2 {
  margin-bottom: clamp(11px, 2.9vw, 48px);
  display: flex;
  justify-content: center;
}

.section-4__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-4__wrap-cta-sub {
  width: 100vw;
  margin: 0px calc(50% - 50vw);
}

.section-4__arrow-cta {
  width: 50%;
  position: absolute;
  top: 109vw;
  left: 25%;
}

@media (min-width: 699px) {
  .section-4__wrap-cta-sub {
    width: auto;
    margin: auto;
  }

  .section-4__arrow-cta {
    top: 36%;
  }
}

@media (min-width: 750px) {
  .section-4__arrow-cta {
    top: 58%;
  }
}

@media (min-width: 799px) {
  .section-4__arrow-cta {
    top: 57%;
  }
}

@media (min-width: 999px) {
  .section-4__arrow-cta {
    top: 55%;
    max-width: 269px;
    left: 36%;
  }
}

@media (min-width: 1199px) {
  .section-4__arrow-cta {
    top: 55%;
    left: 38%;
  }
}
@media (min-width: 1299px) {
  .section-4__arrow-cta {
    top: 54%;
    left: 39%;
  }
}
@media (min-width: 1399px) {
  .section-4__arrow-cta {
    left: 41%;
  }
}
/*-------------------------------------------------------------
.cta
 -------------------------------------------------------------*/
.cta {
  margin-bottom: clamp(45px, 12vw, 110px);
}

.cta__wrap-txt {
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-bottom: clamp(30px, 8vw, 93px);
}

.cta__wrap-txt p {
  display: inline-block;
}

.cta__wrap-txt p:nth-child(1) {
  background: var(--blue);
  color: var(--white);
  font-size: clamp(17px, 4.5vw, 35px);
  padding: clamp(4px, 1vw, 8px) clamp(17px, 4.5vw, 35px);
  border-radius: 5px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  margin-bottom: 22px;
}

.cta__wrap-txt p:nth-child(2) {
  font-size: clamp(20px, 5.3vw, 40px);
  position: relative;
  font-family: "Noto Serif JP", serif;
}

.cta__wrap-txt p:nth-child(2)::before {
  position: absolute;
  content: "";
  background: url("../images/arrow-cta.svg") center center / contain no-repeat;
  width: clamp(270px, 72vw, 503px);
  left: 50%;
  transform: translateX(-50%);
  height: clamp(19px, 5vw, 33px);
  bottom: -37px;
}

.cta__wrap-heading {
  display: flex;
  margin-bottom: clamp(30px, 8vw, 78px);
  justify-content: center;
}

.cta__wrap-img {
  display: flex;
  margin-bottom: clamp(15px, 4vw, 44px);
  justify-content: center;
}

.cta__txt {
  text-align: center;
  font-weight: normal;
  font-size: clamp(17px, 4.5vw, 35px);
  margin-bottom: clamp(14px, 3.7vw, 28px);
  line-height: 1.7;
}

@media (min-width: 599px) {
  .cta__wrap-txt p:nth-child(2)::before {
    bottom: -29px;
  }
}

@media (min-width: 992px) {
  .cta__wrap-txt {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 23px;
  }

  .cta__wrap-txt::before {
    position: absolute;
    content: "";
    background: url("../images/arrow-cta.svg") center center / contain no-repeat;
    width: 753px;
    height: 33px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -58px;
  }

  .cta__wrap-txt p:nth-child(1) {
    margin-bottom: 0px;
  }

  .cta__wrap-txt p:nth-child(2)::before {
    content: none;
  }
}
/*-------------------------------------------------------------
section-5
 -------------------------------------------------------------*/
.section-5 {
  padding-top: clamp(45px, 12vw, 167px);
  padding-bottom: clamp(30px, 8vw, 94px);
  background: url("../images/bg-section-5@2x.svg") 0% 0% / cover no-repeat;
  position: relative;
  z-index: -1;
}

.section-5__wrap-txt {
  text-align: center;
  position: relative;
  margin-bottom: clamp(23px, 6.1vw, 63px);
}

.section-5__wrap-txtSub {
  display: inline-block;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.section-5__wrap-txtSub p {
  font-size: clamp(22px, 5.8vw, 50px);
}

.section-5__wrap-txtSub h2 {
  font-size: clamp(25px, 6.6vw, 70px);
}

.section-5__txt-big {
  font-size: clamp(37px, 9.8vw, 100px);
}

.section-5__wrap-txt::before {
  position: absolute;
  content: "LESSON";
  color: rgb(208, 233, 231);
  font-family: "Antonio", sans-serif;
  opacity: 0.5;
  font-size: clamp(80px, 21vw, 160px);
  bottom: clamp(40px, 10vw, 90px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.section-5 .step__items li p:nth-child(2) p {
  padding-top: 32px;
}

.section-5 .step__items li:nth-child(2) p {
  padding-top: 30px;
}

.section-5 .step__items li:nth-child(3) p {
  padding-top: 20px;
}

.section-5 .step__items li {
  display: flex;
  justify-content: center;
}

.section-5 .step__wrap-icon {
  display: flex;
  justify-content: center;
}

@media (min-width: 749px) {
  .section-5 .step__items li:nth-child(2) p,
  .section-5 .step__items li:nth-child(3) p {
    padding: 0px;
  }

  .section-5 {
    background: url("../images/bg-section-5.svg") 0% 0% / cover no-repeat;
  }
}
/*-------------------------------------------------------------
section-6
 -------------------------------------------------------------*/
.section-6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #fff url("../images/bg-section-6@2x.svg");
  background-repeat: no-repeat;
  background-size: clamp(133px, 35vw, 288px);
  position: relative;
  z-index: -1;
}

.section-6__wrap-title {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  margin-bottom: clamp(34px, 9vw, 68px);
}

.section-6__wrap-title h2 {
  display: flex;
  justify-content: center;
}

.section-6__wrap h3 {
  font-size: clamp(22px, 5.8vw, 50px);
  padding-bottom: clamp(20px, 5.3vw, 61px);
  border-bottom: 3px solid var(--blue);
  display: inline-block;
  margin-bottom: clamp(20px, 5.3vw, 26px);
}

.section-6__wrap-sub {
  font-size: clamp(15px, 4vw, 35px);
  font-weight: normal;
  line-height: 2.6;
}

.section-6__wrap-subImg {
  position: absolute;
  z-index: -2;
  right: -30px;
  bottom: -30px;
  width: 50%;
  max-width: 340px;
}

.section-6__wrap {
  position: relative;
  margin-bottom: clamp(48px, 12.8vw, 170px);
}

.section-6__wrap-type2Title {
  margin-left: clamp(53px, 14vw, 106px);
  margin-bottom: clamp(25px, 6.6vw, 67px);
}

.section-6__wrap-type2 h3 {
  position: relative;
  font-size: clamp(22px, 5.8vw, 50px);
}

.section-6__wrap-type2 h3::before {
  position: absolute;
  content: "Pilates";
  font-size: clamp(65px, 17vw, 130px);
  color: rgb(237, 237, 237);
  font-family: "Antonio", sans-serif;
  left: -60px;
  top: -160%;
  z-index: -1;
}

.section-6__wrap-type2-img {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  margin-bottom: clamp(25px, 6.6vw, 50px);
}

.section-6__wrap-type2-txt {
  font-weight: normal;
  font-size: clamp(15px, 4vw, 35px);
  line-height: 2.4;
}

.section-6__wrap-type2-txt p:not(:last-child) {
  margin-bottom: clamp(19px, 5vw, 41px);
}

@media (min-width: 992px) {
  .section-6 {
    padding-top: 89px;
    padding-bottom: 61px;
    background: url("../images/bg-section-6.svg");
    background-repeat: no-repeat;
    position: relative;
    z-index: -1;
  }

  .section-6__wrap-type2title {
    text-align: center;
  }

  .section-6__wrap-type2Title {
    text-align: center;
    margin-left: 0px;
  }

  .section-6__wrap-type2-img {
    width: auto;
    margin: initial;
    margin-bottom: clamp(25px, 6.6vw, 50px);
  }

  .section-6__wrap-type2 h3 {
    display: inline-block;
  }

  .section-6__wrap-type2 h3::before {
    left: -53%;
  }
  .section-6__wrap-subImg {
    bottom: -130px;
    width: initial;
    max-width: initial;
    right: 80px;
  }
  .section-6__wrap-content {
    margin-left: 80px;
  }
  .section-6__wrap-title h2 {
    display: block;
  }

  .section-6__wrap-title {
    width: initial;
    margin: 0;
    margin-bottom: clamp(34px, 9vw, 68px);
  }
}
/*-------------------------------------------------------------
section-7
 -------------------------------------------------------------*/
.section-7 {
  padding-top: clamp(110px, 29vw, 350px);
  padding-bottom: 0px;
  background: #fff url("../images/bg-section-7@2x.svg") 0% 0% / contain
    no-repeat;
  position: relative;
  height: auto;
  z-index: -1;
  margin-bottom: clamp(38px, 10vw, 124px);
}

.section-7 h2 {
  text-align: center;
}

.section-7 h2 {
  text-align: center;
  position: relative;
  font-size: clamp(25px, 6.6vw, 65px);
  margin-bottom: clamp(23px, 6.1vw, 147px);
}

.section-7 h2::before {
  position: absolute;
  content: "リピラティス";
  font-size: clamp(10px, 2.6vw, 30px);
  bottom: 8.8vw;
  right: 53%;
}

.section-7__wrap-img {
  width: 100%;
  margin: auto;
  padding: 0 clamp(40px, 10.6vw, 80px) clamp(23px, 6.1vw, 57px);
  margin: auto;
  display: flex;
  justify-content: center;
}

.section-7__wrap p {
  font-size: clamp(15px, 4vw, 30px);
  line-height: 2.5;
  letter-spacing: 0.1em;
  padding: 0 clamp(27px, 7.2vw, 54px) 0 clamp(24px, 6.4vw, 49px);
}

.section-7__wrap {
  margin-bottom: clamp(41px, 10vw, 151px);
}

.section-7__wrap-type2 .section-7__wrap-img {
  width: 100vw;
  padding: 0;
  margin: auto;
  overflow: hidden;
}

.section-7__wrap-txt {
  font-size: clamp(15px, 4vw, 30px);
  font-weight: normal;
  margin-bottom: clamp(44px, 11.7vw, 87px);
  padding-left: clamp(20px, 5.3vw, 40px);
}

.section-7__wrap-txt p:nth-child(1) {
  margin-bottom: clamp(10px, 2.6vw, 22px);
}

.section-7__wrap-txt p:nth-child(2) {
  margin-bottom: clamp(10px, 2.6vw, 26px);
  line-height: 2.5;
  font-feature-settings: "palt";
}

.section-7__wrap-txt p:nth-child(3),
.section-7__wrap-txt p:nth-child(4) {
  margin-bottom: clamp(10px, 2.6vw, 32px);
  line-height: 2.5;
}
.section-7__wrap-txt p:last-child {
  line-height: 2.5;
}
.section-7__wrap-img-type2 {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
/* 追加 */
.section-7__wrap-type2 {
  background: #ebf7f6;
}

.section-7__wrap-img-type2 {
  background: #ebf7f6;
}

@media (min-width: 599px) {
  .section-7 h2::before {
    bottom: 94%;
  }
}

@media (min-width: 1200px) {
  .section-7 {
    background: url("../images/bg-section-7.svg") 0% 0% / cover no-repeat;
  }
  .section-7__wrap-type2 {
    background: initial;
  }

  .section-7__wrap-img-type2 {
    background: initial;
  }
  .section-7__wrap {
    display: flex;
    gap: 75px;
  }
  .section-7__wrap-img {
    width: initial;
    margin: 0;
    padding: 0;
  }

  .section-7__wrap p {
    max-width: 720px;
    white-space: nowrap;
    padding: 0;
  }

  .section-7__wrap-txt {
    margin-top: -290px;
    padding-left: 80px;
    margin-bottom: 87px;
  }
}
/*-------------------------------------------------------------
section-8
 -------------------------------------------------------------*/
.section-8 h2 {
  text-align: center;
  font-size: clamp(22px, 5.3vw, 50px);
  line-height: 1.8;
  margin-bottom: clamp(29px, 7.7vw, 123px);
}
@media (min-width: 749px) {
  .section-8 {
    margin-bottom: 127px;
  }
}
/*-------------------------------------------------------------
section-9
 -------------------------------------------------------------*/
.section-9 {
  background: url("../images/bg-section-9@2x.svg") 0% 0% / cover no-repeat;
  height: auto;
  margin-top: -19px;
  padding-top: 40px;
  padding-bottom: 50px;
  margin-bottom: clamp(25px, 6.6vw, 81px);
}

.section-9 h2 {
  width: clamp(295px, 77vw, 590px);
  margin: auto;
  margin-bottom: clamp(25px, 6.6vw, 71px);
}

.section-9__wrap-img {
  width: 90%;
  max-width: 660px;
  margin-bottom: clamp(25px, 6.6vw, 50px);
}

.section-9__items li:nth-child(even) .section-9__wrap-img {
  margin-left: auto;
}

.section-9__items {
  display: flex;
  flex-direction: column;
  gap: clamp(27px, 7.2vw, 70px);
}

.section-9__wrap-txt {
  padding-left: clamp(27px, 7.2vw, 78px);
  padding-right: clamp(52px, 13vw, 104px);
}

.section-9__num {
  font-family: "Antonio", sans-serif;
  color: var(--blue);
  font-size: clamp(17px, 4.5vw, 30px);
  margin-bottom: clamp(14px, 4vw, 32px);
}

.section-9__cnt {
  font-size: clamp(22px, 5.8vw, 40px);
  position: relative;
}

.section-9__cnt:after {
  position: absolute;
  content: "";
  background: var(--blue);
  width: clamp(193px, 51vw, 263px);
  height: 1px;
  top: 50%;
  left: 25px;
  z-index: 2;
}

.section-9__title {
  font-size: clamp(25px, 6.6vw, 35px);
  color: var(--blue);
  margin-bottom: clamp(15px, 4vw, 22px);
  line-height: 1.5;
}

.section-9__txt {
  font-weight: normal;
  font-size: clamp(14px, 3.7vw, 24px);
  line-height: 1.7;
}

.section-9__detail {
  text-align: right;
  font-weight: normal;
  font-size: clamp(10px, 2.6vw, 20px);
}

@media (min-width: 749px) {
  .section-9 h2 {
    width: 80%;
    max-width: 910px;
  }
  .section-9 {
    padding-top: 158px;
    padding-bottom: 113px;
    margin-top: 0;
  }

  .section-9__wrap-img {
    display: flex;
    margin: auto;
    margin-bottom: 50px;
    justify-content: center;
  }
}
@media (min-width: 1200px) {
  .section-9__items {
    display: flex;
    flex-direction: row;
  }

  .section-9__wrap-img {
    width: max(320px, 420px);
    max-width: initial;
  }
  .section-9__title {
    height: 110px;
    display: flex;
    align-items: center;
  }

  .section-9__wrap-txt {
    padding: 0;
  }
}
/*-------------------------------------------------------------
section-10
 -------------------------------------------------------------*/
.section-10 {
  margin-bottom: clamp(45px, 12vw, 150px);
}

.section-10 h2 {
  margin-bottom: clamp(11px, 2.9vw, 48px);
  display: flex;
  justify-content: center;
}

.section-10__wrap {
  background-size: cover;
  background-repeat: no-repeat;
  flex-direction: column;
  align-items: center;
}

.section-10__arrow {
  width: 50%;
  max-width: 269px;
}

.section-10__wrap-ribbon {
  width: clamp(305px, 81vw, 610px);
}

.section-10__wrap {
  padding: clamp(1rem, 0.818rem + 0.91vw, 1.5rem) ;
}
@media (min-width: 749px) {
  .section-10__wrap {
    background-size: contain;
    background-repeat: no-repeat;
    padding: 50px 80px;
  }
  .section-10__arrow {
    margin-bottom: 45px;
    width: 342px;
  }

  .section-10__wrap-ribbon {
    width: initial;
    max-width: 816px;
  }
  .section-10__title {
    width: 50%;
  }
}
@media (min-width: 799px) {
  .section-10__wrap {
    padding: 80px;
  }
}
@media (min-width: 1020px) {
  .section-10__wrap {
    padding: 100px;
  }
}

@media (min-width: 1200px) {
  .section-10__wrap {
    background-size: contain;
    background-repeat: no-repeat;
    padding: 30px 76px 10px 75px;
  }

  .section-10__title {
    width: initial;
  }
}

/*-------------------------------------------------------------
section-11
 -------------------------------------------------------------*/
.section-11 {
  background: #fff url(../images/bg-section-11@2x.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 70px 0 50px 0;
  margin-bottom: clamp(45px, 12vw, 124px);
}

.section-11__wrap-title {
  text-align: center;
  position: relative;
}
.section-11__wrap-title:before {
  position: absolute;
  content: "LESSON";
  z-index: 1;
  font-family: "Antonio", sans-serif;
  font-size: clamp(80px, 21vw, 160px);
  color: #d0e9e7;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.5;
  z-index: 0;
}

.section-11__wrap-title h2 {
  display: inline-block;
  font-size: clamp(22px, 5.8vw, 50px);
  line-height: 1.6;
  margin-bottom: clamp(40px, 10.6vw, 74px);
  position: relative;
}

.section-11__txt-big {
  font-size: clamp(30px, 8vw, 100px);
}
.section-11 .step__items li:nth-child(2) p {
  padding-top: 40px;
}

.section-11 .step__items li:nth-child(3) p {
  padding-top: 20px;
}

.step__wrap-icon {
  display: flex;
  justify-content: center;
}
@media (min-width: 499px) {
  /* 背景ブロック用 */
  .section-11 {
    padding: 210px 0 100px !important;
    background: url(../images/bg-section-11.png) !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
  }
}
@media (min-width: 749px) {
  .section-11 .step__items li:nth-child(2) p,
  .section-11 .step__items li:nth-child(3) p {
    padding-top: 0px;
    /* width: 140%; */
    max-width: 390px;
  }

  @media (min-width: 992px) {
    .section-11__wrap-title h2 {
      line-height: 1;
    }
    /* 背景ブロック用 */
    .section-11 {
      padding: 230px 0 100px !important;
      background: url(../images/bg-section-11.png) !important;
      background-size: cover !important;
      background-repeat: no-repeat !important;
    }

    .section-11__wrap-title:before {
      top: -80px;
    }

    .section-11__txt-pcBlue {
      color: var(--blue);
    }

    .section-11 .step__items li:nth-child(2) p {
      padding-left: 30px;
    }

    .section-11 .step__items li:nth-child(3) p {
      padding-left: 70px;
      white-space: nowrap;
    }
  }

  @media (min-width: 1199px) {
    .section-11 .step__items li:nth-child(1) .step__wrap-icon:after,
    .section-11 .step__items li:nth-child(2) .step__wrap-icon:after {
      right: -120px;
    }
  }
}
@media (min-width: 1399px) {
  .section-11 .step__items li {
    width: 376px;
  }
}
/*-------------------------------------------------------------
section-12
 -------------------------------------------------------------*/
.section-12 {
  padding-top: 160px;
  margin-top: -160px;
  margin-bottom: clamp(50px, 13vw, 124px);
  display:none;
}
.section-12__wrap-title {
  text-align: center;
  position: relative;
}

.section-12__wrap-title h2 {
  font-size: clamp(25px, 6.6vw, 47px);
  margin-bottom: clamp(45px, 12vw, 114px);
}

.section-12__wrap-title:before {
  position: absolute;
  font-family: "Antonio", sans-serif;
  content: "STAFF";
  font-size: clamp(80px, 21vw, 160px);
  color: #d0e9e7;
  left: 50%;
  top: 20%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.section-12__wrap {
  font-weight: 300;
}

.section-12__wrap-txtSub p:not(:last-child) {
  margin-bottom: clamp(14px, 3.7vw, 30px);
}

.section-12__wrap-txtSub {
  margin-bottom: clamp(21px, 5.6vw, 47px);
  line-height: 1.7;
}

.section-12__wrap-messeage h3 {
  font-size: clamp(20px, 5.3vw, 40px);
  font-weight: var(--medium);
  margin-bottom: clamp(24px, 6.4vw, 40px);
  position: relative;
}

.section-12__wrap-messeage h3:before {
  position: absolute;
  content: "Message";
  font-family: "Antonio", sans-serif;
  color: #ededed;
  font-size: clamp(55px, 14.6vw, 110px);
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  left: 50px;
}
.section-12__wrap-messeage h3:after {
  position: absolute;
  content: "";
  background: url(../images/arrow-section-12.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: clamp(137px, 36.5vw, 294px);
  height: 8px;
  bottom: -10px;
  left: 0;
}

.section-12__wrap-messeage p {
  line-height: 1.7;
}
.section-12__wrap-messeage p:not(:last-child) {
  margin-bottom: clamp(14px, 3.7vw, 28px);
}

.section-12__wrap-messeage {
  position: relative;
  margin-bottom: clamp(27px, 7.2vw, 55px);
}

.section-12__wrap-messeage:before {
  content: "";
  position: absolute;
  background: url(../images/bg-section-12.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 240px;
  height: 160px;
  z-index: -1;
  right: -15px;
}
.section-12__wrap-license {
  border: 1px solid var(--blue);
  padding: 20px 0 20px 10px;
  font-size: clamp(14px, 3.7vw, 28px);
}

.section-12__license,
.section-12__items li:not(:last-child) {
  margin-bottom: 16px;
}
@media (min-width: 1299px) {
  .section-12__wrap-title:before {
    top: 40%;
    left: 48%;
  }

  .section-12__wrap {
    display: flex;
  }

  .section-12__wrap-messeage:before {
    bottom: -80px;
    width: 418px;
    height: 300px;
  }

  .section-12__wrap-txt {
    font-size: clamp(14px, 3.7vw, 28px);
    max-width: 740px;
  }

  .section-12__items li {
    font-size: clamp(14px, 3.7vw, 28px);
  }
  .section-12__wrap-license {
    padding: 37px;
  }
}
/*-------------------------------------------------------------
section-13
 -------------------------------------------------------------*/
.section-13__wrap-title {
  text-align: center;
  padding-top: clamp(60px, 16vw, 174px);
  padding-bottom: clamp(30px, 8vw, 96px);
  background: url("../images/bg-section-13-1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.section-13__wrap-title h2 {
  position: relative;
  z-index: 0;
  font-size: clamp(27px, 7.2vw, 50px);
}
.section-13__wrap-title:before {
  content: "STEP";
  position: absolute;
  color: #d0e9e7;
  font-size: clamp(80px, 21vw, 160px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  top: 43%;
  transform: translate(-50%, -50%);
  font-family: "Antonio", sans-serif;
}

.section-13__items li {
  display: flex;
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 4px 0px;
  flex-direction: column;
  text-align: center;
  align-items: center;
  border: 10px;
  padding: 26px 18px 37px 27px;
}

.section-13__items {
  padding: 36px 20px 47px 20px;
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 8vw, 50px);
  position: relative;
}

.section-13__items:before {
  position: absolute;
  content: "";
  background: url(../images/arrow-section-13@2x-1.png);
  background-size: contain;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 1000px;
  z-index: -1;
}

.section-13__num:before {
  position: absolute;
  content: "";
  background: url(../images/arrow-section-13-1.svg);
  background-size: contain;
  width: clamp(80px, 21vw, 160px);
  height: 7px;
  top: 60%;
  left: -100px;
}

.section-13__num:after {
  position: absolute;
  content: "";
  background: url(../images/arrow-section-13-1.svg);
  background-size: contain;
  width: clamp(80px, 21vw, 160px);
  height: 7px;
  top: 60%;
  right: -98px;
}

.section-13__num {
  font-family: "Antonio", sans-serif;
  font-size: clamp(25px, 6.6vw, 36px);
  color: var(--blue);
  position: relative;
  margin-bottom: clamp(10px, 2.6vw, 20px);
}

.section-13__num span {
  font-size: clamp(35px, 9.3vw, 50px);
  position: relative;
}

.section-13__title {
  color: var(--blue);
  font-size: clamp(22px, 5.8vw, 32px);
  margin-bottom: 18px;
}

.section_13-img {
  margin-bottom: 15px;
}
.section-13__items li:nth-child(2) .section-13__wrap-sub {
  max-width: clamp(251px, 67vw, 479px);
}
.section-13__items li p:last-child {
  font-size: clamp(14px, 3.7vw, 20px);
  font-weight: normal;
  width: 90%;
  max-width: 450px;
  text-align: left;
  line-height: 1.7;
}

@media (min-width: 599px) {
  .section-13__num:before {
    left: -160px;
  }

  .section-13__num:after {
    right: -160px;
  }
}
@media (min-width: 749px) {
  .section-13__num:before {
    width: 113px;
    height: 10px;
    left: -130px;
  }

  .section-13__num:after {
    width: 113px;
    height: 10px;
    right: -122px;
  }
}

@media (min-width: 1200px) {
  .section-7 h2::before {
    bottom: 79px;
    right: 50%;
  }
  .section-13__wrap {
    padding: 113px 20px 193px 20px;
    background: url(../images/bg-section-13-2.png);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    height: 988px;
  }
  .section-13__items {
    background: none;
    display: flex;
    flex-direction: row;
    gap: clamp(30px, 8vw, 50px);
    position: relative;
    justify-content: center;
    max-width: 1400px;
    margin: auto;
    padding: 0;
  }

  .section-13__items:before {
    background: url(../images/arrow-section-13-2.png);
    width: 918px;
    height: 36px;
    z-index: -1;
  }
  .section-13__items li {
    width: 40%;
    max-width: 434px;
  }
  .section-13__items li a {
    height: 197px;
  }
  .section-13__items li p:last-child {
    width: 320px;
    line-height: 1.7;
    text-align: left;
  }
  .section-13__items li:nth-child(2) p:last-of-type {
    margin-left: 0px;
  }
  .section-13__wrap-title:before {
    top: 47%;
  }
  .section-13__title {
    height: 73px;
  }

  .section-13__items li .section-13__wrap-sub {
    height: 217px;
  }

  .section_13-img {
    margin-bottom: 0px;
  }
}
/*-------------------------------------------------------------
faq
 -------------------------------------------------------------*/
.faq {
  background: #ebf7f6;
  padding-top: clamp(39px, 10.4vw, 227px);
  padding-bottom: clamp(39px, 10.4vw, 187px);
  margin-bottom: clamp(80px, 21vw, 230px);
}
.faq__wrap:not(:last-child) {
  margin-bottom: clamp(16px, 4.2vw, 32px);
}

.faq__wrap-title {
  text-align: center;
  position: relative;
  font-size: clamp(25px, 6.6vw, 45px);
  margin-bottom: clamp(39px, 10.4vw, 110px);
}

.faq__wrap-title:before {
  content: "FAQ";
  position: absolute;
  font-family: "Antonio", sans-serif;
  color: #d0e9e7;
  font-size: clamp(80px, 21vw, 160px);
  left: 50%;
  transform: translateX(-50%);
  top: 30%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.2em;
  z-index: 0;
}

.faq__wrap-title h2 {
  position: relative;
  z-index: 1;
}

.faq__wrap-q {
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 5px;
  display: grid;
  grid-template-columns: clamp(40px, 10.6vw, 120px) 1fr 20px;
  padding: 20px 28px 18px 24px;
  align-items: center;
  justify-content: space-between;
  line-height: 1.5;
}

.faq__q {
  font-size: clamp(35px, 9.3vw, 60px);
  font-family: "Antonio", sans-serif;
  color: var(--blue);
}

.faq__title {
  white-space: nowrap;
  font-size: 3.7vw;
  font-weight: bold;
}

.faq__btn {
  font-size: clamp(28px, 7.4vw, 57px);
  color: var(--blue);
  cursor: pointer;
}

.faq__wrap-a {
  display: none;
}

.is-display {
  display: grid;
  grid-template-columns: clamp(40px, 10.6vw, 120px) 1fr;
  padding: 20px 28px 18px 24px;
}

.faq__txt-q {
  font-size: clamp(14px, 3.7vw, 28px);
  line-height: 1.6;
}

.faq__a {
  color: var(--orange);
  font-size: clamp(35px, 9.3vw, 60px);
  font-family: "Antonio", sans-serif;
}

@media (min-width: 992px) {
  .faq__wrap-q,
  .faq__wrap-a {
    padding: 22px 110px 28px 122px;
  }

  .faq__wrap-q {
    display: grid;
    grid-template-columns: 105px 600px 1fr;
  }
  .faq__title {
    font-size: 20px;
  }
  .faq__btn {
    text-align: right;
  }

  .is-display {
    display: grid;
    grid-template-columns: 105px 1fr;
  }
  .faq__wrap-title:before {
    left: 51%;
    top: 18%;
    letter-spacing: 0.3em;
  }
}
@media (min-width: 1200px) {
  .faq__title {
    font-size: 28px;
  }
}
/*-------------------------------------------------------------
store
 -------------------------------------------------------------*/
 .store {
  margin-bottom: clamp(49px, 13vw, 111px);
}
.store__wrap-title {
  text-align: center;
  font-size: clamp(25px, 6.6vw, 50px);
  position: relative;
  margin-bottom: clamp(45px, 12vw, 132px);
}

.store__wrap-title::before {
  position: absolute;
  content: "STORE";
  font-size: clamp(98px, 26vw, 160px);
  color: #d0e9e7;
  z-index: -1;
  font-family: "Antonio", sans-serif;
  top: 20%;
  transform: translate(-50%, -50%);
}

.store__wrap-store {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(25px, 6.6vw, 52px);
}

.store__wrap-storeSub {
  text-align: center;
}

.store__tag {
  background: var(--blue);
  color: var(--white);
  border-radius: 5px;
  padding: clamp(3px, 0.8vw, 8px) clamp(15px, 4vw, 25px);
  margin-bottom: 17px;
  display: inline-block;
  font-size: clamp(17px, 4.5vw, 35px);
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}
.store__wrap {
  margin-top: clamp(27px, 7.2vw, 106px);
  margin-bottom: clamp(27px, 7.2vw, 106px);
  display: flex;
  justify-content: center;
}

.store__txt {
  font-size: clamp(20px, 5.3vw, 45px);
  font-weight: bold;
  margin-bottom: clamp(20px, 5.3vw, 48px);
  font-family: "Noto Serif JP", serif;
}

.store__txt-small {
  font-size: clamp(0.625rem, 0.352rem + 1.36vw, 1.375rem);
  line-height: 1.3;
}

.store__wrap-store img {
  width: clamp(227px, 60vw, 447px);
}

.store__wrap iframe {
  margin-bottom: clamp(27px, 7.2vw, 106px);
  width: 100%;
  height: clamp(172px, 45vw, 344px);
}

.store__items li p:nth-child(1) {
  font-size: clamp(18px, 4.8vw, 35px);
  color: var(--blue);
  margin-bottom: 3px;
}

.store__items li p:nth-child(2) {
  font-size: clamp(14px, 3.7vw, 35px);
  white-space: nowrap;
  line-height: 1.6;
  font-weight: normal;
}
.store__items {
  margin-top: clamp(27px, 7.2vw, 106px);
  padding: 0 15px;
}

.store__items li {
  padding-bottom: clamp(10px, 2.6vw, 37px);
  margin-bottom: clamp(10px, 2.6vw, 41px);
}
.store__items li {
  border-bottom: 4px dotted var(--blue);
}

.store__items li:last-of-type {
  border-bottom: initial;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .store__wrap-storeSub {
    text-align: center;
    display: flex;
    align-items: flex-start;
    gap: 28px;
  }

  .store__items {
    padding-left: 25px;
  }

  .store__wrap iframe {
    width: 979px;
    height: 484px;
    margin: auto;
  }

  .store__wrap {
    display: flex;
    align-items: center;
  }

  .store__items li {
    display: grid;
    grid-template-columns: 360px 1fr;
    justify-items: stretch;
    padding-left: 130px;
  }

  .store__items {
    padding-left: 185px;
    padding-right: 85px;
  }

  .store__items li {
    border-bottom: 6px dotted var(--blue);
  }
}

/*-------------------------------------------------------------
footer
 -------------------------------------------------------------*/
.footer {
  margin-bottom: clamp(35px, 9.3vw, 157px);
}
.footer__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__wrap-img {
  margin-bottom: clamp(18px, 4.8vw, 33px);
}

.footer__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__wrap-img {
  margin-bottom: clamp(18px, 4.8vw, 33px);
}

.footer img {
  width: clamp(185px, 49.3vw, 370px);
}

.footer__items {
  display: flex;
  justify-content: space-between;
  gap: clamp(22px, 5.8vw, 43px);
}

.footer__items li {
  font-size: clamp(14px, 3.7vw, 28px);
  font-weight: 500;
}

.footer__items li a {
  color: var(--text-black);
}

/*-------------------------------------------------------------
step
 -------------------------------------------------------------*/
.step {
  background: var(--white);
  box-shadow: rgba(0, 0, 0, 0.25) 4px 4px 8px 0px;
  padding: 25px 10px;
}

.step__items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step__items li {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.step__items li p {
  font-size: 3.7vw;
  font-weight: normal;
  width: 98%;
  max-width: 495px;
  line-height: 1.7;
}

.step__items li:not(:last-child) {
  margin-bottom: 10px;
}
.step__wrap-icon {
  width: 60%;
  max-width: 260px;
}
@media (min-width: 749px) {
  .step {
    padding: 30px;
  }
  .step__items {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: baseline;
    gap: 40px;
  }

  .step__items li {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 30%;
  }

  .step__items li p {
    font-size: 14px;
    width: initial;
    line-height: 1.6;
  }

  .section-11 .step__wrap-icon img {
    width: 110%;
    max-width: 280px;
  }

  .step__items li:not(:last-child) {
    margin-bottom: 0;
  }

  .step__wrap-icon {
    position: relative;
  }

  .step__items li:nth-child(1) .step__wrap-icon:after,
  .step__items li:nth-child(2) .step__wrap-icon:after {
    position: absolute;
    content: "";
    background: url("../images/arrow-step.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 63px;
    height: 9px;
    top: 50%;
    right: -100px;
  }
}

@media (min-width: 1200px) {
  .step {
    padding: 78px 112px 120px 74px;
  }
  .step__items li p {
    font-size: 30px;
  }
  .step__items li {
    width: 30%;
  }
}
/*-------------------------------------------------------------
btn-fixed
-------------------------------------------------------------*/
.btn-fixed {
  display: none;
  position: fixed;
  z-index: 2;
  bottom: 0;
  right: 0;
  width: 120px;
}
@media (max-width: 499px) {
  .is-display-btn {
    display: block;
  }

  .is-fade-btn {
    display: none;
  }
  .btn-link {
    position: relative;
    z-index: 5;
  }
  .btn-fixed img {
    position: relative;
    width: 120px;
    height: 120px;
  }
  @keyframes pulsate {
    0% {
      transform: scale(1);
      opacity: 1;
    }
    100% {
      transform: scale(2);
      opacity: 0;
    }
  }

  .anime_pulse {
    position: absolute;
    top: 0px;
    left: -1px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    z-index: 1;
  }

  .anime_pulse::before,
  .anime_pulse::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: var(--blue);
    border-radius: 50%;
    box-sizing: border-box;
    pointer-events: none;
    animation: pulsate 1.5s linear infinite;
    z-index: 1;
  }

  .anime_pulse::before {
    width: 65%;
    height: 65%;
    animation-delay: 0.5s;
  }

  .anime_pulse::after {
    width: 75%;
    height: 75%;
  }

  .anime_pulse {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
  }

  .anime_pulse::before {
    width: 70%;
    height: 70%;
  }

  .anime_pulse::after {
    width: 80%;
    height: 80%;
  }
}
/*-------------------------------------------------------------
zoom指定
-------------------------------------------------------------*/
@media (1200px <= width <= 1599px) {
  .section-1,
  .section-4,
  .cta,
  .btn-area-2,
  .section-5,
  .section-6,
  .sns,
  .section-7,
  .section-8,
  .section-9,
  .section-10,
  .cta,
  .section-11,
  .section-12,
  .section-13,
  .faq,
  .store,
  .footer {
    zoom: 70%;
  }
  .section-7__wrap-img-type2 {
    width: 100vw;
    opacity: 0;
  }

  .section-7 {
    background: url("../images/bg-section-7.svg") 0% 0% / contain no-repeat;
    background-size: 100%;
    height: 2800px;
  }

  .section-7:before {
    position: absolute;
    content: "";
    display: block;
    background: url("../images/txt-section-7.png");
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    bottom: 0px;
    height: 600px;
  }

  .section-6 {
    background-size: 600px;
  }

  .mv {
    margin-bottom: 30px;
  }

  .section-13__wrap {
    padding-bottom: 0px;
    height: 860px;
  }
}
/*-------------------------------------------------------------
固定背景
-------------------------------------------------------------*/
@media (max-width: 1199px) {
  .section-13__items:after {
    display: none;
    background-image: url();
  }
  .section-13__items.active:after {
    display: block;
    background: url("../images/bg-section-13-2@2x.png") no-repeat;
    background-size: cover;
  }
  .section-13__items:after {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    content: "";
  }

  .mv {
    background: #fff;
    padding-bottom: clamp(24px, 6.4vw, 69px);
    margin-bottom: 0;
  }

  .section-1 {
    background: #fff;
    padding-bottom: clamp(20px, 5.3vw, 100px);
    margin-bottom: 0;
  }

  .section-2 {
    background: #fff;
    margin-top: -2px;
  }

  .section-4 {
    background: #fff;
    padding-bottom: clamp(46px, 12vw, 153px);
    padding-top: clamp(40px, 10.6vw, 100px);
    margin-bottom: 0;
  }

  .section-3 {
    margin-bottom: 0;
  }

  .cta {
    background: #fff;
    margin-bottom: 0;
    margin-top: -2px;
    padding-bottom: clamp(45px, 12vw, 110px);
  }

  .section-5 {
    z-index: 0;
    margin-top: -2px;
  }

  .section-6 {
    z-index: 0;
  }

  .sns {
    background: #fff;
    margin-top: -2px;
  }

  .section-7 {
    background: #fff url("../images/bg-section-7@2x.svg") 0% 0% / contain
      no-repeat;
    z-index: 0;
    margin-bottom: 0;
    padding-bottom: 38px;
  }

  .section-7__wrap-txt {
    margin-bottom: 0;
    padding-bottom: 44px;
  }
  .section-8 {
    background: #fff;
    margin-top: -2px;
  }

  .section-9 {
    background: #fff url("../images/bg-section-9@2x.svg") 0% 0% / cover
      no-repeat;
    margin-bottom: 0;
  }
  .section-10 {
    background: #fff;
    margin-bottom: 0;
    padding-bottom: clamp(45px, 12vw, 150px);
  }

  .section-11 {
    margin-bottom: 0;
    background: url(../images/bg-section-11@2x.png);
    background-size: contain;
    margin-top: -2px;
  }
  .section-12 {
    background: #fff;
    padding-bottom: clamp(50px, 13vw, 124px);
    padding-top: clamp(24px, 6.4vw, 45px);
    margin-top: 0;
    margin-bottom: 0;
  }

  .section-12__wrap-title {
    padding-top: 50px;
  }

  .section-12__wrap-title:before {
    z-index: 0;
    top: 70%;
  }

  .section-12__wrap-title h2 {
    position: relative;
  }

  .section-12__wrap-messeage:before {
    z-index: 0;
  }

  .section-12__wrap-messeage:before {
    z-index: 0;
  }

  .section-12__wrap-messeage p:not(:last-child) {
    position: relative;
  }

  .section-13 {
    margin-top: -2px;
  }

  .store {
    background: #fff;
    margin-bottom: 0;
    padding-top: 100px;
    padding-bottom: 49px;
  }
  .store__wrap-title::before {
    z-index: 0;
  }

  .store__wrap-title h2 {
    position: relative;
  }

  .faq {
    margin: 0;
    margin-bottom: 0;
    padding-bottom: 39px;
  }
  .footer {
    background: #fff;
    margin-bottom: 0;
    margin-top: -2px;
    padding-bottom: clamp(35px, 9.3vw, 157px);
  }
}
