@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit, sans-serif;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

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

em {
  color: #7858ff;
  font-style: normal;
}

i {
  display: inline-block;
  padding-right: 4px;
}

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important; } }

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important; } }

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none; }

/**
 * !!! browsersyncのアラートを非表示 !!!
 */
#__bs_notify__ {
  display: none !important; }

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: source-han-sans-japanese, "游ゴシック", YuGothic, "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  background: #FFC976;
  color: #000000; }

#whole {
  max-width: 414px;
  margin: auto;
  background: #FFBD58; }
  @media only screen and (min-width: 768px) {
    #whole {
      margin-top: 64px;
      border-radius: 30px 30px 0 0; } }

.whole__sp--cv {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: block;
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  -moz-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16)); }
  .whole__sp--cv svg {
    display: block;
    width: 122px;
    height: auto; }

@media only screen and (max-width: 1000px) {
  .whole__pc {
    display: none !important; } }

.whole__pc--left {
  position: fixed;
  left: 0;
  top: 0; }
  .whole__pc--left > div {
    padding: 48px; }
    .whole__pc--left > div > svg {
      display: block;
      width: 120px;
      height: auto; }
    .whole__pc--left > div > ul {
      padding-top: 66px; }
      .whole__pc--left > div > ul li {
        text-align: left;
        font-size: 15px;
        font-size: 1.5rem;
        letter-spacing: -0.02em;
        line-height: 1.4;
        padding: 6px 0;
        font-weight: 900; }
        .whole__pc--left > div > ul li a {
          display: block;
          text-align: left; }

.whole__pc--right > svg {
  position: fixed;
  right: 64px;
  top: 64px;
  display: block;
  width: 249px;
  height: auto; }

.whole__pc--right > a {
  display: block;
  position: fixed;
  right: 0;
  bottom: 0;
  -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  -moz-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16)); }
  .whole__pc--right > a svg {
    display: block;
    width: 182px;
    height: auto; }

* {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box; }

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

a {
  color: inherit;
  text-decoration: none; }

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

select {
  background: transparent;
  border: none;
  border-radius: 0;
  padding-right: 4px;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical; }

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

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

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

.row {
  overflow: hidden;
  *zoom: 1; }

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.inner {
  max-width: 1060px;
  padding: 0 25px;
  margin: 0 auto; }

[data-trigger] {
  position: relative;
  top: 60px;
  -webkit-transition: top 1s, opacity 1s;
  -moz-transition: top 1s, opacity 1s;
  -o-transition: top 1s, opacity 1s;
  transition: top 1s, opacity 1s;
  opacity: 0; }
  [data-trigger].visible {
    top: 0;
    opacity: 1; }

.footer {
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 24px 0; }

.header__toggle {
  position: fixed;
  width: 80px;
  height: 80px;
  right: 0;
  top: 0; }
  @media only screen and (min-width: 768px) {
    .header__toggle {
      display: none; } }
  .header__toggle span {
    position: absolute;
    width: 20px;
    height: 3px;
    background: #000;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto; }
    .header__toggle span:nth-child(1) {
      bottom: 12px; }
    .header__toggle span:nth-child(3) {
      top: 12px; }

.header__mega {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100000; }
  .header__mega__overlay {
    background: #FFBD58;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0; }
  .header__mega__close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 20px;
    height: 20px; }
    .header__mega__close span {
      width: 20px;
      height: 3px;
      background: #000;
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      margin: auto; }
      .header__mega__close span:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg); }
      .header__mega__close span:nth-child(2) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg); }
  .header__mega__inner {
    padding: 0 25px;
    padding-top: 64px;
    max-width: 414px;
    margin: auto;
    position: relative;
    overflow: scroll;
    height: 100%;
    padding-bottom: 80px; }
    .header__mega__inner > h2 svg {
      width: 220px;
      height: auto;
      display: block;
      margin: auto; }
    .header__mega__inner > ul {
      padding-top: 40px; }
      .header__mega__inner > ul li {
        text-align: center;
        font-size: 17px;
        font-size: 1.7rem;
        letter-spacing: -0.02em;
        line-height: 1.4;
        padding: 6px 0;
        font-weight: 900; }
        .header__mega__inner > ul li a {
          display: block;
          text-align: center; }
  .header__mega__cv {
    margin-top: 48px; }
    .header__mega__cv a {
      background: #43A363;
      display: block;
      text-align: center;
      font-size: 17px;
      font-size: 1.7rem;
      font-weight: bold;
      letter-spacing: 0.05em;
      color: #fff;
      padding: 16px 0;
      border-radius: 50px;
      margin-top: 40px; }

