@charset "UTF-8";
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/*----------------------------------------------------
.inner 余白 設定
----------------------------------------------------*/
/*----------------------------------------------------
//ベースフォントサイズ
----------------------------------------------------*/
/*----------------------------------------------------
グローバルナビブレイクポイント
/* ハンバーガーメニューの切り替わるポイント。
----------------------------------------------------*/
/* gnav.jsの変数「gNav_bpoint」も数値を合わせる */
/*----------------------------------------------------
transition
----------------------------------------------------*/
/* ホバー変更はやさ*/
/*----------------------------------------------------
mixinで、cssアニメーションを変数で指定できるようにするのに使う
----------------------------------------------------*/
/* インクルードする際はこんなふうに使う */
/*----------------------------------------------------
アニメーション名を指定する
----------------------------------------------------*/
/*----------------------------------------------------
中央寄せ
----------------------------------------------------*/
/* 上下左右中央寄せ */
/* 上下中央寄せ */
/* 左右中央寄せ */
/*----------------------------------------------------
リストマーカー
----------------------------------------------------*/
/*----------------------------------------------------
よく使う小技
----------------------------------------------------*/
/* ボックス影 */
/* 反転*/
/* 文字幅が指定幅を超えたときに「...」を表示する */
/* 親要素よりも幅を超えて画面いっぱいに表示するとき */
/* iconを横にぐるっと回転 */
/* slickのautoスライドの時などに、画面をタップするとスライドが動かなくなるのを防ぐ */
/* safariでボタンを押した際に出てくる青枠を消す */
/* クリップパス ジェネレーター： https://bennettfeely.com/clippy/。 */
/*----------------------------------------------------
フォント設定
----------------------------------------------------*/
/*----------------------------------------------------
フォント
----------------------------------------------------*/
/*----------------------------------------------------
google font
----------------------------------------------------*/
/* avenirの次はgfontのprompt、お客さん指定 */
/*----------------------------------------------------
擬似要素で表示
----------------------------------------------------*/
/*----------------------------------------------------
テキストホバーで線を表示する

//html例：<p>テキスト<a href="" class="link_text"><span>こちら</span></a>テキス</p>
spanタグにhoverしたときに線画出るようにしている。

----------------------------------------------------*/
/* ホバーで下線が左に消える */
/* ホバーで左から右に線が出る */
/* ホバーで中央から線が出る */
/* ホバーで中央の線がきえる */
/*----------------------------------------------------
アニメーション
----------------------------------------------------*/
/*----------------------------------------------------
フェードイン
----------------------------------------------------*/
/*----------------------------------------------------
上下左右に消える
----------------------------------------------------*/
/* 下にスッと消える*/
/* 上にスッと消える*/
/*----------------------------------------------------
上下左右から表示
----------------------------------------------------*/
/* 下から上にフワッと出てくる */
/* 上から下にフワッと出てくる */
/* 左から右にスッと出てくる*/
/* 右から左にスッと出てくる*/
/*----------------------------------------------------
コンテンツを覆っているカバーが徐々に取れる (左右) 覆いたい対象にクラス名を付ければOK
ターゲットとなる要素にはあらかじめ、下記のプロパティを設定しておく
position: relative;
overflow: hidden;
----------------------------------------------------*/
/* 左から右に動かしたい場合は、0％ → 100%。 右から左は 0% ⇨ -100% */
/*----------------------------------------------------
コンテンツを覆っているカバーが徐々に取れる (上下) 覆いたい対象にクラス名を付ければOK
ターゲットとなる要素にはあらかじめ、下記のプロパティを設定しておく
position: relative;
overflow: hidden;
----------------------------------------------------*/
/*----------------------------------------------------
文字間を徐々につめるアニメーション
----------------------------------------------------*/
/*----------------------------------------------------
ボヤーと出てくる
----------------------------------------------------*/
/*----------------------------------------------------
ふわふわ 動き続ける
----------------------------------------------------*/
/* 上下にふわふわ */
/* ホバーすると上にテキストが透明になって、下から出てくる */
@-webkit-keyframes textMove {
  0% {
    opacity: 1;
  }
  25% {
    -webkit-transform: translateY(-1em);
            transform: translateY(-1em);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(1em);
            transform: translateY(1em);
    opacity: 0;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes textMove {
  0% {
    opacity: 1;
  }
  25% {
    -webkit-transform: translateY(-1em);
            transform: translateY(-1em);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(1em);
            transform: translateY(1em);
    opacity: 0;
  }
  75% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
/* くるくる回り続ける */
@-webkit-keyframes fadeUpAnimeCircle {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes fadeUpAnimeCircle {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*----------------------------------------------------
bgが左右から流れ、その後、テキストが表示される。

.bg_fromLeft_toRight {
 @include bg_fromLeft_toRight;
}

html構成
<div class=" target">
  <span>
    <img src="<?php echo get_template_directory_uri(); ?>/assets/images/top/introduction/catch.png" alt="写真も、動画も。無限の可能性を撮る">
  </span>
</div>
----------------------------------------------------*/
/* 左から右に流れる */
/* 右から左に流れる */
section, footer {
  position: relative;
}

.container {
  /* 751- */
}
@media all and (min-width: 769px) {
  .container {
    margin: 0px auto 0;
    width: 1280px;
  }
}

.container_wrap {
  overflow: hidden;
  /* 751- */
}
@media all and (min-width: 769px) {
  .container_wrap {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    -webkit-box-shadow: 0px 30px 24px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 30px 24px rgba(0, 0, 0, 0.1);
  }
}

#faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: url("../img/common/bg_graytexture.png") center/cover no-repeat;
}

/* バックグラウンド */
main > section {
  background: white;
}

/* ホバーすると拡大しない様にする */
.slick-center img:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}

/*----------------------------------------------------
共通スライダー
----------------------------------------------------*/
.sliderArea {
  position: relative;
}
.sliderArea .slick-list {
  overflow: initial;
}
.sliderArea .slick-slide {
  /*スライド左右の余白調整*/
  /* 高さを固定 */
  width: 144px;
  height: 144px;
  margin: 0 10px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
}
.sliderArea .slick-slide img {
  width: 100%;
  height: auto;
}
.sliderArea .slick-slide.slick-current {
  opacity: 1;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
}

/*----------------------------------------------------
#mv
----------------------------------------------------*/
#mv {
  padding-bottom: 45px;
}
#mv .mainvisual {
  padding: 10px;
  margin-bottom: 30px;
  position: relative;
  /* 751- */
}
@media all and (min-width: 769px) {
  #mv .mainvisual {
    padding: 13px;
  }
}
#mv .mainvisual .logoG {
  position: absolute;
  top: 67px;
  left: 60px;
  /* 751- */
}
#mv .mainvisual .logoG img {
  width: 74px;
}
@media all and (min-width: 769px) {
  #mv .mainvisual .logoG {
    top: 90px;
    left: 80px;
  }
  #mv .mainvisual .logoG img {
    width: 99px;
  }
}
#mv .mainvisual .mv_text {
  position: absolute;
  top: 100px;
  left: 167px;
  /* 751- */
}
#mv .mainvisual .mv_text img {
  width: 160px;
}
#mv .mainvisual .mv_text p {
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1.5;
  font-weight: 600;
  font-family: "こぶりなゴシック W1 JIS2004", "Koburina Gothic W1 JIS2004", "游ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
