/* YAMAHA BIKE RENTAL : XSR 10th Anniversary LP
   Mobile First / min-width breakpoints
   adventure.cssの必要部分を統合済み
================================================================ */

/*======================================================================*
 *  [ 表示切替 ユーティリティ ]
 *======================================================================*/
.sp_only { display: block; }
.pc_only { display: none; }
@media (min-width: 768px) {
  .sp_only { display: none; }
  .pc_only { display: block; }
}

/*======================================================================*
 *  [ フォント設定 ]
 *======================================================================*/

body {
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Meiryo, sans-serif;
}

/* 車種名（XSR125等）: Roboto Condensed Italic */
.models_choose li > dl > dt {
  font-family: 'Roboto Condensed', sans-serif;
}


/*======================================================================*
 *  [ 共通タイトル ]
 *======================================================================*/

.ulineTitle {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 10px;
  color: #183073;
  font-size: 3rem;
  font-weight: 900 !important;
  line-height: 1.2;
  text-align: center;
}
.ulineTitle::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100px;
  height: 5px;
  background: #e7ff00;
  transform: translateX(-50%);
  content: "";
}
.ulineTitle + p {
  margin-bottom: 30px;
  font-size: 1.6rem;
  text-align: center;
}
.ulineTitle + p span {
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .ulineTitle {
    margin-bottom: 20px;
    padding-bottom: 15px;
    font-size: 5rem;
    font-weight: 900 !important;
  }
  .ulineTitle::after {
    width: 130px;
  }
  .ulineTitle + p {
    margin-bottom: 40px;
    font-size: 2rem;
  }
  .ulineTitle + p span {
    font-size: 1.6rem;
  }
}


/*======================================================================*
 *  [ 注釈 ]
 *======================================================================*/

.noteText {
  padding-left: 1em;
  font-size: 1.2rem;
  text-indent: -1em;
}
.ulineTitle + p + .noteText {
  margin: -30px 0 30px;
  text-align: center;
}

@media (min-width: 768px) {
  .noteText {
    font-size: 1.4rem;
  }
  .ulineTitle + p + .noteText {
    margin: -40px 0 40px;
  }
}


/*======================================================================*
 *  [ wrap 共通余白 ]
 *======================================================================*/

.wrap {
  padding: 40px 0;
}
.wrap .inner {
  margin: 30px auto 0;
}
.wrap .inner.line {
  padding-top: 25px;
  border-top: 1px solid #e6e6e6;
}

@media (min-width: 768px) {
  .wrap {
    padding: 60px 0;
  }
  .wrap .inner {
    margin: 60px auto 0;
  }
  .wrap .inner.line {
    padding-top: 40px;
    border-top: 2px solid #e6e6e6;
  }
}


/*======================================================================*
 *  [ ボタン共通 ]
 *======================================================================*/

.reserveBox {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
.reserveBox a {
  margin: 0;
}
.reserveBox a + a {
  margin: 15px 0 0;
}
.reserveBox small {
  display: block;
  width: 100%;
  padding-top: 10px;
  font-size: 12px;
  text-align: center;
}
.reserveBox small .sp_only {
  display: inline;
}
.reserveBox h2 {
  font-size: 2rem;
  line-height: 1.2;
}
.reserveBox p {
  font-size: 1.6rem;
}
.reserveBox p b {
  font-size: 2.4rem;
  line-height: 1.2;
}
.reserveBox .btnbox {
  position: relative;
  margin-top: 60px;
}
.reserveBox .btnbox::before {
  position: absolute;
  top: -45px;
  left: 50%;
  width: 60px;
  height: 30px;
  border: 30px solid transparent;
  border-top: 30px solid #e7ff00;
  border-bottom: none;
  transform: translateX(-50%);
  content: "";
}
.reserveBox .fillBtn {
  font-size: 2.4rem;
  max-width: 360px;
  width: 100%;
  border-radius: 10px;
}
.reserveBox .fillBtn b {
  font-size: 1.8rem;
}

@media (min-width: 768px) {
  .reserveBox a {
    margin: 0 20px;
  }
  .reserveBox a + a {
    margin: 0;
  }
  .reserveBox small {
    font-size: 13px;
  }
  .reserveBox small .sp_only {
    display: none;
  }
  .reserveBox h2 {
    font-size: 2.8rem;
  }
  .reserveBox p {
    font-size: 2rem;
  }
  .reserveBox p b {
    font-size: 4rem;
  }
  .reserveBox .fillBtn {
    max-width: calc(50% - 40px);
    width: 360px;
    font-size: 2.8rem;
  }
  .reserveBox .fillBtn b {
    margin-right: 10px;
    padding: 0.15em 10px;
    background: #fff;
    color: #53aa3e;
    font-size: 2rem;
    line-height: 1;
    vertical-align: bottom;
  }
}

/* fillBtn サイズ変形 */
.fillBtn.small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 1.5rem;
  border-radius: 6px;
}
.fillBtn.large {
  padding: 25px 10px;
}