.features {
  background: #FFBD58;
  padding-top: 40px;
  padding-bottom: 80px; }
  .features .inner h2 img {
    display: block;
    width: 222px;
    height: auto;
    margin: auto; }
  .features__box {
    margin-top: 64px; 
    padding: 0 20px;
  }
    .features__box img {
      max-width: 320px;
      display: block;
      margin: auto; }
    .features__box h3 {
      font-size: 2.2rem;
      letter-spacing: 0.05em;
      font-weight: 900;
      line-height: 1.681818182;
      margin-top: 24px; }
    .features__box p {
      font-size: 1.6rem;
      letter-spacing: 0.08em;
      line-height: 2;
      font-weight: 900;
      margin-top: 16px; }

.flow {
  padding-top: 64px;
  padding-bottom: 100px; }
  .flow h2 .header {
    display: block;
    width: 279px;
    margin: auto; }
  .flow__boxes {
    padding-top: 40px; }
    .flow__boxes .arrow {
      display: block;
      width: 26px;
      height: auto;
      margin: auto;
      margin: 16px auto; }
    .flow__boxes__box {
      border-radius: 30px;
      border: 3px solid #000;
      padding: 24px; }
      .flow__boxes__box h2 svg {
        height: 20px;
        width: auto;
        display: block;
        margin: auto; }
      .flow__boxes__box h3 {
        font-size: 15px;
        font-size: 1.5rem;
        font-weight: 900;
        padding-top: 31px; }
      .flow__boxes__box p {
        font-size: 15px;
        font-size: 1.5rem;
        letter-spacing: 0.08em;
        line-height: 1.8;
        margin-top: 16px; }
  .flow__img {
    display: block;
    margin-top: 23px;
    position: relative; }
    .flow__img > div {
      border-radius: 10px;
      overflow: hidden; }
    .flow__img img {
      width: 100%; }
    .flow__img .icon {
      height: 44px;
      position: absolute;
      right: -18px;
      top: -24px;
      display: block;
      width: auto; }

.mainvisual {
  padding: 0 25px;
  padding-bottom: 64px; }
  .mainvisual__logo {
    padding-top: 64px; }
    .mainvisual__logo img {
      display: block;
      width: 120px;
      margin: auto; }
  .mainvisual > img {
    display: block;
    width: 100%;
    margin-top: 20px; }
  .mainvisual__catch {
    margin-top: 19px; }
    .mainvisual__catch svg {
      display: block;
      width: 112px;
      margin: auto; }
  .mainvisual > p {
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    font-weight: 900;
    line-height: 1.6;
    margin-top: 48px;
    text-align: center; }
  .mainvisual > a {
    display: block;
    width: 26px;
    margin: auto;
    margin-top: 24px; }
    .mainvisual > a svg {
      display: block;
      width: 100%;
      height: auto; }
