@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>
----------------------------------------------------*/
/* 左から右に流れる */
/* 右から左に流れる */
/*----------------------------------------------------
基本設定
----------------------------------------------------*/
/*----------------------------------------------------
.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;
----------------------------------------------------*/
/*----------------------------------------------------
文字間を徐々につめるアニメーション
----------------------------------------------------*/
/*----------------------------------------------------
ボヤーと出てくる
----------------------------------------------------*/
/*----------------------------------------------------
ふわふわ 動き続ける
----------------------------------------------------*/
/* 上下にふわふわ */
/* ホバーすると上にテキストが透明になって、下から出てくる */
@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 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>
----------------------------------------------------*/
/* 左から右に流れる */
/* 右から左に流れる */
.contsFooter {
  color: #53565A;
  background: white;
  background-repeat: no-repeat;
  padding: 83px 20px 96px;
  /* 751- */
}
@media all and (min-width: 769px) {
  .contsFooter {
    padding-bottom: 140px;
  }
}
.contsFooter .logo {
  text-align: center;
  margin-bottom: 41px;
}
.contsFooter .logo img {
  width: 87px;
}
.contsFooter .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 88.4%;
  margin: 0 auto;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  /* 751- */
}
@media all and (min-width: 769px) {
  .contsFooter .wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 75px;
       -moz-column-gap: 75px;
            column-gap: 75px;
  }
}
.contsFooter a {
  /* 751- */
}
.contsFooter a.en {
  font-family: "Avenir", "Prompt", "游ゴシック", sans-serif;
  font-style: normal;
  font-weight: 500;
}
@media all and (min-width: 769px) {
  .contsFooter a {
    /* 751- */
  }
  .contsFooter a span {
    position: relative;
    color: #53565A;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}
@media all and (min-width: 769px) and (min-width: 769px) {
  .contsFooter a span::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #53565A;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
  }
  .contsFooter a:hover span {
    opacity: 0.7;
  }
  .contsFooter a:hover span::after {
    width: 100%; /*横幅を伸ばす*/
    opacity: 1; /*不透明に*/
  }
}
.contsFooter .ltLink {
  margin-bottom: 40px;
}
.contsFooter .ltLink li {
  margin-bottom: 21px;
  font-size: 18px;
  letter-spacing: 0.01em;
  line-height: 1.6667;
  /* 751- */
}
.contsFooter .ltLink li:last-child {
  margin-bottom: 0;
}
.contsFooter .ltOther li {
  margin-bottom: 15px;
  margin-left: 8px;
  position: relative;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.6667;
}
.contsFooter .ltOther li a {
  position: relative;
}
.contsFooter .ltOther li a::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background-color: #53565A;
  top: 0px;
  left: -8px;
}
.contsFooter .ltOther li:last-child {
  margin-bottom: 0;
}
.contsFooter .insta {
  margin-top: 20px;
}
.contsFooter .insta a {
  margin-left: 30px;
}
.contsFooter .insta a span {
  position: relative;
}
.contsFooter .insta a span::before {
  content: "";
  position: absolute;
  background: url("../img/icon/instagram.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  top: -5px;
  left: -30px;
}
.contsFooter .copyright {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0em;
  line-height: 1.6667;
}

body {
  /* for iOS スマホを横向きにした際に文字が大きくならなくする https://qiita.com/Sen-Din/items/3553de9cf34358f3e2e0*/
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: #53565A;
  background: #ACD0CE;
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
  font-family: "こぶりなゴシック W1 JIS2004", "Koburina Gothic W1 JIS2004", YuGothic, "游ゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  /* 751- */
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media all and (min-width: 769px) {
  body {
    position: relative;
  }
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  text-decoration: none;
}

a img {
  border: none;
}

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

figure {
  margin: 0;
}

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

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

input, label, select, textarea {
  vertical-align: middle;
}

.align-center {
  text-align: center;
}

strong {
  font-size: 1.2em;
}

[v-cloak] {
  display: none;
}

.fadeIn {
  opacity: 0;
  -webkit-animation-name: fadeInMain;
          animation-name: fadeInMain;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@-webkit-keyframes fadeInMain {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInMain {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*----------------------------------------------------
js スクロール時の動き
----------------------------------------------------*/
.boxOpacity {
  opacity: 0;
}

/* 下からフワッと出てくる */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

/* 下からフワッと出てくる */
.fadeUp2 {
  -webkit-animation-name: fadeUpAnime2;
          animation-name: fadeUpAnime2;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime2 {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime2 {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*----------------------------------------------------
inner
----------------------------------------------------*/
/* ベース */
.inner {
  padding: 0 20px;
  position: relative;
}

/*----------------------------------------------------
クリック無効化と透過
----------------------------------------------------*/
.is_opacity {
  pointer-events: none;
  opacity: 0;
}

/*----------------------------------------------------
表示 非表示
----------------------------------------------------*/
.hide {
  display: none;
}

.opacity {
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.forSP {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 769px) {
  .forSP {
    display: block;
  }
}
@media all and (min-width: 769px) {
  .forSP {
    display: none;
  }
}

.forPC {
  /* -750 */
  /* 751- */
}
@media all and (max-width: 769px) {
  .forPC {
    display: none;
  }
}
@media all and (min-width: 769px) {
  .forPC {
    display: block;
  }
}

/*----------------------------------------------------
改行 表示非表示
----------------------------------------------------*/
.brsp {
  display: block;
  /* 751- */
}
@media all and (min-width: 769px) {
  .brsp {
    display: none;
  }
}

.brpc {
  display: none;
  /* 751- */
}
@media all and (min-width: 769px) {
  .brpc {
    display: block;
  }
}

/*----------------------------------------------------
セクションタイトル
----------------------------------------------------*/
.secTitle {
  text-align: center;
}
.secTitle span {
  display: block;
}
.secTitle .en {
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 24px;
  color: #7CC6E1;
  font-weight: 500;
  text-transform: capitalize;
  font-family: "Avenir", "Prompt", "游ゴシック", sans-serif;
  font-style: normal;
  font-weight: 500;
}
.secTitle .jp {
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 20px;
  margin-bottom: 8px;
  font-weight: bold;
}

/*----------------------------------------------------
ボタン
----------------------------------------------------*/
.btn {
  background-color: #67D2DF;
  color: white;
  display: inline-block;
  padding: 11px 39px 11px 24px;
  text-align: center;
  font-weight: bold;
  border-radius: 22px;
  border: 1px solid #67D2DF;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  /* 751- */
}
.btn span {
  position: relative;
}
.btn span::after {
  content: "";
  position: absolute;
  background: url("../img/icon/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 7px;
  height: 11px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  right: -15px;
}
@media all and (min-width: 769px) {
  .btn:hover span::after {
    content: "";
    position: absolute;
    background: url("../img/icon/arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 7px;
    height: 11px;
    right: -25px;
  }
}
.btn.opacityWhite {
  background-color: initial;
  border-color: white;
}
.btn.opacityWhite:hover {
  background-color: #67D2DF;
  border-color: #67D2DF;
}
.btn.opacityBlue {
  border-color: #67D2DF;
  background-color: initial;
  color: #67D2DF;
  /* 751- */
}
.btn.opacityBlue span {
  position: relative;
}
.btn.opacityBlue span::after {
  content: "";
  position: absolute;
  background: url("../img/icon/arrow_blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 7px;
  height: 11px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  right: -15px;
}
@media all and (min-width: 769px) {
  .btn.opacityBlue:hover {
    background-color: #67D2DF;
    color: white;
  }
  .btn.opacityBlue:hover span::after {
    content: "";
    position: absolute;
    background: url("../img/icon/arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 7px;
    height: 11px;
    right: -25px;
  }
}

/*----------------------------------------------------
pc用ナビゲーション
----------------------------------------------------*/
#pcNav {
  display: none;
  /* 751- */
}
@media all and (min-width: 769px) {
  #pcNav {
    display: block;
  }
}
@media all and (max-width: 1280px) {
  #pcNav {
    margin: 0 auto;
    width: 1280px;
    position: fixed;
  }
}
#pcNav .leftSide, #pcNav .rightSide {
  position: absolute;
  z-index: 5;
}
#pcNav .rightSide {
  /* 751- */
}
@media all and (min-width: 769px) {
  #pcNav .rightSide {
    right: 78px;
  }
}
@media all and (min-width: 1281px) {
  #pcNav .rightSide {
    position: fixed;
    top: 117px;
    right: 58px;
  }
}
@media all and (min-width: 1300px) {
  #pcNav .rightSide {
    right: calc(50% - 550px);
  }
}
#pcNav .rightSide .toStore {
  position: relative;
  padding-top: 586px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#pcNav .rightSide .toStore.mini {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
#pcNav .rightSide .toShop {
  display: inline-block;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#pcNav .rightSide .toShop:hover {
  opacity: 0.7;
}
#pcNav .rightSide .toShop img {
  width: 211px;
}
#pcNav .leftSide {
  left: calc(50% - 550px);
  top: 60px;
}
#pcNav .leftSide .logo {
  margin-bottom: 85px;
}
#pcNav .leftSide .logo img {
  width: 84px;
}
@media all and (min-width: 1281px) {
  #pcNav .leftSide {
    position: fixed;
    top: 82px;
  }
}
#pcNav .leftSide .lt li {
  margin-bottom: 24px;
}
#pcNav .leftSide .lt li:last-child {
  margin-bottom: 0px;
}
#pcNav .leftSide .lt a {
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.5;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-family: "Avenir", "Prompt", "游ゴシック", sans-serif;
  font-style: normal;
  font-weight: 500;
  /* 751- */
}
#pcNav .leftSide .lt a span {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media all and (min-width: 769px) {
  #pcNav .leftSide .lt a span::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.8);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
  }
  #pcNav .leftSide .lt a:hover span::after {
    width: 100%; /*横幅を伸ばす*/
    opacity: 1; /*不透明に*/
  }
}