/* 矢印（arrow_normal_wh.svgが使えない環境用） */
.models_choose .fillBtn.right {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: none;
  padding: 14px 48px 14px 24px;
  border-radius: 8px;
  background: #53aa3e;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}
.models_choose .fillBtn.right:hover,
.models_choose .fillBtn.right:active {
  background: #72cd33;
  text-decoration: none;
}
.models_choose .fillBtn.right span {
  width: auto;
}
.models_choose .fillBtn.right::before {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 10px;
  height: 16px;
  margin-top: -8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 32'%3E%3Cpath fill='%23fff' fill-rule='evenodd' clip-rule='evenodd' d='M2.743,32L0,29.451l14.509-13.442L0,2.546L2.744,0L20,16.01L2.743,32z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

@media (min-width: 768px) {
  .fillBtn.small {
    padding: 14px 24px;
    font-size: 1.8rem;
  }
  .fillBtn.large {
    padding: 40px 25px;
  }
}

/* SP予約ボタン */
#reserve.sp_only {
  display: none;
}
@media (max-width: 767px) {
  #reserve.sp_only {
    display: block;
  }
}


/*======================================================================*
 *  [ MV ]
 *  背景画像: img/img_slide_01.jpg〜img_slide_03.jpg
 *======================================================================*/

#main {
  position: relative;
  height: 400px;
  padding: 0 10px;
  overflow: hidden;
}

/* スライダー（背景画像切り替え） */
#main .main_slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  font-size: 0;
  line-height: 0;
}
#main .main_slide .slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#main .main_slide .slider .slick-list {
  width: 100%;
  height: 100%;
}
#main .main_slide .slider .slick-track,
#main .main_slide .slider .slick-slide {
  height: 100%;
}
#main .main_slide .slider img {
  display: none;
}

/* 各スライドの背景画像 ↓ img差し替え時はここを変更 */
/* height:100% がないとslick内でliが潰れて背景が表示されない */
#main .main_slide .slide_01,
#main .main_slide .slide_02,
#main .main_slide .slide_03,
#main .main_slide .slide_04,
#main .main_slide .slide_05 {
  height: 100%;
}
#main .main_slide .slide_01 { background: url(../img/img_slide_01.jpg) center center / cover no-repeat; }
#main .main_slide .slide_02 { background: url(../img/img_slide_02.jpg) center center / cover no-repeat; }
#main .main_slide .slide_03 { background: url(../img/img_slide_03.jpg) center center / cover no-repeat; }
#main .main_slide .slide_04 { background: url(../img/img_slide_04.jpg) center center / cover no-repeat; }
#main .main_slide .slide_05 { background: url(../img/img_slide_05.jpg) center center / cover no-repeat; }

/* テキスト（スライドに連動せず固定） */
#main .main_title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
#main .main_title .inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* 祝! 10th ANNIVERSARY ラベル */
#main .main_title p.mv_label {
  margin: 0 0 8px;
  text-align: center;
  text-shadow: none;
}
#main .main_title p.mv_label span {
  display: inline-block;
  padding: 4px 14px;
  background: #fe0404;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-shadow: none;
}

