@charset "UTF-8";
/* ===================================================================
	file name: defult.css
=================================================================== */
/* contents
----------------------------------------
 * reset                  /*リセット
 * default settings       /*デフォルトセッティング
 * font                   /*フォント･テキスト関係
 * clearfix               /*クリアフィックス
 * float/display/flex     /*フロート・ディスプレイ関係
 * rollover               /*cssロールオーバー
 * fade Animation         /*フェード アニメーション
 * margin                 /*マージン調整
 * padding                /*パディング調整
 * scrollbar              /*フスクロールバー
 * CSS Animation          /*CSS アニメション
 * js Animation           /*jS アニメーション
 * popup modal            /*モーダルウィンドウ設定

---------------------------------------- */
/* =========================================================
 * reset                  /*リセット
========================================================= */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@100;300;400;500;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100..900;1,100..900&display=swap");
blockquote,
body,
div,
dl,
dt,
dd,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
li,
ol,
p,
pre,
select,
span,
textarea,
td,
th,
ul,
figure,
figcaption {
  margin: 0px;
  padding: 0px; }

fieldset,
img {
  border: 0; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: bold; }

ol {
  list-style-type: none; }

ul {
  list-style-type: none; }
  ul li {
    list-style-type: none; }
    ul li img {
      line-height: 0;
      font-size: 0;
      vertical-align: top; }

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

caption,
th {
  text-align: left; }

iframe {
  border: none; }

a:focus {
  outline: none; }

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal; }

/* IE */
* html ul li dl,
* html ol li dl {
  display: inline; }
*:first-child + html ul li dl,
*:first-child + html ol li dl {
  display: inline; }

/* =========================================================
 * default settings       /*デフォルトセッティング
========================================================= */
* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  word-break: break-all;
  /*CJK (中国語、台湾語、日本語、韓国語) 以外のテキストにおいて、単語中などでの文字の改行に関する禁則処理を解除し、どの文字の間でも改行するようにします。*/ }

html,
body {
  font-size: 62.5%;
  overflow: auto; }

