@charset "UTF-8";
/* CSS Document */
/* 変数定義
========================================================================== */
/* ミックスイン
========================================================================== */
/* 全体共通
========================================================================== */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.5rem;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  letter-spacing: 1px;
}
@media screen and (min-width: 992px) {
  body {
    font-size: 1.8rem;
  }
}

p {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 992px) {
  h2 {
    font-size: 2.8rem;
  }
}

@media screen and (min-width: 768px) {
  h3 {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  h3 {
    font-size: 2.4rem;
  }
}

a {
  text-decoration: none;
}
a:hover {
  cursor: pointer;
  text-decoration: none;
}

/* リスト
------------------------- */
ul, ol, li {
  list-style: none;
  padding: 0;
  margin: 0;
}

li:last-of-type {
  margin-bottom: 0 !important;
}

/* フロート
------------------------- */
.float_left {
  float: left;
}

.float_right {
  float: right;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* 中央寄せ
------------------------- */
.center {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .center_tab {
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .center_pc {
    text-align: center;
  }
}
/* 右寄せ
------------------------- */
.right {
  text-align: right;
}

@media screen and (min-width: 768px) {
  .right_tab {
    text-align: right;
  }
}
@media screen and (min-width: 992px) {
  .rightr_pc {
    text-align: right;
  }
}
/* 左寄せ
------------------------- */
.left {
  text-align: left;
}

@media screen and (min-width: 768px) {
  .left_tab {
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  .leftr_pc {
    text-align: left;
  }
}
/* 強調
------------------------- */
.bold {
  font-weight: bold;
}

.strong {
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .strong {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 992px) {
  .strong {
    font-size: 2.2rem;
  }
}

/* 終了
------------------------- */
.delet {
  text-decoration: line-through;
}

.end {
  color: #e30a0a;
  font-size: 1.2rem;
}

/* フォント
========================================================================== */
.times {
  font-family: "Times New Roman", Times, "serif";
}

/* Googleフォント
------------------------- */
.sans {
  font-family: 'Noto Sans JP', sans-serif;
}

.serif {
  font-family: 'Noto Serif JP', serif;
}

/* カラー
========================================================================== */
.white {
  color: #fff;
}

.black {
  color: #1e1e2a;
}

.red {
  color: #f82a02;
}

.gold {
  color: #e0bd5e;
}

.cream {
  color: #fefab2;
}

.under_green {
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 0) 59%, #2d7d87 60%, #2d7d87 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 0) 59%, #2d7d87 60%, #2d7d87 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 0) 59%, #2d7d87 60%, #2d7d87 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#2d7d87',GradientType=0 );
  /* IE6-9 */
}

/* スマホ・タブレット・PC切り替え
========================================================================== */
.sp_active {
  display: block;
}

.pc_active {
  display: none;
}

@media screen and (min-width: 992px) {
  .sp_active {
    display: none;
  }

  .pc_active {
    display: block;
  }
}
/* 改行
========================================================================== */
.br_sp {
  display: inline-block;
}

.br_tab {
  display: none;
}

.br_sp_tab {
  display: inline-block;
}

.br_tab_pc {
  display: none;
}

.br_pc {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .br_sp {
    display: none;
  }

  .br_tab {
    display: inline-block;
  }

  .br_sp_tab {
    display: inline-block;
  }

  .br_tab_pc {
    display: inline-block;
  }

  .br_pc {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .br_sp {
    display: none;
  }

  .br_tab {
    display: none;
  }

  .br_sp_tab {
    display: none;
  }

  .br_tab_pc {
    display: inline-block;
  }

  .br_pc {
    display: inline-block;
  }
}
/* フォントサイズ
========================================================================== */
.fs08 {
  font-size: 8px !important;
}

.fs09 {
  font-size: 9px !important;
}

.fs10 {
  font-size: 10px !important;
}

.fs11 {
  font-size: 11px !important;
}

.fs12 {
  font-size: 12px !important;
}

.fs13 {
  font-size: 13px !important;
}

.fs14 {
  font-size: 14px !important;
}

.fs15 {
  font-size: 15px !important;
}

.fs16 {
  font-size: 16px !important;
}

.fs17 {
  font-size: 17px !important;
}

.fs18 {
  font-size: 18px !important;
}

.fs19 {
  font-size: 19px !important;
}

.fs20 {
  font-size: 20px !important;
}

.fs21 {
  font-size: 21px !important;
}

.fs22 {
  font-size: 22px !important;
}

.fs23 {
  font-size: 23px !important;
}

.fs24 {
  font-size: 24px !important;
}

.fs25 {
  font-size: 25px !important;
}

.fs26 {
  font-size: 26px !important;
}

.fs27 {
  font-size: 27px !important;
}

.fs28 {
  font-size: 28px !important;
}

.fs29 {
  font-size: 29px !important;
}

.fs30 {
  font-size: 30px !important;
}

.fs31 {
  font-size: 31px !important;
}

.fs32 {
  font-size: 32px !important;
}

.fs33 {
  font-size: 33px !important;
}

.fs34 {
  font-size: 34px !important;
}

.fs35 {
  font-size: 35px !important;
}

.fs36 {
  font-size: 36px !important;
}

.fs37 {
  font-size: 37px !important;
}

.fs38 {
  font-size: 38px !important;
}

.fs39 {
  font-size: 39px !important;
}

.fs40 {
  font-size: 40px !important;
}

.fs41 {
  font-size: 41px !important;
}

.fs42 {
  font-size: 42px !important;
}

.fs43 {
  font-size: 43px !important;
}

.fs44 {
  font-size: 44px !important;
}

.fs45 {
  font-size: 45px !important;
}

.fs46 {
  font-size: 46px !important;
}

.fs47 {
  font-size: 47px !important;
}

.fs48 {
  font-size: 48px !important;
}

.fs49 {
  font-size: 49px !important;
}

.fs50 {
  font-size: 50px !important;
}

@media screen and (min-width: 768px) {
  .fs08_tab {
    font-size: 8px !important;
  }

  .fs09_tab {
    font-size: 9px !important;
  }

  .fs10_tab {
    font-size: 10px !important;
  }

  .fs11_tab {
    font-size: 11px !important;
  }

  .fs12_tab {
    font-size: 12px !important;
  }

  .fs13_tab {
    font-size: 13px !important;
  }

  .fs14_tab {
    font-size: 14px !important;
  }

  .fs15_tab {
    font-size: 15px !important;
  }

  .fs16_tab {
    font-size: 16px !important;
  }

  .fs17_tab {
    font-size: 17px !important;
  }

  .fs18_tab {
    font-size: 18px !important;
  }

  .fs19_tab {
    font-size: 19px !important;
  }

  .fs20_tab {
    font-size: 20px !important;
  }

  .fs21_tab {
    font-size: 21px !important;
  }

  .fs22_tab {
    font-size: 22px !important;
  }

  .fs23_tab {
    font-size: 23px !important;
  }

  .fs24_tab {
    font-size: 24px !important;
  }

  .fs25_tab {
    font-size: 25px !important;
  }

  .fs26_tab {
    font-size: 26px !important;
  }

  .fs27_tab {
    font-size: 27px !important;
  }

  .fs28_tab {
    font-size: 28px !important;
  }

  .fs29_tab {
    font-size: 29px !important;
  }

  .fs30_tab {
    font-size: 30px !important;
  }

  .fs31_tab {
    font-size: 31px !important;
  }

  .fs32_tab {
    font-size: 32px !important;
  }

  .fs33_tab {
    font-size: 33px !important;
  }

  .fs34_tab {
    font-size: 34px !important;
  }

  .fs35_tab {
    font-size: 35px !important;
  }

  .fs36_tab {
    font-size: 36px !important;
  }

  .fs37_tab {
    font-size: 37px !important;
  }

  .fs38_tab {
    font-size: 38px !important;
  }

  .fs39_tab {
    font-size: 39px !important;
  }

  .fs40_tab {
    font-size: 40px !important;
  }

  .fs41_tab {
    font-size: 41px !important;
  }

  .fs42_tab {
    font-size: 42px !important;
  }

  .fs43_tab {
    font-size: 43px !important;
  }

  .fs44_tab {
    font-size: 44px !important;
  }

  .fs45_tab {
    font-size: 45px !important;
  }

  .fs46_tab {
    font-size: 46px !important;
  }

  .fs47_tab {
    font-size: 47px !important;
  }

  .fs48_tab {
    font-size: 48px !important;
  }

  .fs49_tab {
    font-size: 49px !important;
  }

  .fs50_tab {
    font-size: 50px !important;
  }
}
@media screen and (min-width: 992px) {
  .fs08_pc {
    font-size: 8px !important;
  }

  .fs09_pc {
    font-size: 9px !important;
  }

  .fs10_pc {
    font-size: 10px !important;
  }

  .fs11_pc {
    font-size: 11px !important;
  }

  .fs12_pc {
    font-size: 12px !important;
  }

  .fs13_pc {
    font-size: 13px !important;
  }

  .fs14_pc {
    font-size: 14px !important;
  }

  .fs15_pc {
    font-size: 15px !important;
  }

  .fs16_pc {
    font-size: 16px !important;
  }

  .fs17_pc {
    font-size: 17px !important;
  }

  .fs18_pc {
    font-size: 18px !important;
  }

  .fs19_pc {
    font-size: 19px !important;
  }

  .fs20_pc {
    font-size: 20px !important;
  }

  .fs21_pc {
    font-size: 21px !important;
  }

  .fs22_pc {
    font-size: 22px !important;
  }

  .fs23_pc {
    font-size: 23px !important;
  }

  .fs24_pc {
    font-size: 24px !important;
  }

  .fs25_pc {
    font-size: 25px !important;
  }

  .fs26_pc {
    font-size: 26px !important;
  }

  .fs27_pc {
    font-size: 27px !important;
  }

  .fs28_pc {
    font-size: 28px !important;
  }

  .fs29_pc {
    font-size: 29px !important;
  }

  .fs30_pc {
    font-size: 30px !important;
  }

  .fs31_pc {
    font-size: 31px !important;
  }

  .fs32_pc {
    font-size: 32px !important;
  }

  .fs33_pc {
    font-size: 33px !important;
  }

  .fs34_pc {
    font-size: 34px !important;
  }

  .fs35_pc {
    font-size: 35px !important;
  }

  .fs36_pc {
    font-size: 36px !important;
  }

  .fs37_pc {
    font-size: 37px !important;
  }

  .fs38_pc {
    font-size: 38px !important;
  }

  .fs39_pc {
    font-size: 39px !important;
  }

  .fs40_pc {
    font-size: 40px !important;
  }

  .fs41_pc {
    font-size: 41px !important;
  }

  .fs42_pc {
    font-size: 42px !important;
  }

  .fs43_pc {
    font-size: 43px !important;
  }

  .fs44_pc {
    font-size: 44px !important;
  }

  .fs45_pc {
    font-size: 45px !important;
  }

  .fs46_pc {
    font-size: 46px !important;
  }

  .fs47_pc {
    font-size: 47px !important;
  }

  .fs48_pc {
    font-size: 48px !important;
  }

  .fs49_pc {
    font-size: 49px !important;
  }

  .fs50_pc {
    font-size: 50px !important;
  }
}
/* 余白
========================================================================== */
/* padding-top
------------------------- */
.pt0 {
  padding-top: 0px !important;
}

.pt04 {
  padding-top: 4px !important;
}

.pt08 {
  padding-top: 8px !important;
}

.pt12 {
  padding-top: 12px !important;
}

.pt16 {
  padding-top: 16px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt24 {
  padding-top: 24px !important;
}

.pt28 {
  padding-top: 28px !important;
}

.pt32 {
  padding-top: 32px !important;
}

.pt36 {
  padding-top: 36px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt44 {
  padding-top: 44px !important;
}

.pt48 {
  padding-top: 48px !important;
}

.pt52 {
  padding-top: 52px !important;
}

.pt56 {
  padding-top: 56px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt64 {
  padding-top: 64px !important;
}

.pt68 {
  padding-top: 68px !important;
}

.pt72 {
  padding-top: 72px !important;
}

.pt76 {
  padding-top: 76px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt84 {
  padding-top: 84px !important;
}

.pt88 {
  padding-top: 88px !important;
}

.pt92 {
  padding-top: 92px !important;
}

.pt96 {
  padding-top: 96px !important;
}

.pt100 {
  padding-top: 100px !important;
}

@media screen and (min-width: 768px) {
  .pt0_tab {
    padding-top: 0px !important;
  }

  .pt04_tab {
    padding-top: 4px !important;
  }

  .pt08_tab {
    padding-top: 8px !important;
  }

  .pt12_tab {
    padding-top: 12px !important;
  }

  .pt16_tab {
    padding-top: 16px !important;
  }

  .pt20_tab {
    padding-top: 20px !important;
  }

  .pt24_tab {
    padding-top: 24px !important;
  }

  .pt28_tab {
    padding-top: 28px !important;
  }

  .pt32_tab {
    padding-top: 32px !important;
  }

  .pt36_tab {
    padding-top: 36px !important;
  }

  .pt40_tab {
    padding-top: 40px !important;
  }

  .pt44_tab {
    padding-top: 44px !important;
  }

  .pt48_tab {
    padding-top: 48px !important;
  }

  .pt52_tab {
    padding-top: 52px !important;
  }

  .pt56_tab {
    padding-top: 56px !important;
  }

  .pt60_tab {
    padding-top: 60px !important;
  }

  .pt64_tab {
    padding-top: 64px !important;
  }

  .pt68_tab {
    padding-top: 68px !important;
  }

  .pt72_tab {
    padding-top: 72px !important;
  }

  .pt76_tab {
    padding-top: 76px !important;
  }

  .pt80_tab {
    padding-top: 80px !important;
  }

  .pt84_tab {
    padding-top: 84px !important;
  }

  .pt88_tab {
    padding-top: 88px !important;
  }

  .pt92_tab {
    padding-top: 92px !important;
  }

  .pt96_tab {
    padding-top: 96px !important;
  }

  .pt100_tab {
    padding-top: 100px !important;
  }
}
@media screen and (min-width: 992px) {
  .pt0_pc {
    padding-top: 0px !important;
  }

  .pt04_pc {
    padding-top: 4px !important;
  }

  .pt08_pc {
    padding-top: 8px !important;
  }

  .pt12_pc {
    padding-top: 12px !important;
  }

  .pt16_pc {
    padding-top: 16px !important;
  }

  .pt20_pc {
    padding-top: 20px !important;
  }

  .pt24_pc {
    padding-top: 24px !important;
  }

  .pt28_pc {
    padding-top: 28px !important;
  }

  .pt32_pc {
    padding-top: 32px !important;
  }

  .pt36_pc {
    padding-top: 36px !important;
  }

  .pt40_pc {
    padding-top: 40px !important;
  }

  .pt44_pc {
    padding-top: 44px !important;
  }

  .pt48_pc {
    padding-top: 48px !important;
  }

  .pt52_pc {
    padding-top: 52px !important;
  }

  .pt56_pc {
    padding-top: 56px !important;
  }

  .pt60_pc {
    padding-top: 60px !important;
  }

  .pt64_pc {
    padding-top: 64px !important;
  }

  .pt68_pc {
    padding-top: 68px !important;
  }

  .pt72_pc {
    padding-top: 72px !important;
  }

  .pt76_pc {
    padding-top: 76px !important;
  }

  .pt80_pc {
    padding-top: 80px !important;
  }

  .pt84_pc {
    padding-top: 84px !important;
  }

  .pt88_pc {
    padding-top: 88px !important;
  }

  .pt92_pc {
    padding-top: 92px !important;
  }

  .pt96_pc {
    padding-top: 96px !important;
  }

  .pt100_pc {
    padding-top: 100px !important;
  }
}
/* padding-bottom
------------------------- */
.pb0 {
  padding-bottom: 0px !important;
}

.pb04 {
  padding-bottom: 4px !important;
}

.pb08 {
  padding-bottom: 8px !important;
}

.pb12 {
  padding-bottom: 12px !important;
}

.pb16 {
  padding-bottom: 16px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb24 {
  padding-bottom: 24px !important;
}

.pb28 {
  padding-bottom: 28px !important;
}

.pb32 {
  padding-bottom: 32px !important;
}

.pb36 {
  padding-bottom: 36px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb44 {
  padding-bottom: 44px !important;
}

.pb48 {
  padding-bottom: 48px !important;
}

.pb52 {
  padding-bottom: 52px !important;
}

.pb56 {
  padding-bottom: 56px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb64 {
  padding-bottom: 64px !important;
}

.pb68 {
  padding-bottom: 68px !important;
}

.pb72 {
  padding-bottom: 72px !important;
}

.pb76 {
  padding-bottom: 76px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb84 {
  padding-bottom: 84px !important;
}

.pb88 {
  padding-bottom: 88px !important;
}

.pb92 {
  padding-bottom: 92px !important;
}

.pb96 {
  padding-bottom: 96px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

@media screen and (min-width: 768px) {
  .pb0_tab {
    padding-bottom: 0px !important;
  }

  .pb04_tab {
    padding-bottom: 4px !important;
  }

  .pb08_tab {
    padding-bottom: 8px !important;
  }

  .pb12_tab {
    padding-bottom: 12px !important;
  }

  .pb16_tab {
    padding-bottom: 16px !important;
  }

  .pb20_tab {
    padding-bottom: 20px !important;
  }

  .pb24_tab {
    padding-bottom: 24px !important;
  }

  .pb28_tab {
    padding-bottom: 28px !important;
  }

  .pb32_tab {
    padding-bottom: 32px !important;
  }

  .pb36_tab {
    padding-bottom: 36px !important;
  }

  .pb40_tab {
    padding-bottom: 40px !important;
  }

  .pb44_tab {
    padding-bottom: 44px !important;
  }

  .pb48_tab {
    padding-bottom: 48px !important;
  }

  .pb52_tab {
    padding-bottom: 52px !important;
  }

  .pb56_tab {
    padding-bottom: 56px !important;
  }

  .pb60_tab {
    padding-bottom: 60px !important;
  }

  .pb64_tab {
    padding-bottom: 64px !important;
  }

  .pb68_tab {
    padding-bottom: 68px !important;
  }

  .pb72_tab {
    padding-bottom: 72px !important;
  }

  .pb76_tab {
    padding-bottom: 76px !important;
  }

  .pb80_tab {
    padding-bottom: 80px !important;
  }

  .pb84_tab {
    padding-bottom: 84px !important;
  }

  .pb88_tab {
    padding-bottom: 88px !important;
  }

  .pb92_tab {
    padding-bottom: 92px !important;
  }

  .pb96_tab {
    padding-bottom: 96px !important;
  }

  .pb100_tab {
    padding-bottom: 100px !important;
  }
}
@media screen and (min-width: 992px) {
  .pb0_pc {
    padding-bottom: 0px !important;
  }

  .pb04_pc {
    padding-bottom: 4px !important;
  }

  .pb08_pc {
    padding-bottom: 8px !important;
  }

  .pb12_pc {
    padding-bottom: 12px !important;
  }

  .pb16_pc {
    padding-bottom: 16px !important;
  }

  .pb20_pc {
    padding-bottom: 20px !important;
  }

  .pb24_pc {
    padding-bottom: 24px !important;
  }

  .pb28_pc {
    padding-bottom: 28px !important;
  }

  .pb32_pc {
    padding-bottom: 32px !important;
  }

  .pb36_pc {
    padding-bottom: 36px !important;
  }

  .pb40_pc {
    padding-bottom: 40px !important;
  }

  .pb44_pc {
    padding-bottom: 44px !important;
  }

  .pb48_pc {
    padding-bottom: 48px !important;
  }

  .pb52_pc {
    padding-bottom: 52px !important;
  }

  .pb56_pc {
    padding-bottom: 56px !important;
  }

  .pb60_pc {
    padding-bottom: 60px !important;
  }

  .pb64_pc {
    padding-bottom: 64px !important;
  }

  .pb68_pc {
    padding-bottom: 68px !important;
  }

  .pb72_pc {
    padding-bottom: 72px !important;
  }

  .pb76_pc {
    padding-bottom: 76px !important;
  }

  .pb80_pc {
    padding-bottom: 80px !important;
  }

  .pb84_pc {
    padding-bottom: 84px !important;
  }

  .pb88_pc {
    padding-bottom: 88px !important;
  }

  .pb92_pc {
    padding-bottom: 92px !important;
  }

  .pb96_pc {
    padding-bottom: 96px !important;
  }

  .pb100_pc {
    padding-bottom: 100px !important;
  }
}
/* margin-bottom
------------------------- */
/*.mb0  { margin-bottom:  0px!important }
.mb05 { margin-bottom:  5px!important }
.mb10 { margin-bottom: 10px!important }
.mb15 { margin-bottom: 15px!important }
.mb20 { margin-bottom: 20px!important }
.mb25 { margin-bottom: 25px!important }
.mb30 { margin-bottom: 30px!important }
.mb35 { margin-bottom: 35px!important }
.mb40 { margin-bottom: 40px!important }
.mb45 { margin-bottom: 45px!important }
.mb50 { margin-bottom: 50px!important }
.mb55 { margin-bottom: 55px!important }
.mb60 { margin-bottom: 60px!important }
.mb65 { margin-bottom: 65px!important }
.mb70 { margin-bottom: 70px!important }
.mb75 { margin-bottom: 75px!important }
.mb80 { margin-bottom: 80px!important }
@include mq('tab') {
    .mb0_tab  { margin-bottom:  0px!important }
    .mb05_tab { margin-bottom:  5px!important }
    .mb10_tab { margin-bottom: 10px!important }
    .mb15_tab { margin-bottom: 15px!important }
    .mb20_tab { margin-bottom: 20px!important }
    .mb25_tab { margin-bottom: 25px!important }
    .mb30_tab { margin-bottom: 30px!important }
    .mb35_tab { margin-bottom: 35px!important }
    .mb40_tab { margin-bottom: 40px!important }
    .mb45_tab { margin-bottom: 45px!important }
    .mb50_tab { margin-bottom: 50px!important }
    .mb55_tab { margin-bottom: 55px!important }
    .mb60_tab { margin-bottom: 60px!important }
    .mb65_tab { margin-bottom: 65px!important }
    .mb70_tab { margin-bottom: 70px!important }
    .mb75_tab { margin-bottom: 75px!important }
    .mb80_tab { margin-bottom: 80px!important }
}
@include mq('pc') {
    .mb0_pc  { margin-bottom:  0px!important }
    .mb05_pc { margin-bottom:  5px!important }
    .mb10_pc { margin-bottom: 10px!important }
    .mb15_pc { margin-bottom: 15px!important }
    .mb20_pc { margin-bottom: 20px!important }
    .mb25_pc { margin-bottom: 25px!important }
    .mb30_pc { margin-bottom: 30px!important }
    .mb35_pc { margin-bottom: 35px!important }
    .mb40_pc { margin-bottom: 40px!important }
    .mb45_pc { margin-bottom: 45px!important }
    .mb50_pc { margin-bottom: 50px!important }
    .mb55_pc { margin-bottom: 55px!important }
    .mb60_pc { margin-bottom: 60px!important }
    .mb65_pc { margin-bottom: 65px!important }
    .mb70_pc { margin-bottom: 70px!important }
    .mb75_pc { margin-bottom: 75px!important }
    .mb80_pc { margin-bottom: 80px!important }
}*/
.mb0 {
  margin-bottom: 0px !important;
}

.mb04 {
  margin-bottom: 4px !important;
}

.mb08 {
  margin-bottom: 8px !important;
}

.mb12 {
  margin-bottom: 12px !important;
}

.mb16 {
  margin-bottom: 16px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb24 {
  margin-bottom: 24px !important;
}

.mb28 {
  margin-bottom: 28px !important;
}

.mb32 {
  margin-bottom: 32px !important;
}

.mb36 {
  margin-bottom: 36px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb44 {
  margin-bottom: 44px !important;
}

.mb48 {
  margin-bottom: 48px !important;
}

.mb52 {
  margin-bottom: 52px !important;
}

.mb56 {
  margin-bottom: 56px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb64 {
  margin-bottom: 64px !important;
}

.mb68 {
  margin-bottom: 68px !important;
}

.mb72 {
  margin-bottom: 72px !important;
}

.mb76 {
  margin-bottom: 76px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb84 {
  margin-bottom: 84px !important;
}

.mb88 {
  margin-bottom: 88px !important;
}

.mb92 {
  margin-bottom: 92px !important;
}

.mb96 {
  margin-bottom: 96px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

@media screen and (min-width: 768px) {
  .mb0_tab {
    margin-bottom: 0px !important;
  }

  .mb04_tab {
    margin-bottom: 4px !important;
  }

  .mb08_tab {
    margin-bottom: 8px !important;
  }

  .mb12_tab {
    margin-bottom: 12px !important;
  }

  .mb16_tab {
    margin-bottom: 16px !important;
  }

  .mb20_tab {
    margin-bottom: 20px !important;
  }

  .mb24_tab {
    margin-bottom: 24px !important;
  }

  .mb28_tab {
    margin-bottom: 28px !important;
  }

  .mb32_tab {
    margin-bottom: 32px !important;
  }

  .mb36_tab {
    margin-bottom: 36px !important;
  }

  .mb40_tab {
    margin-bottom: 40px !important;
  }

  .mb44_tab {
    margin-bottom: 44px !important;
  }

  .mb48_tab {
    margin-bottom: 48px !important;
  }

  .mb52_tab {
    margin-bottom: 52px !important;
  }

  .mb56_tab {
    margin-bottom: 56px !important;
  }

  .mb60_tab {
    margin-bottom: 60px !important;
  }

  .mb64_tab {
    margin-bottom: 64px !important;
  }

  .mb68_tab {
    margin-bottom: 68px !important;
  }

  .mb72_tab {
    margin-bottom: 72px !important;
  }

  .mb76_tab {
    margin-bottom: 76px !important;
  }

  .mb80_tab {
    margin-bottom: 80px !important;
  }

  .mb84_tab {
    margin-bottom: 84px !important;
  }

  .mb88_tab {
    margin-bottom: 88px !important;
  }

  .mb92_tab {
    margin-bottom: 92px !important;
  }

  .mb96_tab {
    margin-bottom: 96px !important;
  }

  .mb100_tab {
    margin-bottom: 100px !important;
  }
}
@media screen and (min-width: 992px) {
  .mb0_pc {
    margin-bottom: 0px !important;
  }

  .mb04_pc {
    margin-bottom: 4px !important;
  }

  .mb08_pc {
    margin-bottom: 8px !important;
  }

  .mb12_pc {
    margin-bottom: 12px !important;
  }

  .mb16_pc {
    margin-bottom: 16px !important;
  }

  .mb20_pc {
    margin-bottom: 20px !important;
  }

  .mb24_pc {
    margin-bottom: 24px !important;
  }

  .mb28_pc {
    margin-bottom: 28px !important;
  }

  .mb32_pc {
    margin-bottom: 32px !important;
  }

  .mb36_pc {
    margin-bottom: 36px !important;
  }

  .mb40_pc {
    margin-bottom: 40px !important;
  }

  .mb44_pc {
    margin-bottom: 44px !important;
  }

  .mb48_pc {
    margin-bottom: 48px !important;
  }

  .mb52_pc {
    margin-bottom: 52px !important;
  }

  .mb56_pc {
    margin-bottom: 56px !important;
  }

  .mb60_pc {
    margin-bottom: 60px !important;
  }

  .mb64_pc {
    margin-bottom: 64px !important;
  }

  .mb68_pc {
    margin-bottom: 68px !important;
  }

  .mb72_pc {
    margin-bottom: 72px !important;
  }

  .mb76_pc {
    margin-bottom: 76px !important;
  }

  .mb80_pc {
    margin-bottom: 80px !important;
  }

  .mb84_pc {
    margin-bottom: 84px !important;
  }

  .mb88_pc {
    margin-bottom: 88px !important;
  }

  .mb92_pc {
    margin-bottom: 92px !important;
  }

  .mb96_pc {
    margin-bottom: 96px !important;
  }

  .mb100_pc {
    margin-bottom: 100px !important;
  }
}
/* レイアウト
========================================================================== */
@media screen and (min-width: 768px) {
  .narrow01 {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media screen and (min-width: 992px) {
  .narrow01 {
    padding-left: 140px;
    padding-right: 140px;
  }
}

@media screen and (min-width: 768px) {
  .narrow02 {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 992px) {
  .narrow02 {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media screen and (min-width: 1200px) {
  .narrow02 {
    padding-left: 180px;
    padding-right: 180px;
  }
}

@media screen and (min-width: 992px) {
  .narrow03 {
    padding-left: 160px;
    padding-right: 160px;
  }
}

@media screen and (min-width: 768px) {
  .narrow04 {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media screen and (min-width: 992px) {
  .narrow04 {
    padding-left: 160px;
    padding-right: 160px;
  }
}

@media screen and (min-width: 768px) {
  .narrow05 {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media screen and (min-width: 992px) {
  .narrow05 {
    padding-left: 115px;
    padding-right: 115px;
  }
}
@media screen and (min-width: 1200px) {
  .narrow05 {
    padding-left: 205px;
    padding-right: 205px;
  }
}

@media screen and (min-width: 768px) {
  .narrow06 {
    padding-left: 140px;
    padding-right: 140px;
  }
}
@media screen and (min-width: 992px) {
  .narrow06 {
    padding-left: 200px;
    padding-right: 200px;
  }
}

@media screen and (min-width: 768px) {
  .narrow07 {
    padding-left: 140px;
    padding-right: 140px;
  }
}
@media screen and (min-width: 992px) {
  .narrow07 {
    padding-left: 240px;
    padding-right: 240px;
  }
}

@media screen and (min-width: 768px) {
  .narrow08 {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (min-width: 992px) {
  .narrow08 {
    padding-left: 200px;
    padding-right: 200px;
  }
}

/* セクション
========================================================================== */
section {
  width: 100%;
  margin-bottom: 40px;
}
section .container {
  margin: 0 auto;
  padding: 0 24px;
}
section .section_body {
  padding: 0 20px 20px;
}

.section_border_none::before {
  display: none;
}

/* 見出し
========================================================================== */
/* セクション見出し
------------------------- */
.area_ttl {
  margin-bottom: 20px;
}
.area_ttl.add_mb {
  margin-bottom: 16px;
}
.area_ttl .section_sttl {
  color: rgba(110, 114, 137, 0.5);
  font-size: 3rem;
  font-family: "Times New Roman", Times, "serif";
  font-style: italic;
  text-align: left;
}
.area_ttl .section_ttl {
  margin-bottom: 0;
  margin-top: -16px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .area_ttl .section_sttl {
    font-size: 4.2rem;
  }
  .area_ttl .section_ttl {
    text-align: center;
    margin-top: -24px;
  }
}
@media screen and (min-width: 992px) {
  .area_ttl .section_sttl {
    font-size: 6rem;
  }
  .area_ttl .section_ttl {
    margin-top: -40px;
  }
}

/* 特典見出し
------------------------- */
.special_favor_ttl {
  margin-bottom: 16px;
}
.special_favor_ttl h2 {
  text-align: center;
}
.special_favor_ttl h2 span {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  color: #f5db91;
  background: #846b32;
  /* Old browsers */
  background: -moz-linear-gradient(top, #846b32 0%, #a67f46 18%, #a68244 34%, #f5db91 42%, #fdf5aa 46%, #f1eda6 51%, #ffffed 57%, #f1eda6 63%, #fdf5aa 68%, #f5db91 73%, #f5db91 73%, #a68244 78%, #a67f46 91%, #846b32 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #846b32 0%, #a67f46 18%, #a68244 34%, #f5db91 42%, #fdf5aa 46%, #f1eda6 51%, #ffffed 57%, #f1eda6 63%, #fdf5aa 68%, #f5db91 73%, #f5db91 73%, #a68244 78%, #a67f46 91%, #846b32 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #846b32 0%, #a67f46 18%, #a68244 34%, #f5db91 42%, #fdf5aa 46%, #f1eda6 51%, #ffffed 57%, #f1eda6 63%, #fdf5aa 68%, #f5db91 73%, #f5db91 73%, #a68244 78%, #a67f46 91%, #846b32 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#846b32', endColorstr='#846b32',GradientType=0 );
  /* IE6-9 */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}
@media all and (-ms-high-contrast: none) {
  .special_favor_ttl h2 span {
    /* IE10,11用 */
    background: none;
    color: #f5db91;
  }
}
@media screen and (min-width: 768px) {
  .special_favor_ttl {
    margin-bottom: 24px;
  }
  .special_favor_ttl h2 span {
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 992px) {
  .special_favor_ttl h2 span {
    font-size: 4.2rem;
  }
}

/* 本文
========================================================================== */
p {
  margin-bottom: 16px;
}
p:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  p {
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 992px) {
  p {
    margin-bottom: 32px;
  }
}

/* リスト
========================================================================== */
li {
  margin-bottom: 12px;
}
li:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  li {
    margin-bottom: 24px;
  }
}

/* ゴールドリスト
------------------------- */
.list_gold {
  border-left: 5px solid #ebaf05;
  border-right: 5px solid #ebaf05;
  position: relative;
  padding-top: 12px;
  padding-bottom: 12px;
}
.list_gold::before, .list_gold::after {
  display: inline-block;
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background: #e5ae12;
  /* Old browsers */
  background: -moz-linear-gradient(left, #e5ae12 0%, #efde97 21%, #d7bb7e 38%, #8f5b3c 50%, #d7bb7e 62%, #efde97 79%, #e5ae12 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #e5ae12 0%, #efde97 21%, #d7bb7e 38%, #8f5b3c 50%, #d7bb7e 62%, #efde97 79%, #e5ae12 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #e5ae12 0%, #efde97 21%, #d7bb7e 38%, #8f5b3c 50%, #d7bb7e 62%, #efde97 79%, #e5ae12 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5ae12', endColorstr='#e5ae12',GradientType=1 );
  /* IE6-9 */
}
.list_gold::before {
  top: 0;
}
.list_gold::after {
  bottom: 0;
}
.list_gold .inner {
  margin-left: 5px;
  margin-right: 5px;
  border-left: 2px solid #ebaf05;
  border-right: 2px solid #ebaf05;
  position: relative;
}
.list_gold .inner::before, .list_gold .inner::after {
  display: inline-block;
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #e5ae12;
  /* Old browsers */
  background: -moz-linear-gradient(left, #e5ae12 0%, #efde97 21%, #d7bb7e 38%, #8f5b3c 50%, #d7bb7e 62%, #efde97 79%, #e5ae12 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left, #e5ae12 0%, #efde97 21%, #d7bb7e 38%, #8f5b3c 50%, #d7bb7e 62%, #efde97 79%, #e5ae12 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #e5ae12 0%, #efde97 21%, #d7bb7e 38%, #8f5b3c 50%, #d7bb7e 62%, #efde97 79%, #e5ae12 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e5ae12', endColorstr='#e5ae12',GradientType=1 );
  /* IE6-9 */
}
.list_gold .inner::before {
  top: 0;
}
.list_gold .inner::after {
  bottom: 0;
}
.list_gold ul {
  padding: 20px;
}
.list_gold ul li {
  margin-left: 36px;
  position: relative;
  margin-bottom: 12px;
}
.list_gold ul li::before {
  display: inline-block;
  content: "";
  position: absolute;
  width: 26px;
  height: 22px;
  background: url("../img/icon_check_list02.png") no-repeat center;
  background-size: cover;
  left: -36px;
}
@media screen and (min-width: 768px) {
  .list_gold ul {
    padding: 40px 30px;
  }
  .list_gold ul li {
    margin-left: 48px;
    margin-bottom: 24px;
  }
  .list_gold ul li::before {
    width: 40px;
    height: 33px;
    left: -48px;
    top: -8px;
  }
}
@media screen and (min-width: 768px) and (min-width: 992px) {
  .list_gold ul li {
    margin-bottom: 36px;
  }
}

/* 画像
========================================================================== */
img {
  width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
}

.img_auto {
  width: auto;
}

/* 飾り
------------------------- */
.icon_decoration {
  width: 120px;
  height: 28px;
}
@media screen and (min-width: 768px) {
  .icon_decoration {
    width: 157px;
    height: 36px;
  }
}
@media screen and (min-width: 992px) {
  .icon_decoration {
    width: 205px;
    height: 47px;
  }
}

/* ボタン
========================================================================== */
/* 矢印
------------------------- */
@media screen and (min-width: 768px) {
  .arrow img {
    width: 80%;
  }
}
@media screen and (min-width: 992px) {
  .arrow img {
    width: 70%;
  }
}

/* スクロールボタン
------------------------- */
.scroll {
  text-align: center;
}
.scroll .btn a {
  padding: 14px 32px 16px;
  border-radius: 5px;
  display: block;
  width: 100%;
  font-size: 1.6rem;
  border: none;
  font-weight: bold;
  letter-spacing: 0.8px;
  color: #fff;
  text-shadow: 0 3px 3px rgba(121, 60, 15, 0.85);
  font-family: 'Noto Serif JP', serif;
  box-shadow: 0 4px 5px rgba(4, 14, 28, 0.65);
  background: #ffbd04;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffbd04 0%, #fe5e1a 85%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffbd04 0%, #fe5e1a 85%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffbd04 0%, #fe5e1a 85%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffbd04', endColorstr='#fe5e1a',GradientType=0 );
  /* IE6-9 */
}
.scroll .btn a:hover {
  background: #ffc938;
  /* Old browsers */
  background: -moz-linear-gradient(top, #ffc938 0%, #fc7f4e 85%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #ffc938 0%, #fc7f4e 85%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #ffc938 0%, #fc7f4e 85%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffc938', endColorstr='#fc7f4e',GradientType=0 );
  /* IE6-9 */
}
@media screen and (min-width: 768px) {
  .scroll .btn a {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .scroll .btn a {
    font-size: 2.4rem;
  }
}

/* 特定商取引法に基づく表記
========================================================================== */
.law {
  color: #fff;
}
.law .bg_blue {
  background: url("../img/img_bg_blue.jpg.html") no-repeat center;
  background-size: cover;
}
.law .area_ttl {
  margin-bottom: 40px;
}
.law .section_body {
  padding: 0 20px 40px;
}
.law dl {
  margin-bottom: 24px;
}
.law dl:last-of-type {
  margin-bottom: 0;
}
.law dl dt {
  font-size: 1.6rem;
}
.law dl dd:last-of-type {
  margin-bottom: 0;
}
.law dl a {
  color: #fff;
  text-decoration: underline;
}
.law dl a:hover {
  text-decoration: none;
}
.law footer {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .law dl {
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    margin-bottom: 0;
  }
  .law dt,
  .law dd {
    padding: 20px 20px 0 20px;
    border-top: 1px solid #ccc;
  }
  .law dt {
    width: 40%;
    float: left;
  }
  .law dd {
    margin-left: 40%;
    padding-bottom: 20px;
    border-left: 1px solid #ccc;
  }
  .law dd:after {
    content: '';
    display: block;
    clear: both;
  }
}