/* ttl_anniversary.png → テキスト */
#main .main_title .mv_catch {
  margin: 0 0 10px;
  font-size: 2.6rem !important;
  font-weight: 900 !important;
  color: #fff !important;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 0 8px rgba(0,0,0,.8);
  display: block !important;
}

/* ttl_main.png → テキスト */
#main .main_title .mv_sub {
  margin: 0;
  font-size: 1.4rem !important;
  font-weight: bold !important;
  color: #fff !important;
  line-height: 1.7;
  text-align: center;
  text-shadow: 0 0 6px rgba(0,0,0,.8);
  display: block !important;
}
#main .main_title .mv_note {
  margin: 6px 0 0;
  font-size: 1.2rem;
  font-weight: normal;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 6px rgba(0,0,0,.8);
  display: block;
}

/* SP時は予約ボタン非表示 */
#main .reserveBox {
  display: none !important;
}
#main .sp_only {
  display: inline;
}

@media (min-width: 768px) {
  #main {
    height: 600px;
    padding: 0 20px;
  }
  #main .main_title {
    padding: 0 20px;
  }
  #main .main_title p.mv_label span {
    font-size: 3.6rem;
    padding: 6px 20px;
  }
  #main .main_title .mv_catch {
    font-size: 5.5rem !important;
    margin-bottom: 15px;
  }
  #main .main_title .mv_sub {
    font-size: 1.8rem !important;
  }
  #main .reserveBox {
    display: flex !important;
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    z-index: 2;
    box-sizing: border-box;
  }
  #main .reserveBox small {
    color: #fff;
  }
  #main .sp_only {
    display: none;
  }
}

@media (min-width: 1024px) {
  #main {
    height: 760px;
  }
}


/*======================================================================*
 *  [ XSRモデル紹介 ]
 *======================================================================*/

#models {
  padding: 25px 10px 35px;
}
#models .inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* セクションリード文 */
#models > .inner > .ulineTitle + p {
  font-size: 1.5rem;
  text-align: center;
}

/* 交互レイアウトリスト */
.models_choose {
  border-top: 1px solid #e6e6e6;
  margin-top: 30px;
  padding-top: 25px;
  list-style: none;
}
.models_choose li {
  display: block;
}
.models_choose li + li {
  margin-top: 30px;
}

/* モデル画像エリア ↓ img差し替え時はここを変更 */
.models_choose .model_img {
  width: 100%;
  min-height: 220px;
  margin: 0;
  font-size: 0;
  line-height: 0;
}
.models_choose .model_img.xsr125   { background: url(../img/img_xsr125.jpg)   center center / cover no-repeat; }
.models_choose .model_img.xsr700   { background: url(../img/img_xsr700.jpg)   center center / cover no-repeat; }
.models_choose .model_img.xsr900   { background: url(../img/img_xsr900.jpg)   center center / cover no-repeat; }
.models_choose .model_img.xsr900gp { background: url(../img/img_xsr900gp.jpg) center center / cover no-repeat; }

/* テキストエリア */
.models_choose li > dl {
  margin-top: 15px;
  width: 100%;
}
.models_choose li > dl > dt {
  font-size: 3.8rem;
  font-weight: 900;
  font-style: italic;
  color: #183073;
  line-height: 1.2;
  text-align: center;
}
.models_choose li > dl > dd {
  margin-top: 10px;
}
.models_choose li > dl > dd dt {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.4;
}
.models_choose li > dl > dd dd {
  font-size: 1.6rem;
  line-height: 1.7;
  margin-top: 5px;
}

/* 各モデル予約ボタン */
.models_choose .btnWrap {
  margin-top: 15px;
  text-align: center;
}

/* reserveBox */
#models .reserveBox {
  margin-top: 30px;
}