@media all and (min-width: 769px) {
  #mv .mainvisual .mv_text {
    top: 133px;
    left: 222px;
  }
  #mv .mainvisual .mv_text img {
    width: 214px;
  }
  #mv .mainvisual .mv_text p {
    font-size: 21.333px;
    letter-spacing: 2.66px;
    line-height: 1.5;
    color: white;
    font-weight: 600;
  }
}
#mv .btn_kounyu {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 60px;
}
#mv .btn_kounyu a {
  font-size: 14px;
  letter-spacing: 0em;
  line-height: 1.6667;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-weight: bold;
  background-color: #67D2DF;
  padding: 12px 24px 12px 54px;
  border-radius: 31px;
  display: inline-block;
  text-align: center;
  color: white;
  border: 1px solid #67D2DF;
  /* 751- */
}
#mv .btn_kounyu a span {
  position: relative;
}
#mv .btn_kounyu a span::before {
  content: "";
  position: absolute;
  background: url("../img/icon/cart_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  left: -28px;
}
@media all and (min-width: 769px) {
  #mv .btn_kounyu a {
    font-size: 18px;
    letter-spacing: 0em;
    line-height: 1.6667;
    padding: 15px 32px 15px 75px;
  }
  #mv .btn_kounyu a:hover {
    background-color: #fff;
    color: #67D2DF;
  }
  #mv .btn_kounyu a:hover span::before {
    content: "";
    position: absolute;
    background: url("../img/icon/cart_blue.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 21px;
    height: 20px;
  }
  #mv .btn_kounyu a span::before {
    content: "";
    position: absolute;
    background: url("../img/icon/cart_white.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 21px;
    height: 20px;
    left: -40px;
  }
}
#mv .textArea {
  text-align: center;
}
#mv .textArea p {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.785;
  font-weight: bold;
  margin-bottom: 22px;
}
#mv h1 {
  margin: 0 auto;
  max-width: 131px;
}

