@charset "UTF-8";
@import url(reset.css);
@import url(classes.css);
/* ===============================================
全体スタイル
=============================================== */
/* --- カラーコード --- */
html {
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Kaku Gothic Pro", "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", Meiryo, sans-serif;
  font-feature-settings: "palt";
  font-size: 62.5%;
  color: #333333;
  background: #f6f9e8;
}

.tac {
  text-align: center;
}

small {
  font-size: 1.3rem;
  display: block;
}

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

h2 {
  padding: 2rem 0rem 1rem;
}

.spNone {
  display: block;
}
@media (max-width: 767px) {
  .spNone {
    display: none;
  }
}

.pcNone {
  display: none;
}
@media (max-width: 767px) {
  .pcNone {
    display: block;
  }
}

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

/* --- 矢印 --- */
.arrow {
  position: relative;
  display: inline-block;
}
.arrow:before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 2px #333333;
  border-right: solid 2px #333333;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 5px;
  margin-top: -10px;
}

/* --- アニメーション --- */
.poyopoyo {
  animation: poyopoyo 1.5s ease-out infinite;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.9);
  }
}
/* --- 追随ボタン --- */
.visible {
  opacity: 1;
  display: block;
}

/* --- 体験 --- */
.try .btn {
  max-width: 370px;
  position: absolute;
  left: calc(50% - 185px);
  bottom: 30px;
}
@media (max-width: 767px) {
  .try .btn {
    padding: 0rem 4rem;
    bottom: 20px;
  }
}

/* --- キャンペーン --- */
.campaign .text {
  padding: 2rem 7rem 0rem;
}
@media (max-width: 767px) {
  .campaign .text {
    padding: 0rem 4rem;
  }
}

/* ===============================================
header
=============================================== */
header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  background: #aed052;
}
header .headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem 2rem;
}
@media (max-width: 767px) {
  header .headerInner {
    padding: 0 1.5rem;
  }
}
header .logo {
  width: 135px;
}
header .header-cta a {
  color: #333333;
  font-size: 1.6rem;
  border: 1px solid;
  padding: 0.7rem 3rem 0.7rem 1.5rem;
  margin-left: 7rem;
  position: relative;
}
header .header-cta .arrow:before {
  border-top: solid 2px #333333;
  border-right: solid 2px #333333;
}

/* --- ハンバーガーメニュー --- */
.hamburger {
  width: 35px;
  height: 60px;
  position: relative;
  margin-top: 1rem;
  z-index: 999;
  cursor: pointer;
}
@media (max-width: 767px) {
  .hamburger {
    height: 50px;
  }
}
.hamburger .button-text {
  font-size: 10px;
  padding-top: 1.8rem;
  font-weight: bold;
  color: #333333;
}
@media (max-width: 767px) {
  .hamburger .button-text {
    padding-top: 1.8rem;
  }
}

.hamburger span,
.hamburger span::after,
.hamburger span::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #333333;
  transition: all 0.3s;
}

.hamburger span::before {
  top: -10px;
}

.hamburger span::after {
  bottom: -10px;
}

.hamburger.open span {
  background-color: transparent;
}

.hamburger.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.open span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.nav {
  position: fixed;
  width: 100%;
  height: 80vh;
  top: -100%;
  right: 0%;
  background-color: rgba(174, 208, 82, 0.9215686275);
  padding: 50px 0;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .nav {
    height: 50rem;
  }
}

.nav__list {
  padding: 0rem 8rem;
}
@media (max-width: 767px) {
  .nav__list {
    padding: 2rem 0rem 0rem;
  }
}

.nav__item a {
  display: block;
  font-size: 20px;
  color: #333333;
  padding: 20px 0 20px 50px;
  border-bottom: 0.5px solid;
}
@media (max-width: 767px) {
  .nav__item a {
    padding: 1.5rem 0;
    margin: 0rem 3rem;
  }
}
.nav__item:last-child a {
  border-bottom: none;
}