.main__area {
  padding: 8px 0;
  margin-bottom: 20px;
  border-radius: 20px;
  border: 3px solid #000;}
.main__area span {
  background: linear-gradient(transparent 50%, #fff 50%);}
.main_question {
  text-align: center;}
  .main_question img {
    margin: 10px 0;
  }

.menu {
  background: #F0E1BD;
  padding-top: 80px;
  padding-bottom: 64px; }
  .menu .inner h2 img {
    display: block;
    width: 271px;
    height: auto;
    margin: auto; }
  .menu .inner h4 {
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    font-weight: 900;
    line-height: 2;
    margin: auto;
    margin-top: 64px;
    max-width: 292px; }
    .menu .inner h4 em {
      color: #7858FF; }
  .menu .inner > p {
    padding: 0 2.5rem;
    margin: auto;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 2;
    margin-top: 32px; }
  .menu .inner ul {
    padding-top: 32px; }
    .menu .inner ul li {
      position: relative;
      font-size: 17px;
      font-size: 1.7rem;
      font-weight: bold;
      letter-spacing: 0.08em;
      line-height: 1.764705882;
      margin-top: 24px;
      display: block; }
      .menu .inner ul li p {
        display: inline-block;
        position: relative;
        left: 68px;
        margin: 10px 0;
      }
      .menu .inner ul li .icon {
        position: absolute;
        width: 39px;
        height: auto;
        display: block;
        left: 13px;
        top: 0; }
      .menu .inner ul li .menu_image {
        border-radius: 10px;
      }
      
  .menu__img01 {
    width: 166px;
    display: block;
    margin: auto;
    border-radius: 200px;
    overflow: hidden;
    margin-top: 32px; }
    .menu__img01 img {
      display: block;
      width: 100%; }

.trainer {
  background: #F0E1BD;
}
.trainer .inner h2 {
  padding-top: 20px;
  display: block;
  width: 271px;
  height: auto;
  margin: auto; }
.trainer .inner h2 img {
  display: block;
  width: 271px;
  height: auto;
  margin: auto; }
.trainer .inner .description {
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  line-height: 2;
  font-weight: 900;
  margin-top: 16px;
}
.trainer__images  {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 10px 24px 20px;}
  .trainer__images > figure {
    width: 48%;
    margin-top: 20px;
    cursor: pointer; }
    .trainer__images > figure > div div {
      padding-top: 100%;
      border-radius: 100%;
      background-size: cover;
      background-position: center center; }
    .trainer__images > figure figcaption {
      text-align: center;
      padding-top: 20px;
      
      color: #fff; }
      .trainer__images > figure figcaption small,
      .trainer__images > figure figcaption span {
        font-size: 12px;
        display: block; }
      .trainer__images > figure figcaption small {
        font-size: 1.3rem;
        color: #333;
        font-weight: bold;
        margin: 8px 0;
        letter-spacing: 0.095em; }
      .trainer__images > figure figcaption span {
        font-size: 2.2rem;
        letter-spacing: 0.095em;
        font-weight: bold; }
.pop {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 10000;
display: none; }
.pop__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5); }
.pop__inner {
  position: relative;
  z-index: 1;
  width: calc(100% - 48px);
  margin: auto;
  top: 36%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: 375px; }
.pop__box {
  background-color: #F0E1BD;
  border: #FFBD58 8px solid;
  padding: 32px 18px;
  border-radius: 58px; }
  .pop__box .pop_figure {
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center center; }
      .pop__box figure > div strong {
        font-size: 20px;
        font-size: 2rem;
        font-weight: bold;
        letter-spacing: 0.095em; }
      .pop__box figure > div small {
        font-size: 14px;
        font-size: 1.4rem;
        font-weight: bold;
        letter-spacing: 0.095em;
        margin-top: 6px; }
  .pop__box figure figcaption {
    padding-top: 14px;
    overflow: scroll;
    max-height: 310px; }
    .pop__box figure figcaption p {
      padding: 4px;
      font-size: 1.2rem;
      font-weight: 400;
      line-height: 1.666666667;
      text-align: left;
      color: #333; }

.prices {
  background: #F0E1BD;
  padding-top: 80px;
  padding-bottom: 64px; }
  .prices .inner h2 img {
    display: block;
    width: 271px;
    height: auto;
    margin: auto; }
  .prices .inner .description {
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    font-weight: 600;
    line-height: 2;
    margin: auto;
    margin-top: 64px;
    width: 90%;
    }
  .prices .inner > p {
    padding: 0 2.5rem;
    margin: auto;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 2;
    margin-top: 32px; }
  .prices .inner ul {
    padding-top: 32px; }
    .prices .inner ul li {
      position: relative;
      font-size: 17px;
      font-size: 1.7rem;
      font-weight: bold;
      letter-spacing: 0.08em;
      line-height: 1.764705882;
      margin-top: 24px;
      display: block; }
      .prices .inner ul li p {
        position: relative;
        left: 68px;
        margin: 10px 0;
      }
      .prices .inner ul li .icon {
        position: absolute;
        width: 39px;
        height: auto;
        display: block;
        left: 13px;
        top: 0; }
      .prices .inner ul li .menu_image {
        border-radius: 10px;
      }

  .menu__tickets {
    margin-top: 34px;
    padding-bottom: 40px;
    position: relative; }
    .menu__tickets:before {
      content: "";
      position: absolute;
      width: 55px;
      height: 1px;
      background: #000;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto; }
    .menu__tickets > div p {
      text-align: center;
      font-size: 1.8rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      line-height: 2.466666667; }
    .menu__tickets img,
    .menu__tickets svg {
      width: 100%;
      height: auto;
      display: block; }
  .menu__tickets02 {
    padding-top: 38px; }
    .menu__tickets02 > div p {
      text-align: center;
      font-size: 1.4rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      line-height: 2.466666667; }
    .menu__tickets02 > div > div {
      position: relative; }
      .menu__tickets02 > div > div img {
        margin: 16px 0;
        width: 100%;
        height: auto;
        display: block; }
      
    .menu__tickets02 > div > svg {
      z-index: 2;
      display: block;
      width: 127px;
      height: auto;
      margin: auto;
      margin-top: -26px;
      position: relative; }
  .menu__btns {
    padding-top: 64px; }
    .menu__btns a {
      display: block; }
      .menu__btns a img {
        width: 100%;
        height: auto;
        display: block; }
.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100000; }
  .popup__overlay {
    background: #FFBD58;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0; }
  .popup__inner {
    padding: 0 25px;
    padding-top: 64px;
    max-width: 414px;
    margin: auto;
    position: relative;
    overflow: scroll;
    height: 100%;
    padding-bottom: 80px; }
    .popup__inner > h2 svg {
      width: 194px;
      height: auto;
      display: block;
      margin: auto; }
    .popup__inner > p {
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: 0.08em;
      line-height: 1.6;
      margin-top: 34px;
      text-align: center;
      font-weight: 900; }
    .popup__inner > span {
      display: block;
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 1.6;
      margin-top: 32px; }
    .popup__inner > svg {
      display: block;
      max-width: 298px;
      margin: auto;
      margin-top: 52px; }
    .popup__inner > b {
      display: block;
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: 0.08em;
      font-weight: 900;
      line-height: 1.6;
      margin: auto;
      margin-top: 12px;
      max-width: 214px; }
  .popup__close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 20px;
    height: 20px; }
    .popup__close span {
      width: 20px;
      height: 3px;
      background: #000;
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      margin: auto; }
      .popup__close span:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg); }
      .popup__close span:nth-child(2) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg); }
  .popup__close-bottom {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 80px; }
    .popup__close-bottom svg,
    .popup__close-bottom span {
      display: inline-block;
      vertical-align: middle; }
    .popup__close-bottom span {
      font-size: 15px;
      font-size: 1.5rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      margin-left: 10px; }
  .popup__data-one > svg {
    position: absolute;
    top: 295px;
    width: 24px;
    height: auto;
    display: block; }
    .popup__data-one > svg:nth-child(1) {
      left: 0; }
    .popup__data-one > svg:nth-child(2) {
      right: 0; }
  .popup__data-one > div {
    margin-top: 48px; }
    .popup__data-one > div svg {
      display: block;
      width: 100%;
      height: auto; }
  .popup__data-one > p {
    margin: auto;
    max-width: 262px;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    line-height: 1.785714286; }
  .popup__data-one > a {
    background: #FF7858;
    display: block;
    text-align: center;
    font-size: 17px;
    font-size: 1.7rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: #fff;
    padding: 20px 0;
    border-radius: 50px;
    margin-top: 48px; }

