@charset "UTF-8";
/* reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
  width: 100%;
  height: auto; }

ul, li, dl, dt, dd {
  list-style: none;
  margin: 0;
  padding: 0; }

button {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  appearance: none;
  -webkit-appearance: none; }

p {
  margin-bottom: 0; }

/* base */
html, body {
  height: 100%; }

html {
  font-size: 2.6666666666667vw;
  font-family: YakuHanJPs, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; }

@media (min-width: 480px) {
  html {
    font-size: 12.8px; } }
body {
  font-size: 1.6rem;
  color: #222222;
  background-color: #f8f8f8; }

.layout {
  height: 100%;
  position: relative;
  z-index: 1;
  max-width: 480px;
  background-color: #3FA9F5;
  margin: 0 auto; }

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto; }

.img-container {
  padding: 0 1rem; }

header, main, footer {
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.05)); }

/* ブロック要素の比率固定 */
.thumbnail {
  position: relative;
  width: 100%; }
  .thumbnail.size-4x3:before {
    content: "";
    display: block;
    padding-top: 75%; }
  .thumbnail.size-4x3 > div {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0; }
    .thumbnail.size-4x3 > div > * {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }
  .thumbnail.size-3x2:before {
    content: "";
    display: block;
    padding-top: 66.666667%; }
  .thumbnail.size-3x2 > div {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0; }
    .thumbnail.size-3x2 > div > * {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }
  .thumbnail.size-16x9:before {
    content: "";
    display: block;
    padding-top: 56.25%; }
  .thumbnail.size-16x9 > div {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0; }
    .thumbnail.size-16x9 > div > * {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }
  .thumbnail.square:before {
    content: "";
    display: block;
    padding-top: 100%; }
  .thumbnail.square > div {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0; }
    .thumbnail.square > div > * {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center; }
  .thumbnail.circle:before {
    content: "";
    display: block;
    padding-top: 100%; }
  .thumbnail.circle > div {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 10000px; }
    .thumbnail.circle > div > * {
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center; }
  .thumbnail.cover > div > * {
    object-fit: cover; }
  .thumbnail.contain > div > * {
    object-fit: contain; }
  .thumbnail iframe {
    height: 100%;
    width: 100%; }

/* 共通のパララックス設定 */
.parallax, .parallax-top {
  width: 100%;
  height: 100%;
  /* 画面の高さに合わせる */
  position: absolute;
  background-position: center;
  background-repeat: no-repeat; }

/* .parallax-top の初期設定 */
.parallax-top {
  background-size: cover;
  z-index: 21;
  /* 画像のパスはJavaScriptで設定 */
  /* transform はJavaScriptで動的に変更される */ }

/* .parallax の初期設定 */
.parallax {
  background-repeat: repeat;
  background-size: contain;
  transform: translate(0%, -10%);
  /* 初期値 */
  /* 画像のパスはJavaScriptで設定 */
  /* transform はJavaScriptで動的に変更される */ }

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.5) 100%);
  background-attachment: fixed;
  pointer-events: none;
  /* グラデーションレイヤーが他の要素とのインタラクションを妨げないようにする */
  z-index: 2; }

.video_wrapper {
  background-color: #fff; }

/*アニメーション*/
@keyframes fade-btn {
  0% {
    transform: scale(0);
    bottom: -300px !important;
    opacity: 0; }
  18% {
    bottom: 0px !important;
    opacity: 1; }
  55% {
    transform: scale(1.1);
    opacity: 1; }
  60% {
    transform: scale(0.9);
    opacity: 1; }
  70% {
    transform: scale(1.1);
    opacity: 1; }
  80% {
    transform: scale(1);
    opacity: 1; }
  90% {
    transform: scale(1.05);
    opacity: 1; }
  100% {
    transform: scale(1);
    opacity: 1; } }
@keyframes btn-anime {
  0% {
    transform: translate(0px, 6px); }
  5% {
    transform: translate(0px, -2px); }
  10% {
    transform: translate(0px, 4px); }
  15% {
    transform: translate(0px, -2px); }
  20% {
    transform: translate(0px, 6px); }
  25% {
    transform: translate(0px, -2px); }
  30% {
    transform: translate(0px, 0px); } }
@keyframes btn-top-anime {
  0% {
    transform: translate(4px, 0px); }
  5% {
    transform: translate(-4px, 0px); }
  10% {
    transform: translate(4px, 0px); }
  15% {
    transform: translate(-4px, 0px); }
  20% {
    transform: translate(4px, 0px); }
  25% {
    transform: translate(-4px, 0px); }
  30% {
    transform: translate(0px, 0px); } }
@keyframes arrow {
  0% {
    transform: translate(0px, -8rem);
    opacity: 1; }
  30% {
    transform: translate(0px, 0rem);
    opacity: 1; }
  90% {
    transform: translate(0px, 0rem);
    opacity: 1; }
  100% {
    transform: translate(0px, 2rem);
    opacity: 0; } }
/* ボタン*/
.btn-normal {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3rem 0 0 0;
  width: auto;
  overflow: hidden;
  background-color: #fff; }
  .btn-normal .parallax {
    height: 110% !important;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom; }

.btn {
  overflow: hidden; }
  .btn a {
    position: absolute;
    bottom: 15%;
    width: 100% !important;
    height: auto !important;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.85, 0.005, 0.25, 1);
    animation-name: btn-anime;
    animation-iteration-count: infinite;
    display: block;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3)); }

