@charset "UTF-8";
/*
# Sass初期化用のファイル
各出力用scssファイルに当ファイルをインポートしてください。
*/
/*
## 変数をインポートします。
*/
/*
# 変数を記述するファイル
*/
/*
## 基準となるボックスサイズ
*/
/*
## 基準となるボックスの左右の余白
ウィンドウサイズを小さくしたとき用の余白です。
片側一方分です。

イメージ:
┌─────────────────────┐┌─────────────────────────────────────────────────────┐┌─────────────────────┐
│ {$GUTTER_HALF_WIDTH}                      {$BASE_WIDTH}                      {$GUTTER_HALF_WIDTH} │
└─────────────────────┘└─────────────────────────────────────────────────────┘└─────────────────────┘
*/
/**********************************
# サイトカラー
**********************************/
/*
# Sass初期化用のファイル
各出力用scssファイルに当ファイルをインポートしてください。
*/
/*
## 変数をインポートします。
*/
/*
## オリジナルのmixin、プレースホルダーなどの機能をインポートします。
*/
/*
# オリジナルのmixinや関数を記述するファイル
プレースホルダは、CSSから復元ができないため、定義禁止とする。
*/
/*
## 全角フォントのmixin
*/
/*
## 三角アイコン
*/
/*
## flexbox
*/
/*
## オリジナルのmixin、プレースホルダーなどの機能をインポートします。
*/
/*
## 基準を引数として、それ以上・未満の横幅のときに充てるスタイル
*/
@media screen and (max-width: 750px) {
  .entry {
    display: inline-flex;
    justify-content: center;
    text-align: center;
    background-color: #151F44;
    height: 275px;
    width: 375px;
  }
  .entry .popup_link {
    color: #fff;
  }
  .entry .popup_link .terms {
    text-align: left;
    margin-left: 30px;
  }
  .entry .popup_link .link {
    display: flex;
    justify-content: center;
  }
  .entry .popup_link .link .detail_link {
    text-decoration: underline;
    cursor: pointer;
  }
  .message_entry {
    display: inline-flex;
    margin-top: 18px;
    margin-right: 1px;
  }
  .bar_entry {
    margin-top: 3px;
  }
  .button {
    display: block;
    color: #fff;
    box-shadow: inset 1px 6px 3px 2px rgba(255, 255, 255, 0.2), inset -4px -6px 3px 0 rgba(0, 0, 0, 0.2);
  }
  .button.form_entry {
    width: 334px;
    border-radius: 70px;
    margin: 0px auto 0px;
    background: #F98C19;
    position: relative;
  }
  .button.form_entry .everytime {
    margin-left: 30px;
  }
  .button.form_entry a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 10px 0px;
    color: #fff;
  }
  .button.form_entry .text {
    position: relative;
    font-size: 18px;
    left: 20px;
    top: 2px;
  }
  .button.form_entry .text::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #FEED2E;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: -2px;
    left: 192px;
  }
  .button.form_entry .text::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 2px solid #F98C19;
    border-right: 2px solid #F98C19;
    position: absolute;
    left: 202px;
    top: 9px;
  }
  .button.form_appoint {
    width: 334px;
    margin: 15px auto 0px;
    border-radius: 70px;
    background: #0CC0ED;
  }
  .button.form_appoint label {
    display: inline-block;
    text-decoration: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    align-items: center;
    color: #fff;
    padding: 13px 0px;
    cursor: pointer;
  }
  .button.form_appoint div {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .button.form_appoint div span {
    font-size: 17px;
    position: relative;
  }
  .button.form_appoint div::before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #FFEA3C;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    left: 291px;
    top: -3px;
  }
  .button.form_appoint div::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 2px solid #0CC0ED;
    border-right: 2px solid #0CC0ED;
    position: absolute;
    left: 301px;
    top: 9px;
  }
  .except_entry {
    color: #fff;
    margin-top: 13px;
    font-size: 11.4px;
  }
}
@media screen and (min-width: 751px) {
  .entry {
    position: relative;
    text-align: center;
    background-color: #151F44;
    height: 250px;
  }
  .entry .popup_link {
    color: #fff;
    display: flex;
    width: 830px;
    margin: 0 auto;
  }
  .entry .popup_link .link {
    display: flex;
  }
  .entry .popup_link .link .detail_link {
    text-decoration: underline;
    cursor: pointer;
  }
  .message_entry {
    display: inline-flex;
    margin-top: 26px;
  }
  .bar_entry {
    display: inline-flex;
    height: 83px;
    margin-top: 8px;
  }
  .button {
    display: block;
    color: #fff;
    box-shadow: inset 1px 6px 3px 2px rgba(255, 255, 255, 0.2), inset -4px -6px 3px 0 rgba(0, 0, 0, 0.2);
  }
  .button.form_entry {
    width: 500px;
    border-radius: 70px;
    background: #F98C19;
  }
  .button.form_entry .everytime {
    margin-left: 16px;
    margin-right: 14px;
  }
  .button.form_entry a {
    display: inline-flex;
    text-decoration: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    align-items: center;
    color: #fff;
  }
  .button.form_entry .text {
    position: relative;
    font-size: 27px;
    left: 32px;
  }
  .button.form_entry .text::before {
    content: "";
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #FEED2E;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: 2px;
    left: 289px;
  }
  .button.form_entry .text::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 3px solid #F98C19;
    border-right: 3px solid #F98C19;
    position: absolute;
    left: 300px;
    bottom: 15px;
  }
  .button.form_appoint {
    width: 380px;
    border-radius: 70px;
    background: #0CC0ED;
    margin-left: 21px;
  }
  .button.form_appoint label {
    display: inline-flex;
    text-decoration: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    align-items: center;
    color: #fff;
    cursor: pointer;
  }
  .button.form_appoint div {
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .button.form_appoint div::before {
    content: "";
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #FFEA3C;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    left: 320px;
    top: 24px;
  }
  .button.form_appoint div::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 3px solid #0CC0ED;
    border-right: 3px solid #0CC0ED;
    position: absolute;
    left: 329px;
    bottom: 36px;
  }
  .button.form_appoint span:nth-of-type(1) {
    font-size: 24px;
    position: absolute;
    top: 15px;
    right: 88px;
  }
  .button.form_appoint span:nth-of-type(2) {
    font-size: 13px;
    position: absolute;
    top: 48px;
    right: 0;
    left: 0;
  }
  .button:hover {
    animation: hoverShake 0.15s linear 3;
    opacity: 0.8;
  }
  .except_entry {
    position: relative;
    color: #fff;
    width: 200px;
    top: 9px;
    left: 805px;
    font-size: 12px;
  }
}
#reason03 {
  background: #A7EBFC url("/assets/img/pc/lp/af/point3_bg.png") no-repeat;
  background-position: center top;
  height: 1112px;
  overflow: hidden;
}