@media (min-width: 768px) {
  #models {
    padding: 50px 20px 70px;
  }
  #models > .inner > .ulineTitle + p {
    font-size: 2rem;
  }
  .models_choose li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .models_choose li + li {
    margin-top: 20px;
  }
  .models_choose .model_img {
    width: 50%;
    min-height: 380px;
  }
  .models_choose li > dl {
    width: calc(50% - 3%);
    margin-top: 0;
  }
  .models_choose li > dl > dt {
    font-size: 6rem;
    font-weight: 900;
    font-style: italic;
    text-align: inherit;
  }
  .models_choose li > dl > dd {
    margin-top: 30px;
  }
  .models_choose li > dl > dd dt {
    font-size: 2rem;
    font-weight: 800;
  }
  .models_choose li > dl > dd dd {
    font-size: 1.6rem;
    font-weight: normal;
  }
  .models_choose .btnWrap {
    margin-top: 25px;
    text-align: inherit;
  }
  /* 偶数：画像右・テキスト左 */
  .models_choose li:nth-of-type(even) .model_img { order: 2; }
  .models_choose li:nth-of-type(even) > dl       { order: 1; text-align: right; }
  .models_choose li:nth-of-type(odd) > dl        { text-align: left; }
}

@media (min-width: 1024px) {
  .models_choose .model_img {
    min-height: 440px;
  }
}


/*======================================================================*
 *  [ ユーザーの声 ]
 *======================================================================*/

#voice {
  background: url(../img/bg_voice.png);
  background-size: 4px 4px;
}
#voice .inner {
  margin: 30px auto;
  padding: 0 20px;
}

.voiceBox ul {
  list-style: none;
  max-width: 1000px;
  margin: 0 auto;
}
.voiceBox li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.voiceBox li + li {
  margin-top: 30px;
}
.voiceBox li:nth-of-type(even) {
  flex-direction: row-reverse;
}
.voiceBox li img {
  width: calc(30% - 20px);
}
.voiceBox li div {
  position: relative;
  width: 70%;
  margin: 0;
  padding: 1px 20px;
  border-radius: 10px;
  background: #fff;
}
.voiceBox li div::before {
  position: absolute;
  top: 15px;
  border: 10px solid transparent;
  content: "";
}
.voiceBox li:nth-of-type(odd) div::before {
  border-right: 30px solid #fff;
  border-left: none;
  left: -30px;
}
.voiceBox li:nth-of-type(even) div::before {
  border-right: none;
  border-left: 30px solid #fff;
  right: -30px;
}
.voiceBox li .person {
  color: #666;
  font-size: 1.2rem;
}
.voiceBox li > div > p:nth-of-type(1) {
  font-weight: bold;
}

@media (min-width: 768px) {
  #voice .inner {
    margin: 60px auto;
    padding: 0;
  }
  .voiceBox li + li {
    margin-top: 40px;
  }
  .voiceBox li img {
    width: calc(30% - 80px);
  }
  .voiceBox li div {
    width: 70%;
    margin: 0 40px;
    padding: 10px 40px;
  }
  .voiceBox li div::before {
    top: 25px;
    border-width: 20px;
  }
  .voiceBox li:nth-of-type(odd) div::before {
    border-right-width: 60px;
    left: -60px;
  }
  .voiceBox li:nth-of-type(even) div::before {
    border-left-width: 60px;
    right: -60px;
  }
  .voiceBox li .person {
    font-size: 1.4rem;
  }
}


/*======================================================================*
 *  [ 利用までの流れ ]
 *======================================================================*/

.stepBox ol {
  display: block;
  list-style: none;
  margin: 0 auto;
  text-align: left;
}
.stepBox li {
  position: relative;
  width: 100%;
  padding: 30px 20px;
  background: #ddf2fb;
}
.stepBox li + li {
  margin-top: 40px;
}
.stepBox li + li::before {
  position: absolute;
  top: -20px;
  left: 50%;
  border: 20px solid transparent;
  border-top-color: #e7ff00;
  border-bottom: none;
  transform: translateX(-50%) translateY(-50%);
  content: "";
}
.stepBox li > * {
  display: block;
}
.stepBox li img {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 80px;
  margin: 0;
  transform: translateY(-50%);
}
.stepBox li span {
  display: block;
  margin-bottom: 10px;
  color: #183073;
  font-weight: bold;
  line-height: 1;
}
.stepBox li b {
  font-size: 1.6rem;
  line-height: 1.2;
}
.stepBox .noteText {
  margin: 0;
  font-size: 1.2rem;
}
.stepBox .noteText a {
  text-indent: 0;
  text-decoration: underline;
}
.stepBox .noteText a:hover,
.stepBox .noteText a:active {
  text-decoration: none;
}