.nav__item a:hover {
  color: #ffff00;
}

.nav.open {
  top: 0;
}

/* ===============================================
contents
=============================================== */
main {
  line-height: 1.5;
  max-width: 490px;
  margin: 0 auto;
  background: #fff;
  font-size: 20px;
  padding-top: 40px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 0px 26px 0px;
}
@media (max-width: 767px) {
  main {
    padding-top: 15px;
  }
}
main .sectionInner {
  padding: 4rem 4rem;
}
@media (max-width: 767px) {
  main .sectionInner {
    padding: 4rem 2rem;
  }
}

/*position: relative;*/
#mvSec,
.try,
#beginnerSec,
#programSec {
  position: relative;
}

/* --- mvSec --- */
#mvSec {
  padding-top: 20px;
}
@media (max-width: 767px) {
  #mvSec {
    padding-top: 40px;
  }
}
#mvSec .btn {
  max-width: 370px;
  position: absolute;
  left: calc(50% - 185px);
  bottom: 20px;
}
@media (max-width: 767px) {
  #mvSec .btn {
    padding: 0rem 2rem;
    bottom: 20px;
  }
}

/* --- top_nav --- */
.top_nav_list {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.6rem;
}

.top_nav_item {
  width: 33.3333333333%;
}
.top_nav_item a {
  color: #333333;
  display: block;
  text-align: center;
  padding: 1.5rem 1rem;
  border: 0.5px solid #dddddd;
  background: linear-gradient(-180deg, #fff, #e9e9e9);
}
.top_nav_item:nth-last-child(-n+2) {
  width: 50%;
}

/* --- menu --- */
#menu {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 2rem 0rem;
}
#menu li {
  width: 42.5%;
}

/* --- worriesSec --- */
#worriesSec {
  background: url(../img/bg_top-worries_01.jpg) no-repeat;
  background-size: 100%;
}
#worriesSec h2 {
  padding: 0;
}
@media (max-width: 767px) {
  #worriesSec h2 {
    width: 85%;
    margin: 0 auto 1rem;
  }
}
#worriesSec h3 {
  padding-top: 3rem;
}
#worriesSec .sectionInner {
  padding: 5rem 4rem;
}

.worries_contents {
  max-width: 370px;
  margin: 0 auto;
  padding: 3rem 0rem;
}
@media (max-width: 767px) {
  .worries_contents {
    padding: 1rem 0rem;
  }
}

/* --- programSec --- */
#programSec h2 {
  padding-top: 0;
}
#programSec dl {
  margin-top: 2rem;
}
#programSec dl dt {
  text-align: center;
  font-weight: bold;
  position: relative;
  padding: 0.5rem 0 2rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: 26px;
  background-image: linear-gradient(135deg, #e52e51 10%, #e52e51 100%);
  background-repeat: no-repeat;
  background-size: 4rem 0.4rem;
  background-position: bottom;
  text-align: center;
  margin-bottom: 2rem;
}
#programSec dl dd {
  font-size: 16px;
  line-height: 2em;
}
#programSec dl dd.strength {
  display: flex;
}
#programSec dl dd.strength .text {
  font-weight: bold;
  font-size: 16px;
}
#programSec dl dd.strength .ico {
  width: 70px;
  margin-left: 1rem;
}
#programSec .btn {
  max-width: 370px;
  margin: 5rem auto 0rem;
}
@media (max-width: 767px) {
  #programSec .btn {
    padding: 0rem 2rem;
  }
}
#programSec .swiper-pagination {
  bottom: 120px;
}
#programSec .swiper-button-prev,
#programSec .swiper-button-next {
  top: 680px;
}
#programSec .swiper-button-prev:after,
#programSec .swiper-button-next:after {
  font-size: 20px;
  cursor: pointer;
}
@media (max-width: 767px) {
  #programSec .swiper-button-prev,
  #programSec .swiper-button-next {
    top: 625px;
  }
}
#programSec .swiper-button-prev {
  left: 150px;
}
@media (max-width: 767px) {
  #programSec .swiper-button-prev {
    left: 100px;
  }
}
#programSec .swiper-button-next {
  right: 150px;
}
@media (max-width: 767px) {
  #programSec .swiper-button-next {
    right: 100px;
  }
}