/* ヘッダー */
header {
  position: relative;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  max-height: 884px; }
  header .img-top {
    width: 100%;
    height: auto; }
  header nav {
    position: absolute;
    z-index: 100;
    background-color: rgba(63, 169, 245, 0.8);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5.8rem;
    width: 100%; }
    header nav div img {
      height: auto;
      width: 16rem; }
    header nav div a {
      animation-duration: 2s;
      animation-fill-mode: forwards;
      animation-name: btn-top-anime;
      animation-iteration-count: infinite;
      display: block;
      transform: translate(0px, 0px); }
  header .top-wrap {
    flex: 1;
    position: relative;
    z-index: 98;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 100%; }
    header .top-wrap .top_video {
      height: 85%;
      width: auto;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translateY(-50%) translateX(-50%) rotate(-10deg);
      z-index: 10;
      border-radius: 22px;
      overflow: hidden; }
      header .top-wrap .top_video video {
        max-width: unset;
        height: 100%;
        width: auto; }
    header .top-wrap .iphone * {
      height: 100%;
      width: auto;
      max-width: unset;
      position: absolute;
      bottom: 0%;
      left: 50%;
      transform: translateY(0%) translateX(-50%);
      z-index: 20; }
    header .top-wrap .mens * {
      height: auto;
      width: 110%;
      max-width: unset;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translateY(-50%) translateX(-50%);
      z-index: 20; }
    header .top-wrap .main-catch {
      position: absolute;
      bottom: 3%;
      left: 0;
      z-index: 30;
      width: 100%;
      text-align: center;
      font-size: 2rem;
      height: auto;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0;
      animation-duration: 1s;
      animation-fill-mode: forwards;
      animation-timing-function: cubic-bezier(0.85, 0.005, 0.25, 1);
      animation-name: fade-btn; }
      header .top-wrap .main-catch img {
        width: 100%;
        height: auto;
        filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3)); }
  header .top-btn-wrap {
    z-index: 99;
    position: absolute;
    flex: 0 0 auto;
    padding: 2rem;
    background-color: black;
    z-index: 100;
    bottom: 0;
    left: 0;
    width: 100%; }
    header .top-btn-wrap a {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 6rem;
      background-color: #fff;
      border-radius: 10000px; }

/* メイン  */
main {
  overflow: hidden;
  position: relative; }

section {
  position: relative;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top left;
  z-index: 10; }
  section .section-inner {
    position: relative;
    z-index: 89; }

h2 {
  text-align: center;
  margin-bottom: -3rem;
  position: relative;
  z-index: 100; }
  h2 img {
    transform: rotate(-3deg);
    position: relative;
    z-index: 1;
    width: 90%; }