/*----------------------------------------------------
#movie
----------------------------------------------------*/
#movie {
  position: relative;
  padding: 40px 0px 56px;
  overflow: hidden;
}
#movie::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background: url("../img/common/bg_graytexture.png") center/cover no-repeat;
}
#movie .conts {
  position: relative;
}
#movie .inner > * {
  position: relative;
}
#movie h2 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 16px;
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 2;
}
#movie video {
  width: 100%;
}
#movie .wrap {
  position: relative;
}

/*----------------------------------------------------
about
----------------------------------------------------*/
#about {
  padding-bottom: 80px;
}
#about .mainConts {
  background: url("../img/about/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  position: relative;
  padding-top: 64px;
  padding-bottom: 380px;
  text-align: center;
  margin-bottom: 120px;
  /* 751- */
}
@media all and (min-width: 769px) {
  #about .mainConts {
    background-position: bottom -50px center;
    padding-bottom: 400px;
  }
}
#about .mainConts h2 {
  font-size: 16px;
  letter-spacing: 3px;
  line-height: 1.6667;
  font-family: "Avenir", "Prompt", "游ゴシック", sans-serif;
  font-style: normal;
  font-weight: 500;
  color: white;
  margin-bottom: 36px;
}
#about .mainConts h2 span {
  position: relative;
}
#about .mainConts h2 span::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: white;
  left: 0;
  bottom: -4px;
}
#about .mainConts p {
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 2;
  color: #fff;
  font-weight: bold;
}
#about .mainConts p.mgBT {
  margin: 30px 0;
}
#about .sliderArea {
  position: relative;
}
#about .sliderArea::before {
  content: "";
  position: absolute;
  background: url("../img/about/arrange.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 148px;
  height: 100px;
  top: -70px;
  right: 35px;
}

/*----------------------------------------------------
ikiki
----------------------------------------------------*/
#ikiki {
  padding: 56px 0;
}
#ikiki h2 {
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.6667;
  font-weight: bold;
  margin-bottom: 60px;
}
#ikiki h2 > span {
  position: relative;
}
#ikiki h2 > span::after {
  content: "";
  position: absolute;
  background: url("../img/ikiki/dotted.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 230px;
  height: 10px;
  left: 0;
  bottom: -20px;
}
#ikiki h2 .big {
  font-size: 20px;
}
#ikiki h2 .big .blue {
  color: #7CC6E1;
}
#ikiki .image {
  width: 93.33%;
  margin: 0 auto 32px;
}
#ikiki .price {
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.6667;
}
#ikiki .price .big {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.6667;
  margin-bottom: 16px;
}
#ikiki .price p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: bold;
}
#ikiki .price .num {
  font-style: italic;
  font-size: 2em;
  font-weight: 700;
}
#ikiki .price .fee {
  margin-top: 3px;
}
#ikiki .btnArea {
  margin-top: 31px;
  text-align: center;
}

/*----------------------------------------------------
feature01
----------------------------------------------------*/
#feature01 {
  padding: 89px 0 46px;
}
#feature01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background: url("../img/common/bg_graytexture.png") center/cover no-repeat;
}
#feature01::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 24px;
  background: url("../img/feature/feat01/FEATURE01.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 118px;
}
#feature01 .conts {
  position: relative;
}
#feature01 .featTitle {
  max-width: 208px;
  margin: 0 auto 47px;
}
#feature01 .lt {
  margin-bottom: 80px;
}
#feature01 .lt li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#feature01 .lt li:nth-of-type(2) {
  margin-top: 39px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#feature01 .lt li .image {
  width: 42.666%;
}
#feature01 .lt li .textArea {
  position: relative;
  width: 57.333%;
  background-color: #fff;
  height: 118px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}