/* --- beginnerSec --- */
#beginnerSec h2 {
  position: absolute;
  top: 4rem;
  left: calc(50% - 245px);
  padding: 0;
}
@media (max-width: 767px) {
  #beginnerSec h2 {
    top: 3rem;
    left: calc(50% - 195px);
  }
}
#beginnerSec .btn {
  max-width: 370px;
  position: absolute;
  left: calc(50% - 185px);
  bottom: 80px;
}
@media (max-width: 767px) {
  #beginnerSec .btn {
    padding: 0rem 2rem;
    bottom: 60px;
  }
}

/* --- reasonSec --- */
#reasonSec .sectionInner {
  padding: 1rem 4rem 0rem;
}
@media (max-width: 767px) {
  #reasonSec .sectionInner {
    padding: 1rem 2rem;
  }
}

.reason_contents h3 {
  margin: 1rem 0rem;
}
.reason_contents {
  margin-bottom: 2rem;
}
.reason ul li {
  margin: 1.4rem auto;
  display: flex;
  align-items: flex-end;
  line-height: 1.6em;
}
.reason ul li:before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../img/ico_top-reason_01.svg) no-repeat;
  float: left;
  background-size: 100%;
  margin-right: 2rem;
}

/* --- voiceSec --- */
#voiceSec {
  background-size: auto auto;
  background-color: rgb(255, 248, 206);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgb(255, 242, 158) 10px, rgb(255, 242, 158) 20px);
  padding: 3rem 0rem;
}
@media (max-width: 767px) {
  #voiceSec {
    padding: 2rem;
  }
}
#voiceSec .sectionInner {
  background: #fff;
  max-width: 430px;
  margin: 0 auto;
  padding: 4rem;
}
@media (max-width: 767px) {
  #voiceSec .sectionInner {
    padding: 4rem 3rem;
  }
}
#voiceSec h2 {
  padding-bottom: 3rem;
}
#voiceSec .ico {
  max-width: 170px;
  margin: 0 auto 2rem;
}
@media (max-width: 767px) {
  #voiceSec .ico {
    width: 40%;
  }
}
#voiceSec dt,
#voiceSec dd {
  line-height: 1.8em;
  font-size: 16px;
}
#voiceSec dt {
  font-weight: bold;
  margin-bottom: 1rem;
}
#voiceSec strong {
  color: #e52e51;
}

/* --- pickSec --- */
#pickSec h2 {
  padding-top: 0;
}
#pickSec ul.facility {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}
#pickSec ul.facility li {
  width: 47.5%;
}
#pickSec h3 {
  margin: 4rem 0rem 2rem;
}
#pickSec .btn {
  max-width: 370px;
  margin: 2rem auto 0rem;
}

.pick_contents small {
  text-align: right;
}
.pick_contents ul li {
  margin: 2rem 0rem;
}

/* --- effectSec --- */
#effectSec h2 {
  padding-top: 0;
}
#effectSec ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}
#effectSec ul li {
  width: 47.5%;
}

/* --- priceSec --- */
#priceSec h2 {
  padding-top: 0;
}

/* --- faqSec --- */
#faqSec {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  #faqSec label {
    line-height: 1.6em;
  }
}
#faqSec p {
  line-height: 1.6em;
}
#faqSec h2 {
  padding-bottom: 3rem;
}

.toggle {
  display: none;
}

/*タイトル*/
.Label {
  display: block;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #333333;
  padding: 4% 0%;
}
.Label:before {
  content: "";
  width: 15px;
  border-top: 2px solid #333333;
  position: absolute;
  right: 5px;
}
.Label:after {
  /*タイトル横の矢印*/
  content: "";
  width: 15px;
  border-top: 2px solid #333333;
  position: absolute;
  right: 5px;
  transform: rotate(90deg);
}