.box {
  background-size: 100% auto;
  background-repeat: repeat-y;
  width: 100%;
  position: relative;
  padding: 5rem 2rem 3rem 2rem;
  border: 0.4rem solid #ff5e6b;
  border-radius: 20px; }
  .box:before {
    content: '';
    position: absolute;
    top: 4rem;
    left: -10%;
    height: 1rem;
    width: 120%;
    background: #fff; }
  .box:after {
    content: '';
    position: absolute;
    bottom: 4rem;
    left: -10%;
    height: 1rem;
    width: 120%;
    background: #fff; }
  .box .box-inner {
    width: 100%;
    position: relative;
    z-index: 100; }

.flow .box {
  border: 0.4rem solid #964caa; }

.about .box {
  border: 0.4rem solid #ff5e6b; }

.review .box {
  border: 0.4rem solid #0FBEB1; }

.price .box {
  border: 0.4rem solid #F7931E; }

.first-section .section-inner {
  padding: 3rem 0 5rem; }
  .first-section .section-inner h2 {
    margin-bottom: -5rem; }
  .first-section .section-inner .card {
    width: 100%;
    border-radius: 17px;
    background: transparent;
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, 0.6);
    padding: 1.5rem; }
    .first-section .section-inner .card span {
      color: #3FA9F5;
      font-weight: bold; }
  .first-section .section-inner > div:nth-of-type(1) {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden; }
    .first-section .section-inner > div:nth-of-type(1) > * {
      position: relative;
      z-index: 20; }
    .first-section .section-inner > div:nth-of-type(1) .first_video {
      position: absolute;
      top: 2%;
      left: 9.2%;
      width: 46.7%;
      height: 100%;
      background-size: cover; }
      .first-section .section-inner > div:nth-of-type(1) .first_video video {
        border-radius: 1.5rem; }
  .first-section .section-inner > div:nth-of-type(2) .bubble {
    margin-bottom: 1rem;
    position: relative; }
    .first-section .section-inner > div:nth-of-type(2) .bubble p {
      background-color: #3FA9F5;
      padding: 1rem;
      border-radius: 5px;
      color: #fff;
      font-size: 1.6rem; }
    .first-section .section-inner > div:nth-of-type(2) .bubble:before {
      content: '';
      width: 2rem;
      height: 2.5rem;
      bottom: -35%;
      left: 5%;
      position: absolute;
      z-index: 1;
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.295' height='25.255' viewBox='0 0 19.295 25.255'%3E%3Cpath id='パス_98' data-name='パス 98' d='M514.943,840l19.3,25.255V840Z' transform='translate(-514.943 -840)' fill='%233FA9F5'/%3E%3C/svg%3E");
      background-size: cover; }
  .first-section .section-inner > div:nth-of-type(2) .card ul {
    padding-left: 1.7em; }
    .first-section .section-inner > div:nth-of-type(2) .card ul li {
      position: relative;
      margin-bottom: 0.75rem;
      font-weight: bold;
      line-height: 1.3; }
      .first-section .section-inner > div:nth-of-type(2) .card ul li:before {
        content: '';
        width: 1.5em;
        height: 1.5em;
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22.978' height='19' viewBox='0 0 22.978 19'%3E%3Cg id='Group_113' data-name='Group 113' transform='translate(-28.382 -463.5)'%3E%3Cg id='Rectangle_18' data-name='Rectangle 18' transform='translate(30 463.5)' fill='%23fff' stroke='%23707070' stroke-width='1'%3E%3Crect width='19' height='19' rx='5' stroke='none'/%3E%3Crect x='0.5' y='0.5' width='18' height='18' rx='4.5' fill='none'/%3E%3C/g%3E%3Cpath id='Path_95' data-name='Path 95' d='M-248.354,893.679l6.317,7.031,12.422-11.955' transform='translate(278.854 -421.995)' fill='%23fff' stroke='%23FF1493' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        display: inline-block;
        position: absolute;
        left: -1.7em;
        top: -0.25rem; }
  .first-section .section-inner > div:nth-of-type(3) {
    text-align: center;
    margin-bottom: 3rem;
    position: relative; }
    .first-section .section-inner > div:nth-of-type(3) .big-arrow {
      width: 100%;
      height: 18rem;
      position: relative;
      z-index: 1;
      margin-top: -1.5rem;
      overflow: hidden;
      position: absolute;
      top: -4rem; }
      .first-section .section-inner > div:nth-of-type(3) .big-arrow img {
        animation-duration: 2s;
        animation-fill-mode: forwards;
        animation-name: arrow;
        animation-iteration-count: infinite;
        opacity: 0;
        height: 8rem;
        width: auto; }
    .first-section .section-inner > div:nth-of-type(3) .video_wrapper {
      margin-top: 4rem; }
    .first-section .section-inner > div:nth-of-type(3) .btn {
      margin-top: -4rem;
      position: relative;
      padding: 2rem 0; }
      .first-section .section-inner > div:nth-of-type(3) .btn a {
        position: relative;
        bottom: unset; }
  .first-section .section-inner > div:nth-of-type(4) h2 {
    margin-bottom: -5rem; }
    .first-section .section-inner > div:nth-of-type(4) h2 img {
      width: 100%; }
  .first-section .section-inner > div:nth-of-type(4) .card {
    padding-top: 7rem; }
    .first-section .section-inner > div:nth-of-type(4) .card p {
      margin-top: 1rem; }

/* 登録の流れ */
.flow {
  padding-top: 4rem; }
  .flow .box .box-inner > div {
    display: flex; }
    .flow .box .box-inner > div div:first-child {
      flex: 0 0 12rem;
      margin-right: 2rem;
      border: .1rem solid #ddd; }
    .flow .box .box-inner > div div:last-child {
      color: #222222; }
      .flow .box .box-inner > div div:last-child h3 {
        color: #964caa;
        font-size: 2rem;
        font-weight: bold;
        display: flex;
        justify-content: flex-start;
        align-items: center; }
        .flow .box .box-inner > div div:last-child h3 span {
          margin-left: 1rem;
          font-size: 4.5rem; }
      .flow .box .box-inner > div div:last-child p {
        white-space: nowrap; }
    .flow .box .box-inner > div + div {
      margin-top: 1.5rem; }
    .flow .box .box-inner > div.movie {
      text-align: center;
      display: flex;
      flex-flow: column; }
      .flow .box .box-inner > div.movie div {
        border: 0px;
        margin: 0; }
        .flow .box .box-inner > div.movie div h3 {
          color: #964caa;
          font-size: 2rem;
          font-weight: bold;
          display: flex;
          justify-content: center;
          align-items: center; }
          .flow .box .box-inner > div.movie div h3 span {
            margin-left: 1rem;
            font-size: 4.5rem; }
      .flow .box .box-inner > div.movie .video_wrapper {
        padding: 0 3.5rem; }

/* ジュエルにつて */
.about {
  padding-top: 4rem; }
  .about h2 {
    margin-bottom: -4.5rem; }
    .about h2 img {
      width: 100%; }
  .about .box {
    padding: 6rem 2rem 3rem 2rem; }
    .about .box .box-inner > div > div {
      display: flex;
      font-weight: bold;
      margin-bottom: 2rem; }
      .about .box .box-inner > div > div .number {
        margin-right: 1rem;
        position: relative; }
        .about .box .box-inner > div > div .number:before {
          content: '';
          width: 6.2rem;
          height: 2.1rem;
          background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20107.2%2036.5%22%20style%3D%22enable-background%3Anew%200%200%20107.2%2036.5%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23FF5E6B%3B%7D%3C%2Fstyle%3E%3Cg%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M10.3%2C17.5c-0.4-0.5-1-0.5-1.5-0.1l-8.4%2C6.9c-0.5%2C0.4-0.5%2C1-0.1%2C1.5l0.8%2C0.9c0.5%2C0.5%2C1%2C0.5%2C1.5%2C0.2l6.5-5.4%20l5.5%2C6.7l-6.5%2C5.4c-0.5%2C0.4-0.5%2C1-0.1%2C1.5L8.8%2C36c0.4%2C0.5%2C1%2C0.6%2C1.4%2C0.2l8.4-6.9c0.5-0.4%2C0.5-1%2C0.1-1.5L10.3%2C17.5z%22%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M26.5%2C9c-0.3-0.6-0.8-0.8-1.4-0.5l-9.8%2C4.7c-0.6%2C0.3-0.8%2C0.8-0.5%2C1.4l0.5%2C1.1c0.3%2C0.6%2C0.8%2C0.8%2C1.4%2C0.5l7.6-3.6%20l3.8%2C7.9l-7.6%2C3.6c-0.6%2C0.3-0.8%2C0.8-0.5%2C1.4l0.5%2C1.1c0.3%2C0.6%2C0.8%2C0.8%2C1.4%2C0.5l9.8-4.7c0.6-0.3%2C0.8-0.8%2C0.5-1.4L26.5%2C9z%22%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M43.5%2C2.4c0.1%2C0.7%2C0.5%2C1%2C1%2C0.9s0.7-0.5%2C0.6-1.2l-0.2-1.2c-0.1-0.7-0.5-1-1-0.9s-0.7%2C0.5-0.6%2C1.2L43.5%2C2.4z%22%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M45.1%2C4.7c-0.3-0.5-0.7-0.7-1.3-0.6l-1%2C0.2c-0.8%2C0.2-1%2C0.7-0.6%2C1.3c1%2C1.6%2C1.9%2C3.4%2C2.5%2C5.2%20c0.2%2C0.7%2C0.7%2C0.9%2C1.3%2C0.8l1-0.2c0.7-0.2%2C1-0.6%2C0.8-1.3C47%2C8.1%2C46.1%2C6.3%2C45.1%2C4.7z%22%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M41.1%2C2.9c0.1%2C0.7%2C0.5%2C1%2C1%2C0.9s0.7-0.5%2C0.6-1.2l-0.2-1.2c-0.1-0.7-0.5-1-1-0.9S40.8%2C1%2C40.9%2C1.7L41.1%2C2.9z%22%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M39.4%2C6.9l-1.8%2C0.4c-0.1-0.6-0.2-1.3-0.4-2.1c-0.1-0.6-0.5-0.9-1.2-0.8l-1.1%2C0.2c-0.6%2C0.1-0.9%2C0.5-0.8%2C1.2%20c0.1%2C0.8%2C0.3%2C1.5%2C0.4%2C2.2l-0.9%2C0.6c-0.6%2C0.1-0.9%2C0.5-0.8%2C1.2l0.2%2C1.1c0.2%2C0.7%2C0.6%2C1%2C1.3%2C0.8l0.9-0.2c0.3%2C3.5%2C0.5%2C6.1-0.1%2C9.3%20c-0.2%2C0.7%2C0.2%2C1.2%2C1%2C1l1.3-0.3c0.6-0.2%2C0.9-0.5%2C1-1.1c0.4-3.3%2C0.2-6.3-0.2-9.8l1.1-0.3c1.1-0.2%2C1.4%2C0.1%2C1.6%2C1%20c0.6%2C2.7%2C1.4%2C5.8%2C0.3%2C6.2c-0.3%2C0-0.6%2C0.1-1%2C0.1c-0.7%2C0-0.9%2C0.4-0.8%2C1.1l0.2%2C1.1c0.1%2C0.6%2C0.5%2C0.9%2C1.1%2C0.9c0.4-0.1%2C0.9-0.1%2C1.5-0.2%20c1.7-0.2%2C2.4-1.8%2C2.4-3.8c0.1-1.9-0.4-4.3-1-6.3C42.9%2C8.1%2C41.9%2C6.4%2C39.4%2C6.9z%22%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M67.3%2C14.1l-2.8-0.2l0.1-0.6l2.3%2C0.2c0.6%2C0.1%2C1-0.3%2C1.1-0.9c0-0.7-0.3-1-1-1.1l-2.3-0.2v-0.5l1.5%2C0.1%20c0.6%2C0%2C1-0.3%2C1.1-1L67.5%2C8c0-0.6-0.3-1-1-1.1l-8.1-0.7c-0.6%2C0-1%2C0.3-1.1%2C1l-0.2%2C1.9c0%2C0.6%2C0.3%2C1%2C1%2C1.1l3.8%2C0.4v0.5l-4.6-0.4%20c-0.6-0.1-1%2C0.3-1.1%2C0.9c0%2C0.6%2C0.3%2C1%2C1%2C1.1h0.3l-0.1%2C0.6l-0.9-0.1c-0.7-0.1-1%2C0.3-1%2C0.9c0%2C0.7%2C0.3%2C1%2C1%2C1.1l5.2%2C0.4v0.5%20c0%2C0.3%2C0.3%2C0.5%2C1%2C0.6l0.6%2C0.1c0.6%2C0.1%2C1-0.3%2C1.1-0.9l2.8%2C0.2c0.6%2C0.1%2C1-0.3%2C1.1-0.9C68.3%2C14.5%2C68%2C14.2%2C67.3%2C14.1z%20M61.7%2C13.6%20L60%2C13.5l0.1-0.6l1.7%2C0.1L61.7%2C13.6z%20M59.8%2C8.7L59.9%2C8l4.8%2C0.4l-0.1%2C0.7L59.8%2C8.7z%22%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M52.9%2C4.1c0.3%2C0.6%2C0.8%2C0.8%2C1.4%2C0.4L55.1%2C4c0.6-0.3%2C0.8-0.8%2C0.4-1.4c-0.4-0.6-0.9-1.3-1.4-1.9%20c-0.5-0.4-0.9-0.5-1.5-0.2L52%2C0.9c-0.6%2C0.4-0.7%2C0.9-0.3%2C1.4C52.1%2C2.9%2C52.6%2C3.5%2C52.9%2C4.1z%22%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M68.4%2C4.3l-1.1-0.1l0.1-1.4c0-0.6-0.3-1-1-1.1l-3.1-0.3l0.2-0.5c0.1-0.3-0.2-0.6-0.9-0.7l-0.7-0.1%20c-0.7-0.1-1.1%2C0.2-1.3%2C0.8c0%2C0.1-0.1%2C0.2-0.1%2C0.3l-1.8-0.1c-0.6%2C0-1%2C0.3-1.1%2C0.9c0%2C0.7%2C0.3%2C1%2C1%2C1.1l1.2%2C0.1l-0.2%2C0.6l-2.4-0.2%20c-0.7-0.1-1.1%2C0.2-1.2%2C0.9c0%2C0.6%2C0.3%2C1%2C1%2C1.1l11.3%2C0.7c0.6%2C0.1%2C1-0.3%2C1.1-0.9C69.4%2C4.7%2C69.1%2C4.4%2C68.4%2C4.3z%20M64.5%2C4.2L62.4%2C4%20l0.1-0.6l2%2C0.2C64.5%2C3.6%2C64.5%2C4.2%2C64.5%2C4.2z%22%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M67.3%2C17.1c-2.9%2C0-6.8-0.3-8.9-0.6c-1.9-0.2-3-0.8-3.6-2.2l0.5-5.6c0-0.6-0.3-1-1-1.1l-2.7-0.2%20c-0.6%2C0-1%2C0.3-1.1%2C1l-0.2%2C0.4c0%2C0.6%2C0.3%2C1%2C1%2C1.1l1%2C0.1L52%2C14.1c-0.5%2C0.4-1.1%2C0.7-1.6%2C1s-0.7%2C0.8-0.5%2C1.4l0.4%2C1%20c0.2%2C0.7%2C0.8%2C0.9%2C1.4%2C0.4c0.6-0.5%2C1.2-0.9%2C1.7-1.4c1%2C1.7%2C2.5%2C2.4%2C4.7%2C2.7c2.3%2C0.3%2C5.9%2C0.6%2C8.5%2C0.7c0.6%2C0.1%2C1-0.2%2C1.2-0.8%20c0.1-0.3%2C0.2-0.5%2C0.3-0.8C68.4%2C17.6%2C68.1%2C17.1%2C67.3%2C17.1z%22%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M79%2C11.3c-2.1-0.7-4.3-0.9-5.6-0.9c-0.2%2C0-0.3%2C0-0.5%2C0c-0.3%2C0-0.6%2C0.2-0.8%2C0.8l-0.4%2C1.1%20c-0.2%2C0.7%2C0.1%2C1.2%2C0.9%2C1.2c1.8%2C0%2C3.9%2C0.1%2C5.6%2C0.7c2.3%2C0.9%2C2.4%2C1.8%2C1.9%2C3.4c-0.9%2C3-4.3%2C2.4-7.4%2C1.5c-0.6-0.2-1.1%2C0-1.3%2C0.6l-0.4%2C1%20c-0.2%2C0.6%2C0%2C1.1%2C0.5%2C1.3c4.8%2C1.5%2C9.8%2C1.3%2C11.5-3.3C84.5%2C14.8%2C82.2%2C12.5%2C79%2C11.3z%22%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M84.1%2C8.7c-0.7-0.4-1.9-1-3.7-1.7c-1.1-0.5-2.5-1-3.4-1.3c-0.6-0.3-1.1%2C0-1.3%2C0.6l-0.4%2C0.9%20c-0.3%2C0.6-0.1%2C1.1%2C0.6%2C1.3c0.9%2C0.3%2C2.2%2C0.7%2C3.4%2C1.2c1.3%2C0.5%2C2.7%2C1.2%2C3.6%2C1.7c0.6%2C0.4%2C1.2%2C0.2%2C1.4-0.5l0.3-0.8%20C84.8%2C9.5%2C84.7%2C9%2C84.1%2C8.7z%22%2F%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M105.8%2C11.8c-0.9-1-2-2-3.2-2.9c-2.3-1.6-4.4-1.5-6.5%2C0.3c-1.1%2C1-2.3%2C2-3.6%2C3.4c-0.7%2C0.6-1.4%2C1.4-2%2C2.1%20c-0.4%2C0.4-0.8%2C0.9-1.2%2C1.3c-0.6%2C0.7-0.8%2C1.6-0.5%2C2.4c0.2%2C0.7%2C0.7%2C1.1%2C1.3%2C1.3c-0.3%2C0.8-0.3%2C1.5%2C0%2C2.1c0.2%2C0.5%2C0.7%2C0.9%2C1.3%2C1.1%20c-0.3%2C0.6-0.3%2C1.2-0.1%2C1.8c0.3%2C0.7%2C0.8%2C1.1%2C1.3%2C1.3l-0.8%2C1c-0.6%2C0.7-1.3%2C1.5-2%2C2.3s-0.7%2C2.1%2C0%2C2.9c0.4%2C0.4%2C1%2C0.7%2C1.6%2C0.7%20c0.4%2C0%2C0.8-0.1%2C1.2-0.3c0.2-0.2%2C0.5-0.5%2C0.8-0.8c2-2.2%2C4-4.5%2C6-6.8l1.6-2.1c-0.1%2C0.2-0.1%2C0.3-0.1%2C0.4c-0.1%2C0.7-0.2%2C1.3-0.2%2C2%20c-0.1%2C1%2C0.2%2C1.9%2C0.8%2C2.6c0.4%2C0.6%2C1%2C0.8%2C1.6%2C0.8c0.6-0.1%2C1.1-0.4%2C1.4-0.9s0.5-1.1%2C0.7-1.8c0.4-1.6%2C0.8-3.4%2C1.2-5.3%20c0.3-1.3%2C0.6-3.1%2C0.8-4.9C107.4%2C14.3%2C106.9%2C12.9%2C105.8%2C11.8z%20M106.2%2C16.1c-0.1%2C1.3-0.3%2C2.6-0.6%2C3.9c-0.4%2C2-0.9%2C4-1.4%2C6%20c-0.1%2C0.5-0.3%2C1-0.5%2C1.5c-0.3%2C0.6-0.9%2C0.6-1.3%2C0.1c-0.1-0.2-0.2-0.3-0.3-0.5c-0.2-0.4-0.3-0.9-0.3-1.4c0.1-0.8%2C0.2-1.7%2C0.3-2.5%20c0.1-0.5%2C0.2-1%2C0.2-1.5c0-0.2-0.1-0.3-0.1-0.4c-0.1-0.1-0.3-0.1-0.6%2C0.1c-0.4%2C0.4-0.8%2C0.8-1.2%2C1.2c-2.5%2C2.9-5.1%2C5.8-7.6%2C8.7%20c-0.2%2C0.2-0.3%2C0.4-0.5%2C0.5c-0.5%2C0.4-1.2%2C0.4-1.6%2C0c-0.1-0.1-0.2-0.3-0.2-0.4c-0.1-0.4%2C0-0.8%2C0.2-1.2c0.1-0.1%2C0.2-0.2%2C0.3-0.3%20c2.2-2.5%2C4.3-4.9%2C6.5-7.4c0-0.2%2C0-0.4%2C0.1-0.5c0-0.1%2C0.1-0.2%2C0.2-0.2c-0.2-0.1-0.3-0.2-0.5-0.4c-0.1%2C0.1-0.2%2C0.3-0.4%2C0.4%20c-0.7%2C0.9-1.5%2C1.7-2.2%2C2.6c-0.1%2C0.1-0.2%2C0.2-0.3%2C0.3c-0.6%2C0.5-1.3%2C0.5-1.7%2C0.1c-0.1-0.1-0.2-0.2-0.2-0.4c-0.1-0.4-0.1-0.9%2C0.2-1.3%20c0.9-1%2C1.8-2%2C2.6-3c0.1-0.1%2C0.2-0.3%2C0.4-0.5c-0.1-0.1-0.1-0.1-0.1-0.1c-0.1-0.1-0.2-0.2-0.4-0.4c-0.7%2C0.8-1.3%2C1.5-2%2C2.3%20c-0.1%2C0.2-0.3%2C0.3-0.5%2C0.4c-0.5%2C0.2-0.9%2C0.2-1.3-0.1c-0.1-0.1-0.2-0.2-0.2-0.4c-0.1-0.3-0.1-0.6%2C0-0.9s0.3-0.5%2C0.5-0.7%20c0.7-0.8%2C1.3-1.5%2C2.1-2.4l-0.1-0.1c-0.1-0.1-0.2-0.2-0.3-0.3c-0.1%2C0.1-0.3%2C0.2-0.4%2C0.4c-0.3%2C0.4-0.7%2C0.8-1%2C1.2%20c-0.5%2C0.5-1.2%2C0.6-1.7%2C0.2c-0.2-0.1-0.3-0.3-0.3-0.5c-0.1-0.4%2C0-0.8%2C0.3-1.2c2.1-2.4%2C4.2-4.8%2C6.6-6.8c1.7-1.4%2C3.3-1.5%2C5.1-0.2%20c1.1%2C0.8%2C2.1%2C1.8%2C3.1%2C2.8c0.2%2C0.2%2C0.4%2C0.4%2C0.5%2C0.7C106.1%2C14.3%2C106.3%2C15.2%2C106.2%2C16.1z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
          background-size: cover;
          position: absolute;
          top: -22%;
          left: 50%;
          transform: translateY(0) translateX(-50%); }
        .about .box .box-inner > div > div .number span {
          display: inline-flex;
          justify-content: center;
          align-items: center;
          background-color: #ff5e6b;
          border-radius: 1000px;
          width: 5rem;
          height: 5rem;
          font-size: 2.4rem;
          color: #fff; }
      .about .box .box-inner > div > div .text-img {
        height: 2.5rem;
        width: auto;
        border-radius: 0px; }
    .about .box .box-inner > div img {
      border-radius: 10px; }
    .about .box .box-inner > div p {
      margin-top: 1rem;
      color: #454545;
      z-index: 200;
      position: relative;
      text-align: justify; }
    .about .box .box-inner > div + div {
      margin-top: 2.5rem;
      padding-top: 2.5rem;
      position: relative; }
      .about .box .box-inner > div + div:before {
        content: '';
        background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20306%206%22%20style%3D%22enable-background%3Anew%200%200%20306%206%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bopacity%3A0.5%3Bfill%3Anone%3Bstroke%3A%23FF5E6B%3Bstroke-width%3A6%3Bstroke-miterlimit%3A10%3Bstroke-dasharray%3A6%2C6%2C6%2C6%2C6%2C6%3B%7D%3C%2Fstyle%3E%3Cline%20class%3D%22st0%22%20x1%3D%220%22%20y1%3D%223%22%20x2%3D%22306%22%20y2%3D%223%22%2F%3E%3C%2Fsvg%3E");
        background-size: contain;
        position: absolute;
        left: 0;
        top: -0.3rem;
        height: .6rem;
        width: 100%; }
    .about .box .box-inner > div:last-of-type p {
      width: 72%; }
    .about .box .about-img {
      position: absolute;
      bottom: -1.95%;
      right: -14%;
      z-index: 114;
      width: 55%; }

/* お客様の声 */
.review {
  padding-top: 5rem;
  background-color: #fff; }
  .review .box .box-inner > div + div {
    margin-top: 1.5rem;
    padding-top: 2rem;
    position: relative; }
    .review .box .box-inner > div + div:before {
      content: '';
      background-image: url("data:image/svg+xml;charset=utf8,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20306%206%22%20style%3D%22enable-background%3Anew%200%200%20306%206%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bopacity%3A0.5%3Bfill%3Anone%3Bstroke%3A%230FBEB1%3Bstroke-width%3A6%3Bstroke-miterlimit%3A10%3Bstroke-dasharray%3A6%2C6%2C6%2C6%2C6%2C6%3B%7D%3C%2Fstyle%3E%3Cline%20class%3D%22st0%22%20x1%3D%220%22%20y1%3D%223%22%20x2%3D%22306%22%20y2%3D%223%22%2F%3E%3C%2Fsvg%3E");
      background-size: contain;
      position: absolute;
      left: 0;
      top: -0.3rem;
      height: .6rem;
      width: 100%; }
  .review .box .box-inner .review-header {
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    flex-flow: wrap;
    color: #222222;
    font-weight: bold; }
    .review .box .box-inner .review-header img {
      width: 3em;
      border-radius: 3em;
      margin-right: 1rem; }
    .review .box .box-inner .review-header div {
      display: flex;
      flex-flow: column; }
      .review .box .box-inner .review-header div .name {
        font-size: 1.4rem; }
      .review .box .box-inner .review-header div .satisfaction {
        display: flex;
        align-items: center;
        font-size: 1.4rem;
        color: #0FBEB1;
        flex-flow: wrap; }
        .review .box .box-inner .review-header div .satisfaction img {
          width: auto;
          height: 1em;
          margin: 0 0 0 1rem; }
  .review .box .box-inner p {
    font-size: 1.4rem;
    color: #454545;
    text-align: justify; }
  .review .box .box-inner .date {
    font-size: 1.2rem;
    text-align: right;
    color: rgba(69, 69, 69, 0.5);
    margin-top: 1rem; }

/* 利用料金 */
.price {
  padding-top: 5rem;
  background-color: #fff; }
  .price h3 {
    color: #F7931E;
    font-weight: bold;
    font-size: 1.7rem;
    margin-bottom: 1rem;
    text-align: justify; }
  .price .box div img {
    margin-bottom: 1.5rem; }
  .price .box table {
    font-size: 1.4rem;
    margin-top: 1rem;
    width: 100%;
    border-collapse: collapse; }
    .price .box table tr {
      padding: .5rem; }
      .price .box table tr + tr {
        border-top: 1px dashed #ddd; }
    .price .box table td, .price .box table th {
      padding: .5rem;
      vertical-align: text-bottom; }

/* フッター */
footer {
  text-align: center;
  font-size: 1.2rem;
  padding: 3rem 1.5rem 3rem;
  background-color: #3FA9F5;
  color: #fff; }
  footer p {
    margin: 0; }
  footer div + div {
    margin-top: 1rem; }