@media (min-width: 768px) {
  .stepBox ol {
    display: flex;
    justify-content: space-between;
    max-width: 1060px;
    text-align: center;
  }
  .stepBox li {
    width: 20%;
    padding: 30px 10px 20px;
  }
  .stepBox li + li {
    margin-top: 0;
  }
  .stepBox li + li::before {
    top: 50%;
    left: -16%;
    border: 20px solid transparent;
    border-right: none;
    border-left: 20px solid #e7ff00;
    transform: translateX(-50%) translateY(-50%);
  }
  .stepBox li img {
    position: static;
    max-width: 125px;
    width: auto;
    margin: 5px auto 15px;
    transform: none;
  }
  .stepBox li b {
    font-size: 2rem;
  }
}


/*======================================================================*
 *  [ 安心ポイント ]
 *======================================================================*/

.reliefBox .sub {
  margin-bottom: 30px;
  color: #133586;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
.reliefBox h3 {
  margin-bottom: 30px;
  text-align: center;
  font-weight: normal;
  line-height: 1.4;
}
.reliefBox h3 span {
  display: block;
}
.reliefBox h3 b {
  color: #4ca434;
}
.reliefBox h3 .small {
  margin-bottom: 10px;
  font-size: 1.8rem;
}
.reliefBox h3 .small b {
  display: block;
}
.reliefBox h3 .large {
  font-size: 2rem;
}
.reliefBox h3 .large b {
  margin: 0 -0.4em;
  font-size: 2.8rem;
}
.reliefBox section {
  max-width: 1050px;
  margin: 0 auto;
  padding: 20px;
  background: #edf6ea;
}
.reliefBox section + section {
  margin-top: 10px;
}
.reliefBox section h4 {
  margin-bottom: 10px;
  padding-left: 0;
  color: #4ca434;
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: left;
}
.reliefBox section h4 b {
  display: inline-block !important;
  width: auto !important;
  margin: 0 8px 0 0 !important;
  padding: 3px 12px !important;
  border-radius: 0.8em;
  background: #4ca434;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  vertical-align: middle;
}
.reliefBox section p {
  margin: 0;
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .reliefBox .sub {
    font-size: 3rem;
  }
  .reliefBox .sub::before { content: "　"; }
  .reliefBox .sub::after  { content: "　"; }
  .reliefBox h3 {
    margin-bottom: 50px;
  }
  .reliefBox h3 .small {
    font-size: 2.2rem;
  }
  .reliefBox h3 .large {
    font-size: 3.2rem;
  }
  .reliefBox h3 .large b {
    font-size: 5rem;
    margin: 0;
  }
  .reliefBox section {
    padding: 25px;
  }
  .reliefBox section + section {
    margin-top: 30px;
  }
  .reliefBox section h4 {
    margin-bottom: 20px;
    padding-left: 0;
    font-size: 2.2rem;
    text-align: left;
  }
  .reliefBox section h4 b {
    display: inline-block !important;
    width: auto !important;
    margin: 0 10px 0 0 !important;
    padding: 4px 14px !important;
    font-size: 1.6rem;
  }
  .reliefBox section p {
    margin: 0;
    font-size: 1.8rem;
  }
}


/*======================================================================*
 *  [ 安心ポイント アイコン ]
 *======================================================================*/

div.point_icon1,
div.point_icon2 {
  margin: 0 auto;
  max-width: 375px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.point_icon1 dl,
.point_icon2 dl {
  display: flex;
  align-items: center;
  width: 100%;
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.point_icon1 dt,
.point_icon2 dt {
  width: 90px;
  margin-right: 20px;
  text-align: center;
}
div.point_icon1 dd,
div.point_icon2 dd {
  font-weight: bold;
  font-size: 16px;
  text-align: left;
}
div.point_icon1 dd span,
div.point_icon2 dd span {
  font-size: 12px;
}
.point1 { padding-top: 20px; }
.point2 { padding-top: 20px; }
.point3 { padding-top: 20px; }
.point4 { padding-top: 20px; }
.point5 { padding-top: 20px; }
.point1 img { width: 40px; }
.point2 img,
.point3 img { width: 90px; }
.point4 img { width: 82.5px; }
.point5 img { width: 68px; }
.point1 dd { padding-top: 15px; }
.point2 dd,
.point3 dd { padding-top: 20px; }
.point4 dd { padding-top: 22px; }
.point5 dd { padding-top: 15px; }

@media (min-width: 768px) {
  div.point_icon1,
  div.point_icon2 {
    max-width: none;
  }
  .point_icon1 dl,
  .point_icon2 dl {
    display: block;
    padding-left: 30px !important;
    padding-right: 30px !important;
    width: auto;
  }
  .point_icon1 dt,
  .point_icon2 dt {
    width: auto;
    margin-right: 0;
    text-align: center;
  }
  div.point_icon1 dd,
  div.point_icon2 dd {
    font-size: 24px;
    text-align: center;
  }
  div.point_icon1 dd span,
  div.point_icon2 dd span {
    font-size: 16px;
  }
  .point1 { padding-top: 36px; padding-left: 30px; padding-right: 30px; }
  .point2,
  .point3 { padding-top: 43px; padding-left: 35px; padding-right: 35px; }
  .point4 { padding-top: 60px; padding-left: 30px; padding-right: 75px; }
  .point5 { padding-top: 30px; padding-left: 30px; padding-right: 30px; }
  .point1 img,
  .point2 img,
  .point3 img,
  .point4 img,
  .point5 img { width: auto; }
}


/*======================================================================*
 *  [ Message ]
 *======================================================================*/

#message {
  background: url(../img/bg_message.jpg) center center / cover no-repeat;
  margin-top: 40px;
}
.messageBox {
  position: relative;
  padding: 30px;
  background: rgba(255, 255, 255, .8);
  text-align: center;
  box-shadow: 0 0 15px rgba(0, 0, 0, .6);
}
.messageBox.inner {
  max-width: 800px;
  margin-bottom: 30px;
}
.messageBox::before {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  left: 10px;
  border: 1px solid #000;
  content: "";
}
.messageBox h2 {
  margin-bottom: 15px;
  font-size: 2.4rem;
}
.messageBox p:nth-last-of-type(1) {
  margin: 20px 0 0;
}
.messageBox p img {
  width: 100px;
}

@media (min-width: 768px) {
  #message {
    margin-top: 60px;
  }
  .messageBox {
    padding: 50px 20px;
  }
  .messageBox.inner {
    margin-bottom: 60px;
  }
  .messageBox h2 {
    margin-bottom: 30px;
    font-size: 3rem;
  }
  .messageBox p:nth-last-of-type(1) {
    margin-top: 30px;
  }
  .messageBox p img {
    width: auto;
  }
}


/*======================================================================*
 *  [ バナー ]
 *======================================================================*/

.bannerBox {
  font-size: 0;
  line-height: 0;
  text-align: center;
  margin: 25px 0;
  padding: 0 10px;
}
.bannerBox a {
  display: inline-block;
  vertical-align: bottom;
}
.bannerBox a img {
  max-width: 100%;
}

@media (min-width: 768px) {
  .bannerBox {
    margin: 60px 0;
    padding: 0 20px;
  }
  .bannerBox a {
    transition: opacity ease .3s;
  }
  .bannerBox a:hover {
    opacity: 0.7;
  }
}


/*======================================================================*
 *  [ フロートバナー ]
 *======================================================================*/

.floatBnr {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translate3d(0, 0, 0);
  z-index: 100;
}
.floatBnr a {
  background-color: #fff;
  display: block;
  font-size: 0;
  line-height: 0;
}
.floatBnr .pc_only { display: none; }
.floatBnr .sp_only { display: inline; }

@media (min-width: 768px) {
  .floatBnr {
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    width: auto;
    transform: translate3d(0, -50%, 0);
  }
  .floatBnr .pc_only { display: inline; }
  .floatBnr .sp_only { display: none; }
}


/*======================================================================*
 *  [ フロートボタン（fixedBtn） ]
 *======================================================================*/

.fixedBtn {
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 0 10px 10px;
  text-align: center;
  transform: translateY(100%);
  transition: all ease .2s;
  z-index: 100;
}
.fixedBtn.show {
  transform: translateY(0);
}
.fixedBtn .fillBtn {
  display: inline-block;
  width: auto;
  padding: 10px 40px 10px 20px;
  border-radius: 7px;
  font-size: 1.9rem;
}
.fixedBtn .fillBtn::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 10px;
  height: 16px;
  background: url(../../../jp/shared/img/arrow_normal_wh.svg) center center no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  content: "";
}
.fixedBtn .fillBtn > span {
  position: relative;
  padding-left: 100px;
}
.fixedBtn .fillBtn svg,
.fixedBtn .fillBtn b {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.fixedBtn .fillBtn svg {
  left: 0;
  width: 40px;
}
.fixedBtn .fillBtn b {
  left: 50px;
  width: 40px;
  padding: 3px 0 2px;
  background: #fff;
  color: #53aa3e;
  font-size: 1.4rem;
  line-height: 1;
}
.fixedBtn .fillBtn span span {
  display: block;
}

@media (min-width: 768px) {
  .fixedBtn {
    right: 0;
    bottom: 0;
    left: auto;
    padding-bottom: 10px;
    text-align: left;
    transform: translateX(100%);
  }
  .fixedBtn.show {
    transform: translateY(0);
  }
  .fixedBtn .fillBtn {
    padding: 15px 20px;
    border-radius: 10px 0 0 10px;
    font-size: 1.7rem;
    line-height: 1.2;
  }
  .fixedBtn .fillBtn b {
    display: block;
    width: 3.2em;
    margin: 0 auto 10px;
    padding: 5px 0 3px;
    font-size: 2rem;
    left: auto;
    position: static;
    transform: none;
  }
}


/*======================================================================*
 *  [ スタイルスライダー ]
 *======================================================================*/

#styleSlider {
  background: #f5f5f5;
}
#styleSlider .inner {
  max-width: 1200px;
  margin: 0 auto;
}