#feature01 .lt li .textArea::before {
  content: "";
  position: absolute;
  background: url("../img/common/one.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 45px;
  height: 70px;
  top: -13px;
  left: 8px;
}
#feature01 .lt li .textArea p {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.6667;
  font-weight: bold;
}
#feature01 .lt li:nth-of-type(2) .textArea::before {
  content: "";
  position: absolute;
  background: url("../img/common/two.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 57px;
  height: 70px;
}
#feature01 .foot {
  margin-top: 26px;
}
#feature01 .foot p {
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.8;
  font-weight: bold;
}
#feature01 .foot .line {
  position: relative;
}
#feature01 .foot .line::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #BFEBF0;
  bottom: -4px;
}
#feature01 .foot .big {
  font-size: 1.125em;
  color: #7CC6E1;
}
#feature01 .foot .image {
  margin: 24px 20px 16px;
}

/*----------------------------------------------------
feature02
----------------------------------------------------*/
#feature02 {
  padding: 118px 0 80px;
}
#feature02 p {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.6667;
  font-weight: bold;
}
#feature02 p.center {
  text-align: center;
}
#feature02::after {
  content: "";
  position: absolute;
  top: 27px;
  right: 24px;
  background: url("../img/feature/feat02/FEATURE02.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 118px;
}
#feature02 .inner {
  overflow: hidden;
}
#feature02 .featTitle {
  max-width: 188px;
  margin: 0 auto 64px;
}
#feature02 .featTitle span {
  position: relative;
}
#feature02 .featTitle span::before {
  content: "";
  position: absolute;
  background: url("../img/feature/feat02/title_arrange.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 140px;
  height: 80px;
  z-index: 1;
  top: -100px;
  left: -40px;
}
#feature02 .lt {
  margin-bottom: 64px;
}
#feature02 .lt li:not(:nth-of-type(2)) {
  position: relative;
}
#feature02 .lt li:not(:nth-of-type(2))::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  border: 1px dotted #DDDDDE;
}
#feature02 .lt li:not(:nth-of-type(2))::after {
  content: "";
  position: absolute;
  background: url("../img/feature/feat02/one/one.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 45px;
  height: 70px;
  top: 19px;
  left: 25px;
}
#feature02 .lt li:not(:nth-of-type(2)):nth-of-type(3)::after {
  content: "";
  position: absolute;
  background: url("../img/feature/feat02/two/two.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 57px;
  height: 70px;
  top: 19px;
  left: 25px;
}
#feature02 .lt li:nth-of-type(2) {
  padding: 44px 0 69px;
}
#feature02 .lt li:nth-of-type(2) .big {
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.6667;
  margin-bottom: 24px;
  margin-left: 20px;
}
#feature02 .lt li:nth-of-type(2) .big span {
  color: #7CC6E1;
  font-size: 1.142em;
  position: relative;
}
#feature02 .lt li:nth-of-type(2) .big span::before {
  content: "";
  position: absolute;
  background: url("../img/feature/feat02/zoom.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 23px;
  height: 21px;
  top: -1px;
  left: -30px;
}
#feature02 .lt li:nth-of-type(2) .conts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
#feature02 .lt li:nth-of-type(2) .conts .image {
  width: 19.104%;
}
#feature02 .lt li:nth-of-type(2) .conts .text {
  width: 68.059%;
}
#feature02 .lt li:nth-of-type(2) .conts .text p {
  font-weight: 400;
}
#feature02 .lt li:nth-of-type(2) .text {
  color: #75787B;
  font-size: 12px;
  letter-spacing: 0em;
  line-height: 1.6667;
  font-weight: 400;
  font-family: "こぶりなゴシック W3 JIS2004", "Koburina Gothic W3 JIS2004", "游ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}