/*----------------------------------------------------
plan
----------------------------------------------------*/
.planArea {
  padding: 101px 0px 100px;
  position: relative;
}
.planArea .slider_plan .btnArea {
  margin-top: 26px;
  margin-bottom: 28px;
}
.planArea .slider_plan .btnArea > a {
  display: block;
  margin: 0 auto;
  padding: 18px 18px;
  width: 311px;
}
.planArea .slider_plan .btnArea > a:first-child {
  margin-bottom: 12px;
}
.planArea .slider_plan .slick-list {
  padding: 0 5% 0 0 !important;
}
.planArea .slider_plan li {
  margin: 0 0.3%;
}
.planArea .slick-arrow {
  z-index: 20;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.planArea .slick-arrow::before {
  color: #999999;
  font-size: 30px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-left: -3px;
}
.planArea .slick-prev, .planArea .slick-next {
  top: 33%;
  /* 751- */
}
@media all and (min-width: 769px) {
  .planArea .slick-prev, .planArea .slick-next {
    top: 38%;
  }
}
.planArea .slick-prev {
  left: 10px;
}
.planArea .slick-next {
  right: 10px;
}
.planArea .slick-dots {
  text-align: center;
  margin: 28px 0 0 0;
}
.planArea .slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.planArea .slick-dots li button {
  /*ドットボタンのサイズ*/
  width: 10px;
  height: 10px;
  color: transparent;
  outline: none;
  display: block;
  /*ドットボタンの色*/
  background: initial;
}
.planArea .slick-dots li button::before {
  color: #FCF8EE;
  opacity: 1;
}
.planArea .slick-dots li button::after {
  content: "";
  position: absolute;
  color: #FCF8EE;
  opacity: 1;
  border: 1px solid #BDBAB3;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
.planArea .slick-dots li:hover {
  color: #BDBAB3;
}
.planArea .slick-dots li:hover button:before {
  color: #BDBAB3;
}
.planArea .slick-dots li.slick-active button {
  /*ドットボタンの現在地表示の色*/
}
.planArea .slick-dots li.slick-active button::before {
  color: #BDBAB3;
  font-size: 11px;
  opacity: 1;
}

/*----------------------------------------------------
totopへ
----------------------------------------------------*/
#go_top {
  display: block;
  position: fixed;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  bottom: 20px;
  right: 25px;
  z-index: 50;
  text-align: center;
  /* 751- */
}
#go_top img {
  width: 105px;
}
@media all and (min-width: 769px) {
  #go_top {
    display: none;
  }
}

body.scroll #go_top {
  opacity: 1;
}

/*----------------------------------------------------
購入ボタン
----------------------------------------------------*/
#fixedBtn {
  position: fixed;
  z-index: 10;
  opacity: 0;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /* 751- */
}
@media all and (min-width: 769px) {
  #fixedBtn {
    bottom: 45px;
  }
}
#fixedBtn 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- */
}
#fixedBtn a span {
  position: relative;
}
#fixedBtn 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) {
  #fixedBtn a {
    font-size: 18px;
    letter-spacing: 0em;
    line-height: 1.6667;
    padding: 15px 32px 15px 75px;
  }
  #fixedBtn a:hover {
    background-color: #fff;
    color: #67D2DF;
  }
  #fixedBtn 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;
  }
  #fixedBtn 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;
  }
}

body.scroll #fixedBtn {
  opacity: 1;
}
/*# sourceMappingURL=common.css.map */