.style_slider_wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.style_slider_item {
  width: 100%;
}

.style_slider_box {
  position: relative;
}

.style_slider_box .slick-list {
  overflow: hidden;
}

.style_slider_box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.style_slider_box li img {
  width: 100%;
  height: auto;
  display: block;
}

.style_caption {
  margin: 12px 0 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: #183073;
  text-align: center;
}
.style_caption_sub {
  font-size: 1.2rem;
  font-weight: normal;
  color: #555;
}

/* slickドット：画像の外・下に表示 */
.style_slider_box .slick-dots {
  position: static;
  width: 100%;
  list-style: none;
  display: flex !important;
  justify-content: center;
  gap: 6px;
  padding: 10px 0 0;
  margin: 0;
}
.style_slider_box .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0;
}
.style_slider_box .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.style_slider_box .slick-dots li button::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  opacity: 1;
}
.style_slider_box .slick-dots li.slick-active button::before {
  background: #183073;
  opacity: 1;
}

@media (min-width: 768px) {
  .style_slider_wrap {
    flex-direction: row;
    gap: 40px;
  }
  .style_slider_item {
    width: calc(50% - 20px);
  }
  .style_caption {
    font-size: 1.8rem;
    margin-top: 16px;
  }
  .style_caption_sub {
    font-size: 1.4rem;
  }
}