#feature02 .lt .fullImg {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 769px) {
  #feature02 .lt .fullImg {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
}
@media all and (min-width: 769px) {
  #feature02 .lt .fullImg {
    margin-left: -22px;
    margin-right: -22px;
  }
}
#feature02 .lt .img1 {
  padding-top: 26px;
  width: 45.671%;
  margin: 0 auto 18px;
}
#feature02 .lt .text_img1 {
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.6667;
  margin-bottom: 38px;
}
#feature02 .lt .text_img1 span {
  display: inline-block;
  color: #7CC6E1;
  margin: 0 5px;
  font-size: 1.2em;
}
#feature02 .lt .text_img2 {
  margin: 28px 0 20px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.6667;
}
#feature02 .lt .text_last {
  text-align: center;
  color: #7CC6E1;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.6667;
  padding-bottom: 40px;
}
#feature02 .lt .text_last span {
  position: relative;
}
#feature02 .lt .text_last span::before {
  top: 2px;
  left: -30px;
  content: "";
  position: absolute;
  background: url("../img/common/rain.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
#feature02 .foot {
  padding-bottom: 104px;
}
#feature02 .foot .image {
  margin-left: -20px;
  margin-right: -20px;
}
#feature02 .foot .fuwaImg1 {
  margin-left: -20px;
  width: 49%;
}
#feature02 .foot .fuwaImg2 {
  text-align: right;
  /* -750 */
  /* 751- */
}
@media all and (max-width: 769px) {
  #feature02 .foot .fuwaImg2 {
    margin-top: -67px;
  }
}
@media all and (min-width: 769px) {
  #feature02 .foot .fuwaImg2 {
    margin-top: -92px;
  }
}
#feature02 .foot .fuwaImg2 img {
  width: 69%;
}
#feature02 .foot .fuwaImg3 {
  width: 40%;
}
#feature02 .foot .fuwaImg4 {
  position: relative;
  z-index: 2;
  text-align: right;
  margin-right: -20px;
  margin-top: -100px;
  /* 751- */
}
@media all and (min-width: 769px) {
  #feature02 .foot .fuwaImg4 {
    margin-top: -140px;
  }
}
#feature02 .foot .fuwaImg4 img {
  width: 58%;
}
#feature02 .foot .fuwaImg5 {
  margin-top: -30px;
  margin-left: -20px;
  width: calc(52.533% + 20px);
  /* 751- */
}
@media all and (min-width: 769px) {
  #feature02 .foot .fuwaImg5 {
    margin-top: -40px;
  }
}
#feature02 .foot p {
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.6667;
}
#feature02 .foot p.mgBT {
  margin: 50px 0 18px 20px;
}
#feature02 .foot p.mgB {
  margin: 0px 0 50px 20px;
}
#feature02 .sliderArea .slider {
  margin: 24px 0;
}
#feature02 .price {
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.6667;
}
#feature02 .price .big {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.6667;
  margin-bottom: 16px;
}
#feature02 .price p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#feature02 .price span {
  font-style: italic;
  font-size: 2em;
  font-weight: 700;
}
#feature02 .btnArea {
  margin-top: 31px;
  text-align: center;
}