.reason {
  background: #F0E1BD;
  padding-top: 82px;
  padding-bottom: 40px; }
  .reason__catch {
    width: 279px;
    margin: auto;
    position: relative; }
  .reason__movie {
    position: relative;
    z-index: 2;
    margin-top: -2px;
    border-radius: 30px;
    overflow: hidden; }
    .reason__movie video {
      display: block;
      width: 100%;
      height: auto; }
    .reason__movie a {
      display: block;
      border-radius: 30px;
      overflow: hidden;
      position: relative; }
      .reason__movie a img {
        display: block;
        width: 100%; }
      .reason__movie a svg {
        position: absolute;
        width: 37px;
        height: auto;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
  .reason__read {
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    font-weight: 600;
    line-height: 2.0;
    margin-top: 48px;
    text-align: center; }
  .reason__read__sub {
      font-size: 1.4rem;
      letter-spacing: 0.08em;
      font-weight: 600;
      line-height: 2.0;
      margin-top: 48px;
      text-align: center; }

  .reason__img {
    margin-top: 48px;
    border-radius: 10px;
    overflow: hidden; }
    .reason__img img {
      display: block;
      width: 100%; }
  .reason__cv {
    margin-top: 48px; }
    .reason__cv a {
      display: block;
      width: 296px;
      margin: auto;
      position: relative;
      font-size: 17px;
      font-size: 1.7rem;
      font-weight: bold;
      letter-spacing: 0.05em;
      color: #fff;
      text-align: center;
      background: #7858FF;
      padding: 18px 0;
      border-radius: 60px; }
    .reason__cv img {
      display: block;
      margin: auto;
      width: 98px;
      height: auto; }

.stores {
  padding-top: 80px; }
  .stores .inner h2 img {
    width: 190px;
    margin: auto;
    display: block; }
  .stores .inner .description {
    text-align: center;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    line-height: 2.466666667;
    font-weight: 900;
    margin-top: 20px;
  }
  .stores__boxes {
    padding-top: 16px; }
    .stores__boxes > div {
      margin-top: 32px; }
      .stores__boxes > div h4 {
        font-size: 2.4rem;
        font-weight: 900; }
      .stores__boxes > div p {
        font-size: 1.3rem;
        line-height: 1.2;
        margin-top: 8px; }
      .stores__boxes > div > div {
        border-radius: 30px;
        overflow: hidden;
        margin-top: 16px; }
        .stores__boxes > div > div img {
          display: block; }
  .stores__btns {
    padding-top: 64px;
    padding-bottom: 90px; }
    .stores__btns a {
      display: block; }
      .stores__btns a svg {
        display: block;
        width: 100%;
        height: auto; }

.voices {
  padding-top: 80px;
  background: #fff;
  padding-bottom: 80px; }
  .voices .inner h2.mt-80 {
    margin-top: 80px; }
  .voices .inner h2 img{
    width: 190px;
    display: block;
    height: auto;
    margin: auto; }
  .voices__voice {
    position: relative;
    padding-bottom: 48px; }
    .voices__voice:nth-child(3) {
      margin-top: 24px;
      padding-bottom: 0px; }
      .voices__voice:nth-child(3) > img {
        bottom: 29px;
        height: 79%; }
      .voices__voice:nth-child(3) > div {
        padding-right: 24px; }
        .voices__voice:nth-child(3) > div > div:nth-child(1) {
          order: 2; }
        .voices__voice:nth-child(3) > div > div:nth-child(2) {
          order: 1;
          padding-left: 0; }
    .voices__voice:nth-child(4) {
      margin-top: 48px;
      padding-bottom: 0; }
      .voices__voice:nth-child(4) > img {
        height: 78%;
        bottom: 42px; }
      .voices__voice:nth-child(4) > div {
        align-items: center; }
    .voices__voice > img {
      position: absolute;
      left: -3%;
      bottom: 0;
      width: 105%;
      z-index: 0;
      display: block;
      height: 77%;
      max-width: 104%; }
    .voices__voice > div,
    .voices__voice > p {
      position: relative;
      z-index: 1; }
    .voices__voice > div {
      display: -webkit-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-justify-content: space-between;
      justify-content: space-between;
      align-items: flex-end; }
      .voices__voice > div > div:nth-child(1) img {
        width: 121px; }
      .voices__voice > div > div:nth-child(2) {
        width: calc(100% - 125px);
        padding-left: 24px; }
        .voices__voice > div > div:nth-child(2) svg {
          height: 82px;
          display: block; }
    .voices__voice > p {
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: 0.08em;
      line-height: 1.8;
      margin-top: 24px; }
  .voices__faq {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 52px; }
    .voices__faq__row {
      border-bottom: 1px solid #EDEDED; }
      .voices__faq__row:last-child {
        border-bottom: none; }
    .voices__faq__q {
      background: #F8F8F8;
      cursor: pointer;
      padding: 20px 56px 20px;
      position: relative; }
      .voices__faq__q.on > div svg {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg); }
      .voices__faq__q span {
        font-size: 14px;
        font-size: 1.4rem;
        font-weight: 900;
        position: absolute;
        left: 16px;
        top: 23px; }
      .voices__faq__q > div p {
        font-size: 12px;
        font-size: 1.2rem;
        font-weight: bold;
        letter-spacing: 0.02em;
        line-height: 1.666666667; }
      .voices__faq__q > div svg {
        display: block;
        width: 16px;
        height: auto;
        position: absolute;
        right: 20px;
        top: 20px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s; }
    .voices__faq__a {
      background: #E6E6E6;
      padding: 20px 56px 20px;
      position: relative;
      display: none; }
      .voices__faq__a span {
        font-size: 14px;
        font-size: 1.4rem;
        font-weight: 900;
        position: absolute;
        left: 16px;
        top: 23px; }
      .voices__faq__a > div {
        font-size: 12px;
        font-size: 1.2rem;
        font-weight: bold;
        letter-spacing: 0.02em;
        line-height: 1.666666667; }
        .voices__faq__a > div a {
          color: #7858FF; }

/* form */
.contact {
  text-align: center;
  }
  .contact .inner h2 {
    padding: 40px 0;
    font-size: 3.0rem;
    margin: auto;
    display: block; }

.form_dl{
	font-size: 1.6rem;
	margin-bottom: 20px;
}
.form_dl dt, .form_dl dd{
  text-align: left;
	margin-bottom: 8px;
}
.form_dl select {
	font-size: 14px;
	width: 100%;
	-webkit-border-radius : 0;
    -webkit-tap-highlight-color : rgba(0,0,0,0);
	background: #fff;
	border: none;
	border-radius: 10px;
	padding: 6px 12px;
	margin: 4px;
}

.contact__text {
	margin: 0 auto 20px;
	text-align: center;
	font-weight: 400;
	font-size: 14px;
	width: 90%;
}

#loadingIndicator {
	display: block;
	margin: 0 auto;
	width: 30%;
}

/**

 */
body.top {
  height: 100%;
  width: 100%; }