body {
  overflow: hidden;
  -webkit-text-size-adjust: 100%;
  font: inherit;
  font-size: 14px;
  font-family: YuGothic, "Yu Gothic medium", "Yu Gothic", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: 400;
  line-height: 1.4;
  font-feature-settings: "palt";
  /*日本語フォントの文字間隔（カーニング）全角スペースを詰める調整、句読点や括弧などの約物を含めた文字間をしっかり詰めてくれます。*/
  color: #000;
  background: #fff; }

main {
  display: block; }

/*リンクテキスト全般の設定*/
a {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  color: #000;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -ms-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out; }
  a:hover {
    opacity: .7;
    -webkit-opacity: .7;
    -moz-opacity: .7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)"; }

.disabled {
  pointer-events: none; }

.soon {
  pointer-events: none;
  opacity: .5; }

.hide,
.hidden {
  visibility: hidden; }

/*テキスト周りのタグ*/
p {
  line-break: strict;
  text-align: justify; }

/*注釈 annotation*/
.txtanno {
  font-size: 0.8333333333vw !important;
  font-weight: 400;
  line-height: 1.2 !important;
  text-align: left;
  display: block;
  text-indent: -1em;
  padding-left: 1em;
  margin: 1em 0; }

/*上付き*/
.txtsup {
  vertical-align: super; }

/*下付き*/
.txtsub {
  vertical-align: sub; }

/*画像全般の設定*/
img {
  max-width: 100%;
  height: auto;
  border: none; }

/*videoタグ*/
video {
  max-width: 100%; }

/*iframeタグ*/
iframe {
  width: 100%; }

/*レスポンシブ切り替え表示の設定*/
.pc {
  display: block; }

.sp {
  display: none; }

@media screen and (max-width: 767px) {
  body {
    min-width: 100%;
    font-size: 1.6vw; }

  /*リンクテキスト全般の設定*/
  a {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    transition: none; }
    a:hover {
      opacity: 1;
      -webkit-opacity: 1;
      -moz-opacity: 1;
      filter: alpha(opacity=100);
      /* IE lt 8 */
      -ms-filter: "alpha(opacity=100)";
      /* IE 8 */ }

  /*画像全般の設定*/
  img {
    width: 100%; }

  /*テキスト周りのタグ*/
  /*注釈 annotation*/
  .txtanno {
    font-size: 1.3333333333vw !important; }

  /*レスポンシブ切り替え表示の設定*/
  .pc {
    display: none; }

  .sp {
    display: block; } }
/* =========================================================
 * font                   /*フォント･テキスト関係
========================================================= */
/* ウェイト・サイズ */
.fNormal {
  font-weight: normal; }

.fBold {
  font-weight: bold; }

.fItalic {
  font-style: italic; }

.f09 {
  font-size: 75% !important; }

/* base 13px = 9px  */
.f10 {
  font-size: 77% !important; }

/* base 13px = 10px */
.f11 {
  font-size: 85% !important; }

/* base 13px = 11px */
.f12 {
  font-size: 93% !important; }

/* base 13px        */
.f13 {
  font-size: 100% !important; }

/* base 13px = 13px */
.f14 {
  font-size: 108% !important; }

/* base 13px = 14px */
.f15 {
  font-size: 116% !important; }

/* base 13px = 15px */
.f16 {
  font-size: 124% !important; }

/* base 13px = 16px */
.f17 {
  font-size: 131% !important; }

/* base 13px = 17px */
.f18 {
  font-size: 139% !important; }

/* base 13px = 18px */
.f19 {
  font-size: 147% !important; }

/* base 13px = 18px */
.f20 {
  font-size: 154% !important; }

/* base 13px = 18px */
/* カラー */
　
.txtC {
  text-align: center; }

.txtR {
  text-align: right; }

.txtL {
  text-align: left; }

/* テキストインデント */
.hidetxt,
.hd {
  line-height: 150;
  overflow: hidden; }
  .hidetxt a,
  .hd a {
    overflow: hidden; }

/*Lato*/
/*Roboto Condensed & Roboto*/
/*Noto Sans Japanese*/
/*poppins*/
/*notoserif japanese*/
/*mplus*/
/*overpass*/
.lato {
  font-family: "Lato", sans-serif;
  font-optical-sizing: auto; }

.roboto-condensed {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-style: normal; }

.roboto {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto; }

.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal; }

.noto-serif-jp {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal; }

.mplus {
  font-family: "M PLUS 1p", sans-serif; }

/* =========================================================
 * clearfix               /*クリアフィックス
========================================================= */
/* For modern browsers */
.clearfix {
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */ }
  .clearfix:before, .clearfix:after {
    content: "";
    display: table; }
  .clearfix:after {
    clear: both; }

/* =========================================================
 * float/display/flex     /*フロート・ディスプレイ関係
========================================================= */
/* float*/
.flotL {
  display: inline;
  float: left; }

.flotR {
  display: inline;
  float: right; }

.ovhid {
  overflow: hidden;
  zoom: 1; }

/*display*/
.block {
  display: block; }

.none {
  display: none; }

.inline {
  display: inline; }

.inlineb {
  display: inline-block; }

.bnone {
  border: none !important; }

/*flex*/
.flex {
  display: flex; }

.flexjcA {
  justify-content: space-around; }

.flexjcB {
  justify-content: space-between; }

.flexjcC {
  justify-content: center; }

.flexrow-r {
  flex-direction: row-reverse; }

.flexrow {
  flex-direction: row; }

.flexaiB {
  align-items: baseline; }

.flexaiS {
  align-items: flex-start; }

.flexaiE {
  align-items: flex-end; }

.flexaiC {
  align-items: center; }

/* =========================================================
 * rollover               /*cssロールオーバー
========================================================= */
.hover a:hover img {
  opacity: .7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70 )"; }

/* =========================================================
 * fade Animation         /*フェード アニメーション
========================================================= */
.fade,
.fadein,
.fadein-top,
.fadein-left,
.fadein-right,
.opening,
.fadein-popup {
  position: relative;
  opacity: 0;
  transition: opacity 0.875s ease-in-out , transform 0.875s ease-in-out; }

.opening {
  transform: scale(0.1); }

.fade {
  transform: translate(0, 0); }

.fadein {
  transform: translate(0, 50px); }

.fadein-top {
  transform: translate(0, -50px); }

.fadein-left {
  transform: translate(-50px, 0); }

.fadein-right {
  transform: translate(50px, 0); }

.fadein-popup {
  translate: none;
  rotate: none;
  scale: none;
  transform: translateY(0) scale(0.1) !important;
  transition: opacity 0.875 ease-in-out , transform 0.875s ease-in-out; }

.opening.active {
  opacity: 1;
  transform: scale(1); }

.fade.scrollin,
.fadein.scrollin,
.fadein-top.scrollin,
.fadein-left.scrollin,
.fadein-right.scrollin {
  opacity: 1;
  transform: translate(0, 0); }

.fadein-popup.scrollin {
  transform: translate(0, 0) scale(1) !important;
  opacity: 1; }

.fadein-topleft {
  animation: topleft 10s infinite linear 1s both; }

.fadein-topright {
  animation: topright 6.3s infinite linear 1s both; }

.fadein-topright02 {
  animation: topright 9.5s infinite linear 1s both; }

.fadein-bottomleft {
  animation: bottomleft 5.5s infinite linear 1s both; }

.fadein-bottomright {
  animation: bottomright 5.5s infinite linear 1s both; }

@keyframes topleft {
  0% {
    transform: translate(-50%, -50%); }
  100% {
    transform: translate(250%, 250%); } }
@keyframes topright {
  0% {
    transform: translate(50%, 50%); }
  100% {
    transform: translate(-100%, 200%); } }
@keyframes bottomleft {
  0% {
    transform: translate(-50%, -50%); }
  100% {
    transform: translate(150%, -250%); } }
@keyframes bottomright {
  0% {
    transform: translate(50%, 50%); }
  100% {
    transform: translate(-150%, 250%); } }
@keyframes popup {
  0% {
    opacity: 0; }
  80%, 100% {
    opacity: 1; } }
/* =========================================================
 * margin                 /*マージン調整
========================================================= */
.mt00 {
  margin-top: 0 !important; }

.mt05 {
  margin-top: 0.4166666667vw !important; }

.mt10 {
  margin-top: 0.8333333333vw !important; }

.mt12 {
  margin-top: 1vw !important; }

.mt15 {
  margin-top: 1.25vw !important; }

.mt20 {
  margin-top: 1.6666666667vw !important; }

.mt25 {
  margin-top: 2.0833333333vw !important; }

.mt30 {
  margin-top: 2.5vw !important; }

.mt35 {
  margin-top: 2.9166666667vw !important; }

.mt40 {
  margin-top: 3.3333333333vw !important; }

.mt45 {
  margin-top: 3.75vw !important; }

.mt50 {
  margin-top: 4.1666666667vw !important; }

.mt55 {
  margin-top: 4.5833333333vw !important; }

.mt60 {
  margin-top: 5vw !important; }

.mt65 {
  margin-top: 5.4166666667vw !important; }

.mt70 {
  margin-top: 5.8333333333vw !important; }

.mt75 {
  margin-top: 6.25vw !important; }

.mt80 {
  margin-top: 6.6666666667vw !important; }

.mt85 {
  margin-top: 7.0833333333vw !important; }

.mt90 {
  margin-top: 7.5vw !important; }

.mt95 {
  margin-top: 7.9166666667vw !important; }

.mt100 {
  margin-top: 8.3333333333vw !important; }

.mr00 {
  margin-right: 0 !important; }

.mr05 {
  margin-right: 0.4166666667vw !important; }

.mr10 {
  margin-right: 0.8333333333vw !important; }

.mr12 {
  margin-right: 1vw !important; }

.mr15 {
  margin-right: 1.25vw !important; }

.mr20 {
  margin-right: 1.6666666667vw !important; }

.mr25 {
  margin-right: 2.0833333333vw !important; }

.mr30 {
  margin-right: 2.5vw !important; }

.mr35 {
  margin-right: 2.9166666667vw !important; }

.mr40 {
  margin-right: 3.3333333333vw !important; }

.mr45 {
  margin-right: 3.75vw !important; }

.mr50 {
  margin-right: 4.1666666667vw !important; }

.mr55 {
  margin-right: 4.5833333333vw !important; }

.mr60 {
  margin-right: 5vw !important; }

.mr65 {
  margin-right: 5.4166666667vw !important; }

.mr70 {
  margin-right: 5.8333333333vw !important; }

.mr75 {
  margin-right: 6.25vw !important; }

.mr80 {
  margin-right: 6.6666666667vw !important; }

.mr85 {
  margin-right: 7.0833333333vw !important; }

.mr90 {
  margin-right: 7.5vw !important; }

.mr95 {
  margin-right: 7.9166666667vw !important; }

.mr100 {
  margin-right: 8.3333333333vw !important; }

.mb00 {
  margin-bottom: 0 !important; }

.mb05 {
  margin-bottom: 0.4166666667vw !important; }

.mb10 {
  margin-bottom: 0.8333333333vw !important; }

.mb12 {
  margin-bottom: 1vw !important; }

.mb15 {
  margin-bottom: 1.25vw !important; }

.mb20 {
  margin-bottom: 1.6666666667vw !important; }

.mb25 {
  margin-bottom: 2.0833333333vw !important; }

.mb30 {
  margin-bottom: 2.5vw !important; }

.mb35 {
  margin-bottom: 2.9166666667vw !important; }

.mb40 {
  margin-bottom: 3.3333333333vw !important; }

.mb45 {
  margin-bottom: 3.75vw !important; }

.mb50 {
  margin-bottom: 4.1666666667vw !important; }

.mb55 {
  margin-bottom: 4.5833333333vw !important; }

.mb60 {
  margin-bottom: 5vw !important; }

.mb65 {
  margin-bottom: 5.4166666667vw !important; }

.mb70 {
  margin-bottom: 5.8333333333vw !important; }

.mb75 {
  margin-bottom: 6.25vw !important; }

.mb80 {
  margin-bottom: 6.6666666667vw !important; }

.mb85 {
  margin-bottom: 7.0833333333vw !important; }

.mb90 {
  margin-bottom: 7.5vw !important; }

.mb95 {
  margin-bottom: 7.9166666667vw !important; }

.mb100 {
  margin-bottom: 8.3333333333vw !important; }

.ml00 {
  margin-left: 0 !important; }

.ml05 {
  margin-left: 0.4166666667vw !important; }

.ml10 {
  margin-left: 0.8333333333vw !important; }

.ml12 {
  margin-left: 1vw !important; }

.ml15 {
  margin-left: 1.25vw !important; }

.ml20 {
  margin-left: 1.6666666667vw !important; }

.ml25 {
  margin-left: 2.0833333333vw !important; }

.ml30 {
  margin-left: 2.5vw !important; }

.ml35 {
  margin-left: 2.9166666667vw !important; }

.ml40 {
  margin-left: 3.3333333333vw !important; }

.ml45 {
  margin-left: 3.75vw !important; }

.ml50 {
  margin-left: 4.1666666667vw !important; }

.ml55 {
  margin-left: 4.5833333333vw !important; }

.ml60 {
  margin-left: 5vw !important; }

.ml65 {
  margin-left: 5.4166666667vw !important; }

.ml70 {
  margin-left: 5.8333333333vw !important; }

.ml75 {
  margin-left: 6.25vw !important; }

.ml80 {
  margin-left: 6.6666666667vw !important; }

.ml85 {
  margin-left: 7.0833333333vw !important; }

.ml90 {
  margin-left: 7.5vw !important; }

.ml95 {
  margin-left: 7.9166666667vw !important; }

.ml100 {
  margin-left: 8.3333333333vw !important; }

@media screen and (max-width: 767px) {
  .mt00 {
    margin-top: 0 !important; }

  .mt05 {
    margin-top: 1.3333333333vw !important; }

  .mt10 {
    margin-top: 2.6666666667vw !important; }

  .mt12 {
    margin-top: 3.2vw !important; }

  .mt15 {
    margin-top: 4vw !important; }

  .mt20 {
    margin-top: 5.3333333333vw !important; }

  .mt25 {
    margin-top: 6.6666666667vw !important; }

  .mt30 {
    margin-top: 8vw !important; }

  .mt35 {
    margin-top: 9.3333333333vw !important; }

  .mt40 {
    margin-top: 10.6666666667vw !important; }

  .mt45 {
    margin-top: 12vw !important; }

  .mt50 {
    margin-top: 13.3333333333vw !important; }

  .mt55 {
    margin-top: 14.6666666667vw !important; }

  .mt60 {
    margin-top: 16vw !important; }

  .mt65 {
    margin-top: 17.3333333333vw !important; }

  .mt70 {
    margin-top: 18.6666666667vw !important; }

  .mt75 {
    margin-top: 20vw !important; }

  .mt80 {
    margin-top: 21.3333333333vw !important; }

  .mt85 {
    margin-top: 22.6666666667vw !important; }

  .mt90 {
    margin-top: 24vw !important; }

  .mt95 {
    margin-top: 25.3333333333vw !important; }

  .mt100 {
    margin-top: 26.6666666667vw !important; }

  .mr00 {
    margin-right: 0 !important; }

  .mr05 {
    margin-right: 1.3333333333vw !important; }

  .mr10 {
    margin-right: 2.6666666667vw !important; }

  .mr12 {
    margin-right: 3.2vw !important; }

  .mr15 {
    margin-right: 4vw !important; }

  .mr20 {
    margin-right: 5.3333333333vw !important; }

  .mr25 {
    margin-right: 6.6666666667vw !important; }

  .mr30 {
    margin-right: 8vw !important; }

  .mr35 {
    margin-right: 9.3333333333vw !important; }

  .mr40 {
    margin-right: 10.6666666667vw !important; }

  .mr45 {
    margin-right: 12vw !important; }

  .mr50 {
    margin-right: 13.3333333333vw !important; }

  .mr55 {
    margin-right: 14.6666666667vw !important; }

  .mr60 {
    margin-right: 16vw !important; }

  .mr65 {
    margin-right: 17.3333333333vw !important; }

  .mr70 {
    margin-right: 18.6666666667vw !important; }

  .mr75 {
    margin-right: 20vw !important; }

  .mr80 {
    margin-right: 21.3333333333vw !important; }

  .mr85 {
    margin-right: 22.6666666667vw !important; }

  .mr90 {
    margin-right: 24vw !important; }

  .mr95 {
    margin-right: 25.3333333333vw !important; }

  .mr100 {
    margin-right: 26.6666666667vw !important; }

  .mb00 {
    margin-bottom: 0 !important; }

  .mb05 {
    margin-bottom: 1.3333333333vw !important; }

  .mb10 {
    margin-bottom: 2.6666666667vw !important; }

  .mb12 {
    margin-bottom: 3.2vw !important; }

  .mb15 {
    margin-bottom: 4vw !important; }

  .mb20 {
    margin-bottom: 5.3333333333vw !important; }

  .mb25 {
    margin-bottom: 6.6666666667vw !important; }

  .mb30 {
    margin-bottom: 8vw !important; }

  .mb35 {
    margin-bottom: 9.3333333333vw !important; }

  .mb40 {
    margin-bottom: 10.6666666667vw !important; }

  .mb45 {
    margin-bottom: 12vw !important; }

  .mb50 {
    margin-bottom: 13.3333333333vw !important; }

  .mb55 {
    margin-bottom: 14.6666666667vw !important; }

  .mb60 {
    margin-bottom: 16vw !important; }

  .mb65 {
    margin-bottom: 17.3333333333vw !important; }

  .mb70 {
    margin-bottom: 18.6666666667vw !important; }

  .mb75 {
    margin-bottom: 20vw !important; }

  .mb80 {
    margin-bottom: 21.3333333333vw !important; }

  .mb85 {
    margin-bottom: 22.6666666667vw !important; }

  .mb90 {
    margin-bottom: 24vw !important; }

  .mb95 {
    margin-bottom: 25.3333333333vw !important; }

  .mb100 {
    margin-bottom: 26.6666666667vw !important; }

  .ml00 {
    margin-left: 0 !important; }

  .ml05 {
    margin-left: 1.3333333333vw !important; }

  .ml10 {
    margin-left: 2.6666666667vw !important; }

  .ml12 {
    margin-left: 3.2vw !important; }

  .ml15 {
    margin-left: 4vw !important; }

  .ml20 {
    margin-left: 5.3333333333vw !important; }

  .ml25 {
    margin-left: 6.6666666667vw !important; }

  .ml30 {
    margin-left: 8vw !important; }

  .ml35 {
    margin-left: 9.3333333333vw !important; }

  .ml40 {
    margin-left: 10.6666666667vw !important; }

  .ml45 {
    margin-left: 12vw !important; }

  .ml50 {
    margin-left: 13.3333333333vw !important; }

  .ml55 {
    margin-left: 14.6666666667vw !important; }

  .ml60 {
    margin-left: 16vw !important; }

  .ml65 {
    margin-left: 17.3333333333vw !important; }

  .ml70 {
    margin-left: 18.6666666667vw !important; }

  .ml75 {
    margin-left: 20vw !important; }

  .ml80 {
    margin-left: 21.3333333333vw !important; }

  .ml85 {
    margin-left: 22.6666666667vw !important; }

  .ml90 {
    margin-left: 24vw !important; }

  .ml95 {
    margin-left: 25.3333333333vw !important; }

  .ml100 {
    margin-left: 26.6666666667vw !important; } }
/* ======================================================
 * padding                /*パディング調整
====================================================== */
.pt00 {
  padding-top: 0 !important; }

.pt05 {
  padding-top: 0.4166666667vw !important; }

.pt10 {
  padding-top: 0.8333333333vw !important; }

.pt12 {
  padding-top: 1vw !important; }

.pt15 {
  padding-top: 1.25vw !important; }

.pt20 {
  padding-top: 1.6666666667vw !important; }

.pt25 {
  padding-top: 2.0833333333vw !important; }

.pt30 {
  padding-top: 2.5vw !important; }

.pt35 {
  padding-top: 2.9166666667vw !important; }

.pt40 {
  padding-top: 3.3333333333vw !important; }

.pt45 {
  padding-top: 3.75vw !important; }

.pt50 {
  padding-top: 4.1666666667vw !important; }

.pt55 {
  padding-top: 4.5833333333vw !important; }

.pt60 {
  padding-top: 5vw !important; }

.pt65 {
  padding-top: 5.4166666667vw !important; }

.pt70 {
  padding-top: 5.8333333333vw !important; }

.pt75 {
  padding-top: 6.25vw !important; }

.pt80 {
  padding-top: 6.6666666667vw !important; }

.pt85 {
  padding-top: 7.0833333333vw !important; }

.pt90 {
  padding-top: 7.5vw !important; }

.pt95 {
  padding-top: 7.9166666667vw !important; }

.pt100 {
  padding-top: 8.3333333333vw !important; }

.pr00 {
  padding-right: 0 !important; }

.pr05 {
  padding-right: 0.4166666667vw !important; }

.pr10 {
  padding-right: 0.8333333333vw !important; }

.pr12 {
  padding-right: 1vw !important; }

.pr15 {
  padding-right: 1.25vw !important; }

.pr20 {
  padding-right: 1.6666666667vw !important; }

.pr25 {
  padding-right: 2.0833333333vw !important; }

.pr30 {
  padding-right: 2.5vw !important; }

.pr35 {
  padding-right: 2.9166666667vw !important; }

.pr40 {
  padding-right: 3.3333333333vw !important; }

.pr45 {
  padding-right: 3.75vw !important; }

.pr50 {
  padding-right: 4.1666666667vw !important; }

.pr55 {
  padding-right: 4.5833333333vw !important; }

.pr60 {
  padding-right: 5vw !important; }

.pr65 {
  padding-right: 5.4166666667vw !important; }

.pr70 {
  padding-right: 5.8333333333vw !important; }

.pr75 {
  padding-right: 6.25vw !important; }

.pr80 {
  padding-right: 6.6666666667vw !important; }

.pr85 {
  padding-right: 7.0833333333vw !important; }

.pr90 {
  padding-right: 7.5vw !important; }

.pr95 {
  padding-right: 7.9166666667vw !important; }

.pr100 {
  padding-right: 8.3333333333vw !important; }

.pb00 {
  padding-bottom: 0 !important; }

.pb05 {
  padding-bottom: 0.4166666667vw !important; }

.pb10 {
  padding-bottom: 0.8333333333vw !important; }

.pb12 {
  padding-bottom: 1vw !important; }

.pb15 {
  padding-bottom: 1.25vw !important; }

.pb20 {
  padding-bottom: 1.6666666667vw !important; }

.pb25 {
  padding-bottom: 2.0833333333vw !important; }

.pb30 {
  padding-bottom: 2.5vw !important; }

.pb35 {
  padding-bottom: 2.9166666667vw !important; }

.pb40 {
  padding-bottom: 3.3333333333vw !important; }

.pb45 {
  padding-bottom: 3.75vw !important; }

.pb50 {
  padding-bottom: 4.1666666667vw !important; }

.pb55 {
  padding-bottom: 4.5833333333vw !important; }

.pb60 {
  padding-bottom: 5vw !important; }

.pb65 {
  padding-bottom: 5.4166666667vw !important; }

.pb70 {
  padding-bottom: 5.8333333333vw !important; }

.pb75 {
  padding-bottom: 6.25vw !important; }

.pb80 {
  padding-bottom: 6.6666666667vw !important; }

.pb85 {
  padding-bottom: 7.0833333333vw !important; }

.pb90 {
  padding-bottom: 7.5vw !important; }

.pb95 {
  padding-bottom: 7.9166666667vw !important; }

.pb100 {
  padding-bottom: 8.3333333333vw !important; }

.pl00 {
  padding-left: 0 !important; }

.pl05 {
  padding-left: 0.4166666667vw !important; }

.pl10 {
  padding-left: 0.8333333333vw !important; }

.pl12 {
  padding-left: 1vw !important; }

.pl15 {
  padding-left: 1.25vw !important; }

.pl20 {
  padding-left: 1.6666666667vw !important; }

.pl25 {
  padding-left: 2.0833333333vw !important; }

.pl30 {
  padding-left: 2.5vw !important; }

.pl35 {
  padding-left: 2.9166666667vw !important; }

.pl40 {
  padding-left: 3.3333333333vw !important; }

.pl45 {
  padding-left: 3.75vw !important; }

.pl50 {
  padding-left: 4.1666666667vw !important; }

.pl55 {
  padding-left: 4.5833333333vw !important; }

.pl60 {
  padding-left: 5vw !important; }

.pl65 {
  padding-left: 5.4166666667vw !important; }

.pl70 {
  padding-left: 5.8333333333vw !important; }

.pl75 {
  padding-left: 6.25vw !important; }

.pl80 {
  padding-left: 6.6666666667vw !important; }

.pl85 {
  padding-left: 7.0833333333vw !important; }

.pl90 {
  padding-left: 7.5vw !important; }

.pl95 {
  padding-left: 7.9166666667vw !important; }

.pl100 {
  padding-left: 8.3333333333vw !important; }

@media screen and (max-width: 767px) {
  .pt00 {
    padding-top: 0 !important; }

  .pt05 {
    padding-top: 1.3333333333vw !important; }

  .pt10 {
    padding-top: 2.6666666667vw !important; }

  .pt12 {
    padding-top: 3.2vw !important; }

  .pt15 {
    padding-top: 4vw !important; }

  .pt20 {
    padding-top: 5.3333333333vw !important; }

  .pt25 {
    padding-top: 6.6666666667vw !important; }

  .pt30 {
    padding-top: 8vw !important; }

  .pt35 {
    padding-top: 9.3333333333vw !important; }

  .pt40 {
    padding-top: 10.6666666667vw !important; }

  .pt45 {
    padding-top: 12vw !important; }

  .pt50 {
    padding-top: 13.3333333333vw !important; }

  .pt55 {
    padding-top: 14.6666666667vw !important; }

  .pt60 {
    padding-top: 16vw !important; }

  .pt65 {
    padding-top: 17.3333333333vw !important; }

  .pt70 {
    padding-top: 18.6666666667vw !important; }

  .pt75 {
    padding-top: 20vw !important; }

  .pt80 {
    padding-top: 21.3333333333vw !important; }

  .pt85 {
    padding-top: 22.6666666667vw !important; }

  .pt90 {
    padding-top: 24vw !important; }

  .pt95 {
    padding-top: 25.3333333333vw !important; }

  .pt100 {
    padding-top: 26.6666666667vw !important; }

  .pr00 {
    padding-right: 0 !important; }

  .pr05 {
    padding-right: 1.3333333333vw !important; }

  .pr10 {
    padding-right: 2.6666666667vw !important; }

  .pr12 {
    padding-right: 3.2vw !important; }

  .pr15 {
    padding-right: 4vw !important; }

  .pr20 {
    padding-right: 5.3333333333vw !important; }

  .pr25 {
    padding-right: 6.6666666667vw !important; }

  .pr30 {
    padding-right: 8vw !important; }

  .pr35 {
    padding-right: 9.3333333333vw !important; }

  .pr40 {
    padding-right: 10.6666666667vw !important; }

  .pr45 {
    padding-right: 12vw !important; }

  .pr50 {
    padding-right: 13.3333333333vw !important; }

  .pr55 {
    padding-right: 14.6666666667vw !important; }

  .pr60 {
    padding-right: 16vw !important; }

  .pr65 {
    padding-right: 17.3333333333vw !important; }

  .pr70 {
    padding-right: 18.6666666667vw !important; }

  .pr75 {
    padding-right: 20vw !important; }

  .pr80 {
    padding-right: 21.3333333333vw !important; }

  .pr85 {
    padding-right: 22.6666666667vw !important; }

  .pr90 {
    padding-right: 24vw !important; }

  .pr95 {
    padding-right: 25.3333333333vw !important; }

  .pr100 {
    padding-right: 26.6666666667vw !important; }

  .pb00 {
    padding-bottom: 0 !important; }

  .pb05 {
    padding-bottom: 1.3333333333vw !important; }

  .pb10 {
    padding-bottom: 2.6666666667vw !important; }

  .pb12 {
    padding-bottom: 3.2vw !important; }

  .pb15 {
    padding-bottom: 4vw !important; }

  .pb20 {
    padding-bottom: 5.3333333333vw !important; }

  .pb25 {
    padding-bottom: 6.6666666667vw !important; }

  .pb30 {
    padding-bottom: 8vw !important; }

  .pb35 {
    padding-bottom: 9.3333333333vw !important; }

  .pb40 {
    padding-bottom: 10.6666666667vw !important; }

  .pb45 {
    padding-bottom: 12vw !important; }

  .pb50 {
    padding-bottom: 13.3333333333vw !important; }

  .pb55 {
    padding-bottom: 14.6666666667vw !important; }

  .pb60 {
    padding-bottom: 16vw !important; }

  .pb65 {
    padding-bottom: 17.3333333333vw !important; }

  .pb70 {
    padding-bottom: 18.6666666667vw !important; }

  .pb75 {
    padding-bottom: 20vw !important; }

  .pb80 {
    padding-bottom: 21.3333333333vw !important; }

  .pb85 {
    padding-bottom: 22.6666666667vw !important; }

  .pb90 {
    padding-bottom: 24vw !important; }

  .pb95 {
    padding-bottom: 25.3333333333vw !important; }

  .pb100 {
    padding-bottom: 26.6666666667vw !important; }

  .pl00 {
    padding-left: 0 !important; }

  .pl05 {
    padding-left: 1.3333333333vw !important; }

  .pl10 {
    padding-left: 2.6666666667vw !important; }

  .pl12 {
    padding-left: 3.2vw !important; }

  .pl15 {
    padding-left: 4vw !important; }

  .pl20 {
    padding-left: 5.3333333333vw !important; }

  .pl25 {
    padding-left: 6.6666666667vw !important; }

  .pl30 {
    padding-left: 8vw !important; }

  .pl35 {
    padding-left: 9.3333333333vw !important; }

  .pl40 {
    padding-left: 10.6666666667vw !important; }

  .pl45 {
    padding-left: 12vw !important; }

  .pl50 {
    padding-left: 13.3333333333vw !important; }

  .pl55 {
    padding-left: 14.6666666667vw !important; }

  .pl60 {
    padding-left: 16vw !important; }

  .pl65 {
    padding-left: 17.3333333333vw !important; }

  .pl70 {
    padding-left: 18.6666666667vw !important; }

  .pl75 {
    padding-left: 20vw !important; }

  .pl80 {
    padding-left: 21.3333333333vw !important; }

  .pl85 {
    padding-left: 22.6666666667vw !important; }

  .pl90 {
    padding-left: 24vw !important; }

  .pl95 {
    padding-left: 25.3333333333vw !important; }

  .pl100 {
    padding-left: 26.6666666667vw !important; } }
/* =========================================================
 * scrollbar              /*フスクロールバー
========================================================= */
/* Chrome, Safari 対応 */
/*垂直方向のスクロールバーに適用*/
/*::-webkit-scrollbar:horizontal{
    display: none;
    -webkit-appearance: none;
}*/
/*水平方向のスクロールバーに適用*/
/*::-webkit-scrollbar:vertical{
    display: none;
    -webkit-appearance: none;
}*/
/* =========================================================
 * CSS Animation          /*CSS アニメション
========================================================= */
/*<div class="scroll">
	<div class="scroll--inner">
		<span>Scroll</span>
		<div class="bar"></div>
	</div>
</div>*/
.scroll {
  position: absolute;
  bottom: -2.5vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9; }
  .scroll--inner {
    position: relative; }
    .scroll--inner span {
      font-size: 1.1666666667vw;
      font-weight: 300;
      line-height: 1;
      color: #fff;
      box-sizing: border-box;
      font-feature-settings: normal;
      display: inline;
      box-sizing: border-box; }
    .scroll--inner .bar {
      width: 100%;
      height: 5vw;
      margin-top: .5em;
      overflow: hidden;
      position: relative; }
      .scroll--inner .bar:before {
        content: '';
        display: block;
        position: absolute;
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px solid #fff;
        transform: translateX(-50%);
        -webkit-animation: arrow-move 2.2s 0.5s ease-in-out infinite;
        animation: arrow-move 2.2s 0.5s ease-in-out infinite; }

@media screen and (max-width: 767px) {
  .scroll {
    bottom: -4vw; }
    .scroll--inner span {
      font-size: 1.8666666667vw; }
    .scroll--inner .bar {
      height: 8vw; } }
/*メインビジュのSCROLL*/
/*
-webkit-animation: arrow-move 2.2s 0.5s ease-in-out infinite;
animation: arrow-move 2.2s 0.5s ease-in-out infinite;
*/
@keyframes arrow-move {
  0% {
    top: -100%; }
  50% {
    top: 0; }
  100% {
    top: 100%; } }
@-webkit-keyframes arrow-move {
  0% {
    top: -100%; }
  50% {
    top: 0; }
  100% {
    top: 100%; } }
/*
-webkit-animation: 
animation: 
*/
@keyframes animationZoom {
  100% {
    transform: scale(1.1); } }
/*
-webkit-animation: 
animation: 
*/
@keyframes slideshow {
  0% {
    opacity: 0;
    transform: scale(1.2, 1.2); }
  10% {
    opacity: 1;
    transform: scale(1, 1); }
  28% {
    opacity: 1;
    transform: scale(1, 1); }
  38% {
    opacity: 0;
    transform: scale(1, 1); }
  100% {
    opacity: 0;
    transform: scale(1, 1); } }
/*#noise*/
.noise {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden; }
  .noise:after {
    content: "";
    width: calc(100% + 20rem);
    height: calc(100% + 20rem);
    background-image: url(../images/common/noise.png);
    background-position: 50%;
    position: absolute;
    left: -10rem;
    top: -10rem;
    will-change: transform;
    -webkit-animation: noise 1s steps(2) infinite;
    animation: noise 1s steps(2) infinite; }

@media all and (-ms-high-contrast: none) {
  .noise {
    display: none; } }
/* =========================================================
 * js Animation           /*jS アニメーション
========================================================= */
/*マウスイベント*/
/*<!--mouse stalker-->
<div id="cursor" class="cursor"></div>*/
#cursor {
  pointer-events: none;
  position: fixed;
  top: -8px;
  left: -8px;
  width: 16px;
  height: 16px;
  background: rgba(100, 100, 100, 0.8);
  border: 1px solid rgba(255, 0, 4, 0.5);
  border-radius: 50%;
  transition: transform 0.2s, top, 0.5s, left 0.5s, width .5s, height .5s, background-color .5s;
  transition-timing-function: ease-out;
  z-index: 10005; }
  #cursor.hov_ {
    top: -32px;
    left: -32px;
    width: 28px;
    height: 28px;
    transition: .5s;
    background: rgba(255, 0, 0, 0.4);
    border: none; }