/*----------------------------------------------------
feature03
----------------------------------------------------*/
#feature03 {
  padding: 89px 0 0;
}
#feature03::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background: url("../img/feature/feat03/bg.png") center/cover no-repeat;
}
#feature03::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 24px;
  background: url("../img/feature/feat03/FEATURE03.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 118px;
}
#feature03 .conts {
  position: relative;
}
#feature03 .featTitle {
  max-width: 268px;
  margin: 0 auto 40px;
}
#feature03 .flow {
  margin-bottom: 41px;
}
#feature03 .flow .image {
  margin-bottom: 29px;
}
#feature03 .flow li {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
  font-weight: bold;
  background-color: #fff;
  padding: 32px 17px 57px;
  position: relative;
}
#feature03 .flow li:first-child {
  margin-bottom: 91px;
}
#feature03 .flow li:first-child::after {
  bottom: -70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  position: absolute;
  background: url("../img/feature/feat03/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 17px;
  height: 51px;
}
#feature03 .flow li h3 {
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 24px;
}
#feature03 .flow li h3 span {
  position: relative;
}
#feature03 .flow li h3 span::after {
  content: "";
  position: absolute;
  background: url("../img/feature/feat03/mojyamojya.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 34px;
  height: 29px;
  top: -15px;
  right: -40px;
}
#feature03 .flow li .textArea p {
  margin-left: 50px;
  position: relative;
}
#feature03 .flow li .textArea p::before {
  content: "";
  position: absolute;
  background: url("../img/feature/feat03/flow1_check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -35px;
}
#feature03 .flow li .textArea p:not(:last-child) {
  margin-bottom: 26px;
}
#feature03 .flow li:nth-of-type(2) .textArea p::before {
  content: "";
  position: absolute;
  background: url("../img/feature/feat03/flow2_check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
}
#feature03 .flow li:nth-of-type(2) h3 span::after {
  content: "";
  position: absolute;
  background: url("../img/feature/feat03/ashirai.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 15px;
  top: -13px;
  right: -12px;
}
#feature03 .box {
  margin-bottom: 48px;
  text-align: center;
}
#feature03 .box p {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.6667;
  font-weight: bold;
}
#feature03 .box p.mgb {
  margin-bottom: 24px;
}
#feature03 .recommend {
  position: relative;
  padding: 88px 0 64px;
  background-color: #FAFAF9;
}
#feature03 .recommend ul {
  background-color: #fff;
  max-width: 340px;
  margin: 0 auto;
  padding: 32px 24px 32px 50px;
}
#feature03 .recommend ul::before {
  content: "";
  position: absolute;
  background: url("../img/feature/feat03/osusume.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 176px;
  height: 46px;
  top: 58px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#feature03 .recommend li {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
  position: relative;
  font-weight: bold;
}
#feature03 .recommend li::before {
  content: "";
  position: absolute;
  background: url("../img/common/rain.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -25px;
}
#feature03 .recommend li:not(:last-child) {
  margin-bottom: 16px;
}

/*----------------------------------------------------
voice
----------------------------------------------------*/
#voice {
  padding: 80px 0;
}
#voice .btnMore {
  text-align: center;
}
#voice .secTitle {
  margin-bottom: 32px;
}
#voice .wadai {
  max-width: 311px;
  margin: 0 auto 35px;
}
#voice .btnMore {
  margin-bottom: 32px;
}
#voice .share {
  text-align: center;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
  font-weight: bold;
  margin-top: 32px;
  margin-bottom: 38px;
}
#voice .share span {
  font-size: 1.25em;
  position: relative;
  font-family: "Avenir", "Prompt", "游ゴシック", sans-serif;
  font-style: normal;
  font-weight: 500;
}
#voice .share span::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 100%;
  background-color: #C2EDF2;
  bottom: -5px;
}
#voice .letro {
  text-align: right;
}
#voice .letro img {
  width: 104px;
}

/*----------------------------------------------------
donation
----------------------------------------------------*/
#donation {
  padding-bottom: 40px;
}
#donation .mainConts {
  background: url("../img/donation/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  position: relative;
  padding-top: 64px;
  padding-bottom: 300px;
  /* 751- */
}
@media all and (min-width: 769px) {
  #donation .mainConts {
    background-position: bottom -50px center;
    padding-bottom: 400px;
  }
}
#donation .inner {
  position: relative;
}
#donation p {
  text-align: center;
  color: #737678;
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 2;
  font-weight: bold;
}
#donation p.textBlock1 {
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 2;
  margin-bottom: 32px;
}
#donation p.textBlock2 {
  margin-bottom: 35px;
}
#donation p.textBlock3 {
  margin-bottom: 32px;
}
#donation p.textBlock4 {
  margin-bottom: 24px;
}
#donation .btnDetail {
  text-align: center;
}
#donation .rainImg {
  max-width: 211px;
  margin: 0 auto 32px;
}
#donation .bannerArea {
  padding-top: 40px;
}
#donation .bannerArea .image {
  width: 82.933%;
  margin: 0 auto 49px;
}