.Label,
.content {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

/*本文*/
.content {
  height: 0;
  margin-bottom: 10px;
  padding: 0 20px;
  overflow: hidden;
}

/*開閉時の動作*/
.toggle:checked + .Label + .content {
  height: auto;
  padding: 4% 0%;
  transition: all 0.3s;
}

.toggle:checked + .Label::after {
  transform: rotate(0deg) !important;
}

/* --- storeSec --- */
#storeSec .logo {
  width: 230px;
  margin: 0 auto;
}
#storeSec h2 {
  font-size: 22px;
  margin-bottom: 2rem;
}
#storeSec dl {
  margin: 1rem auto;
}
#storeSec dl dt {
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #333333;
  line-height: 1.6;
}
#storeSec dl dt:before {
  content: "●";
  font-size: 20px;
  color: #aed052;
}
#storeSec dl dd {
  margin-bottom: 2rem;
  line-height: 1.6;
}
#storeSec iframe {
  height: 300px;
}
#storeSec .btn {
  margin: 3rem 0rem 0rem;
}

/* --- formSec --- */
#formSec form .form-item {
  padding: 1.5rem 0rem;
  border-bottom: 1px solid #333333;
  line-height: 1.6;
}
#formSec form .form-item:nth-child(7) {
  border-bottom: none;
}
#formSec form .form-item-text,
#formSec form .form-item textarea,
#formSec form .form-item select {
  display: block;
  background: #f6f9e8;
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
  cursor: pointer;
  line-height: 1.6;
}
#formSec form .req {
  background: #e52e51;
  color: #fff;
  font-size: 15px;
  padding: 0px 0.5rem;
  margin-left: 0.5rem;
}
#formSec form [type=submit] {
  display: block;
  margin: 3rem auto 1rem;
  font-weight: bold;
  padding: 2rem 6rem;
  border: 2px solid #e52e51;
  background: #e52e51;
  color: #fff;
  border-radius: 10rem;
}
@media (max-width: 767px) {
  #formSec form [type=submit] {
    padding: 2rem 4rem;
  }
}

#ui-datepicker-div {
  font-size: 2rem;
}

/* --- thanksSec --- */
#thanksSec h2, #thanksSec p, #thanksSec small {
  line-height: 1.6;
}

/* --- 背景共通 --- */
#thanksSec,
#formSec,
#faqSec {
  background-size: auto auto;
  background-color: rgb(255, 248, 206);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgb(255, 242, 158) 10px, rgb(255, 242, 158) 20px);
  padding: 3rem 0rem;
}
@media (max-width: 767px) {
  #thanksSec,
  #formSec,
  #faqSec {
    padding: 2rem;
  }
}
#thanksSec .sectionInner,
#formSec .sectionInner,
#faqSec .sectionInner {
  background: #fff;
  max-width: 430px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #thanksSec .sectionInner,
  #formSec .sectionInner,
  #faqSec .sectionInner {
    padding: 4rem 3rem;
  }
}

/* ===============================================
footer
=============================================== */
footer {
  background: #aed052;
  font-size: 16px;
  font-weight: 400;
  max-width: 490px;
  margin: 0 auto;
}
footer .logo {
  width: 150px;
  margin: 0 auto;
}
footer .read_contents {
  padding: 4rem 4rem;
}
@media (max-width: 767px) {
  footer .read_contents {
    padding: 4rem 2rem;
  }
}
footer .read_contents .text {
  line-height: 1.6;
  font-size: 1.2rem;
}
footer a {
  color: #fff;
}
footer ul {
  background: #4c4c4c;
  color: #fff;
  font-size: 13px;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
footer ul li {
  padding: 0rem 0.5rem;
}
footer p.copy {
  background: #333333;
  padding: 1rem 0rem;
  color: #fff;
}
@media (max-width: 767px) {
  footer p.copy {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=shared.css.map */