@media screen and (max-width: 767px) {
  #cursor {
    display: none; } }
/*1文字ずつ出現させるためのCSS*/
.eachTextAnime span {
  opacity: 0; }

.eachTextAnime.appeartext span {
  animation: text_anime_on .1s ease-out forwards; }

@keyframes text_anime_on {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    opacity: 1; } }
/* =========================================================
 * popup modal            /*モーダルウィンドウ設定
========================================================= */
.mfp-bg {
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out; }

.mfp-close {
  text-indent: -9999px;
  font-family: serif;
  font-size: 64px;
  right: -10px !important;
  padding-right: 0 !important;
  top: -50px !important; }

/* overlay animate in */
.mfp-bg.mfp-ready {
  opacity: .8; }

/* overlay animate out */
.mfp-bg.mfp-removing {
  opacity: 0; }

/* content at start */
.mfp-wrap {
  /* content animate it */
  /* content animate out */ }
  .mfp-wrap .modal-content {
    transform: translateY(-30px);
    opacity: 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out; }
  .mfp-wrap.mfp-ready .modal-content {
    transform: translateY(0);
    opacity: 1; }
  .mfp-wrap.mfp-removing .modal-content {
    transform: translateY(30px);
    opacity: 0; }

.mfp-iframe-holder .mfp-content {
  width: 125vmin !important;
  max-width: 90% !important; }

#pagetop {
  width: 3.75vw;
  height: 3.75vw;
  position: fixed;
  right: 2.5vw;
  bottom: 2.5vw;
  z-index: 200; }
  #pagetop a {
    display: block;
    width: 100%;
    height: 100%;
    transition: all .3s ease; }
    #pagetop a:before, #pagetop a:after {
      content: '';
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
    #pagetop a:before {
      box-sizing: border-box;
      width: 100%;
      height: 100%;
      background-color: #000;
      border: 1px solid #fff;
      border-radius: 50%; }
    #pagetop a:after {
      width: 25%;
      height: 25%;
      border-top: 2px solid #fff;
      border-right: 2px solid #fff;
      transform: rotate(-45deg) translate(-20%, -50%); }
    #pagetop a:hover {
      opacity: 1;
      transform: scale(1.04); }

@media screen and (max-width: 767px) {
  #pagetop {
    width: 4.6666666667vw;
    height: 4.6666666667vw;
    right: 0.6666666667vw;
    bottom: 2.6666666667vw !important; } }
@keyframes panel-show {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes purupuru2 {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1); }
  50% {
    -webkit-transform: scale(0.98, 0.9);
    transform: scale(0.98, 0.9); } }
.ybtn {
  -webkit-animation: purupuru2 1.5s infinite;
  animation: purupuru2 1.5s infinite; }

.order .box {
  transition: all .875s ease-out;
  opacity: 0;
  transform: scale(0.1); }
  .order .box.ready {
    transform: scale(1);
    opacity: 1; }

.fixed-btn {
  width: 100%;
  background-color: #fff;
  padding: 35px 0 20px;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all .3s ease-out;
  z-index: 50;
  opacity: 0; }
  .fixed-btn a {
    text-align: center; }
    .fixed-btn a img {
      max-width: 660px; }
  .fixed-btn.active {
    opacity: 1; }
  .fixed-btn.ptbottom {
    opacity: 0; }