/*----------------------------------------------------
choice
----------------------------------------------------*/
#choice {
  padding-top: 130px;
  padding-bottom: 80px;
  background: #F7F7F7;
}
#choice .secTitle {
  margin-bottom: 32px;
}
#choice .secTitle::before {
  content: "";
  position: absolute;
  background: url("../img/choice/rain.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 18px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -50px;
}
#choice .intro {
  text-align: center;
  font-size: 16px;
  letter-spacing: 0em;
  line-height: 1.6667;
  font-weight: bold;
  margin-bottom: 32px;
}
#choice .lt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  margin-bottom: 32px;
}
#choice .lt > li {
  width: 48%;
  background-color: #fff;
  padding: 20px 25px;
  text-align: center;
}
#choice h3 {
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 12px;
}
#choice li a {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.6667;
  color: #7CC6E1;
  font-family: "Avenir", "Prompt", "游ゴシック", sans-serif;
  font-style: normal;
  font-weight: 500;
  /* 751- */
}
#choice li a span {
  position: relative;
}
#choice li a span::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: solid 2px #7CC6E1;
  border-right: solid 2px #7CC6E1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  top: 4px;
  right: -15px;
}
@media all and (min-width: 769px) {
  #choice li a:hover span::before {
    right: -25px;
  }
}
#choice .image {
  margin-bottom: 12px;
}
#choice .btnArea {
  text-align: center;
  padding-bottom: 80px;
}
#choice .fullImg {
  margin-right: -20px;
  margin-left: -20px;
  margin-bottom: 42px;
}
#choice .post .postTitle {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 27px;
}
#choice .post .postTitle > span {
  position: relative;
}
#choice .post .postTitle > span::before {
  content: "";
  position: absolute;
  background: url("../img/choice/icon_post.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 23px;
  height: 22px;
  top: -4px;
  left: -40px;
}
#choice .post .postTitle .big {
  color: #7CC6E1;
  font-size: 1.142em;
}
#choice .post ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
#choice .post ul li:nth-of-type(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
#choice .post ul li .postImg {
  width: 25.723%;
  max-width: 80px;
}
#choice .post ul li p {
  width: 67.845%;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.6667;
  font-family: "こぶりなゴシック W3 JIS2004", "Koburina Gothic W3 JIS2004", "游ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
}

/*----------------------------------------------------
faq
----------------------------------------------------*/
#faq {
  position: relative;
  padding: 80px 0px 0px;
  overflow: hidden;
  /* アコーディオン */
}
#faq .inner > * {
  position: relative;
}
#faq .secTitle {
  margin-bottom: 24px;
}
#faq .acBox {
  margin-bottom: 80px;
}
#faq .acBox > li {
  background-color: #fff;
}
#faq .acBox > li:not(:last-child) {
  margin-bottom: 16px;
}
#faq .ac_title {
  padding: 0 32px 0 58px;
}
#faq .ac_title {
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1.5;
  color: #7CC6E1;
  font-weight: bold;
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 40px;
  cursor: pointer;
  /* 751- */
}
#faq .ac_title::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: solid 2px #7CC6E1;
  border-right: solid 2px #7CC6E1;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  top: 25px;
  right: 25px;
}
#faq .ac_title::after {
  content: "Q";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 16px;
}
#faq .ac_title.open::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#faq .ac_title > span {
  position: relative;
}
#faq .ac_title > span::before {
  content: "";
  position: absolute;
  display: block;
  background: #7CC6E1;
  width: 1px;
  height: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -10px;
}
@media all and (min-width: 769px) {
  #faq .ac_title > span:after {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    content: "";
    position: absolute;
    height: 1px;
    width: 80%;
    background-color: #7CC6E1;
    bottom: -5px;
    left: 0%;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1); /* x軸方向に縮小で0にして消えてるように見せる */
  }
  #faq .ac_title:hover span:after {
    width: 100%;
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
#faq .ac_cont {
  display: none;
  background-color: rgba(217, 217, 214, 0.4);
  padding: 0 32px;
}
#faq .lt_item {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 23px;
  position: relative;
}
#faq .lt_item:last-child {
  margin-bottom: 0px;
}
#faq .lt_item .text {
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 18px;
  color: #53565A;
}
#faq .lt_item a {
  font-weight: bold;
  /* 751- */
}
#faq .lt_item a span {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  color: #7CC6E1;
  opacity: 1;
}
#faq .lt_item a span::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #7CC6E1;
  left: 0;
  bottom: -2px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media all and (min-width: 769px) {
  #faq .lt_item a:hover span {
    opacity: 0.8;
  }
  #faq .lt_item a:hover span::after {
    left: 0%;
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0); /* x軸方向に縮小で0にして消えてるように見せる */
    width: 0%;
  }
}
#faq .moreBtn {
  text-align: right;
  margin-top: 30px;
  cursor: pointer;
}
#faq .image {
  margin-right: -20px;
  margin-left: -20px;
}
/*# sourceMappingURL=home.css.map */