.message_reason03 {
  display: flex;
  justify-content: center;
}
.message_otherOption {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.reason03_detail {
  padding-top: 75px;
  width: 1000px;
  margin: 0 auto;
  position: relative;
}

.recommendedCardWrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.optionCard {
  background-color: #fff;
  width: 490px;
  height: 250px;
  border-radius: 30px;
  position: relative;
  padding: 35px 40px;
  box-sizing: border-box;
  z-index: 1;
}
.optionCard-recommended:before {
  content: "";
  position: absolute;
  background-image: url("/assets/img/pc/lp/af/op_ribbon.png");
  top: -5px;
  left: -6px;
  width: 102px;
  height: 84px;
}
.optionCard_category {
  position: absolute;
  display: flex;
  top: 0;
  right: 0;
  width: 170px;
  height: 35px;
  background-color: #f1f1f1;
  border-radius: 0 30px 0 10px;
  justify-content: center;
  align-items: center;
}
.optionCard_category > span {
  font-size: 13px;
  color: #aaaaaa;
}
.optionCard_exp {
  display: flex;
  justify-content: space-between;
}
.optionCard_text {
  width: 280px;
}
.optionCard_titleText {
  font-weight: bold;
  font-size: 20px;
  width: 410px;
}
.optionCard_mainText {
  margin-top: 10px;
  line-height: 2;
  height: 80px;
  font-size: 14px;
}
.optionCard_icon {
  width: 93px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}
.optionCard_price {
  margin-top: 20px;
  color: #f98c19;
  text-align: center;
  font-size: 22px;
}
.optionCard_priceYen {
  font-weight: bold;
  font-size: 30px;
}
.optionCard_priceYen .tax {
  font-weight: normal;
  font-size: 12px;
}
.optionCard_priceTax {
  font-size: 12px;
}

.supportOptionWrapper {
  width: 2040px;
  margin-left: -510px;
  margin-top: 40px;
}

.slick-initialized.slick-slide {
  display: flex;
}

.slick-prev {
  top: 97px;
  left: calc(50% - 551px);
}
.slick-prev.slick-arrow:before {
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
}
.slick-prev.slick-arrow:after {
  transform: rotate(-45deg);
  bottom: -3px;
  left: 8px;
}

.slick-next {
  top: 97px;
  right: calc(50% - 531px);
}
.slick-next.slick-arrow:before {
  transform: rotate(-45deg);
  top: -3px;
  left: 8px;
}
.slick-next.slick-arrow:after {
  transform: rotate(45deg);
  bottom: -3px;
  left: 8px;
}

.slick-arrow {
  position: absolute;
  width: 20px;
  height: 36px;
  z-index: 1;
}
.slick-arrow:before, .slick-arrow:after {
  content: "";
  width: 6px;
  height: 27px;
  border-radius: 55px;
  background-color: #151F44;
  display: block;
  position: absolute;
}

@media screen and (max-width: 750px) {
  .button.form_easy {
    width: 219px;
    border-radius: 40px;
    background: #F98C19;
    float: right;
    position: absolute;
    top: 77px;
    right: 7px;
  }
  .button.form_easy a {
    display: block;
    text-decoration: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 13px 0px;
    color: #fff;
  }
  .button.form_easy span {
    font-size: 14px;
  }
  .button.form_easy span::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FFEA3C;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: 11px;
    left: 185px;
  }
  .button.form_easy span::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 2px solid #F98C19;
    border-right: 2px solid #F98C19;
    position: absolute;
    left: 192px;
    top: 20px;
  }
  #limit {
    background: url("/assets/img/sp/lp/af/cp_bg.png") no-repeat, linear-gradient(#FFEB46, #FFE826);
    text-align: center;
    height: auto;
    padding-bottom: 15px;
    width: 375px;
    background-size: contain;
  }
  .limit_detail .message_cashback {
    display: inline-block;
    margin-top: 41px;
  }
  .limit_detail .popup_cashback {
    display: inline-block;
    margin-top: 17px;
  }
  .limit_detail .popup_cashback .detail_link {
    position: absolute;
    top: 116px;
    left: 0;
    right: 0;
  }
  .limit_detail .popup_cashback .detail_link::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url("/assets/img/sp/lp/af/link1.png");
    background-size: contain;
    vertical-align: middle;
  }
  .limit_detail .plus {
    margin: 0px auto 10px;
  }
  .limit_detail .popup_add {
    display: inline-block;
    justify-content: center;
    position: relative;
  }
  .limit_detail .popup_add.back {
    background-color: #fff;
    display: inline-flex;
    border-radius: 13px;
    margin-top: 37px;
    height: 189px;
    width: 353px;
  }
  .limit_detail .popup_add .addribon {
    position: absolute;
    left: 0;
    top: -25px;
    right: 0;
    margin: auto;
  }
  .limit_detail .popup_add .popupbox:nth-of-type(1) {
    margin: 27px;
  }
  .limit_detail .popup_add .popupbox:nth-of-type(1) .detail_link {
    margin-top: 19px;
    margin-right: 7px;
  }
  .limit_detail .popup_add .popupbox:nth-of-type(2) {
    margin-top: 27px;
    margin-left: -2px;
    margin-right: 26px;
  }
  .limit_detail .popup_add .popupbox:nth-of-type(2) .detail_link {
    margin-top: 19px;
    margin-right: 7px;
  }
  .limit_detail .popup_add .detail_link {
    position: absolute;
    top: 113px;
    left: 0;
    right: 0;
  }
  .limit_detail .popup_add .detail_link::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url("/assets/img/sp/lp/af/link1.png");
    background-size: contain;
    vertical-align: middle;
  }
  .limit_detail .popup_add::after {
    content: "";
    display: inline-block;
    width: 3px;
    height: 163px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: 17px;
    background: url("/assets/img/sp/lp/af/cp_other_line.png") no-repeat;
    background-size: contain;
  }
  .limit_detail .message_au {
    display: inline-block;
    margin-top: 40px;
  }
  .limit_detail .popup_au {
    position: relative;
    height: 253px;
    margin-top: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .limit_detail .popup_au .detail_link {
    top: -34px;
    position: relative;
    margin-left: 8px;
  }
  .limit_detail .popup_au .detail_link::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url("/assets/img/sp/lp/af/link1.png");
    background-size: contain;
    vertical-align: middle;
  }
  .limit_detail .popup_au .plus {
    position: absolute;
    padding-bottom: 30px;
    z-index: 1;
    margin: 0px auto 10px;
  }
  .limit_detail .cautionList_item {
    color: #808080;
    font-size: 10px;
    line-height: 1.6;
    text-align: left;
    margin: 7px auto 0px;
    width: 345px;
    letter-spacing: 0.03px;
  }
  .limit_detail .doublearrow {
    display: inline-block;
  }
  .limit_detail .message_step {
    margin-top: 4px;
    margin-left: 38px;
  }
  .limit_detail .comment {
    margin-top: 15px;
  }
  .step {
    background: #fff;
    height: 100%;
    width: 354px;
    display: inline-block;
    border-radius: 15px;
    margin-top: 21px;
  }
  .step .stepbox {
    position: relative;
  }
  .step .stepbox::before {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    margin-left: -9px;
    border: 8px solid transparent;
    border-top: 8px solid #fff;
    z-index: 2;
  }
  .step .stepbox:last-child::before {
    content: none;
  }
  .step .stepbox::after {
    content: "";
    position: absolute;
    bottom: -19px;
    left: 50%;
    margin-left: -10px;
    border: 9px solid transparent;
    border-top: 9px solid #000000;
    z-index: 1;
  }
  .step .stepbox:last-child::after {
    content: none;
  }
  .step .stepbox:nth-of-type(1) {
    height: 148px;
    width: 327px;
    margin: auto;
    border-bottom: 2px solid #000000;
  }
  .step .stepbox:nth-of-type(1) img.logo {
    margin-bottom: 10px;
  }
  .step .stepbox:nth-of-type(1) .icon {
    position: relative;
    top: 24px;
    right: 13px;
  }
  .step .stepbox:nth-of-type(1) .text {
    font-size: 12px;
    position: absolute;
    top: 24px;
    left: 99px;
  }
  .step .stepbox:nth-of-type(2) {
    height: 112px;
    width: 327px;
    margin: auto;
    border-bottom: 2px solid #000000;
  }
  .step .stepbox:nth-of-type(2) img.logo {
    margin-bottom: 10px;
  }
  .step .stepbox:nth-of-type(2) .icon {
    position: relative;
    top: 3px;
    right: 11px;
  }
  .step .stepbox:nth-of-type(2) .text {
    font-size: 12px;
    position: absolute;
    top: 24px;
    left: 101px;
    text-align: left;
  }
  .step .stepbox:nth-of-type(3) {
    height: 109px;
    width: 327px;
    margin: auto;
    border-bottom: 2px solid #000000;
  }
  .step .stepbox:nth-of-type(3) img.logo {
    margin-bottom: 11px;
  }
  .step .stepbox:nth-of-type(3) .icon {
    position: relative;
    top: 3px;
    right: 9px;
  }
  .step .stepbox:nth-of-type(3) .text {
    font-size: 12px;
    position: absolute;
    top: 24px;
    left: 100px;
    text-align: left;
  }
  .step .stepbox:nth-of-type(4) {
    height: 109px;
    width: 327px;
    margin: auto;
  }
  .step .stepbox:nth-of-type(4) img.logo {
    margin-bottom: 11px;
  }
  .step .stepbox:nth-of-type(4) .icon {
    position: relative;
    top: 3px;
    right: 9px;
  }
  .step .stepbox:nth-of-type(4) .text {
    font-size: 12px;
    position: absolute;
    top: 24px;
    left: 100px;
    text-align: left;
  }
  .popupbox {
    position: relative;
    display: inline-block;
  }
  .popupbox a {
    text-decoration: none;
    color: #000000;
  }
  .popupbox .under {
    border-bottom: 1px solid #000;
    margin-right: 5px;
  }
  #reason {
    background-color: #DAF8FF;
    height: 480px;
    width: 375px;
    display: inline-flex;
    justify-content: center;
  }
  .message_reason {
    margin-top: 41px;
    margin-bottom: 22px;
  }
  .message_reason img {
    margin: 0 auto;
  }
  .reasonbox.back {
    background-color: #fff;
    height: 94px;
    width: 353px;
    border-radius: 15px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    position: relative;
  }
  .reasonbox a {
    text-decoration: none;
    color: #000000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .reasonbox .icon {
    float: left;
    margin-top: 33px;
    margin-left: 27px;
    margin-right: 29px;
  }
  .reasonbox .logo {
    position: absolute;
    top: 39px;
    left: 185px;
  }
  .reasonbox .text {
    margin-top: 44px;
  }
  .reasonbox::before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #1A89FD;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    left: 313px;
    top: 39px;
  }
  .reasonbox::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: absolute;
    left: 322px;
    top: 48px;
  }
  #reason01 {
    background: #A7EBFC url("/assets/img/sp/lp/af/point1_bg.png") no-repeat;
    background-size: contain;
    height: auto;
    padding-bottom: 15px;
    width: 375px;
    display: inline-flex;
    text-align: center;
    justify-content: center;
  }
  .reason01_detail .message_reason01 {
    display: inline-block;
    margin-top: 40px;
  }
  .reason01_detail .hometype {
    display: inline-flex;
    margin-top: 16px;
  }
  .reason01_detail .cautionList_item-withSpace {
    text-indent: -1em;
    padding-left: 1em;
  }
  .reason01_detail .cautionList_item:nth-of-type(1) {
    color: #808080;
    font-size: 10px;
    line-height: 1.6;
    text-align: left;
    margin: 1px auto 0px;
    width: 355px;
    letter-spacing: 0.03px;
  }
  .reason01_detail .cautionList_item:nth-of-type(2) {
    color: #808080;
    font-size: 10px;
    line-height: 1.6;
    text-align: left;
    margin: 17px auto 0px;
    width: 355px;
    letter-spacing: 0.03px;
  }
  .reason01_detail .construct {
    display: inline-block;
    margin-top: 57px;
  }
  .reason01_detail .construct .message_construct {
    margin-left: 20px;
  }
  .reason01_detail .construct a {
    display: block;
    margin-top: 14px;
  }
  .reason01_detail .construct p {
    color: #808080;
    font-size: 10px;
    text-align: left;
    margin: 6px auto 0px;
    width: 355px;
    letter-spacing: 0.03px;
  }
  .reason01_detail .message_reason01_au {
    margin-top: 47px;
    display: inline-block;
  }
  .reason01_detail .reason01_au {
    margin-top: 16px;
  }
  .reason01_detail .reason01_au .reason01_au_box {
    display: inline-block;
    background-color: #fff;
    width: 356px;
    height: 226px;
    border-radius: 19px 19px;
  }
  .reason01_detail .reason01_au .reason01_au_box .popupbox {
    width: 100%;
    height: 100%;
  }
  .reason01_detail .reason01_au .reason01_au_box a {
    text-decoration: none;
    color: #000000;
  }
  .reason01_detail .reason01_au .reason01_au_box .header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    border-radius: 19px 19px 0 0;
  }
  .reason01_detail .reason01_au .reason01_au_box .text {
    font-size: 11px;
    margin: 15px 18px 0px 18px;
    line-height: 19px;
    text-align: left;
  }
  .reason01_detail .reason01_au .reason01_au_box .detail_link {
    position: relative;
    left: 8px;
  }
  .reason01_detail .reason01_au .reason01_au_box .detail_link::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    background: url("/assets/img/sp/lp/af/link1.png");
    background-size: contain;
    vertical-align: middle;
  }
  .reason01_detail .reason01_au .discount_logo {
    margin: 39px 16px 0px 31px;
  }
  .reason01_detail .reason01_au .reason01_au_box {
    margin-top: 14px;
  }
  .reason01_detail .reason01_au .reason01_au_box .header {
    background: #F87210;
  }
  .reason01_detail .reason01_au .reason01_au_box .detail_link {
    top: 15px;
  }
  .reason01_detail .comment {
    margin-top: 26px;
  }
  #reason02 {
    background: #D9F7FF url("/assets/img/sp/lp/af/point2_bg.png") no-repeat;
    background-size: contain;
    height: auto;
    padding-bottom: 15px;
    width: 375px;
    display: inline-flex;
    text-align: center;
    justify-content: center;
  }
  .reason02_detail .reason02_widearea {
    display: inline-block;
    margin-top: 41px;
  }
  .reason02_detail .reason02_widearea img:nth-of-type(3) {
    margin: auto;
  }
  .reason02_detail .reason02_widearea img:nth-of-type(4) {
    margin: 42px auto 0px;
  }
  .reason02_detail .cautionList_item {
    color: #808080;
    font-size: 10px;
    line-height: 1.6;
    text-align: left;
    margin: 11px auto 0px;
    width: 355px;
  }
  .reason02_detail .cautionList_item-withSpace {
    text-indent: -1em;
    padding-left: 1em;
  }
  .reason02_detail .reason02_speed {
    display: inline-block;
  }
  .reason02_detail .reason02_speed .message_speed {
    margin: 0 auto;
  }
  .reason02_detail .IPadress {
    margin-top: 20px;
    padding-bottom: 15px;
    background-color: #fff;
    border-radius: 15px;
  }
  .reason02_detail .IPadress .IPadress_detail {
    display: inline-block;
  }
  .reason02_detail .IPadress .IPadress_detail img:nth-of-type(4) {
    zoom: 0.6;
  }
  .reason02_detail .IPadress .IPadress_detail .speed_ipv6_img_boxes img {
    zoom: 0.7;
  }
  .reason02_detail .IPadress .IPadress_detail img {
    margin-top: 30px;
  }
  .reason02_detail .IPadress p {
    font-size: 11px;
    line-height: 1.9;
    text-align: left;
    width: 316px;
    margin: 11px auto 0px;
  }
  .reason02_detail .reason02_allprif {
    display: inline-block;
    margin-top: 25px;
  }
  .reason02_detail .reason02_allprif img:nth-of-type(3) {
    margin-left: 42px;
  }
  .reason02_detail .reason02_allprif img:nth-of-type(4) {
    margin-left: 15px;
    margin-top: 35px;
  }
  .reason02_detail .comment {
    margin-top: 22px;
  }
  #reason03 {
    background: #A7EBFC url("/assets/img/sp/lp/af/point3_bg.png") no-repeat;
    background-position: center top;
    background-size: 375px;
    height: 837px;
    width: 375px;
  }
  .reason03_detail {
    padding-top: 40px;
    width: 355px;
  }
  .message_reason03 {
    width: 90%;
    margin: 0 auto;
  }
  .message_otherOption {
    margin: 40px auto 0;
  }
  .recommendedCardWrapper {
    flex-direction: column;
    margin-top: 25px;
    justify-content: center;
    align-items: center;
  }
  .optionCard {
    width: 285px;
    height: 172px;
    border-radius: 15px;
    padding: 25px 17px;
  }
  .optionCard-recommended {
    width: 100%;
    height: 155px;
    padding: 23px 24px;
  }
  .optionCard-recommended + .optionCard-recommended {
    margin-top: 18px;
  }
  .optionCard-recommended:before {
    background-image: url("/assets/img/sp/lp/af/op_ribbon.png");
    top: -4px;
    left: -4px;
    width: 66px;
    height: 41px;
    background-size: 100%;
  }
  .optionCard-recommended .optionCard_category {
    width: 32%;
  }
  .optionCard-recommended .optionCard_titleText {
    font-size: 13px;
  }
  .optionCard-recommended .optionCard_mainText {
    height: 57px;
  }
  .optionCard-recommended .optionCard_icon {
    justify-content: flex-end;
    margin-top: 5px;
  }
  .optionCard-recommended .optionCard_icon > img {
    width: 124px;
  }
  .optionCard_category {
    width: 38%;
    height: 25px;
    border-radius: 0 15px 0 15px;
  }
  .optionCard_category > span {
    font-size: 10px;
  }
  .optionCard_text {
    width: 70%;
  }
  .optionCard_titleText {
    font-size: 11px;
    width: 214px;
  }
  .optionCard_mainText {
    margin-top: 5px;
    line-height: 1.9;
    font-size: 11px;
    width: 100%;
    height: 84px;
  }
  .optionCard_price {
    margin-top: 3px;
    font-size: 15px;
  }
  .optionCard_priceYen {
    font-size: 20px;
  }
  .optionCard_priceTax {
    font-size: 10px;
  }
  .optionCard_icon {
    margin-top: 13px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
  }
  .optionCard_icon > img {
    width: 86px;
  }
  .supportOptionWrapper {
    width: 825px;
    margin-left: -235px;
    margin-top: 15px;
  }
  .slick-initialized .slick-slide {
    display: flex !important;
    justify-content: center;
  }
  .slick-slide {
    transform: scale(0.8);
    transform-origin: bottom;
    position: relative;
    transition: all 0.3s linear;
  }
  .slick-slide:focus {
    outline: none;
  }
  .slick-slide:after {
    content: "";
    position: absolute;
    top: 0;
    left: -5px;
    width: 103.5%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    z-index: 4;
    opacity: 1;
  }
  .slick-slide.slick-active.slick-current + .slick-slide, .slick-slide.is-active-next + .slick-slide {
    transform: scale(1);
    transition: all 0.3s linear;
  }
  .slick-slide.slick-active.slick-current + .slick-slide:after, .slick-slide.is-active-next + .slick-slide:after {
    opacity: 0;
  }
  .slick-prev {
    top: 76px;
    left: calc(50% - 158px);
  }
  .slick-prev.slick-arrow:before {
    transform: rotate(45deg);
    top: -2px;
    left: 4px;
  }
  .slick-prev.slick-arrow:after {
    transform: rotate(-45deg);
    bottom: -2px;
    left: 4px;
  }
  .slick-next {
    top: 77px;
    right: calc(50% - 157px);
  }
  .slick-next.slick-arrow:before {
    transform: rotate(-45deg);
    top: -2px;
    left: 4px;
  }
  .slick-next.slick-arrow:after {
    transform: rotate(45deg);
    bottom: -2px;
    left: 4px;
  }
  .slick-arrow {
    width: 10px;
    height: 18px;
  }
  .slick-arrow:before, .slick-arrow:after {
    content: "";
    width: 3px;
    height: 14px;
    border-radius: 55px;
    background-color: #151F44;
    display: block;
    position: absolute;
  }
  #easy {
    background-color: #D9F7FF;
    height: auto;
    padding-bottom: 15px;
    width: 375px;
    display: inline-flex;
    text-align: center;
    justify-content: center;
  }
  .easy_detail .message_easy {
    display: inline-block;
    margin-top: 39px;
    margin-bottom: -5px;
  }
  .easy_detail .comment {
    margin-top: 15px;
  }
  #follow_footer {
    background-color: #151F44;
    margin: 0 auto;
    height: 110px;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    z-index: 2;
  }
  .follow_footer_detail {
    max-width: 375px;
  }
  .follow_footer_detail .message_footer {
    display: inline-block;
    margin-top: 8px;
  }
  .follow_footer_detail .footer_bar_entry {
    display: inline-flex;
    position: relative;
    margin-top: 30px;
  }
  .follow_footer_detail .footer_bar_entry .footer_button {
    display: block;
    color: #fff;
    box-shadow: inset 1px 6px 3px 2px rgba(255, 255, 255, 0.2), inset -4px -6px 3px 0 rgba(0, 0, 0, 0.2);
  }
  .follow_footer_detail .footer_bar_entry .footer_button.form_entry {
    width: 188px;
    border-radius: 40px;
    background: #F98C19;
  }
  .follow_footer_detail .footer_bar_entry .footer_button.form_entry .everytime {
    margin-left: 10px;
  }
  .follow_footer_detail .footer_bar_entry .footer_button.form_entry a {
    display: inline-block;
    text-decoration: none;
    top: 0;
    left: 0;
    width: 100%;
    align-items: center;
    padding: 12px 0px;
    color: #fff;
  }
  .follow_footer_detail .footer_bar_entry .footer_button.form_entry .text {
    position: relative;
    font-size: 11px;
  }
  .follow_footer_detail .footer_bar_entry .footer_button.form_entry .text::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FEED2E;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: -2px;
    left: 112px;
  }
  .follow_footer_detail .footer_bar_entry .footer_button.form_entry .text::after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 2px solid #F98C19;
    border-right: 2px solid #F98C19;
    position: absolute;
    top: 5px;
    left: 118px;
  }
  .follow_footer_detail .footer_bar_entry .footer_button.form_appoint {
    width: 140px;
    border-radius: 70px;
    background: #0CC0ED;
    margin-left: 7px;
  }
  .follow_footer_detail .footer_bar_entry .footer_button.form_appoint label {
    display: inline-flex;
    text-decoration: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    align-items: center;
    color: #fff;
    cursor: pointer;
  }
  .follow_footer_detail .footer_bar_entry .footer_button.form_appoint div {
    margin-left: 6px;
  }
  .follow_footer_detail .footer_bar_entry .footer_button.form_appoint .text {
    position: relative;
    font-size: 11px;
    margin-left: 27px;
  }
  .follow_footer_detail .footer_bar_entry .footer_button.form_appoint .text::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FEED2E;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    top: -3px;
    left: 78px;
  }
  .follow_footer_detail .footer_bar_entry .footer_button.form_appoint .text::after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 2px solid #0CC0ED;
    border-right: 2px solid #0CC0ED;
    position: absolute;
    top: 4px;
    left: 84px;
  }
  .follow_footer_detail .footer_bar_entry .popup_link {
    position: absolute;
    color: #fff;
    top: -35px;
    left: 0;
    right: 0;
  }
  .follow_footer_detail .footer_bar_entry .popup_link .terms {
    text-align: left;
    margin-left: 15px;
  }
  .follow_footer_detail .footer_bar_entry .popup_link .link {
    display: flex;
    justify-content: center;
  }
  .follow_footer_detail .footer_bar_entry .popup_link .link .detail_link {
    text-decoration: underline;
    cursor: pointer;
  }
}
@media screen and (min-width: 751px) {
  .main_contents {
    width: 1000px;
    margin: 0 auto;
  }
  #mainv {
    position: relative;
    height: 490px;
    background: url("/assets/img/pc/lp/af/mainv_txt.png"), url("/assets/img/pc/lp/af/mainv_bg.png") no-repeat;
    background-position: center center;
  }
  #mainv img:nth-of-type(1) {
    position: relative;
    right: 459px;
  }
  .button.form_easy {
    width: 92%;
    margin: 10px auto auto;
    border-radius: 40px;
    background: #F98C19;
  }
  .button.form_easy a {
    display: block;
    text-decoration: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 13px 0px;
    color: #fff;
  }
  .button.form_easy span {
    font-size: 17px;
    position: relative;
  }
  .button.form_easy span::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    position: absolute;
    right: 20px;
    top: 8px;
  }
  .button.detail {
    width: 279px;
    margin: 34px auto auto;
    border-radius: 40px;
    background: #1A89FD;
  }
  .button.detail a {
    display: block;
    text-decoration: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 16px 0px;
    color: #fff;
  }
  .button.detail .detail_text {
    position: relative;
    display: inline-flex;
    font-size: 17px;
    padding-top: 2px;
  }
  .button.detail .detail_text::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    left: 151px;
  }
  .button.detail .detail_text::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-right: 2px solid #1A89FD;
    border-bottom: 2px solid #1A89FD;
    position: absolute;
    left: 160px;
    top: 9px;
  }
  #limit {
    background: #FFEC49 url("/assets/img/pc/lp/af/cp_bg.png") no-repeat;
    text-align: center;
    height: 2070px;
  }
  .limit_detail {
    display: block;
  }
  .limit_detail .message_cashback {
    padding-top: 100px;
    padding-left: 32px;
  }
  .limit_detail .popup_cashback {
    height: 370px;
    display: inline-flex;
    justify-content: center;
    margin-top: 35px;
    margin-bottom: 43px;
  }
  .limit_detail .popup_cashback .popupbox:nth-of-type(2) {
    margin-left: 10px;
  }
  .limit_detail .popup_cashback .plus {
    position: absolute;
    margin-top: 159px;
    z-index: 1;
  }
  .limit_detail .popup_cashback .detail_link {
    position: relative;
    bottom: 62px;
    margin-right: 24px;
  }
  .limit_detail .popup_add {
    display: inline-flex;
    margin-right: auto;
    position: relative;
  }
  .limit_detail .popup_add.back {
    height: 320px;
  }
  .limit_detail .popup_add .popupbox:nth-of-type(1) {
    margin-left: 10px;
  }
  .limit_detail .popup_add .popupbox:nth-of-type(2) {
    margin-left: 22px;
  }
  .limit_detail .popup_add::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 255px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    margin-top: 39px;
    background: url("/assets/img/pc/lp/af/cp_other_line.png") no-repeat;
    background-size: contain;
  }
  .limit_detail .popup_add .addribon {
    position: absolute;
    top: -23px;
    left: 0;
    right: 0;
    margin: auto;
  }
  .limit_detail .popup_add .detail_link {
    position: relative;
    bottom: 20px;
    right: 18px;
  }
  .limit_detail .message_au {
    display: inline-block;
    margin-top: 68px;
  }
  .limit_detail .popup_au {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 9px;
  }
  .limit_detail .popup_au .popupbox {
    position: relative;
    height: 276px;
  }
  .limit_detail .popup_au .popupbox .detail_link {
    position: relative;
    top: -58px;
    margin-right: 26px;
  }
  .limit_detail .cautionList_item {
    color: #808080;
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
    font-size: 10.7px;
    line-height: 1.7;
    text-align: left;
  }
  .limit_detail .cautionList_item-withSpace {
    text-indent: -1em;
    padding-left: 1em;
  }
  .limit_detail .doublearrow .pc {
    margin: -12px auto 0;
  }
  .limit_detail .message_step {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 35px;
    margin-bottom: 45px;
  }
  .limit_detail .comment {
    position: relative;
    right: 35px;
    top: 2px;
  }
  .popupbox a {
    text-decoration: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: block;
  }
  .popupbox .detail_link {
    font-size: 14px;
    color: #000;
  }
  .popupbox .detail_link::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #151F44;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    left: 300px;
    top: 2px;
  }
  .popupbox .detail_link::after {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    left: 307px;
    top: 10px;
  }
  .popupbox .detail_link.au::before {
    left: 560px;
    top: 2px;
  }
  .popupbox .detail_link.au::after {
    left: 567px;
    top: 10px;
  }
  .popupbox .detail_link .under {
    border-bottom: 1px solid #000;
  }
  .popupbox:hover {
    opacity: 0.8;
    cursor: pointer;
  }
  .step {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
  }
  .stepbox {
    display: block;
    position: relative;
    width: 22%;
    height: 344px;
    padding: 5px;
    padding-top: 26px;
    box-sizing: border-box;
  }
  .stepbox .logo {
    margin: 3px auto;
  }
  .stepbox .icon {
    display: inline-block;
  }
  .stepbox:nth-of-type(1) .text {
    font-size: 17px;
    margin-top: 15px;
  }
  .stepbox:nth-of-type(1) .icon {
    padding-top: 31px;
  }
  .stepbox:nth-of-type(2) .text {
    font-size: 17px;
    margin-top: 10px;
  }
  .stepbox:nth-of-type(2) .icon {
    padding-top: 25px;
  }
  .stepbox:nth-of-type(3) .text {
    font-size: 17px;
    margin-top: 27px;
  }
  .stepbox:nth-of-type(3) .icon {
    padding-top: 40px;
  }
  .stepbox:nth-of-type(4) {
    background: url("/assets/img/pc/lp/af/housya.png") no-repeat;
    padding-left: 10px;
  }
  .stepbox:nth-of-type(4) .text {
    font-size: 17px;
    margin-top: 27px;
  }
  .stepbox:nth-of-type(4) .icon {
    padding-top: 40px;
  }
  .stepbox::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 6px solid #151F44;
    border-right: 6px solid #151F44;
    position: absolute;
    right: -25px;
    top: 149px;
  }
  .stepbox:last-child::after {
    content: none;
  }
  .back {
    background-color: #fff;
    border-radius: 25px;
  }
  #reason {
    background-color: #DAF8FF;
    text-align: center;
    height: 792px;
  }
  .message_reason {
    display: inline-flex;
    padding-top: 101px;
    padding-bottom: 66px;
  }
  .reason_simple {
    display: inline-flex;
  }
  .reasonbox {
    display: block;
    margin-right: 19px;
    position: relative;
    width: 321px;
    height: 374px;
    padding-top: 26px;
  }
  .reasonbox img:nth-of-type(1) {
    position: relative;
    bottom: 55px;
    margin: 0 auto;
  }
  .reasonbox img:nth-of-type(2) {
    margin-top: -20px;
    margin-right: auto;
    margin-left: auto;
  }
  .reasonbox .text {
    font-size: 17px;
    margin-top: 20px;
  }
  #reason01 {
    background: #A7EBFC url("/assets/img/pc/lp/af/point1_bg.png") no-repeat;
    height: 1920px;
  }
  .reason01_detail {
    display: block;
    text-align: center;
  }
  .reason01_detail .message_reason01 {
    display: inline-block;
    padding-top: 99px;
  }
  .reason01_detail .hometype {
    display: inline-flex;
    margin-top: 37px;
  }
  .reason01_detail .hometype .home {
    margin-top: -4px;
    margin-left: 13px;
  }
  .reason01_detail .construct {
    margin-top: 57px;
  }
  .reason01_detail .message_reason01_au {
    margin-top: 81px;
    display: inline-block;
  }
  .reason01_detail .reason01_au {
    display: inline-flex;
    margin-top: 35px;
    margin-bottom: 16px;
  }
  .reason01_detail .reason01_au .header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 70px;
    border-radius: 25px 25px 0 0;
  }
  .reason01_detail .reason01_au .reason01_au_box {
    display: block;
    height: 320px;
  }
  .reason01_detail .reason01_au .reason01_au_box .header {
    background: #F85B35;
  }
  .reason01_detail .reason01_au .reason01_au_box .popupbox .detail_link {
    position: relative;
    right: 17px;
    top: 19px;
  }
  .reason01_detail .comment {
    position: relative;
    top: 12px;
    right: 35px;
  }
  .reason01_detail .cautionList_item {
    color: #808080;
    font-size: 11px;
    line-height: 1.9;
    text-align: left;
  }
  .reason01_detail .cautionList_item-withSpace {
    text-indent: -1em;
    padding-left: 1em;
  }
  #reason02 {
    background: #DAF8FF url("/assets/img/pc/lp/af/point2_bg.png") no-repeat;
    padding-bottom: 30px;
  }
  .reason02_detail {
    display: block;
    text-align: center;
  }
  .reason02_detail .reason02_widearea {
    display: block;
  }
  .reason02_detail .reason02_widearea img:nth-of-type(1) {
    margin: 0 auto;
    padding-top: 124px;
  }
  .reason02_detail .reason02_widearea img:nth-of-type(2) {
    margin-top: 42px;
    margin-left: -7px;
  }
  .reason02_detail .reason02_widearea .cautionList_item {
    color: #808080;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
    font-size: 10.7px;
    line-height: 1.7;
    text-align: left;
  }
  .reason02_detail .reason02_widearea .cautionList_item-withSpace {
    text-indent: -1em;
    padding-left: 1em;
  }
  .reason02_detail .reason02_speed {
    display: block;
  }
  .reason02_detail .reason02_speed .message_speed {
    margin: 110px auto 0;
  }
  .reason02_detail .reason02_speed .IPadress {
    display: block;
    background-color: #fff;
    margin-top: 39px;
    padding: 1px 0;
    width: 1000px;
    height: 670px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 29px;
  }
  .reason02_detail .reason02_speed .IPadress p {
    font-size: 17px;
    width: 645px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 27px;
    line-height: 1.9;
    letter-spacing: 0.1px;
  }
  .reason02_detail .reason02_speed .IPadress .IPadress_detail img {
    margin-top: 30px;
  }
  .reason02_detail .reason02_speed .IPadress .IPadress_detail img:nth-of-type(1), .reason02_detail .reason02_speed .IPadress .IPadress_detail img:nth-of-type(2) {
    margin-left: auto;
    margin-right: auto;
  }
  .reason02_detail .reason02_speed .IPadress .IPadress_detail .speed_ipv6_img_boxes {
    display: inline-flex;
  }
  .reason02_detail .reason02_speed .IPadress .IPadress_detail .speed_ipv6_img_boxes img:nth-of-type(2) {
    margin-left: 19px;
  }
  .reason02_detail .reason02_speed .cautionList_item {
    color: #808080;
    margin-top: 19px;
    font-size: 11px;
    line-height: 1.7;
    text-align: left;
  }
  .reason02_detail .reason02_speed .cautionList_item-withSpace {
    text-indent: -1em;
    padding-left: 1em;
  }
  .reason02_detail .reason02_allprif {
    display: block;
  }
  .reason02_detail .reason02_allprif img:nth-of-type(1) {
    margin-top: 60px;
  }
  .reason02_detail .reason02_allprif .cautionList_item {
    color: #808080;
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.7;
    text-align: left;
  }
  .reason02_detail .reason02_allprif .cautionList_item-withSpace {
    text-indent: -1em;
    padding-left: 1em;
  }
  .reason02_detail .comment {
    position: relative;
    right: 36px;
    margin-top: 37px;
  }
  .slick-slide {
    position: relative;
    overflow: hidden;
    transform: scale(0.9);
    margin-top: 8px;
    transition: all 0.3s linear;
  }
  .slick-slide:focus {
    outline: none;
  }
  .slick-slide.slick-active.slick-current + .slick-slide, .slick-slide.slick-active.slick-current + .slick-slide + .slick-slide, .slick-slide.is-active-next + .slick-slide, .slick-slide.is-active-next + .slick-slide + .slick-slide {
    transform: scale(1);
    margin-top: 0;
    transition: all 0.3s linear;
  }
  .slick-slide.slick-active.slick-current + .slick-slide:after, .slick-slide.slick-active.slick-current + .slick-slide + .slick-slide:after, .slick-slide.is-active-next + .slick-slide:after, .slick-slide.is-active-next + .slick-slide + .slick-slide:after {
    opacity: 0;
  }
  .slick-slide.slick-active.slick-current, .slick-slide.is-active-next {
    margin-left: -23px;
    margin-right: 23px;
  }
  .slick-slide.slick-active.slick-current + .slick-slide + .slick-slide + .slick-slide, .slick-slide.is-active-next + .slick-slide + .slick-slide + .slick-slide {
    margin-right: -23px;
    margin-left: 15px;
  }
  .slick-slide:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 490px;
    height: 250px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 30px;
    z-index: 4;
    opacity: 1;
  }
  #easy {
    background-color: #D9F7FF;
    text-align: center;
    height: 842px;
  }
  .easy_detail .message_easy {
    display: inline-block;
    padding-top: 103px;
    margin-bottom: 42px;
  }
  .easy_detail .comment {
    position: relative;
  }
  .easy_detail .comment img {
    position: relative;
    right: 35px;
  }
  #follow_footer {
    background-color: #151F44;
    margin: 0 auto;
    height: 110px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 2;
  }
  .follow_footer_detail {
    text-align: center;
    display: flex;
    justify-content: center;
    padding-top: 30px;
  }
  .follow_footer_detail .message_footer {
    margin-left: 29px;
  }
  .follow_footer_detail .footer_bar_entry {
    display: inline-flex;
    position: relative;
  }
  .follow_footer_detail .footer_bar_entry .popup_link {
    position: absolute;
    color: #fff;
    display: flex;
    top: -23px;
    left: 15px;
  }
  .follow_footer_detail .footer_bar_entry .popup_link .link {
    display: flex;
  }
  .follow_footer_detail .footer_bar_entry .popup_link .link .detail_link {
    text-decoration: underline;
    cursor: pointer;
  }
  .follow_footer_detail .footer_button {
    display: block;
    color: #fff;
    box-shadow: inset 1px 6px 3px 2px rgba(255, 255, 255, 0.2), inset -4px -6px 3px 0 rgba(0, 0, 0, 0.2);
  }
  .follow_footer_detail .footer_button.form_entry {
    width: 350px;
    border-radius: 70px;
    background: #F98C19;
  }
  .follow_footer_detail .footer_button.form_entry .everytime {
    margin-left: 10px;
  }
  .follow_footer_detail .footer_button.form_entry a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    align-items: center;
    color: #fff;
  }
  .follow_footer_detail .footer_button.form_entry .text {
    position: relative;
    font-size: 19px;
    padding-left: 21px;
  }
  .follow_footer_detail .footer_button.form_entry .text::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FEED2E;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    left: 223px;
  }
  .follow_footer_detail .footer_button.form_entry .text::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 2px solid #F98C19;
    border-right: 2px solid #F98C19;
    position: absolute;
    left: 230px;
    bottom: 12px;
  }
  .follow_footer_detail .footer_button.form_appoint {
    width: 281px;
    border-radius: 70px;
    background: #0CC0ED;
    margin-left: 14px;
  }
  .follow_footer_detail .footer_button.form_appoint label {
    display: inline-flex;
    text-decoration: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    align-items: center;
    color: #fff;
    cursor: pointer;
  }
  .follow_footer_detail .footer_button.form_appoint div {
    margin-left: 26px;
  }
  .follow_footer_detail .footer_button.form_appoint .text {
    position: relative;
    font-size: 18px;
    padding-left: 24px;
  }
  .follow_footer_detail .footer_button.form_appoint .text::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #FEED2E;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    left: 212px;
  }
  .follow_footer_detail .footer_button.form_appoint .text::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border-top: 2px solid #0CC0ED;
    border-right: 2px solid #0CC0ED;
    position: absolute;
    left: 220px;
    bottom: 11px;
  }
  .follow_footer_detail .footer_button:hover {
    animation: hoverShake 0.15s linear 3;
    opacity: 0.8;
  }
}

/*# sourceMappingURL=index.css.map */