.header {
  max-width: 750px;
  margin: 0 auto;
  height: 187px;
  background-color: #079a88;
  position: relative; }
  .header:before {
    content: '';
    display: block;
    position: absolute;
    width: 724px;
    height: 160px;
    border: 1px solid #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1; }
  .header--head, .header--inner {
    position: relative;
    z-index: 2; }
  .header--head {
    width: 230px;
    height: 96px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #c0f36c;
    border-radius: 0 0 40px 0;
    display: flex;
    align-items: center;
    justify-content: center; }
    .header--head span {
      display: inline-block;
      color: #5e5e5e;
      font-weight: 700;
      line-height: 1.2;
      font-size: 27px; }
  .header--inner {
    color: #fff;
    padding: 33px 42px 0; }
    .header--inner .maintxt {
      display: flex;
      justify-content: flex-end; }
      .header--inner .maintxt p {
        font-weight: bold;
        letter-spacing: .06em;
        font-weight: bold;
        font-size: 38px;
        line-height: 1.0; }
        .header--inner .maintxt p strong {
          font-weight: bold;
          font-size: 57px; }
        .header--inner .maintxt p sup {
          font-weight: normal;
          font-size: 18px;
          position: relative;
          top: -10px; }
    .header--inner small {
      display: block;
      margin: 12px 0 0;
      font-weight: 500;
      font-size: 20px;
      line-height: 1.35; }

main {
  max-width: 750px;
  margin: 0 auto;
  background-color: #e1f8c7;
  overflow: hidden; }
  main .kv {
    position: relative;
    padding: 20px 0 0; }
    main .kv .logo {
      max-width: 293px;
      margin: 0 auto; }
    main .kv .tagline {
      margin: 34px auto 0;
      max-width: 680px;
      height: 70px;
      background-color: #fff;
      border-radius: 40px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 0 56px 0 0; }
      main .kv .tagline .icon {
        width: 76px;
        position: absolute;
        bottom: 0;
        left: 32px; }
      main .kv .tagline p {
        font-weight: 700;
        color: #5a5a5a;
        letter-spacing: .1em;
        font-size: 31px; }
    main .kv .mainttl {
      max-width: 730px;
      margin: -30px auto 0;
      position: relative;
      z-index: 2; }
    main .kv .mainimg {
      width: 387px;
      position: relative;
      z-index: 3;
      margin: -171px 0 0 28px; }
    main .kv .price {
      position: absolute;
      z-index: 2;
      max-width: 285px;
      width: 100%;
      border-radius: 30px;
      background-color: #fff;
      border: 1px solid #41875f;
      right: 64px;
      top: 683px; }
      main .kv .price .inner {
        position: relative;
        width: 100%;
        height: 100%;
        padding: 80px 0 12px; }
        main .kv .price .inner .ttl {
          position: absolute;
          top: -17px;
          width: 100%;
          text-align: center; }
          main .kv .price .inner .ttl span {
            display: inline-block;
            position: relative;
            color: #fff;
            font-weight: 700;
            background-color: #a1db45;
            line-height: 1.0;
            padding: 5px;
            font-size: 31px; }
            main .kv .price .inner .ttl span em {
              position: absolute;
              left: -4px;
              bottom: 0;
              font-weight: 700;
              color: #079a86;
              text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
              line-height: 1.1;
              font-size: 42px; }
            main .kv .price .inner .ttl span:nth-of-type(1) {
              padding-left: 2em; }
            main .kv .price .inner .ttl span:nth-of-type(2) {
              margin-top: 6px; }
        main .kv .price .inner dl {
          margin-top: 13px;
          display: flex;
          align-items: center;
          justify-content: center; }
          main .kv .price .inner dl dt {
            font-family: "Overpass", sans-serif;
            line-height: 0.8;
            font-weight: 300;
            letter-spacing: -0.08em;
            font-size: 77px;
            color: #40976a; }
          main .kv .price .inner dl dd {
            margin-left: 15px; }
            main .kv .price .inner dl dd span {
              color: #40976a;
              font-family: "Noto Sans JP", sans-serif;
              display: block;
              line-height: 1.0;
              font-weight: 500; }
              main .kv .price .inner dl dd span.tax {
                font-size: 19px; }
              main .kv .price .inner dl dd span.yen {
                margin-top: 5px;
                font-size: 29px; }
        main .kv .price .inner .img {
          margin: 8px auto 0;
          max-width: 211px; }
    main .kv .points {
      margin: 10px auto 0;
      max-width: 628px;
      display: flex;
      justify-content: space-between; }
      main .kv .points .box {
        transition: all .875s ease-out;
        width: 198px;
        height: 198px;
        border-radius: 50%;
        background-color: #41875f;
        padding: 24px 0 0; }
        main .kv .points .box .icon {
          margin: 0 auto;
          height: 63px;
          display: flex;
          align-items: center; }
          main .kv .points .box .icon.i01 {
            width: 39px; }
          main .kv .points .box .icon.i02 {
            width: 66px; }
          main .kv .points .box .icon.i03 {
            width: 82px; }
        main .kv .points .box .txt {
          margin: 10px 0 0;
          color: #fff; }
          main .kv .points .box .txt p, main .kv .points .box .txt small {
            font-weight: bold;
            display: block;
            text-align: center;
            line-height: 1.3; }
          main .kv .points .box .txt p {
            font-size: 28px; }
            main .kv .points .box .txt p sup {
              font-size: 16px; }
          main .kv .points .box .txt small {
            font-size: 22px; }
    main .kv .reserve {
      margin: 30px auto 0;
      border-radius: 30px;
      background-color: #fff;
      border: 2px solid #41875f;
      max-width: 680px;
      padding: 32px 23px; }
      main .kv .reserve ul {
        margin: 34px 0 0;
        display: flex;
        justify-content: center;
        align-items: center; }
        main .kv .reserve ul li {
          display: flex;
          align-items: center;
          font-size: 24px;
          color: #5a5a5a;
          letter-spacing: .06em;
          font-weight: 700; }
          main .kv .reserve ul li .icn {
            display: inline-block;
            width: 43px;
            margin-right: 12px; }
          main .kv .reserve ul li:nth-of-type(2) {
            margin-left: 36px; }
      main .kv .reserve .btn {
        margin: 25px 0 0; }
    main .kv .att {
      margin: 8px auto 0;
      max-width: 670px;
      display: block;
      font-size: 19px;
      line-height: 1.42;
      color: #040a33; }
    main .kv .ameba {
      position: absolute; }
      main .kv .ameba.a01 {
        width: 133px;
        top: -44px;
        right: 67px; }
      main .kv .ameba.a02 {
        width: 115px;
        left: -47px;
        top: 894px; }
  main .what {
    margin: 65px 0 0; }
    main .what .head {
      border-radius: 30px;
      background-color: #f9fafc;
      box-shadow: 7px 7px 15px -5px #777777;
      max-width: 680px;
      margin: 0 auto;
      position: relative;
      padding: 36px 0 0; }
      main .what .head:after {
        content: '';
        display: block;
        position: absolute;
        width: 136px;
        height: 109px;
        background: url("../images/img_under_tri.png") no-repeat 0/cover;
        left: 50%;
        transform: translateX(-50%);
        bottom: -85px; }
      main .what .head .ttl {
        position: relative;
        max-width: 605px;
        margin: 0 auto;
        border-bottom: 1px solid #5a5a5a;
        padding-bottom: 25px; }
        main .what .head .ttl .illust {
          width: 140px;
          position: absolute;
          bottom: -5px; }
          main .what .head .ttl .illust.i01 {
            left: -22px; }
          main .what .head .ttl .illust.i02 {
            right: -16px; }
        main .what .head .ttl h2 {
          text-align: center;
          line-height: 1.0;
          font-size: 39px;
          font-weight: bold;
          letter-spacing: .1em;
          color: #5a5a5a; }
      main .what .head .wrap {
        margin: 26px 0 0;
        position: relative;
        padding-top: 370px; }
        main .what .head .wrap .txt {
          position: absolute; }
          main .what .head .wrap .txt.t01 {
            width: 208px;
            top: 0;
            left: 68px; }
          main .what .head .wrap .txt.t02 {
            width: 244px;
            top: 0;
            right: 21px; }
          main .what .head .wrap .txt.t03 {
            width: 198px;
            top: 184px;
            left: -17px; }
          main .what .head .wrap .txt.t04 {
            width: 262px;
            top: 94px;
            left: 188px; }
          main .what .head .wrap .txt.t05 {
            width: 217px;
            top: 222px;
            right: -9px; }
        main .what .head .wrap .image {
          position: relative;
          bottom: -5px; }
    main .what .main {
      max-width: 680px;
      margin: 75px auto 0; }
      main .what .main h3 {
        width: 100%;
        height: 70px;
        border-radius: 33px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-weight: bold;
        line-height: 1.0;
        color: #fff;
        background-color: #41875f;
        font-size: 34px; }
      main .what .main .table {
        margin: 30px 0 0; }
        main .what .main .table .sex {
          display: flex; }
          main .what .main .table .sex li {
            cursor: pointer;
            width: 50%;
            height: 96px;
            border-radius: 30px 30px 0 0;
            display: flex;
            align-items: center; }
            main .what .main .table .sex li .illust {
              width: 89px; }
            main .what .main .table .sex li span {
              display: inline-block;
              color: #fff;
              font-weight: bold;
              line-height: 1.0;
              font-size: 32px; }
            main .what .main .table .sex li.male {
              background-color: #5569de;
              padding-left: 30px; }
            main .what .main .table .sex li.female {
              background-color: #f27681;
              padding-left: 15px; }
              main .what .main .table .sex li.female .illust {
                margin-right: 14px; }
        main .what .main .table .tab_contents table {
          width: 100%;
          border-top: 1px solid #fff;
          transition: all .3s ease-out;
          display: none; }
          main .what .main .table .tab_contents table tr.mainhead th, main .what .main .table .tab_contents table tr.mainhead td {
            padding: 35px 0;
            color: #fff;
            font-weight: 700;
            font-size: 28px;
            text-align: center; }
          main .what .main .table .tab_contents table tr.mainhead th {
            width: 120px;
            border-right: 1px solid #fff; }
          main .what .main .table .tab_contents table tr.mainhead td:nth-of-type(1) {
            width: 260px;
            border-right: 1px solid #fff; }
          main .what .main .table .tab_contents table tr.mainhead td:nth-of-type(2) {
            width: 150px;
            border-right: 1px solid #fff; }
          main .what .main .table .tab_contents table tr.mainhead td:nth-of-type(3) {
            width: 150px; }
          main .what .main .table .tab_contents table tr:nth-of-type(n+2) th, main .what .main .table .tab_contents table tr:nth-of-type(n+2) td {
            height: 145px; }
          main .what .main .table .tab_contents table tr:nth-of-type(n+2) th {
            font-weight: 700;
            color: #fff;
            font-size: 28px;
            line-height: 1.2;
            text-align: center;
            border-top: 1px solid #fff; }
          main .what .main .table .tab_contents table tr:nth-of-type(n+2) td {
            background-color: #fff;
            border-right: 1px solid #000;
            border-top: 1px solid #000;
            text-align: center;
            color: #5a5a5a;
            font-size: 25px;
            line-height: 1.24; }
            main .what .main .table .tab_contents table tr:nth-of-type(n+2) td:last-child {
              border-right: none; }
            main .what .main .table .tab_contents table tr:nth-of-type(n+2) td.nocenter {
              text-align: left;
              padding: 0 10px; }
          main .what .main .table .tab_contents table.female tr.mainhead {
            background-color: #f27681; }
          main .what .main .table .tab_contents table.female tr:nth-of-type(n+2) th {
            background-color: #f27681; }
          main .what .main .table .tab_contents table.female tr:nth-of-type(n+2) td {
            border-color: #f27681; }
            main .what .main .table .tab_contents table.female tr:nth-of-type(n+2) td span {
              color: #f27681; }
          main .what .main .table .tab_contents table.male tr.mainhead {
            background-color: #5569de; }
          main .what .main .table .tab_contents table.male tr:nth-of-type(n+2) th {
            background-color: #5569de; }
          main .what .main .table .tab_contents table.male tr:nth-of-type(n+2) td {
            border-color: #5569de; }
            main .what .main .table .tab_contents table.male tr:nth-of-type(n+2) td span {
              color: #5569de; }
          main .what .main .table .tab_contents table.show {
            display: block; }
  main .ratio {
    margin: 90px auto 0;
    max-width: 680px; }
    main .ratio .head {
      position: relative;
      padding: 112px 0 0; }
      main .ratio .head:before {
        content: '';
        display: block;
        position: absolute;
        width: 568px;
        height: 568px;
        border-radius: 50%;
        background-color: #fff;
        box-shadow: 7px 7px 15px -5px #777777;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1; }
      main .ratio .head h2, main .ratio .head .image {
        position: relative;
        z-index: 2; }
      main .ratio .head h2 {
        text-align: center;
        color: #5a5a5a;
        line-height: 1.675;
        font-weight: 500;
        font-size: 40px;
        z-index: 3; }
        main .ratio .head h2 span {
          display: inline-block;
          color: #fff;
          font-weight: 500;
          background-color: #41875f;
          padding: 2px 10px; }
      main .ratio .head .image {
        margin-top: -110px; }
    main .ratio .situation {
      margin: 125px 0 0; }
      main .ratio .situation h3 {
        border-radius: 30px 30px 0 0;
        height: 87px;
        background-color: #41875f;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        line-height: 1.2;
        color: #fff;
        font-weight: bold;
        font-size: 31px; }
      main .ratio .situation .graph {
        background-color: #fff;
        padding: 25px 0 35px;
        border-radius: 0 0 30px 30px; }
        main .ratio .situation .graph img {
          display: block;
          max-width: 618px;
          margin: 0 auto; }
    main .ratio small {
      display: block;
      margin: 22px 0 0;
      line-height: 1.42;
      font-size: 19px; }
  main .notice {
    margin: 75px 0 0;
    background-color: #fff;
    padding: 63px 0 70px;
    text-align: center; }
    main .notice .icon {
      margin: 0 auto;
      width: 150px; }
    main .notice h2 {
      margin: 25px 0 0;
      text-align: center;
      color: #5a5a5a;
      font-weight: 700;
      letter-spacing: .06em;
      font-size: 40px; }
    main .notice h3 {
      padding: 7px 15px;
      margin: 10px 0 0;
      background-color: #ff0844;
      display: inline-block;
      color: #fff;
      letter-spacing: .06em;
      line-height: 1.0;
      font-weight: 700;
      font-size: 62px; }
    main .notice p {
      margin-top: 35px;
      text-align: center;
      font-weight: 700;
      color: #5a5a5a;
      line-height: 1.6;
      font-size: 26px; }
  main .treatment {
    margin: 70px 0 0; }
    main .treatment .head {
      position: relative;
      max-width: 680px;
      margin: 0 auto;
      border-radius: 30px;
      background-color: #fff;
      padding: 60px 0 0; }
      main .treatment .head:after {
        content: '';
        display: block;
        position: absolute;
        width: 0;
        height: 0;
        border-style: solid;
        border-color: #41875f transparent transparent transparent;
        border-width: 26px 21px 0px 21px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -26px; }
      main .treatment .head .ttl {
        text-align: center; }
        main .treatment .head .ttl span {
          display: block;
          font-weight: 700;
          color: #41875f; }
          main .treatment .head .ttl span em {
            color: #f27681;
            font-weight: 700; }
          main .treatment .head .ttl span.small {
            font-size: 44px; }
          main .treatment .head .ttl span.big {
            font-size: 55px; }
          main .treatment .head .ttl span.middle {
            font-size: 49px; }
      main .treatment .head .illust {
        max-width: 496px;
        margin: 18px auto 0; }
      main .treatment .head p {
        position: absolute;
        bottom: 0;
        z-index: 2;
        left: 0;
        width: 100%;
        height: 84px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: #fff;
        letter-spacing: .06em;
        line-height: 1.2;
        font-weight: 700;
        background-color: #41875f;
        font-size: 40px;
        border-radius: 0 0 30px 30px; }
    main .treatment .comment {
      margin: 42px auto 0;
      max-width: 680px; }
      main .treatment .comment .txt.t01 {
        max-width: 656px;
        margin-left: 30px; }
      main .treatment .comment .txt.t02 {
        max-width: 590px;
        margin-top: -26px;
        margin-right: 58px; }
      main .treatment .comment .txt.t03 {
        max-width: 634px;
        margin-top: -80px;
        margin-left: 30px; }
  main .onlineorder {
    margin: 64px auto 0;
    max-width: 680px;
    box-shadow: 7px 7px 15px -5px #777777;
    border-radius: 30px;
    background-color: #fff; }
    main .onlineorder .ttl {
      position: relative;
      border-radius: 30px 30px 0 0;
      background-color: #41875f;
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 89px;
      line-height: 1.2;
      font-weight: bold;
      letter-spacing: .06em;
      font-size: 33px; }
      main .onlineorder .ttl:after {
        content: '';
        display: block;
        position: absolute;
        width: 0;
        height: 0;
        border-style: solid;
        border-color: #41875f transparent transparent transparent;
        border-width: 26px 21px 0px 21px;
        left: 50%;
        transform: translateX(-50%);
        bottom: -26px; }
    main .onlineorder h2 {
      text-align: center;
      padding: 46px 0 0; }
      main .onlineorder h2 span {
        position: relative;
        color: #41875f;
        display: inline-block;
        font-weight: bold;
        line-height: 1.26;
        letter-spacing: .06em;
        font-size: 42px;
        padding: 0 38px; }
        main .onlineorder h2 span:before, main .onlineorder h2 span:after {
          content: '';
          display: block;
          position: absolute;
          border-left: 1px solid #41875f;
          height: 99px;
          bottom: -8px; }
        main .onlineorder h2 span:before {
          left: 0;
          transform: rotate(-25deg); }
        main .onlineorder h2 span:after {
          right: 0;
          transform: rotate(25deg); }
    main .onlineorder .img {
      position: relative;
      margin: 30px 0 0; }
      main .onlineorder .img ul {
        position: absolute;
        bottom: 35px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: space-between;
        max-width: 622px;
        width: 100%;
        z-index: 2; }
        main .onlineorder .img ul li {
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          text-align: center;
          width: 200px;
          height: 200px;
          background-color: #41875f;
          color: #fff;
          font-weight: 700;
          line-height: 1.28;
          letter-spacing: .06em;
          font-size: 32px; }
      main .onlineorder .img .bg {
        position: relative;
        bottom: -10px; }
  main .list {
    max-width: 680px;
    margin: 57px auto 0;
    border-radius: 30px;
    background-color: #fff;
    padding: 45px 30px 52px;
    position: relative; }
    main .list h2 {
      text-align: center;
      letter-spacing: .1em;
      line-height: 1.47;
      font-weight: bold;
      color: #5a5a5a;
      font-size: 34px;
      border-bottom: 1px solid #5a5a5a;
      padding-bottom: 20px; }
    main .list .cont {
      padding: 30px 0 0 40px; }
      main .list .cont ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap; }
        main .list .cont ul li {
          color: #5a5a5a;
          line-height: 1.4;
          font-weight: 700;
          font-size: 30px; }
          main .list .cont ul li span {
            color: #079a86; }
          main .list .cont ul li:nth-of-type(odd) {
            width: 45%; }
          main .list .cont ul li:nth-of-type(even) {
            width: 55%; }
      main .list .cont h3 {
        margin: 15px 0 0; }
        main .list .cont h3 span {
          color: #5a5a5a;
          display: inline-block;
          font-size: 28px;
          background: linear-gradient(transparent 60%, rgba(0, 175, 135, 0.3) 60%); }
      main .list .cont ol li {
        display: inline-block;
        font-weight: 700;
        font-size: 28px;
        color: #5a5a5a;
        line-height: 1.4; }
        main .list .cont ol li span {
          color: #079a86; }
      main .list .cont ol:nth-of-type(1) {
        margin: 20px 0 0; }
    main .list .illust {
      position: absolute;
      bottom: -5px;
      right: -53px;
      width: 154px; }
  main .reason {
    max-width: 680px;
    height: 548px;
    margin: 54px auto 0;
    border-radius: 30px;
    position: relative;
    background-color: #fff; }
    main .reason:before {
      content: '';
      display: block;
      position: absolute;
      width: 100%;
      height: 372px;
      top: 0;
      left: 0;
      z-index: 1;
      background: url("../images/bg_reason_image.png") no-repeat center/cover; }
    main .reason .ttl, main .reason .points {
      position: absolute;
      z-index: 2; }
    main .reason .ttl {
      top: 40px;
      left: 53px;
      color: #fff;
      display: inline-block; }
      main .reason .ttl p {
        font-weight: 700;
        text-align: center;
        line-height: 1.6;
        font-size: 27px; }
      main .reason .ttl .mainttl {
        margin: -32px 0 0;
        font-size: 70px;
        line-height: 1.0;
        font-weight: 700; }
        main .reason .ttl .mainttl .num {
          font-family: "Overpass", sans-serif;
          font-size: 163px;
          line-height: 0.8; }
    main .reason .points {
      max-width: 628px;
      width: 100%;
      display: flex;
      justify-content: space-between;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 25px; }
      main .reason .points .box {
        width: 198px;
        height: 198px;
        border-radius: 50%;
        background-color: #41875f;
        padding: 24px 0 0; }
        main .reason .points .box .icon {
          margin: 0 auto;
          height: 63px;
          display: flex;
          align-items: center; }
          main .reason .points .box .icon.i01 {
            width: 39px; }
          main .reason .points .box .icon.i02 {
            width: 66px; }
          main .reason .points .box .icon.i03 {
            width: 82px; }
        main .reason .points .box .txt {
          margin: 10px 0 0;
          color: #fff; }
          main .reason .points .box .txt p, main .reason .points .box .txt small {
            font-weight: bold;
            display: block;
            text-align: center;
            line-height: 1.3; }
          main .reason .points .box .txt p {
            font-size: 28px; }
            main .reason .points .box .txt p sup {
              font-size: 16px; }
          main .reason .points .box .txt small {
            font-size: 22px; }
  main .consultation {
    margin: 65px 0 0;
    height: 788px;
    position: relative;
    background-color: #41875f; }
    main .consultation .smartphone {
      position: absolute;
      z-index: 2;
      top: 110px;
      left: 50px; }
      main .consultation .smartphone h2 {
        text-align: center; }
        main .consultation .smartphone h2 span {
          display: inline-block;
          line-height: 1.30;
          color: #41875f;
          font-weight: 700;
          font-size: 26px;
          position: relative; }
          main .consultation .smartphone h2 span:before, main .consultation .smartphone h2 span:after {
            content: '';
            display: block;
            position: absolute;
            height: 54px;
            border-left: 1px solid #41875f;
            bottom: 0; }
          main .consultation .smartphone h2 span:before {
            left: 0;
            transform: rotate(-25deg); }
          main .consultation .smartphone h2 span:after {
            right: 0;
            transform: rotate(25deg); }
      main .consultation .smartphone .img {
        width: 227px;
        margin: 20px auto 0; }
    main .consultation .texts {
      display: inline-block;
      position: absolute;
      right: 40px;
      bottom: 55px; }
      main .consultation .texts .maintxt .small {
        color: #fff;
        text-align: center;
        font-weight: bold;
        letter-spacing: .06em;
        line-height: 1.2;
        font-size: 40px; }
      main .consultation .texts .maintxt h3 {
        margin: 10px 0 0;
        background-color: #fff;
        background: #c5f2b6;
        background: linear-gradient(90deg, #c5f2b6 0%, #e2efae 62%, #ffeda6 100%);
        width: 434px;
        height: 111px;
        display: flex;
        align-items: center;
        justify-content: center; }
        main .consultation .texts .maintxt h3 span {
          position: relative;
          top: 10px;
          display: block;
          color: #42a321;
          line-height: 1.0;
          font-weight: 700;
          font-size: 30px; }
          main .consultation .texts .maintxt h3 span strong {
            font-family: "Overpass", sans-serif;
            font-weight: 500;
            line-height: 0.8;
            font-size: 100px;
            display: inline-block; }
      main .consultation .texts .maintxt .middle {
        margin: 10px 0 0;
        text-align: center;
        color: #fff;
        line-height: 1.2;
        letter-spacing: .06em;
        font-weight: bold;
        font-size: 40px; }
      main .consultation .texts small {
        margin: 20px 0 0;
        display: block;
        color: #fff;
        text-align: center;
        font-weight: 700;
        line-height: 1.36;
        font-size: 30px; }
        main .consultation .texts small span {
          display: inline-block;
          padding: 0 10px;
          background: linear-gradient(transparent 60%, rgba(255, 255, 255, 0.2) 60%); }
  main .delivary {
    margin: 75px 0 0; }
    main .delivary .privacy {
      max-width: 680px;
      margin: 0 auto;
      background-color: #fff;
      border-radius: 30px;
      box-shadow: 7px 7px 15px -5px #777777;
      padding: 63px 0 44px; }
      main .delivary .privacy .ttl .en {
        width: 130px;
        margin: 0 auto; }
      main .delivary .privacy .ttl h2 {
        margin: 25px 0 0;
        text-align: center;
        line-height: 1.675;
        color: #5a5a5a;
        font-weight: bold;
        letter-spacing: .06em;
        font-size: 40px; }
        main .delivary .privacy .ttl h2 span {
          color: #fff;
          display: inline-block;
          background-color: #5db562;
          padding: 0 15px;
          margin-right: 10px; }
      main .delivary .privacy .wrap {
        margin: 20px 0 0 0;
        display: flex;
        align-items: center;
        justify-content: center; }
        main .delivary .privacy .wrap .image {
          width: 334px; }
        main .delivary .privacy .wrap .texts dl dt, main .delivary .privacy .wrap .texts dl dd {
          color: #5a5a5a;
          font-weight: 700;
          font-size: 26px; }
        main .delivary .privacy .wrap .texts dl dt {
          width: 153px;
          height: 42px;
          display: flex;
          align-items: center;
          justify-content: center;
          border: 1px solid #5a5a5a; }
        main .delivary .privacy .wrap .texts dl dd {
          margin: 10px 0 0; }
        main .delivary .privacy .wrap .texts dl:nth-of-type(n+2) {
          margin: 35px 0 0; }
      main .delivary .privacy p {
        margin: 20px 0 0;
        text-align: center;
        color: #5a5a5a;
        font-weight: 700;
        line-height: 1.5;
        font-size: 30px; }
    main .delivary .more {
      margin: 63px auto 0;
      max-width: 680px;
      background-color: #fff;
      border-radius: 30px;
      box-shadow: 7px 7px 15px -5px #777777;
      position: relative;
      padding: 0 30px 40px; }
      main .delivary .more .icon {
        position: absolute;
        width: 159px;
        z-index: 2;
        top: -20px;
        left: 30px; }
      main .delivary .more .wrap {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        position: relative;
        top: -10px; }
        main .delivary .more .wrap h3 {
          font-size: 50px;
          line-height: 1.3;
          color: #41875f;
          letter-spacing: .06em; }
          main .delivary .more .wrap h3 span {
            background: linear-gradient(transparent 60%, rgba(0, 175, 135, 0.3) 60%); }
        main .delivary .more .wrap .illust {
          width: 182px;
          margin-right: 5px;
          position: relative; }
      main .delivary .more p {
        margin: 10px 0 0;
        color: #5a5a5a;
        font-weight: 500;
        letter-spacing: .06em;
        font-size: 28px; }
    main .delivary small {
      display: block;
      max-width: 616px;
      margin: 25px auto 0;
      color: #040a33;
      line-height: 1.4;
      font-size: 19px; }
  main .steps {
    background-color: #fff;
    margin: 65px 0 0;
    padding: 75px 0 80px; }
    main .steps .wrap {
      max-width: 680px;
      margin: 0 auto;
      border-radius: 30px;
      border: 1px solid #41875f;
      padding: 0 0 30px; }
      main .steps .wrap h2 {
        background-color: #41875f;
        color: #fff;
        height: 127px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1.2;
        font-weight: bold;
        font-size: 45px;
        border-radius: 30px 30px 0 0; }
        main .steps .wrap h2 span {
          display: inline-block;
          line-height: 0.8;
          padding: 0 0.15em;
          font-size: 60px; }
      main .steps .wrap .texts {
        padding: 45px 30px 0; }
        main .steps .wrap .texts .box .ttl {
          display: flex;
          align-items: center;
          padding-left: 20px; }
          main .steps .wrap .texts .box .ttl .num {
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            background-color: #41875f;
            color: #fff; }
            main .steps .wrap .texts .box .ttl .num span {
              position: relative;
              top: 3px;
              font-size: 36px;
              line-height: 0.8;
              font-family: "Overpass", sans-serif;
              font-weight: 300; }
          main .steps .wrap .texts .box .ttl h3 {
            margin-left: 15px;
            color: #41875f;
            letter-spacing: .06em;
            font-weight: bold;
            line-height: 1.2;
            font-size: 30px; }
        main .steps .wrap .texts .box .cont {
          margin: 10px 0 0;
          position: relative; }
          main .steps .wrap .texts .box .cont .img {
            position: absolute;
            left: 0; }
            main .steps .wrap .texts .box .cont .img.i01 {
              width: 73px; }
            main .steps .wrap .texts .box .cont .img.i02 {
              width: 68px; }
            main .steps .wrap .texts .box .cont .img.i03 {
              width: 72px;
              top: 15px; }
          main .steps .wrap .texts .box .cont p {
            margin: 0 0 0 auto;
            width: 533px;
            font-weight: 700;
            color: #5a5a5a;
            line-height: 1.57;
            font-size: 26px; }
        main .steps .wrap .texts .box:nth-of-type(n+2) {
          margin-top: 65px; }
      main .steps .wrap small {
        display: block;
        margin: 20px 30px 0;
        color: #040a33;
        font-size: 19px;
        line-height: 1.4; }
    main .steps .under {
      margin: 65px auto 0;
      max-width: 680px; }
      main .steps .under ul {
        display: flex;
        justify-content: center;
        align-items: center; }
        main .steps .under ul li {
          display: flex;
          align-items: center;
          font-size: 24px;
          color: #5a5a5a;
          letter-spacing: .06em;
          font-weight: 700; }
          main .steps .under ul li .icn {
            display: inline-block;
            width: 43px;
            margin-right: 12px; }
          main .steps .under ul li:nth-of-type(2) {
            margin-left: 36px; }
      main .steps .under .btn {
        margin: 30px auto 0;
        max-width: 621px; }
  main .satisfaction {
    max-width: 680px;
    margin: 90px auto 0; }
    main .satisfaction .block {
      border-radius: 30px;
      background-color: #fff;
      box-shadow: 7px 7px 15px -5px #777777;
      padding: 60px 0 0;
      overflow: hidden; }
      main .satisfaction .block .ttl {
        max-width: 628px;
        margin: 0 auto; }
        main .satisfaction .block .ttl small {
          display: block;
          color: #040a33;
          font-size: 19px; }
      main .satisfaction .block .wrap {
        margin: 65px 0 0;
        position: relative; }
        main .satisfaction .block .wrap h3 {
          width: 620px;
          height: 70px;
          display: flex;
          align-items: center;
          justify-content: center;
          text-align: center;
          line-height: 1.2;
          color: #fff;
          background-color: #5db562;
          font-weight: 700;
          font-size: 34px;
          border-radius: 40px;
          position: absolute;
          top: -25px;
          left: 50%;
          transform: translateX(-50%);
          z-index: 2; }
        main .satisfaction .block .wrap .image {
          position: relative;
          bottom: -6px; }
          main .satisfaction .block .wrap .image .graph, main .satisfaction .block .wrap .image .person {
            position: absolute; }
          main .satisfaction .block .wrap .image .graph {
            z-index: 1;
            width: 453px;
            top: 67px;
            left: 50%;
            margin-left: -226px; }
          main .satisfaction .block .wrap .image .person {
            z-index: 2;
            width: 472px;
            bottom: 0;
            right: 0; }
    main .satisfaction > small {
      margin-top: 25px;
      display: block;
      color: #040a33;
      font-size: 19px; }
  main .voice {
    margin: 60px 0 0; }
    main .voice h2 {
      max-width: 620px;
      height: 70px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1.2;
      color: #fff;
      background-color: #079a88;
      font-weight: 700;
      font-size: 34px;
      border-radius: 40px; }
    main .voice .wrap {
      width: 100%;
      margin: 25px 0 0; }
      main .voice .wrap .box {
        overflow: hidden;
        position: relative;
        border: 1px solid #079a88;
        border-radius: 33px;
        max-width: 620px;
        width: 100%;
        margin: 0 15px; }
        main .voice .wrap .box .image {
          position: relative;
          height: 397px; }
          main .voice .wrap .box .image .icon {
            position: absolute;
            top: 0;
            left: 0;
            width: 154px;
            z-index: 2; }
        main .voice .wrap .box .texts {
          background-color: #fff;
          padding: 40px 50px 30px;
          border-radius: 0 0 33px 33px; }
          main .voice .wrap .box .texts h3 {
            font-weight: 700;
            line-height: 1.2;
            color: #079a88;
            font-size: 33px; }
          main .voice .wrap .box .texts p, main .voice .wrap .box .texts .name {
            color: #5a5a5a;
            font-weight: 700; }
          main .voice .wrap .box .texts p {
            margin: 25px 0 0;
            line-height: 1.57;
            font-size: 26px;
            letter-spacing: -0.02em; }
          main .voice .wrap .box .texts .name {
            text-align: right;
            margin: 30px 0 0;
            font-size: 20px; }
  main .media {
    margin: 45px 0 0; }
    main .media .circle {
      position: relative;
      max-width: 578px;
      margin: 0 auto; }
      main .media .circle:before {
        content: '';
        display: block;
        position: absolute;
        width: 568px;
        height: 568px;
        background-color: #fff;
        border-radius: 50%;
        box-shadow: 7px 7px 15px -5px #777777;
        left: 5px;
        top: 95px;
        z-index: 2; }
      main .media .circle .illust, main .media .circle p, main .media .circle .image {
        position: relative;
        z-index: 3; }
      main .media .circle .illust {
        width: 248px;
        margin: 0 auto; }
      main .media .circle p {
        margin: 20px 0 0;
        text-align: center;
        font-weight: 500;
        font-size: 40px;
        color: #5a5a5a;
        letter-spacing: .06em;
        line-height: 1.375; }
      main .media .circle .image {
        max-width: 506px;
        margin: 23px auto 0; }
      main .media .circle .ameba {
        position: absolute; }
        main .media .circle .ameba.a01 {
          width: 149px;
          z-index: 1;
          top: 486px;
          left: -73px; }
        main .media .circle .ameba.a02 {
          width: 166px;
          z-index: 3;
          top: 115px;
          right: -62px; }
  main .plan {
    background-color: #fff;
    margin: 60px 0 0;
    padding: 60px 0 80px; }
    main .plan .ttl .en {
      width: 109px;
      margin: 0 auto; }
    main .plan .ttl h2 {
      margin: 15px 0 0;
      color: #41875f;
      font-size: 34px;
      font-weight: bold;
      letter-spacing: .1em;
      line-height: 1.2;
      text-align: center; }
    main .plan .wrap {
      margin: 25px auto 0;
      max-width: 680px;
      border-radius: 30px;
      overflow: hidden;
      position: relative;
      border: 1px solid #41875f; }
      main .plan .wrap:before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 333px;
        height: 100%;
        background-color: #41875f;
        z-index: 1; }
      main .plan .wrap .block {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center; }
        main .plan .wrap .block .name, main .plan .wrap .block .detaile {
          padding: 25px 0; }
        main .plan .wrap .block .name {
          background-color: #41875f;
          width: 333px;
          font-size: 27px;
          color: #fff;
          font-weight: bold;
          text-align: center; }
        main .plan .wrap .block .detail {
          width: 347px;
          padding: 25px; }
          main .plan .wrap .block .detail .box .icn {
            max-width: 97px;
            border: 1px solid #000;
            text-align: center;
            padding: 5px 0;
            font-weight: bold;
            font-size: 26px;
            margin-bottom: 20px; }
            main .plan .wrap .block .detail .box .icn.male {
              color: #5569de;
              border-color: #5569de; }
            main .plan .wrap .block .detail .box .icn.female {
              color: #f27681;
              border-color: #f27681; }
          main .plan .wrap .block .detail .box .lists dl {
            display: flex; }
            main .plan .wrap .block .detail .box .lists dl dt, main .plan .wrap .block .detail .box .lists dl dd {
              color: #5a5a5a;
              line-height: 1.27;
              font-size: 26px; }
            main .plan .wrap .block .detail .box .lists dl dd {
              color: #41875f;
              margin-left: 0.5em; }
            main .plan .wrap .block .detail .box .lists dl.noflex {
              display: block; }
              main .plan .wrap .block .detail .box .lists dl.noflex dd {
                margin-left: 0; }
            main .plan .wrap .block .detail .box .lists dl:nth-of-type(n+2) {
              border-top: 1px dashed #41875f;
              margin-top: 10px;
              padding-top: 10px; }
          main .plan .wrap .block .detail .box:nth-of-type(n+2) {
            margin-top: 25px; }
        main .plan .wrap .block:nth-of-type(n+2):before, main .plan .wrap .block:nth-of-type(n+2):after {
          content: '';
          display: block;
          position: absolute;
          border-top: 1px solid #000;
          top: 0; }
        main .plan .wrap .block:nth-of-type(n+2):before {
          width: 333px;
          left: 0;
          border-color: #fff; }
        main .plan .wrap .block:nth-of-type(n+2):after {
          width: 347px;
          right: 0;
          border-color: #41875f; }
    main .plan small {
      display: block;
      color: #040a33;
      font-size: 19px;
      line-height: 1.4;
      max-width: 680px;
      margin: 20px auto 0; }
  main .faq {
    margin: 85px 0 0; }
    main .faq .ttl .icon {
      width: 209px;
      margin: 0 auto; }
    main .faq .ttl h2 {
      color: #41875f;
      font-weight: bold;
      letter-spacing: .06em;
      text-align: center;
      line-height: 1.2;
      margin-top: 10px;
      font-size: 62px; }
    main .faq .wrap {
      max-width: 620px;
      margin: 35px auto 0; }
      main .faq .wrap .block {
        border-radius: 30px;
        background-color: #fff;
        padding: 40px 30px; }
        main .faq .wrap .block .box .en {
          font-family: "Overpass", sans-serif;
          line-height: 0.8;
          font-size: 50px;
          color: #41875f; }
        main .faq .wrap .block .box p {
          margin: 15px 0 0;
          line-height: 1.3;
          color: #5a5a5a;
          font-size: 26px; }
        main .faq .wrap .block .box.question {
          position: relative;
          cursor: pointer; }
          main .faq .wrap .block .box.question:before, main .faq .wrap .block .box.question:after {
            content: '';
            display: block;
            position: absolute;
            background-color: #41875f;
            top: 50%;
            transform: translateY(-50%);
            right: 0;
            transition: all .3s ease-out; }
          main .faq .wrap .block .box.question:before {
            width: 45px;
            height: 3px; }
          main .faq .wrap .block .box.question:after {
            width: 3px;
            height: 45px;
            margin-right: 21px; }
          main .faq .wrap .block .box.question p {
            width: 85%; }
          main .faq .wrap .block .box.question.active:after {
            opacity: 0; }
        main .faq .wrap .block .box.answer {
          border-top: 1px solid #41875f;
          padding: 40px 0 0;
          margin: 25px 0 0;
          display: none; }
        main .faq .wrap .block:nth-of-type(n+2) {
          margin: 30px 0 0; }
  main .end {
    margin-top: 85px;
    padding-top: 80px;
    padding-bottom: 75px;
    position: relative;
    background: #c5f2b6;
    background: linear-gradient(90deg, #c5f2b6 0%, #e2efae 62%, #ffeda6 100%);
    overflow: visible; }

.footer {
  max-width: 750px;
  margin: 0 auto;
  background-color: #fff;
  padding: 80px 0 100px; }
  .footer .inner {
    text-align: center; }
    .footer .inner .logo {
      width: 380px;
      margin: 0 auto; }
    .footer .inner ul {
      margin: 40px 0 0; }
      .footer .inner ul li {
        display: inline-block; }
        .footer .inner ul li a {
          display: inline-block;
          padding: 0 10px;
          color: #5a5a5a;
          font-weight: 700;
          font-size: 22px; }
        .footer .inner ul li:nth-of-type(n+2) {
          border-left: 1px solid #5a5a5a; }
    .footer .inner small {
      display: block;
      margin: 30px 0 0;
      font-weight: 700;
      font-size: 20px; }

@media screen and (max-width: 767px) {
  .fixed-btn {
    padding: 4.6666666667vw 0 2.6666666667vw; }
    .fixed-btn a img {
      max-width: 88vw; }

  .header {
    max-width: 100vw;
    height: 24.9333333333vw; }
    .header:before {
      width: 96.5333333333vw;
      height: 21.3333333333vw; }
    .header--head {
      width: 30.6666666667vw;
      height: 12.8vw;
      border-radius: 0 0 30px 0; }
      .header--head span {
        font-size: 3.6vw; }
    .header--inner {
      padding: 4.4vw 5.6vw 0; }
      .header--inner .maintxt p {
        font-size: 5.0666666667vw; }
        .header--inner .maintxt p strong {
          font-size: 7.6vw; }
        .header--inner .maintxt p sup {
          font-size: 2.4vw;
          top: -1.3333333333vw; }
      .header--inner small {
        margin: 1.6vw 0 0;
        font-size: 2.6666666667vw; }

  main {
    max-width: 100vw; }
    main .kv {
      padding: 2.6666666667vw 0 0; }
      main .kv .logo {
        max-width: 39.0666666667vw; }
      main .kv .tagline {
        margin: 4.5333333333vw auto 0;
        max-width: 90.6666666667vw;
        height: 9.3333333333vw;
        border-radius: 20px;
        padding: 0 7.4666666667vw 0 0; }
        main .kv .tagline .icon {
          width: 10.1333333333vw;
          left: 4.2666666667vw; }
        main .kv .tagline p {
          font-size: 4.1333333333vw; }
      main .kv .mainttl {
        max-width: 97.3333333333vw;
        margin: -4vw auto 0; }
      main .kv .mainimg {
        width: 51.6vw;
        margin: -22.8vw 0 0 3.7333333333vw; }
      main .kv .price {
        max-width: 38vw;
        border-radius: 30px;
        right: 8.5333333333vw;
        top: 91.0666666667vw; }
        main .kv .price .inner {
          padding: 10.6666666667vw 0 1.6vw; }
          main .kv .price .inner .ttl {
            top: -2.2666666667vw; }
            main .kv .price .inner .ttl span {
              padding: 0.6666666667vw;
              font-size: 4.1333333333vw; }
              main .kv .price .inner .ttl span em {
                left: 0.6vw;
                bottom: -1.2vw;
                font-family: "Overpass", sans-serif;
                font-size: 7vw; }
              main .kv .price .inner .ttl span:nth-of-type(1) {
                padding-left: 2em; }
              main .kv .price .inner .ttl span:nth-of-type(2) {
                margin-top: 0.8vw; }
          main .kv .price .inner dl {
            margin-top: 1.7333333333vw; }
            main .kv .price .inner dl dt {
              font-size: 10.2666666667vw; }
            main .kv .price .inner dl dd {
              margin-left: 2vw; }
              main .kv .price .inner dl dd span.tax {
                font-size: 2.5333333333vw; }
              main .kv .price .inner dl dd span.yen {
                margin-top: 0.6666666667vw;
                font-size: 3.8666666667vw; }
          main .kv .price .inner .img {
            margin: 1.0666666667vw auto 0;
            max-width: 28.1333333333vw; }
      main .kv .points {
        margin: 1.3333333333vw auto 0;
        max-width: 83.7333333333vw; }
        main .kv .points .box {
          width: 26.4vw;
          height: 26.4vw;
          padding: 3.2vw 0 0; }
          main .kv .points .box .icon {
            height: 8.4vw; }
            main .kv .points .box .icon.i01 {
              width: 5.2vw; }
            main .kv .points .box .icon.i02 {
              width: 8.8vw; }
            main .kv .points .box .icon.i03 {
              width: 10.9333333333vw; }
          main .kv .points .box .txt {
            margin: 1.3333333333vw 0 0; }
            main .kv .points .box .txt p {
              font-size: 3.7333333333vw; }
              main .kv .points .box .txt p sup {
                font-size: 2.1333333333vw; }
            main .kv .points .box .txt small {
              font-size: 2.9333333333vw; }
      main .kv .reserve {
        margin: 4vw auto 0;
        border-radius: 15px;
        max-width: 90.6666666667vw;
        padding: 4.2666666667vw 3.0666666667vw; }
        main .kv .reserve ul {
          margin: 4.5333333333vw 0 0; }
          main .kv .reserve ul li {
            font-size: 3.2vw; }
            main .kv .reserve ul li .icn {
              width: 5.7333333333vw;
              margin-right: 1.6vw; }
            main .kv .reserve ul li:nth-of-type(2) {
              margin-left: 4.8vw; }
        main .kv .reserve .btn {
          margin: 3.3333333333vw 0 0; }
      main .kv .att {
        margin: 1.0666666667vw auto 0;
        max-width: 89.3333333333vw;
        font-size: 2.5333333333vw; }
      main .kv .ameba.a01 {
        width: 17.7333333333vw;
        top: -5.8666666667vw;
        right: 8.9333333333vw; }
      main .kv .ameba.a02 {
        width: 15.3333333333vw;
        left: -6.2666666667vw;
        top: 119.2vw; }
    main .what {
      margin: 8.6666666667vw 0 0; }
      main .what .head {
        border-radius: 15px;
        max-width: 90.6666666667vw;
        padding: 4.8vw 0 0; }
        main .what .head:after {
          width: 18.1333333333vw;
          height: 14.5333333333vw;
          bottom: -11.3333333333vw; }
        main .what .head .ttl {
          max-width: 80.6666666667vw;
          padding-bottom: 3.3333333333vw; }
          main .what .head .ttl .illust {
            width: 18.6666666667vw;
            bottom: -0.6666666667vw; }
            main .what .head .ttl .illust.i01 {
              left: -2.9333333333vw; }
            main .what .head .ttl .illust.i02 {
              right: -2.1333333333vw; }
          main .what .head .ttl h2 {
            font-size: 5.2vw; }
        main .what .head .wrap {
          margin: 3.4666666667vw 0 0;
          padding-top: 49.3333333333vw; }
          main .what .head .wrap .txt.t01 {
            width: 27.7333333333vw;
            top: 0;
            left: 9.0666666667vw; }
          main .what .head .wrap .txt.t02 {
            width: 32.5333333333vw;
            top: 0;
            right: 2.8vw; }
          main .what .head .wrap .txt.t03 {
            width: 26.4vw;
            top: 24.5333333333vw;
            left: -2.2666666667vw; }
          main .what .head .wrap .txt.t04 {
            width: 34.9333333333vw;
            top: 12.5333333333vw;
            left: 25.0666666667vw; }
          main .what .head .wrap .txt.t05 {
            width: 28.9333333333vw;
            top: 29.6vw;
            right: -1.2vw; }
          main .what .head .wrap .image {
            bottom: -0.6666666667vw; }
      main .what .main {
        max-width: 90.6666666667vw;
        margin: 10vw auto 0; }
        main .what .main h3 {
          height: 9.3333333333vw;
          border-radius: 33px;
          font-size: 4.5333333333vw; }
        main .what .main .table {
          margin: 4vw 0 0; }
          main .what .main .table .sex li {
            height: 12.8vw;
            border-radius: 15px 15px 0 0; }
            main .what .main .table .sex li .illust {
              width: 11.8666666667vw; }
            main .what .main .table .sex li span {
              font-size: 4.2666666667vw; }
            main .what .main .table .sex li.male {
              padding-left: 4vw; }
            main .what .main .table .sex li.female {
              padding-left: 2vw; }
              main .what .main .table .sex li.female .illust {
                margin-right: 1.8666666667vw; }
          main .what .main .table .tab_contents table tr.mainhead th, main .what .main .table .tab_contents table tr.mainhead td {
            padding: 4.6666666667vw 0;
            font-size: 3.7333333333vw; }
          main .what .main .table .tab_contents table tr.mainhead th {
            width: 16vw; }
          main .what .main .table .tab_contents table tr.mainhead td:nth-of-type(1) {
            width: 34.6666666667vw; }
          main .what .main .table .tab_contents table tr.mainhead td:nth-of-type(2) {
            width: 20vw; }
          main .what .main .table .tab_contents table tr.mainhead td:nth-of-type(3) {
            width: 20vw; }
          main .what .main .table .tab_contents table tr:nth-of-type(n+2) th, main .what .main .table .tab_contents table tr:nth-of-type(n+2) td {
            height: 19.3333333333vw; }
          main .what .main .table .tab_contents table tr:nth-of-type(n+2) th {
            font-size: 3.7333333333vw; }
          main .what .main .table .tab_contents table tr:nth-of-type(n+2) td {
            font-size: 3.3333333333vw; }
            main .what .main .table .tab_contents table tr:nth-of-type(n+2) td.nocenter {
              padding: 0 1.3333333333vw; }
    main .ratio {
      margin: 12vw auto 0;
      max-width: 90.6666666667vw; }
      main .ratio .head {
        padding: 12vw 0 0; }
        main .ratio .head:before {
          width: 75.7333333333vw;
          height: 75.7333333333vw; }
        main .ratio .head h2 {
          font-size: 5.3333333333vw; }
          main .ratio .head h2 span {
            padding: 0.2666666667vw 1.3333333333vw; }
        main .ratio .head .image {
          margin-top: -14.6666666667vw; }
      main .ratio .situation {
        margin: 16.6666666667vw 0 0; }
        main .ratio .situation h3 {
          border-radius: 15px 15px 0 0;
          height: 11.6vw;
          font-size: 4.1333333333vw; }
        main .ratio .situation .graph {
          padding: 3.3333333333vw 0 4.6666666667vw;
          border-radius: 0 0 15px 15px; }
          main .ratio .situation .graph img {
            max-width: 82.4vw; }
      main .ratio small {
        margin: 2.9333333333vw 0 0;
        font-size: 2.5333333333vw; }
    main .notice {
      margin: 10vw 0 0;
      padding: 8.4vw 0 9.3333333333vw; }
      main .notice .icon {
        width: 20vw; }
      main .notice h2 {
        margin: 3.3333333333vw 0 0;
        font-size: 5.3333333333vw; }
      main .notice h3 {
        padding: 0.9333333333vw 2vw;
        margin: 1.3333333333vw 0 0;
        font-size: 8.2666666667vw; }
      main .notice p {
        margin-top: 4.6666666667vw;
        font-size: 3.4666666667vw; }
    main .treatment {
      margin: 9.3333333333vw 0 0; }
      main .treatment .head {
        max-width: 90.6666666667vw;
        border-radius: 15px;
        padding: 8vw 0 0; }
        main .treatment .head:after {
          border-width: 3.4666666667vw 2.8vw 0px 2.8vw;
          bottom: -3.2vw; }
        main .treatment .head .ttl span.small {
          font-size: 5.8666666667vw; }
        main .treatment .head .ttl span.big {
          font-size: 7.3333333333vw; }
        main .treatment .head .ttl span.middle {
          font-size: 6.5333333333vw; }
        main .treatment .head .illust {
          max-width: 66.1333333333vw;
          margin: 2.4vw auto 0; }
        main .treatment .head p {
          height: 11.2vw;
          font-size: 5.3333333333vw;
          border-radius: 0 0 15px 15px; }
      main .treatment .comment {
        margin: 5.6vw auto 0;
        max-width: 90.6666666667vw; }
        main .treatment .comment .txt.t01 {
          max-width: 87.4666666667vw;
          margin-left: 4vw; }
        main .treatment .comment .txt.t02 {
          max-width: 78.6666666667vw;
          margin-top: -3.4666666667vw;
          margin-right: 7.7333333333vw; }
        main .treatment .comment .txt.t03 {
          max-width: 84.5333333333vw;
          margin-top: -10.6666666667vw;
          margin-left: 4vw; }
    main .onlineorder {
      margin: 8.5333333333vw auto 0;
      max-width: 90.6666666667vw;
      border-radius: 15px; }
      main .onlineorder .ttl {
        border-radius: 15px 15px 0 0;
        height: 11.8666666667vw;
        font-size: 4.4vw; }
        main .onlineorder .ttl:after {
          border-width: 3.4666666667vw 2.8vw 0px 2.8vw;
          bottom: -3.2vw; }
      main .onlineorder h2 {
        padding: 6.1333333333vw 0 0; }
        main .onlineorder h2 span {
          font-size: 5.6vw;
          padding: 0 5.0666666667vw; }
          main .onlineorder h2 span:before, main .onlineorder h2 span:after {
            height: 13.2vw;
            bottom: -1.0666666667vw; }
      main .onlineorder .img {
        margin: 4vw 0 0; }
        main .onlineorder .img ul {
          bottom: 4.6666666667vw;
          max-width: 82.9333333333vw; }
          main .onlineorder .img ul li {
            width: 26.6666666667vw;
            height: 26.6666666667vw;
            font-size: 4.2666666667vw; }
        main .onlineorder .img .bg {
          bottom: -1.3333333333vw; }
    main .list {
      max-width: 90.6666666667vw;
      margin: 7.6vw auto 0;
      border-radius: 15px;
      padding: 6vw 4vw 6.9333333333vw; }
      main .list h2 {
        font-size: 4.5333333333vw;
        padding-bottom: 2.6666666667vw; }
      main .list .cont {
        padding: 4vw 0 0 5.3333333333vw; }
        main .list .cont ul li {
          font-size: 4vw; }
        main .list .cont h3 {
          margin: 2vw 0 0; }
          main .list .cont h3 span {
            font-size: 3.7333333333vw; }
        main .list .cont ol li {
          font-size: 3.7333333333vw; }
        main .list .cont ol:nth-of-type(1) {
          margin: 2.6666666667vw 0 0; }
      main .list .illust {
        bottom: -0.6666666667vw;
        right: -7.4vw;
        width: 20.5333333333vw; }
    main .reason {
      max-width: 90.6666666667vw;
      height: 73.0666666667vw;
      margin: 7.2vw auto 0;
      border-radius: 15px; }
      main .reason:before {
        height: 49.6vw; }
      main .reason .ttl {
        top: 5.3333333333vw;
        left: 7.0666666667vw; }
        main .reason .ttl p {
          font-size: 3.6vw; }
        main .reason .ttl .mainttl {
          margin: -4.2666666667vw 0 0;
          font-size: 9.3333333333vw; }
          main .reason .ttl .mainttl .num {
            font-size: 21.7333333333vw; }
      main .reason .points {
        max-width: 83.7333333333vw;
        bottom: 3.3333333333vw; }
        main .reason .points .box {
          width: 26.4vw;
          height: 26.4vw;
          padding: 3.2vw 0 0; }
          main .reason .points .box .icon {
            height: 8.4vw; }
            main .reason .points .box .icon.i01 {
              width: 5.2vw; }
            main .reason .points .box .icon.i02 {
              width: 8.8vw; }
            main .reason .points .box .icon.i03 {
              width: 10.9333333333vw; }
          main .reason .points .box .txt {
            margin: 1.3333333333vw 0 0; }
            main .reason .points .box .txt p {
              font-size: 3.7333333333vw; }
              main .reason .points .box .txt p sup {
                font-size: 2.1333333333vw; }
            main .reason .points .box .txt small {
              font-size: 2.9333333333vw; }
    main .consultation {
      margin: 8.6666666667vw 0 0;
      height: 105.0666666667vw; }
      main .consultation .smartphone {
        top: 14.6666666667vw;
        left: 6.6666666667vw; }
        main .consultation .smartphone h2 span {
          font-size: 3.4666666667vw; }
          main .consultation .smartphone h2 span:before, main .consultation .smartphone h2 span:after {
            height: 7.2vw; }
        main .consultation .smartphone .img {
          width: 30.2666666667vw;
          margin: 2.6666666667vw auto 0; }
      main .consultation .texts {
        right: 5.3333333333vw;
        bottom: 7.3333333333vw; }
        main .consultation .texts .maintxt .small {
          font-size: 5.3333333333vw; }
        main .consultation .texts .maintxt h3 {
          margin: 1.3333333333vw 0 0;
          width: 57.8666666667vw;
          height: 14.8vw; }
          main .consultation .texts .maintxt h3 span {
            top: 1.3333333333vw;
            font-size: 4vw; }
            main .consultation .texts .maintxt h3 span strong {
              font-size: 13.3333333333vw; }
        main .consultation .texts .maintxt .middle {
          margin: 1.3333333333vw 0 0;
          font-size: 5.3333333333vw; }
        main .consultation .texts small {
          margin: 2.6666666667vw 0 0;
          font-size: 4vw; }
          main .consultation .texts small span {
            padding: 0 1.3333333333vw; }
    main .delivary {
      margin: 10vw 0 0; }
      main .delivary .privacy {
        max-width: 90.6666666667vw;
        border-radius: 15px;
        padding: 8.4vw 0 5.8666666667vw; }
        main .delivary .privacy .ttl .en {
          width: 17.3333333333vw; }
        main .delivary .privacy .ttl h2 {
          margin: 3.3333333333vw 0 0;
          font-size: 5.3333333333vw; }
          main .delivary .privacy .ttl h2 span {
            padding: 0 2vw;
            margin-right: 1.3333333333vw; }
        main .delivary .privacy .wrap {
          margin: 2.6666666667vw 0 0 0; }
          main .delivary .privacy .wrap .image {
            width: 44.5333333333vw; }
          main .delivary .privacy .wrap .texts dl dt, main .delivary .privacy .wrap .texts dl dd {
            font-size: 3.4666666667vw; }
          main .delivary .privacy .wrap .texts dl dt {
            width: 20.4vw;
            height: 5.6vw; }
          main .delivary .privacy .wrap .texts dl dd {
            margin: 1.3333333333vw 0 0; }
          main .delivary .privacy .wrap .texts dl:nth-of-type(n+2) {
            margin: 4.6666666667vw 0 0; }
        main .delivary .privacy p {
          margin: 2.6666666667vw 0 0;
          font-size: 4vw; }
      main .delivary .more {
        margin: 8.4vw auto 0;
        max-width: 90.6666666667vw;
        border-radius: 15px;
        padding: 0 4vw 5.3333333333vw; }
        main .delivary .more .icon {
          width: 21.2vw;
          top: -2.6666666667vw;
          left: 4vw; }
        main .delivary .more .wrap {
          top: -1.3333333333vw; }
          main .delivary .more .wrap h3 {
            font-size: 6.6666666667vw; }
          main .delivary .more .wrap .illust {
            width: 24.2666666667vw;
            margin-right: 0.6666666667vw; }
        main .delivary .more p {
          margin: 1.3333333333vw 0 0;
          font-size: 3.7333333333vw; }
      main .delivary small {
        max-width: 82.1333333333vw;
        margin: 3.3333333333vw auto 0;
        font-size: 2.5333333333vw; }
    main .steps {
      margin: 8.6666666667vw 0 0;
      padding: 10vw 0 10.6666666667vw; }
      main .steps .wrap {
        max-width: 90.6666666667vw;
        border-radius: 15px;
        padding: 0 0 4vw; }
        main .steps .wrap h2 {
          height: 16.9333333333vw;
          font-size: 6vw;
          border-radius: 15px 15px 0 0; }
          main .steps .wrap h2 span {
            padding: 0 0.15em;
            font-size: 8vw; }
        main .steps .wrap .texts {
          padding: 6vw 4vw 0; }
          main .steps .wrap .texts .box .ttl {
            padding-left: 2.6666666667vw; }
            main .steps .wrap .texts .box .ttl .num {
              width: 6.9333333333vw;
              height: 6.9333333333vw; }
              main .steps .wrap .texts .box .ttl .num span {
                top: 0.4vw;
                font-size: 4.8vw; }
            main .steps .wrap .texts .box .ttl h3 {
              margin-left: 2vw;
              font-size: 4vw; }
          main .steps .wrap .texts .box .cont {
            margin: 1.3333333333vw 0 0; }
            main .steps .wrap .texts .box .cont .img.i01 {
              width: 9.7333333333vw; }
            main .steps .wrap .texts .box .cont .img.i02 {
              width: 9.0666666667vw; }
            main .steps .wrap .texts .box .cont .img.i03 {
              width: 9.6vw;
              top: 2vw; }
            main .steps .wrap .texts .box .cont p {
              width: 71.0666666667vw;
              font-size: 3.4666666667vw; }
          main .steps .wrap .texts .box:nth-of-type(n+2) {
            margin-top: 8.6666666667vw; }
        main .steps .wrap small {
          margin: 2.6666666667vw 4vw 0;
          font-size: 2.5333333333vw; }
      main .steps .under {
        margin: 8.6666666667vw auto 0;
        max-width: 90.6666666667vw; }
        main .steps .under ul li {
          font-size: 3.2vw; }
          main .steps .under ul li .icn {
            width: 5.7333333333vw;
            margin-right: 1.6vw; }
          main .steps .under ul li:nth-of-type(2) {
            margin-left: 4.8vw; }
        main .steps .under .btn {
          margin: 4vw auto 0;
          max-width: 82.8vw; }
    main .satisfaction {
      max-width: 90.6666666667vw;
      margin: 12vw auto 0; }
      main .satisfaction .block {
        border-radius: 15px;
        padding: 8vw 0 0; }
        main .satisfaction .block .ttl {
          max-width: 83.7333333333vw; }
          main .satisfaction .block .ttl small {
            font-size: 2.5333333333vw; }
        main .satisfaction .block .wrap {
          margin: 8.6666666667vw 0 0; }
          main .satisfaction .block .wrap h3 {
            width: 82.6666666667vw;
            height: 9.3333333333vw;
            font-size: 4.5333333333vw;
            border-radius: 20px;
            top: -3.3333333333vw; }
          main .satisfaction .block .wrap .image {
            bottom: -0.8vw; }
            main .satisfaction .block .wrap .image .graph {
              width: 60.4vw;
              top: 8.9333333333vw;
              margin-left: -30.1333333333vw; }
            main .satisfaction .block .wrap .image .person {
              width: 62.9333333333vw; }
      main .satisfaction > small {
        margin-top: 3.3333333333vw;
        font-size: 2.5333333333vw; }
    main .voice {
      margin: 8vw 0 0; }
      main .voice h2 {
        max-width: 82.6666666667vw;
        height: 9.3333333333vw;
        font-size: 4.5333333333vw;
        border-radius: 20px; }
      main .voice .wrap {
        margin: 3.3333333333vw 0 0; }
        main .voice .wrap .box {
          border-radius: 20px;
          max-width: 82.6666666667vw;
          margin: 0 2vw; }
          main .voice .wrap .box .image {
            height: 52.9333333333vw; }
            main .voice .wrap .box .image .icon {
              width: 20.5333333333vw; }
          main .voice .wrap .box .texts {
            padding: 5.3333333333vw 6.6666666667vw 4vw;
            border-radius: 0 0 16px 16px; }
            main .voice .wrap .box .texts h3 {
              font-size: 4.4vw; }
            main .voice .wrap .box .texts p {
              margin: 3.3333333333vw 0 0;
              font-size: 3.2vw; }
            main .voice .wrap .box .texts .name {
              margin: 4vw 0 0;
              font-size: 2.6666666667vw; }
    main .media {
      margin: 6vw 0 0; }
      main .media .circle {
        max-width: 77.0666666667vw; }
        main .media .circle:before {
          width: 75.7333333333vw;
          height: 75.7333333333vw;
          left: 0.6666666667vw;
          top: 12.6666666667vw; }
        main .media .circle .illust {
          width: 33.0666666667vw; }
        main .media .circle p {
          margin: 2.6666666667vw 0 0;
          font-size: 5.3333333333vw; }
        main .media .circle .image {
          max-width: 67.4666666667vw;
          margin: 3.0666666667vw auto 0; }
        main .media .circle .ameba.a01 {
          width: 19.8666666667vw;
          top: 64.8vw;
          left: -9.7333333333vw; }
        main .media .circle .ameba.a02 {
          width: 22.1333333333vw;
          top: 15.3333333333vw;
          right: -8.2666666667vw; }
    main .plan {
      margin: 8vw 0 0;
      padding: 8vw 0 10.6666666667vw; }
      main .plan .ttl .en {
        width: 14.5333333333vw; }
      main .plan .ttl h2 {
        margin: 2vw 0 0;
        font-size: 4.5333333333vw; }
      main .plan .wrap {
        margin: 3.3333333333vw auto 0;
        max-width: 90.6666666667vw;
        border-radius: 15px; }
        main .plan .wrap:before {
          width: 44.4vw; }
        main .plan .wrap .block .name, main .plan .wrap .block .detaile {
          padding: 3.3333333333vw 0; }
        main .plan .wrap .block .name {
          width: 44.4vw;
          font-size: 3.6vw; }
        main .plan .wrap .block .detail {
          width: 46.2666666667vw;
          padding: 3.3333333333vw; }
          main .plan .wrap .block .detail .box .icn {
            max-width: 12.9333333333vw;
            padding: 0.6666666667vw 0;
            font-size: 3.4666666667vw;
            margin-bottom: 2.6666666667vw; }
          main .plan .wrap .block .detail .box .lists dl dt, main .plan .wrap .block .detail .box .lists dl dd {
            font-size: 3.4666666667vw; }
          main .plan .wrap .block .detail .box .lists dl:nth-of-type(n+2) {
            margin-top: 1.3333333333vw;
            padding-top: 1.3333333333vw; }
          main .plan .wrap .block .detail .box:nth-of-type(n+2) {
            margin-top: 3.3333333333vw; }
        main .plan .wrap .block:nth-of-type(n+2):before {
          width: 44.4vw; }
        main .plan .wrap .block:nth-of-type(n+2):after {
          width: 46.2666666667vw; }
      main .plan small {
        font-size: 2.5333333333vw;
        max-width: 90.6666666667vw;
        margin: 2.6666666667vw auto 0; }
    main .faq {
      margin: 11.3333333333vw 0 0; }
      main .faq .ttl .icon {
        width: 27.8666666667vw; }
      main .faq .ttl h2 {
        margin-top: 1.3333333333vw;
        font-size: 8.2666666667vw; }
      main .faq .wrap {
        max-width: 82.6666666667vw;
        margin: 4.6666666667vw auto 0; }
        main .faq .wrap .block {
          border-radius: 15px;
          padding: 5.3333333333vw 4vw; }
          main .faq .wrap .block .box .en {
            font-size: 6.6666666667vw; }
          main .faq .wrap .block .box p {
            margin: 2vw 0 0;
            font-size: 3.4666666667vw; }
          main .faq .wrap .block .box.question:before {
            width: 6vw;
            height: 0.4vw; }
          main .faq .wrap .block .box.question:after {
            width: 0.4vw;
            height: 6vw;
            margin-right: 2.8vw; }
          main .faq .wrap .block .box.answer {
            padding: 5.3333333333vw 0 0;
            margin: 3.3333333333vw 0 0; }
          main .faq .wrap .block:nth-of-type(n+2) {
            margin: 4vw 0 0; }
    main .end {
      margin-top: 11.3333333333vw;
      padding-top: 10.6666666667vw;
      padding-bottom: 10vw; }

  .footer {
    max-width: 100vw;
    padding: 10.6666666667vw 0 43.3333333333vw; }
    .footer .inner .logo {
      width: 50.6666666667vw; }
    .footer .inner ul {
      margin: 5.3333333333vw 0 0; }
      .footer .inner ul li a {
        padding: 0 1.3333333333vw;
        font-size: 2.9333333333vw; }
    .footer .inner small {
      margin: 4vw 0 0;
      font-size: 2.6666666667vw; } }
