@charset "UTF-8";
/*------------------------------------------------------------
reset
------------------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

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

img {
  vertical-align: bottom;
  font-size: 0;
  line-height: 0;
}

/*------------------------------------------------------------
common setting
------------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  min-width: 1100px;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "Yu Gothic", sans-serif;
  color: #182c4b;
  font-size: 1.4rem;
}

.cf::after {
  content: "";
  display: block;
  clear: both;
}

.pc_obj {
  display: block;
}

.sp_obj {
  display: none;
}

@media screen and (max-width: 767px) {
  body {
    min-width: 100%;
  }
  img {
    width: 100%;
  }
  .pc_obj {
    display: none;
  }
  .sp_obj {
    display: block;
  }
}
a {
  color: #193f78;
}

#loader-bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 1;
}

#loader {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  z-index: 2;
}

#loader img {
  width: 16px;
}

/*------------------------------------------------------------
layout setting
------------------------------------------------------------*/
.inner {
  width: 1040px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .inner {
    width: 94%;
    margin: 0 auto;
  }
}
/* ---------------------------------------
$ header
----------------------------------------*/
.l-header {
  width: 100%;
  height: 64px;
  background-color: #e2261a;
  text-align: center;
}
.l-header .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1080px;
  height: 100%;
  margin: auto;
}
.l-header .headerLogo img {
  width: auto;
  height: 39px;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 50px;
  }
  .l-header .header {
    padding: 0 15px;
  }
  .l-header .headerLogo img {
    height: 27px;
  }
}

.tit_h1 {
  margin: 65px auto 0;
  text-align: center;
}

.txt_lead {
  margin: 25px auto 0;
  text-align: center;
  color: #193f78;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .tit_h1 {
    width: 100%;
    margin: 10% auto 0;
    text-align: center;
  }
  .txt_lead {
    width: 90%;
    margin: 6% auto 0;
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.3;
  }
}
/*-- パンくず --*/
.breadcrumb {
  margin: 20px 0 0;
}

.breadcrumb li {
  display: inline-block;
}

.breadcrumb li a {
  text-decoration: none;
  color: #193f78;
}

.breadcrumb li::before {
  content: "＞";
}

.breadcrumb li:first-child::before {
  content: none;
}

@media screen and (max-width: 1120px) {
  .breadcrumb {
    padding: 0 4%;
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}
/*-- チェックボックスとラジオボックスデザイン --*/
input[type=checkbox] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

label {
  position: relative;
  display: block;
  cursor: pointer;
}

.btn_tgr label span {
  width: 100%;
  position: absolute;
}

.btn_tgr input[type=radio]:checked + span,
.btn_tgr input[type=checkbox]:checked + span {
  display: none;
}

/* ---------------------------------------
$ シミュレーション本体
----------------------------------------*/
/*-- ロード時隠しておく箱たち --*/
.boxA, .boxC, .step2, .step3, .box_device, .s3_boxA_2, .s3_boxA_3, .s3_boxB, .s3_boxC, .step4, .box_result {
  display: none;
}

.step_wrap {
  margin: 60px auto 0;
  padding: 40px 3% 50px;
  background: #e0f1ff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.ol_step {
  margin: 0 auto;
}

.ol_step > li {
  margin: 23px auto 0;
  padding: 64px 0 0;
  background: url(../img/step_arrow.png) no-repeat top center;
}

.ol_step > li:first-child {
  margin: 0 auto 50px;
  padding: 0;
  background: none;
}

.ol_step > li:nth-of-type(2) {
  margin: 0 auto;
  padding: 0;
  background: none;
}

.tit_area {
  margin: 0 auto;
  text-align: center;
}

.tit_step {
  margin: 13px auto 0;
}

.box_shadow {
  margin: 30px auto 0;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 15px 10px rgba(204, 227, 240, 0.15), 0px 3px 15px 0px rgba(204, 227, 240, 0.5);
  box-shadow: 0px 0px 15px 10px rgba(204, 227, 240, 0.15), 0px 3px 15px 0px rgba(204, 227, 240, 0.5);
  overflow: hidden;
  text-align: center;
}

.gakuwari .box_shadow {
  margin: 0 auto;
  padding: 40px 0 0;
}

.step2 .box_shadow {
  padding: 15px 0 0;
}

.step3 .box_shadow {
  padding: 38px 0 50px;
}

.step1 .box_shadow {
  padding: 32px 0 50px;
}

.step0 .box_shadow {
  padding: 32px 0 50px;
}
.step0 .box_s3 {
  text-align: center;
}
.step0 .box_s3 p {
  font-size: 20px;
  line-height: 1.6;
  margin-top: 25px;
  color: #114799;
}

.step2 .boxS1 ul {
  text-align: center;
  width: 613px;
}
@media screen and (max-width: 767px) {
  .step2 .boxS1 ul {
    width: auto;
  }
}

@media screen and (max-width: 767px) {
  .step0 .box_s3 {
    padding: 0px 30px;
  }
}
.step3 .boxAge {
  display: none;
  margin-top: 80px;
  text-align: center;
}
.step3 .boxAge .ul_three {
  display: grid;
  grid-template-columns: repeat(auto-fit, 290px);
  gap: 23px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.step3 .boxAge .ul_three > li:nth-child(n) {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .step3 .boxAge .ul_three {
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 80vw;
    margin: 7% auto 0;
  }
  .step3 .boxAge .ul_three li {
    width: 38.133333vw;
    margin: 0;
  }
}
/* iphone貸し出しを一旦停止 */
@media screen and (min-width: 768px) {
  .step1 .box_s3 {
    text-align: center;
  }
  .step1 .box_s3 .ul_three {
    display: inline-block;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .step_wrap {
    min-width: initial;
    margin: 5% auto 0;
    padding: 7% 0;
  }
  .ol_step > li {
    margin: 3% auto 0;
    padding: 9% 0 0;
    background: url(../img/step_arrow_sp.png) no-repeat top center;
    background-size: 100%;
  }
  .ol_step > li:first-child {
    margin: 0 auto 9%;
    padding: 0 0 0;
  }
  .tit_area {
    width: 94%;
    margin: 0 auto;
  }
  .tit_area > img {
    width: 23%;
  }
  .tit_step {
    margin: 2% auto 0;
  }
  .box_shadow {
    margin: 4% auto 0;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 15px 10px rgba(204, 227, 240, 0.15), 0px 3px 15px 0px rgba(204, 227, 240, 0.5);
    box-shadow: 0px 0px 15px 10px rgba(204, 227, 240, 0.15), 0px 3px 15px 0px rgba(204, 227, 240, 0.5);
    background-color: white;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .gakuwari .box_shadow {
    padding: 9% 4.5% 0;
  }
  .step2 .box_shadow {
    padding: 3% 0 0;
  }
  .step3 .box_shadow {
    padding: 5% 4.5%;
  }
  .step1 .box_shadow {
    padding: 5% 4.5% 6%;
  }
}
/*- ボタン並び --*/
.ul_two, .ul_three, .ul_five {
  max-width: 920px;
  width: 100%;
  margin: 30px auto 0;
}

.ul_two li {
  float: left;
  width: 445px;
  margin: 0 0 0 30px;
}

.ul_three li {
  float: left;
  width: 290px;
  margin: 0 0 0 23px;
}

.ul_five li {
  float: left;
  width: 18%;
  margin: 0 0 0 2.5%;
}

.ul_two li:first-child, .ul_three li:first-child, .ul_five li:first-child {
  margin: 0;
}

.ul_two li:nth-child(2n+1) {
  clear: both;
  margin-left: 0;
}

.ul_two li:not(:nth-child(-n+2)) {
  margin-top: 30px;
}

.ul_three li:nth-child(4) {
  margin: 0;
}

.ul_three li:nth-child(n+4) {
  margin-top: 20px;
}

.ul_three li p {
  text-align: center;
}

.ul_three li p + label {
  margin: 10px 0 0;
}

.go_detail {
  margin: 8px 0 0;
  padding: 0.2rem 0 0.1rem 2.1rem;
  display: inline-block;
  font-size: 1.6rem;
}

.txt_att {
  margin: 2px 0 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

.txt_att a {
  color: #2691ff;
  text-decoration: none;
}

.txt_att a:hover {
  text-decoration: underline;
}

.ico_blue,
.ico_red {
  position: relative;
}

.ico_blue::before, .ico_red::before {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../img/ico_blue.png) no-repeat left;
  background-size: 100%;
  position: absolute;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.ico_red::before {
  background: url(../img/ico_red.png) no-repeat left;
  background-size: 100%;
}

.ico_blue:hover::before, .ico_red:hover::before {
  -webkit-transform: translateX(-6px);
  transform: translateX(-6px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .ul_two, .ul_three, .ul_five {
    width: 100%;
    margin: 5% auto 0;
  }
  .ul_two li {
    float: left;
    width: 48%;
    margin: 0 0 0 4%;
  }
  .ul_two.sp_w100 li {
    float: none;
    width: 100%;
    margin: 0;
  }
  .ul_two.sp_w100 li + li {
    margin: 3% 0 0;
  }
  .ul_three li, .ul_three li:nth-child(4), .ul_three li:nth-child(n+4) {
    float: none;
    width: 100%;
    margin: 3% 0 0;
  }
  .ul_five li {
    float: left;
    width: 48%;
    margin: 0;
  }
  .ul_five li:nth-child(even) {
    margin-left: 4%;
  }
  .ul_five li:nth-child(n+3) {
    margin-top: 2%;
  }
  .ul_five li:last-child {
    float: left;
    clear: both;
    margin-top: 2%;
  }
  .ul_three li p + label {
    margin: 2% 0 0;
  }
  .go_detail {
    margin: 1% 0 0;
    padding: 0.2rem 0 0.1rem 2.3rem;
    font-size: 1.4rem;
  }
  .ul_three li .txt_att {
    margin: 2% 0 0;
    font-size: 1.1rem;
  }
  .txt_att {
    margin: 2% 0 0;
    font-size: 1.2rem;
    text-align: left;
  }
}
/* gakuwari
----------------------*/
.boxG {
  padding: 0 0 45px;
}

.tit_gakuwari {
  margin-top: 20px;
}

.gakuwari_attention {
  margin: 20px 0 0;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #114799;
}

.ul_one {
  max-width: 920px;
  width: 100%;
  margin: 20px auto 0;
}

.boxG .ul_detail {
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .boxG {
    padding: 0 0 9%;
  }
  .tit_gakuwari {
    margin-top: 4%;
  }
  .gakuwari_attention {
    margin: 6% auto 0;
    padding: 0 0 0 2rem;
    font-size: 1.2rem;
    text-indent: -2rem;
    line-height: 1.3;
  }
  .ul_one {
    max-width: 920px;
    width: 100%;
    margin: 5% auto 2%;
  }
  .boxG .ul_detail {
    font-size: 1.4rem;
  }
}
/* step2
----------------------*/
.boxS1 {
  padding: 0 0 30px;
}

.txt_s1 {
  width: 920px;
  margin: 0 auto;
}

.txt_s1 .box_right {
  width: 290px;
  margin: 8px 0 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

.boxA {
  padding: 33px 0 40px;
  background: #f1f5f8;
  text-align: center;
  position: relative;
}

.boxA::before {
  content: "";
  display: block;
  width: 40px;
  height: 26px;
  background: url(../img/ico_boxA_arrow.png) no-repeat top center;
  position: absolute;
  top: -26px;
  left: 180px;
}

.step2 .boxC {
  padding: 30px 0 80px;
  text-align: center;
}

.step2 .boxC .ul_three {
  display: inline-block;
  width: auto;
}

.lead_box {
  margin: 13px auto 0;
  font-size: 1.6rem;
  font-weight: bold;
  color: #114799;
}

.trial {
  margin: 18px auto 0;
  padding: 0.2rem 0 0.1rem 2.3rem;
  font-size: 1.8rem;
  display: inline-block;
}

.trial span {
  font-size: 1.8rem;
  color: #e11633;
}

.box_one {
  width: 920px;
  margin: 0 auto;
}

.boxA div {
  margin: 26px auto 0;
}

.ul_detail {
  width: 910px;
  margin: 18px auto 0;
  text-align: left;
  font-size: 1.6rem;
}

.ul_detail li + li {
  margin: 14px 0 0;
}

.ul_detail li a {
  padding: 0.2rem 0 0.1rem 2rem;
  display: inline-block;
}

.tit_sub,
.tit_text {
  margin: 20px auto 0;
  text-align: center;
}

.tit_text-note-text a {
  color: #2691ff;
  text-decoration: none;
}

.tit_text-note-text a:hover {
  text-decoration: underline;
}

.tit_sub + label {
  margin-top: 20px;
}

.diagnosis {
  display: inline-block;
  width: 600px;
  margin: 33px auto 0;
  padding: 12px 0 12px 20px;
  background: #fff1f3;
  font-size: 1.8rem;
  font-weight: bold;
  border: 1px solid #e2261a;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}

.diagnosis span {
  padding: 0 0 0 2rem;
  display: inline-block;
  text-decoration: underline;
}

.step2 .ul_three {
  margin: 38px auto 0;
}

@media screen and (max-width: 767px) {
  .boxS1 {
    padding: 0 4.5% 5%;
  }
  .txt_s1 {
    width: 100%;
  }
  .boxA {
    padding: 4% 4.5% 7%;
  }
  .boxA::before {
    content: none;
  }
  .lead_box {
    margin: 2% auto 0;
    padding: 0 0 0 2rem;
    font-size: 1.4rem;
    text-align: left;
    text-indent: -2rem;
    line-height: 1.3;
  }
  .trial {
    width: 91%;
    margin: 2% 0 0;
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.3;
  }
  .trial span {
    font-size: 1.4rem;
  }
  .box_one {
    width: 100%;
    margin: 0 auto;
  }
  .boxA div {
    margin: 4% auto 0;
  }
  .ul_detail {
    width: 100%;
    margin: 4% auto 0;
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.3;
  }
  .ul_detail li + li {
    margin: 2% 0 0;
  }
  .tit_sub {
    margin: 2% auto 0;
    text-align: center;
  }
  .tit_text {
    display: flex;
  }
  .tit_text-note-text {
    text-align: left;
    line-height: 1.4;
  }
  .tit_sub + label {
    margin-top: 2%;
  }
  .diagnosis {
    width: 100%;
    margin: 5% auto 0;
    padding: 2% 4%;
    font-size: 1.4rem;
    line-height: 1.4;
    text-align: left;
    background-position: 2% 1rem;
  }
  .step2 .ul_three {
    margin: 3% auto 0;
  }
}
/* step1
----------------------*/
.step1 .ul_three {
  margin: 28px auto 0;
}

.s3_boxA_1 {
  padding: 0 0 34px;
}

.step1 .box_one {
  margin-top: 20px;
}

.ul_terminal {
  width: 940px;
  margin: 37px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .ul_terminal {
    display: block;
  }
}
.ul_terminal li {
  width: 438px;
  margin: 0 13px;
  border: 3px solid #b3cfe7;
  border-radius: 10px;
  position: relative;
}

.ul_terminal li .phone_salewrap {
  background-color: #fff;
  padding-bottom: 20px;
  margin-top: -24px;
}
@media screen and (max-width: 767px) {
  .ul_terminal li .phone_salewrap {
    margin-top: 0;
  }
}

.ul_terminal li .phone_sale {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 90%;
  margin: auto;
  padding: 0.5em;
  border: solid 1px #ff0000;
  border-radius: 6px;
  color: #ff0000;
  font-size: 1.6rem;
}
.ul_terminal li .phone_sale > span:first-child {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .ul_terminal li .phone_sale {
    font-size: 1.3rem;
  }
}

.ul_terminal li:before {
  content: "";
  width: 60px;
  height: 100%;
  display: block;
  background: #f1f5f8;
  border-radius: 10px 0 0 10px;
  position: absolute;
  left: 0;
}

.ul_terminal li:nth-child(1) .phone_price.split .bulk_price,
.ul_terminal li:nth-child(1) .phone_price.split .bulk_price .price,
.ul_terminal li:nth-child(3) .phone_price.split .bulk_price,
.ul_terminal li:nth-child(3) .phone_price.split .bulk_price .price {
  color: #182c4b !important;
}

.ul_terminal li:nth-child(1) .bulk_price span.list-price,
.ul_terminal li:nth-child(3) .bulk_price span.list-price {
  font-size: 1.8rem !important;
}

@media screen and (max-width: 767px) {
  .ul_terminal li:nth-child(1) .bulk_price span.list-price {
    text-align: left;
  }
}
.ul_terminal li:nth-child(n+3) {
  margin-top: 23px;
}

.ul_terminal li:after {
  content: " ";
  display: block;
  clear: both;
}

.ul_terminal li span {
  display: block;
  font-weight: bold;
  position: relative;
  line-height: 1.2;
}

.ul_terminal li span a {
  margin: 17px 0 0;
  display: none;
}

.ul_terminal li .img {
  float: left;
  width: 120px;
  min-height: 120px;
  text-align: center;
  position: absolute;
  margin: auto;
  top: 48%;
  left: 69px;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.ul_terminal li .img img {
  max-width: 120px;
  max-height: 138px;
  position: absolute;
  margin: auto;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}

.ul_terminal li .txt {
  float: right;
  width: 220px;
  min-height: 120px;
  z-index: 1;
  position: static;
}

.ul_terminal li .img.production::after,
.ul_terminal li .img.popular::after,
.ul_terminal li .img.new_arrival::after,
.ul_terminal li .img.women_popular::after,
.ul_terminal li .img.special_price::after,
.ul_terminal li .img.selling::after,
.ul_terminal li .img.price_change::after {
  content: "";
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  right: -1%;
  top: -10%;
  background-size: 100%;
}

.iphone.ul_terminal li .img.production::after,
.iphone.ul_terminal li .img.popular::after,
.iphone.ul_terminal li .img.new_arrival::after,
.iphone.ul_terminal li .img.women_popular::after,
.iphone.ul_terminal li .img.special_price::after,
.iphone.ul_terminal li .img.selling::after {
  right: -3%;
}

.production::after {
  background: url(../img/ico_step1_01.png) no-repeat;
}

.popular::after {
  background: url(../img/ico_step1_02.png) no-repeat;
}

.selling::after {
  background: url(../img/ico_step1_03.png) no-repeat;
}

.new_arrival::after {
  background: url(../img/ico_step1_08.png) no-repeat;
}

.women_popular::after {
  background: url(../img/ico_step1_05.png) no-repeat;
}

.special_price::after {
  background: url(../img/ico_step1_06.png) no-repeat;
}

.price_change::after {
  background: url(../img/ico_step1_07.png) no-repeat;
}

@media screen and (max-width: 767px) {
  .ul_terminal li .img.mnp {
    top: 63%;
  }
}
.ul_terminal li .img.mnp::before {
  content: "";
  width: 80px;
  height: 80px;
  display: block;
  position: absolute;
  right: 15%;
  top: -53%;
  background-size: 100%;
}

@media screen and (max-width: 767px) {
  .ul_terminal li .img.mnp::before {
    right: -3%;
    top: -43%;
    max-width: 100%;
  }
}
.mnp::before {
  background: url(../img/btn_mnp.png) no-repeat;
}

@media screen and (max-width: 767px) {
  .ul_terminal li .img.sinki {
    top: 63%;
  }
}
.ul_terminal li .img.sinki::before {
  content: "";
  width: 80px;
  height: 80px;
  display: none;
  position: absolute;
  right: 15%;
  top: -53%;
  background-size: 100%;
}

@media screen and (max-width: 767px) {
  .ul_terminal li .img.sinki::before {
    right: -3%;
    top: -43%;
    max-width: 100%;
  }
}
.ul_terminal li .phone_reduction_wrap {
  position: static;
  text-align: right;
}

.ul_terminal li .phone_reduction {
  display: inline-block;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .ul_terminal li .phone_reduction {
    margin: 0 auto 10px;
  }
  .ul_terminal li .phone_reduction img {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .ul_terminal li .img.mnp {
    top: 63%;
  }
}
.ul_terminal li .img.mnp::before {
  content: "";
  width: 80px;
  height: 80px;
  display: block;
  position: absolute;
  right: 15%;
  top: -53%;
  background-size: 100%;
}

@media screen and (max-width: 767px) {
  .ul_terminal li .img.mnp::before {
    right: -3%;
    top: -43%;
    max-width: 100%;
  }
}
.mnp::before {
  background: url(../img/btn_mnp.png) no-repeat;
}

@media screen and (max-width: 767px) {
  .ul_terminal li .img.sinki {
    top: 63%;
  }
}
.ul_terminal li .img.sinki::before {
  content: "";
  width: 80px;
  height: 80px;
  display: none;
  position: absolute;
  right: 15%;
  top: -53%;
  background-size: 100%;
}

@media screen and (max-width: 767px) {
  .ul_terminal li .img.sinki::before {
    right: -3%;
    top: -43%;
    max-width: 100%;
  }
}
.sinki::before {
  background: url(../img/btn_sinki.png) no-repeat;
}

.ul_terminal.iphone .img img {
  max-height: 120px;
}

.ul_terminal.iphone li {
  position: relative;
}

.ul_terminal.iphone .phone_cam {
  position: absolute;
  right: 20px;
  bottom: 10px;
}

.box_phone {
  padding: 23px 16px 26px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  min-height: 300px;
}

.iphone .box_phone {
  padding: 23px 35px 46px 10px;
}

.phone_os {
  color: #114799;
  font-size: 1.3rem;
}

.phone_name {
  margin: 5px 0 10px;
  font-size: 2rem;
}

.phone_price {
  margin: 14px 0 0;
  font-size: 1.6rem;
}

.ul_terminal li .phone_price span {
  display: inline-block;
  color: #e2281c;
}

.phone_price + .phone_price {
  margin-top: 5px;
}

.phone_price.camp {
  color: #e2281c;
}

/*-- 電話エリアラジオ ボタンデザイン --*/
.btn_terminal {
  padding: 0 0 0 60px;
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.btn_terminal::before {
  content: "";
  width: 27px;
  height: 27px;
  background: #fff;
  border: 2px solid #8cb3d4;
  display: block;
  position: absolute;
  left: 17px;
  top: calc(50% - 17px);
}

input[type=radio]:checked + .btn_terminal {
  background: #8fd68b;
  border: 3px solid #8fd68b;
}

input[type=radio]:checked + .btn_terminal::before {
  border: 2px solid #5bbc56;
}

input[type=radio]:checked + .btn_terminal::after {
  content: "";
  width: 38px;
  height: 29px;
  background: url(../img/ico_check.png);
  display: block;
  position: absolute;
  left: 20px;
  top: calc(50% - 18px);
}

.s3_boxA_2 {
  padding: 0 0 40px;
}

.s3_boxA_2 .ul_two {
  margin: 38px auto 0;
}

.s3_boxA_3 {
  padding: 0 0 50px;
}

.s3_boxA_3 .tit_sub + label {
  margin: 37px auto 0;
}

.s3_boxB {
  padding: 0 0 40px;
  text-align: center;
}

.box_red {
  width: 920px;
  margin: 40px auto 0;
  padding: 30px 0 24px;
  border: 1px solid #e7223e;
  font-size: 2rem;
  font-weight: bold;
  color: #e7223e;
  text-align: center;
  line-height: 1.6;
}

.s3_boxB .txt {
  margin: 33px auto 0;
  font-size: 1.8rem;
}

.s3_boxB a {
  margin: 32px auto 0;
  display: block;
}

@media screen and (max-width: 767px) {
  /* step1
  ----------------------*/
  .step1 .ul_three {
    margin: 5% auto 0;
  }
  .box_s3 {
    padding: 0 0 7%;
  }
  .s3_boxA_1 {
    padding: 0 0 6%;
  }
  .ul_terminal {
    width: 100%;
    margin: 4% auto 0;
  }
  .ul_terminal li, .ul_terminal li:nth-child(n+3) {
    float: none;
    width: 100%;
    margin: 4% 0 0;
  }
  .ul_terminal li:first-child {
    margin: 0;
  }
  .ul_terminal li span a {
    width: 80%;
    margin: 4% auto 0;
  }
  .ul_terminal li .img {
    width: 22%;
    /*min-height: 54%;*/
    position: absolute;
    margin: auto;
    top: 48%;
    left: 16%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
  }
  .ul_terminal li .img.img_s {
    width: 30%;
  }
  .ul_terminal li .img.new_arrival02 {
    min-height: 71px;
  }
  .ul_terminal.iphone li .img {
    width: 30%;
    left: 20%;
  }
  .ul_terminal li .img img {
    max-width: 100%;
    width: auto;
    max-height: 100%;
  }
  .ul_terminal li .txt {
    width: 64%;
    padding: 4% 0%;
    text-align: center;
  }
  .ul_terminal.iphone li .txt {
    width: 58%;
    padding: 2% 0%;
  }
  .ul_terminal.iphone .img img {
    height: auto;
  }
  .ul_terminal.iphone .phone_cam {
    width: 60%;
    margin: 4% 0 0 15%;
    position: static;
  }
  .ul_terminal li .img.production::after,
  .ul_terminal li .img.popular::after,
  .ul_terminal li .img.new_arrival::after,
  .ul_terminal li .img.women_popular::after,
  .ul_terminal li .img.special_price::after,
  .ul_terminal li .img.selling::after,
  .ul_terminal li .img.price_change::after {
    width: 55%;
    right: 2%;
    top: 6%;
    background-size: contain;
  }
  .ul_terminal li .img.production::after,
  .ul_terminal li .img.popular::after,
  .ul_terminal li .img.new_arrival::after,
  .ul_terminal li .img.women_popular::after,
  .ul_terminal li .img.special_price::after,
  .ul_terminal li .img.selling::after,
  .ul_terminal li .img.price_change::after {
    right: -11%;
    top: 0;
  }
  .iphone.ul_terminal li .img.production::after,
  .iphone.ul_terminal li .img.popular::after,
  .iphone.ul_terminal li .img.new_arrival::after,
  .iphone.ul_terminal li .img.women_popular::after,
  .iphone.ul_terminal li .img.special_price::after,
  .iphone.ul_terminal li .img.selling::after {
    right: -7%;
    top: -2%;
  }
  .box_phone {
    padding: 0 4% 0 0;
    min-height: initial;
  }
  .iphone .box_phone {
    padding: 0 4% 0 0;
  }
  .phone_os {
    margin: 3% 0 0;
    font-size: 1.2rem;
  }
  .phone_name {
    margin: 0;
    font-size: 1.8rem;
    z-index: 1212;
  }
  .iphone .phone_name {
    margin: 10% 0 0;
  }
  .phone_price {
    margin: 3% 0 0;
    font-size: 1.2rem;
  }
  .phone_price + .phone_price {
    margin-top: 2%;
  }
  /*-- 電話エリアラジオ ボタンデザイン --*/
  .btn_terminal {
    padding: 0 0 0 12.8%;
    background: url(../img/btn/bg_tarminal_off_sp.png) no-repeat left center;
    background-size: 100%;
  }
  .btn_terminal::before, .btn_terminal::after,
  input[type=radio]:checked + .btn_terminal::before,
  input[type=radio]:checked + .btn_terminal::after {
    content: none;
  }
  input[type=radio]:checked + .btn_terminal {
    background: url(../img/btn/bg_tarminal_on_sp.png) no-repeat left center;
    background-size: 100%;
  }
  .s3_boxA_2 {
    padding: 0 0 7%;
  }
  .s3_boxA_2 .ul_two {
    margin: 5% auto 0;
  }
  .s3_boxA_3 {
    padding: 0 0 7%;
  }
  .s3_boxA_3 .tit_sub + label {
    margin: 4% auto 0;
  }
  .s3_boxB {
    padding: 0 0 7%;
  }
  .box_red {
    width: 100%;
    margin: 5% auto 0;
    padding: 4% 4%;
    font-size: 1.4rem;
    text-align: left;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 1.4;
    letter-spacing: -0.03rem;
  }
  .s3_boxB .txt {
    margin: 5% auto 0;
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.3;
  }
  .s3_boxB a {
    width: 69%;
    margin: 4% auto 0;
  }
}
/* step4
----------------------*/
.step4 .box_shadow {
  padding: 38px 0 50px;
}
.step4 .box_shadow + .box_shadow {
  margin-top: 0;
}

.step4 .box_one + .box_one {
  margin-top: 20px;
}

.step4 .hikari-set {
  padding-top: 40px;
}

@media screen and (max-width: 767px) {
  .step4 .box_shadow {
    padding: 5% 0;
  }
  .step4 .box_one {
    width: 91%;
  }
  .step4 .box_one + .box_one {
    margin-top: 3%;
  }
  .step4 .hikari-set {
    padding-top: 7%;
  }
  .step4 .hikari-set .tit_sub {
    padding: 0 4.5%;
  }
  .step4 .hikari-set .diagnosis {
    width: 91%;
  }
}
/* ---------------------------------------
$ LIBMOの料金/追従
----------------------------------------*/
.box_follow, .box_result {
  padding: 20px 0;
  background: url(../img/bg_pink.gif);
}

.tit_result {
  text-align: center;
}

.box_left {
  float: left;
  width: 48%;
}

.box_right {
  float: right;
  width: 48%;
}

@media screen and (max-width: 767px) {
  .box_left, .box_right {
    float: none;
    width: 100%;
  }
}
.view_result {
  margin: 10px 0 0;
  padding: 20px 13px 12px;
  border: 1px solid #e2261a;
  border-radius: 5px;
  font-size: 4.4rem;
  font-weight: bold;
  color: #e7223e;
  text-align: right;
  -webkit-box-shadow: inset 0px 0px 5px 1px #f0efef;
  box-shadow: inset 0px 0px 5px 1px #f0efef;
}
.view_result.shoki, .view_result.getsugaku {
  font-size: 3.3rem;
}
@media screen and (max-width: 767px) {
  .view_result.shoki, .view_result.getsugaku {
    font-size: 1.2rem;
  }
}

.view_result span {
  font-size: 2.6rem;
}

.box_white {
  background: #fff;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .view_result {
    float: left;
    width: calc(98% - 7rem);
    margin: 0 0 0 2%;
    padding: 2% 3% 1.3%;
    font-size: 2.5rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 3px;
  }
  .view_result span {
    font-size: 1.3rem;
  }
}
/* 追従
----------------------*/
.box_follow {
  width: 100%;
  padding: 25px 4%;
  bottom: 0;
  z-index: 2000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.box_follow .inner {
  max-width: 1040px;
  width: 100%;
}

.box_follow .view_result {
  padding: 11px 13px 6px;
}

.box_follow .view_result span {
  margin: 0 0 0 10px;
  display: inline-block;
}

.box_follow .box_white {
  margin: 0 auto;
  padding: 28px 4% 25px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.box_follow .txt_att {
  margin: 10px auto 0;
  font-size: 1.1rem;
  color: #000;
}

.box_follow .box_left div {
  position: relative;
}

.box_follow .balloon {
  width: auto;
  padding: 4px 20px 4px;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.6rem;
  font-weight: bold;
  text-align: center;
  position: absolute;
  right: 0;
  top: -37px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #e7223e;
  border-radius: 5px;
  display: none;
}
.box_follow .balloon:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid #e7223e;
}

@media screen and (max-width: 767px) {
  .box_follow .balloon:before {
    display: none;
  }
}
.box_follow .balloon span {
  margin: 0 0 0 10px;
  display: inline-block;
}

.box_follow .dl_detail {
  margin: 10px 0 0 7px;
  font-size: 1.8rem;
}

.box_follow .dl_detail dt {
  width: calc(100% - 24rem);
  clear: both;
}

.box_follow .dl_detail dd {
  width: 24rem;
  text-align: right;
}

.box_follow .dl_detail dt,
.box_follow .dl_detail dd {
  margin-top: 8px;
}

.dl_first {
  padding: 0 0 0 5px;
  border-bottom: 1px solid #ccc;
}

.dl_first dt, .dl_detail dt {
  float: left;
}

.dl_first dd, .dl_detail dd {
  float: right;
}

.dl_first dd {
  font-size: 2.8rem;
  font-weight: bold;
  color: #e7223e;
}

.dl_first dd span {
  font-size: 2.2rem;
}

@media screen and (max-width: 767px) {
  .box_follow {
    position: fixed;
    width: 100%;
    padding: 5% 4% 0;
    bottom: 0;
    overflow: hidden;
  }
  .box_follow .inner {
    padding: 0 0 2%;
    background: #fff;
    border-radius: 10px 10px 0 0;
  }
  .box_follow .box_left .tit_min, .box_follow .dl_first {
    float: left;
    width: 10rem;
  }
  .box_follow .box_left div, .box_follow .dl_detail {
    float: left;
    width: calc(100% - 10rem);
  }
  .dl_first dd {
    display: none;
  }
  .dl_first {
    padding: 0;
    border-bottom: none;
  }
  .dl_first dd {
    font-size: 2.8rem;
  }
  .box_follow .box_right {
    margin-top: 2%;
  }
  .box_follow .dl_detail {
    margin: 0;
    font-size: 1.8rem;
  }
  .box_follow .dl_detail dt, .box_follow .dl_detail dd {
    margin-top: 2%;
    font-size: 1.2rem;
  }
  .box_follow .dl_detail dt {
    width: 8.5rem;
  }
  .box_follow .dl_detail dd {
    width: calc(100% - 8.5rem);
  }
  .box_follow .view_result {
    width: 100%;
    padding: 3% 4%;
  }
  .box_follow .view_result span {
    margin: 0 0 0 2px;
    display: inline-block;
  }
  .box_follow .box_white {
    padding: 3% 4.5% 0;
    overflow: inherit;
  }
  .box_follow .txt_att {
    width: 100%;
    margin: 2% auto 0;
    padding: 0 2rem 0 4rem;
    font-size: 1.1rem;
    color: #000;
    text-indent: -1.4rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .box_follow .box_left div {
    position: relative;
  }
  .box_follow .balloon {
    max-width: 290px;
    width: 90%;
    height: initial;
    padding: 3.5% 0 4.5%;
    font-size: 1.2rem;
    right: 1%;
    top: auto;
    bottom: 78%;
    margin: auto;
    background: url(../img/bg_follow_balloon_sp.png) no-repeat right bottom;
    background-size: 100%;
  }
  .box_follow .balloon span {
    margin: 0 0 0 10px;
    display: inline-block;
  }
}
@media screen and (max-width: 320px) {
  .box_follow .box_left .tit_min, .box_follow .dl_first {
    width: 8rem;
  }
  .box_follow .box_left div, .box_follow .dl_detail {
    float: left;
    width: calc(100% - 8rem);
  }
  .box_follow .balloon {
    width: 94%;
    padding: 3% 0 4.5%;
    font-size: 1.1rem;
    bottom: 83%;
  }
}
/* LIBMOの料金
----------------------*/
.box_result {
  padding: 62px 4% 60px;
}

.box_result .box_white {
  margin: 28px 0 0;
  padding: 35px 0 0;
}

.box_result .txt_att {
  margin: 10px auto 0;
  text-align: center;
  font-size: 1.1rem;
}

.result_boxA ul, .result_boxB, .result_boxD, .result_wrap {
  width: 920px;
  margin: 0 auto;
}

.result_boxA {
  padding: 0 0 35px;
  border-bottom: 1px solid #ccc;
}

.result_wrap {
  margin: 38px auto 0;
}
.result_wrap .box_left {
  width: 96%;
}
.result_wrap .box_right {
  margin-top: 38px;
  float: left;
  width: 96%;
}
.result_wrap dt, .result_wrap dd {
  width: 48%;
}

.txt_result_att {
  width: 100%;
  margin: 1rem 0 0 1rem;
  font-size: 12px;
  line-height: 1.3;
  text-indent: -1rem;
}

.tit_min, .dl_first dt {
  font-size: 2.2rem;
  font-weight: bold;
  color: #000;
}

.tit_min.opt {
  margin: 34px 0 0;
  font-size: 2.2rem;
  letter-spacing: -0.15rem;
  color: rgba(0, 0, 0, 0.7);
}

.tit_min.opt + .ul_break {
  margin: 0 0 0;
}

.dl_detail {
  font-size: 1.8rem;
}

.ul_break {
  margin: 8px 0 0;
}

.ul_break li {
  margin: 17px 0 0;
}

.opt.ul_break li {
  margin: 14px 0 0;
}

.ul_break li:first-child {
  margin: 0;
}

.ul_break dl {
  width: 100%;
  font-size: 1.8rem;
}

.ul_break dl:after {
  content: " ";
  display: block;
  clear: both;
}

.ul_break dt {
  float: left;
  margin: 0 0 0 1.8rem;
  font-weight: bold;
  text-indent: -1.8rem;
}

.ul_break dt::before {
  content: "●";
  position: relative;
  left: -3px;
}

.ul_break dd {
  float: right;
  text-align: right;
}

.ul_break dt, .ul_break dd {
  margin-top: 13px;
  line-height: 1.3;
}

dt.minus, .minus + dd {
  white-space: nowrap;
  color: #e7223e;
  font-weight: normal;
}

dt.minus {
  text-indent: 0;
}

dt.minus::before {
  content: none;
}

.txt_campaign {
  margin: 5px 0 0;
  padding: 6px 0 5px 15px;
  color: #e7223e;
  font-size: 1.3rem;
  font-weight: bold;
  background: #fff1f3;
  line-height: 1.3;
}

.ul_initial {
  margin: 20px auto 0;
}

.ul_initial li {
  margin: 10px 0 0;
  padding: 0 0 8px;
  border-bottom: 1px solid #ccc;
}

.ul_initial li:first-child {
  margin: 0;
}

.box_yearly {
  margin: 27px 0 0;
  padding: 18px 20px;
  border: 3px solid #c8dae4;
  border-radius: 10px;
}

.txt_calculation {
  margin: 15px 0 0;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1rem;
}

.txt_calculation .red_line {
  position: relative;
  display: inline-block;
}

.txt_calculation .red_line::after {
  content: "";
  width: 100%;
  height: 3px;
  display: block;
  background: #e7223e;
  position: absolute;
  right: 0;
  top: 0.8rem;
}

.dl_initial {
  color: #e11633;
  font-size: 1.8rem;
  font-weight: bold;
}

.box_yearly .dl_initial {
  margin: 5px 0 0;
}

.dl_initial.lead {
  color: #182c4b;
  font-weight: normal;
}

.dl_initial dt {
  float: left;
  width: calc(100% - 30rem);
}

.dl_initial dd {
  float: right;
  width: 30rem;
  text-align: right;
  letter-spacing: 0.1rem;
}

.box_yearly .dl_initial dt,
.box_yearly .dl_initial dd {
  margin: 9px 0 0;
}

.txt_total {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: right;
}

.txt_total span {
  margin-right: 10px;
  display: inline-block;
}

.box_yearly .txt_total {
  margin: 40px 0 0;
}

.year_seccond .txt_total {
  margin: 23px 0 0;
}

.box_yearly .txt_total span {
  margin: 0 6px 0 18px;
  display: inline-block;
}

.result_boxB {
  margin: 20px auto 0;
  padding: 20px 0;
  text-align: center;
  display: none;
}

.box_reccomen {
  background: #fbfbf2;
}

.result_boxC {
  margin: 0 auto;
  padding: 44px 0 30px;
  background: #e0f1ff;
  text-align: center;
}

.result_boxC .tit_sub {
  margin: 25px auto 0;
}

.box_comparison {
  margin: 10px auto 0;
}

.box_comparison span {
  display: inline-block;
  position: relative;
  top: 4px;
  right: 5px;
}

.view_compari + span {
  left: 3px;
}

.view_compari {
  width: 420px;
  margin: 10px 10px 0;
  padding: 3px 20px 0;
  display: inline-block;
  border: 1px solid #c8dae4;
  border-radius: 5px;
  color: #182c4b;
  font-size: 5rem;
  font-weight: bold;
  background: #fff;
  text-align: right;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "Yu Gothic", sans-serif;
}

.btn_result {
  margin: 20px auto 0;
}

.btn_result a {
  width: 320px;
  margin: 0 auto 0;
  padding: 18px 0;
  background: #2972e1;
  border-radius: 8px;
  border-bottom: 5px solid #0f4eb9;
  display: block;
}

.result_boxD {
  margin: 72px auto 0;
  padding: 0 0 50px;
  display: none;
  width: 1040px;
}

.ul_boxD {
  width: 940px;
  margin: 0 auto 0;
}

.ul_boxD li {
  float: left;
  width: 440px;
  font-weight: bold;
  text-align: center;
}

.ul_boxD li.red {
  padding-left: 60px;
  background: url(../img/img_result_boxC_new_pc.png) no-repeat 25px 50%;
  position: relative;
}

.ul_boxD li dl {
  border-radius: 10px;
}

.ul_boxD li dt {
  padding: 10px 0 5px;
  color: #fff;
  font-size: 2.2rem;
}

.ul_boxD li dd {
  padding: 10px 0 12px;
  font-size: 2rem;
}

.ul_boxD li dd span {
  margin: 0 7px;
  display: inline-block;
  font-size: 3.5rem;
}

.ul_boxD li.blue dl {
  border: 3px solid #114799;
}

.ul_boxD li.blue dl dt {
  background: #114799;
}

.ul_boxD li.red dl {
  border: 3px solid #e7223e;
}

.ul_boxD li.red dt {
  background: #e7223e;
}

.ul_boxD li.red dd span {
  color: #e7223e;
}

.ul_boxD .txt_att {
  width: 400px;
  height: 51px;
  margin: 0 auto;
  padding: 20px 0 0;
  background: url(../img/bg_result_boxC_02_pc.png) no-repeat;
  background-size: 100%;
  color: #e7223e;
  font-size: 1.8rem;
  font-weight: bold;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  right: 21px;
  bottom: -31px;
}

.ul_boxD .txt_att span {
  display: inline-block;
  margin-left: 10px;
}

.result_boxD .txt_total {
  margin: 50px auto 0;
  font-size: 3.6rem;
  font-weight: bold;
  text-align: center;
}

.result_boxD .txt_total span.red {
  margin: 0 0 0 4px;
  font-size: 6rem;
  font-weight: bold;
  color: #e7223e;
  border-bottom: 8px solid #ffcfdd;
}

.result_boxD .txt_total span.getugaku_otoku {
  margin: 0 0 0 4px;
  font-size: 6rem;
  font-weight: bold;
}

.result_boxD .txt_total span.hantoshi_otoku {
  margin: 0 0 0 4px;
  font-size: 6rem;
  font-weight: bold;
}

.txt_total > span span {
  font-size: 3.6rem;
}

.result_boxD .txt_total > span.ten {
  margin-left: -6px;
  width: 10px;
}

.result_boxE {
  padding: 30px 0 40px;
  background: #eafde9;
  text-align: center;
  display: none;
}

.btn_application {
  width: 485px;
  margin: 0 auto 0;
  padding: 20px 0 14px;
  background: #23a81c;
  border-radius: 8px;
  border-bottom: 5px solid #068400;
  position: relative;
}

.year_seccond {
  margin: 23px 0 0;
}

.box_result .caution {
  text-align: center;
  width: auto;
  margin: 35px auto 0;
}
.box_result .caution p {
  position: relative;
  font-size: 13px;
  font-weight: bold;
  display: inline-block;
  background: #fff;
  color: #df1b38;
  padding: 15px;
  padding-left: 30px;
  position: relative;
  line-height: 1.3;
}
.box_result .caution p a {
  color: #df1b38;
}
.box_result .caution p:before {
  content: "※";
  position: absolute;
  left: 15px;
  top: 15px;
}

@media screen and (max-width: 767px) {
  .box_result .caution {
    text-align: left;
    width: auto;
    margin: 35px auto 0;
  }
  .box_result .caution p {
    position: relative;
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
    background: #fff;
    color: #df1b38;
    padding: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
  }
  .box_result .caution p a {
    color: #df1b38;
  }
  .box_result .caution p:before {
    content: "※";
    position: absolute;
    left: 15px;
    top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .box_result {
    padding: 6% 0 6%;
  }
  .box_result .box_white {
    margin: 4% 0 0;
    padding: 4% 0 0;
  }
  .box_result .box_left, .box_result .box_right {
    padding: 2% 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .result_wrap .box_left, .result_wrap .box_right {
    padding: 5% 4.5% 7%;
    margin: 0 auto;
  }
  .box_result .box_right {
    margin: 0 auto;
    padding-top: 3%;
  }
  .box_result .txt_att {
    margin: 3% auto 0;
    font-size: 1.2rem;
  }
  .result_boxA ul, .result_boxB, .result_boxD, .result_wrap {
    width: 100%;
  }
  .result_boxA {
    padding: 0 4.5% 3%;
  }
  .result_wrap {
    margin: 4% auto 0;
  }
  .txt_result_att {
    width: 98%;
  }
  .tit_min, .dl_first dt {
    width: 7rem;
    padding: 4% 0 0;
    float: left;
    font-size: 1.6rem;
  }
  .result_wrap .tit_min {
    width: 100%;
    float: none;
  }
  .result_wrap .box_right .tit_min {
    float: none;
  }
  .tit_min.opt {
    margin: 4% 0 0;
    font-size: 2.2rem;
  }
  .tit_min.opt + .ul_break {
    margin: 5% auto 0;
  }
  .dl_detail {
    font-size: 1.8rem;
  }
  .ul_break {
    margin: 5% 0 0;
  }
  .ul_break li {
    margin: 4% 0 0;
  }
  .opt.ul_break li {
    margin: 4% 0 0;
  }
  .opt.ul_break li:first-child {
    margin: 0;
  }
  .ul_break dl {
    font-size: 1.8rem;
  }
  .ul_break dd {
    width: 100%;
  }
  .ul_break dt, .ul_break dd {
    margin: 0 0 0 3px;
    font-size: 1.4rem;
  }
  .ul_break dt {
    float: left;
    width: calc(100% - 6.8rem);
    margin: 0 0 0 1rem;
    text-indent: -1rem;
    line-height: 1.3;
  }
  dt.minus {
    width: calc(100% - 6.8rem);
    margin: 2% 0 0 1rem;
    text-indent: 0;
  }
  dt.minus + dd {
    margin: 2% 0 0;
  }
  .txt_campaign {
    margin: 2% 0 0;
    padding: 3% 4%;
    font-size: 1.3rem;
    line-height: 1.3;
  }
  .ul_initial {
    margin: 3% auto 0;
  }
  .ul_initial li {
    margin: 3% 0 0;
    padding: 0 0 2%;
  }
  .box_yearly {
    margin: 5% 0 0;
    padding: 4% 4% 7%;
  }
  .txt_calculation {
    margin: 4% 0 0;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
  }
  .txt_calculation span::after {
    height: 3px;
    right: 0;
    top: 0.6rem;
  }
  .dl_initial {
    font-size: 1.4rem;
  }
  .box_yearly .dl_initial {
    margin: 3% 0 0;
    font-size: 1.3rem;
  }
  .dl_initial dt {
    float: left;
    width: calc(100% - 9rem);
    padding: 0 0 0 4%;
  }
  .dl_initial dd {
    float: right;
    width: 100%;
  }
  .ul_initial dt {
    padding-left: 0.8rem;
  }
  .box_yearly .dl_initial dt, .box_yearly .dl_initial dd {
    margin: 2% 0 0;
  }
  .txt_total {
    font-size: 2.4rem;
    text-align: right;
  }
  .txt_total span {
    margin-right: 2%;
    display: inline;
  }
  .box_yearly .txt_total {
    margin: 6% 0 0;
    font-size: 1.6rem;
  }
  .year_seccond .txt_total {
    margin: 5% 0 0;
  }
  .box_yearly .txt_total span {
    margin: 0 1% 0 4%;
  }
  .result_boxC {
    margin: 2% auto 0;
    padding: 8% 4.5% 7%;
  }
  .result_boxC .tit_sub {
    margin: 5% auto 0;
  }
  .box_comparison {
    margin: 2% auto 0;
  }
  .box_comparison span img {
    width: auto;
    height: 1.8rem;
  }
  .view_compari {
    width: 70%;
    margin: 0 2%;
    padding: 2% 4% 1%;
    font-size: 2.5rem;
    font-weight: bold;
  }
  .btn_result {
    margin: 4% auto 0;
  }
  .btn_result a {
    width: 52%;
    margin: 0 auto;
    padding: 3% 0 2.1%;
  }
  .result_boxD {
    margin: 6% auto 0;
    padding: 0 0 50px;
  }
  .ul_boxD {
    width: 95%;
    margin: 0 auto;
  }
  .ul_boxD li {
    float: left;
    width: 100%;
    text-align: center;
  }
  .ul_boxD li.red {
    margin: 3% auto 0;
    padding: 18% 0 0;
    background: url(../img/img_result_boxC_sp.png) no-repeat center top;
    background-size: 100%;
  }
  .ul_boxD li dt {
    padding: 4% 0 3%;
    font-size: 2.2rem;
  }
  .ul_boxD li dd {
    padding: 4% 0 4%;
    font-size: 1.8rem;
  }
  .ul_boxD li dd span {
    margin: 0 2%;
    font-size: 2.8rem;
  }
  .ul_boxD .txt_att {
    width: 92%;
    height: auto;
    margin: 0 auto;
    padding: 6% 0 5%;
    background: url(../img/bg_result_boxC_02_sp.png) no-repeat;
    background-size: 100%;
    font-size: 1.2rem;
    right: 0;
    left: 0;
    bottom: -22%;
  }
  .ul_boxD .txt_att span {
    margin-left: 2%;
  }
  .result_boxD .txt_total {
    margin: 8% auto 0;
    font-size: 3.6rem;
    text-align: center;
  }
  .result_boxD .txt_total span.red {
    margin: 0 0 0 2%;
    font-size: 2.3rem;
    border: none;
  }
  .result_boxD .txt_total span.getugaku_otoku {
    font-size: 2.3rem;
  }
  .result_boxD .txt_total span.hantoshi_otoku {
    font-size: 2.3rem;
  }
  .txt_total > span span {
    font-size: 2.3rem;
  }
  .result_boxD .txt_total span.ten {
    display: none;
  }
  .result_boxD .txt_total span.sp_red {
    border-bottom: 8px solid #ffcfdd;
    font-size: 2rem;
    line-height: 1.6;
  }
  .btn_application {
    width: 100%;
    margin: 0 auto 0;
    padding: 2% 0 2%;
    border-bottom: 5px solid #068400;
  }
  .year_seccond {
    margin: 3% 0 0;
  }
}
/* ---------------------------------------
$ モーダル
----------------------------------------*/
#modalA, #modalB {
  max-width: 1040px;
  width: 96%;
  max-height: 96%;
  margin: auto;
  padding: 50px 0;
  text-align: center;
  background: #fff;
  display: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#modalA img, #modalB img {
  width: 100%;
}

#modalA h2 {
  max-width: 780px;
  width: 91%;
  margin: 0 auto;
}

#modalA .tit_sub {
  font-size: 2.4rem;
  font-weight: bold;
}

#modalA .ul_five + .tit_sub {
  margin: 46px auto 0;
}

.box_blue {
  margin: 40px auto 0;
  background: #f1f5f8;
  position: relative;
}

#modalA .box_blue {
  padding: 30px 5.1% 60px;
}

#modalB .box_blue {
  padding: 11px 10% 40px;
}

#modalB h2 {
  max-width: 854px;
  width: 92%;
  margin: 0 auto;
}

#modalB .tit_sub {
  line-height: 1.4;
  font-size: 3rem;
  font-weight: bold;
}

#modalB .txt_att {
  margin: 20px auto 0;
}

#modalB .ul_two {
  margin: 20px auto 0;
}

#modalB .ul_two li {
  max-width: 400px;
  width: 48.9%;
  margin: 0 0 0 2.2%;
}

#modalB .ul_two li:first-child {
  margin: 0;
}

#modalB .txt_detail {
  max-width: 628px;
  margin: 30px auto 0;
}

.tb_modal {
  width: 81%;
  margin: 40px auto 0;
  border: 2px solid #afc7d6;
}

.tb_modal th {
  width: 30%;
  font-size: 1.8rem;
  font-weight: bold;
  background: #f1f5f8;
}

.tb_modal td {
  padding: 2.5% 4%;
  text-align: left;
  font-size: 1.8rem;
}

.tb_modal th, .tb_modal td {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px solid #afc7d6;
  vertical-align: middle;
}

.conclusion {
  margin: 60px auto 0;
  font-size: 3.4rem;
  font-weight: bold;
}

.conclusion span {
  font-size: 5.6rem;
  color: #22a61b;
}

#modalB .conclusion {
  line-height: 1.3;
}

.btn_green {
  display: block;
  width: 355px;
  margin: 24px auto 0;
  padding: 22px 0 18px;
  background: #22a61b;
  text-decoration: none;
  color: #fff;
  font-size: 2.3rem;
  font-weight: bold;
}

.close_btn {
  max-width: 157px;
  width: 30%;
  display: block;
  margin: 30px auto 0;
}

.tb_modal + a {
  margin: 40px auto 0;
}

.modalA_answer, .modalB_answerA, .modalB_answerB {
  width: 91%;
  margin: 0 auto;
  padding: 3% 0 0;
  display: none;
  background: url(../img/modal_arrow_pc.png) no-repeat center top;
}

@media screen and (max-width: 767px) {
  #modalA, #modalB {
    width: 91%;
    margin: 0 auto;
    padding: 5% 0 6%;
    text-align: center;
  }
  #modalA .tit_sub {
    font-size: 1.7rem;
    text-align: left;
    line-height: 1.3;
  }
  #modalA .ul_five + .tit_sub {
    margin: 5% auto 0;
  }
  .box_blue {
    margin: 5% auto 0;
  }
  #modalA .box_blue {
    padding: 5% 4.5% 6%;
  }
  #modalB .box_blue {
    padding: 2% 0 5%;
  }
  #modalA .box_blue, #modalB .box_blue {
    padding-bottom: 11%;
    /* background: url(../img/modal_arrow_sp.png) no-repeat bottom center #f1f5f8; */
    background-size: 100%;
  }
  #modalA .box_blue::after, #modalB .box_blue::after {
    content: none;
  }
  #modalB .tit_sub {
    line-height: 1.4;
    font-size: 1.7rem;
  }
  #modalB .txt_att {
    margin: 2% auto 0;
    text-align: center;
  }
  #modalB .ul_two {
    width: 91%;
    margin: 3% auto 0;
  }
  #modalB .ul_two li {
    width: 48%;
    margin: 0 0 0 4%;
  }
  #modalB .txt_detail {
    margin: 6% auto 0;
  }
  .tb_modal {
    width: 100%;
    margin: 5% auto 0;
  }
  .tb_modal th {
    width: 100%;
    padding: 2.5% 4%;
    font-size: 1.3rem;
  }
  .tb_modal td {
    padding: 3% 4%;
    font-size: 1.2rem;
    line-height: 1.3;
  }
  .tb_modal th, .tb_modal td {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-bottom: none;
    vertical-align: middle;
    display: block;
  }
  .tb_modal tr + tr th {
    border-top: 1px solid #afc7d6;
  }
  .conclusion {
    margin: 3% auto 0;
    font-size: 1.7rem;
    font-weight: bold;
    text-align: center;
    line-height: 1.3;
  }
  .conclusion span {
    font-size: 2.5rem;
    letter-spacing: -0.03rem;
  }
  #modalB .conclusion {
    line-height: 1.3;
  }
  .btn_green {
    display: block;
    width: 58%;
    margin: 3% auto 0;
    padding: 3% 0;
    font-size: 1.5rem;
  }
  .tb_modal + a, .btn_green + a {
    width: 26%;
    margin: 4% auto 0;
  }
  .tb_modal + a {
    margin: 4% auto 0;
  }
  .modalA_answer, .modalB_answerA, .modalB_answerB {
    background: url(../img/modal_arrow_sp.png) no-repeat center top;
    background-size: 100%;
  }
  .close_btn {
    margin: 6% auto 0;
  }
}
/* ---------------------------------------
$ footer
----------------------------------------*/
footer {
  padding: 35px 0 35px;
  background: #404d61;
  color: #fff;
}

footer dl dt {
  font-size: 1.6rem;
}

footer dl dd {
  margin: 10px auto 0;
  font-size: 1.1rem;
}

.ul_footer {
  margin: 1.2rem 0 0;
}

.ul_footer li {
  margin: 0.9rem 0 0;
}

.copyright {
  margin: 60px auto 0;
  display: block;
  font-size: 1.5rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 6% 0;
    line-height: 1.4;
  }
  footer dl dt {
    font-size: 1.2rem;
  }
  footer dl dd {
    margin: 2% auto 0;
    padding: 0 0 0 1rem;
    font-size: 1.1rem;
    text-indent: -1rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .copyright {
    margin: 6% auto 0;
    font-size: 1rem;
  }
}
/* ---------------------------------------
$ modal
----------------------------------------*/
.modal_open {
  cursor: pointer;
}

.modal_bg {
  display: none;
  position: fixed;
  top: -5000px;
  right: -5000px;
  left: -5000px;
  bottom: -5000px;
  background: rgba(0, 0, 0, 0.63);
  z-index: 7000;
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  right: 0;
  /* bottom: 0; */
  width: 100%;
  text-align: center;
  overflow: auto;
  z-index: 7210;
  cursor: pointer;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.modalInner {
  position: relative;
  width: 50.33%;
  max-width: 600px !important;
  margin: 160px 32% 50px 28%;
  padding: 0;
  text-align: left;
  cursor: default;
}

.modal section {
  position: relative;
  width: 100% !important;
  color: #fff;
  z-index: 1000;
}

@media screen and (max-width: 1024px) {
  .modalInner {
    left: 0;
    width: 78%;
    max-width: 600px !important;
    margin: 160px auto 5%;
  }
}
@media screen and (max-width: 767px) {
  .modalInner {
    width: 74%;
    max-width: 85% !important;
    margin: 150px auto 9.3%;
  }
}
/*--------------------------------------*/
@media screen and (max-width: 767px) {
  .box_s3 .ul_three {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 80vw;
  }
  .box_s3 .ul_three li {
    width: 38.133333vw;
    margin: 0;
  }
  .step2 .boxC {
    padding: 5vw 0 12vw;
  }
  .step2 .boxC .ul_three {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 80vw;
    margin: 7% auto 0;
  }
  .step2 .boxC .ul_three li {
    width: 38.133333vw;
    margin: 0;
  }
}
/*--------------------------------------------------------*/
.ul_terminal li .phone_text {
  font-size: 1.2rem;
  font-weight: bold;
  color: #e2281c;
  letter-spacing: -0.02em;
  padding: 4px;
  border: solid 1px #e2281c;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .ul_terminal li .phone_text {
    margin: 2.5vw 0 2vw;
    font-size: 4vw;
  }
}
.ul_terminal li .phone_price {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .ul_terminal li .phone_price {
    display: block;
    text-align: center;
  }
}
.ul_terminal li .phone_price + .phone_price {
  border-top: 1px solid #c3ccd3;
  margin: 10px 0 0;
  padding: 10px 0 0;
}

@media screen and (max-width: 767px) {
  .ul_terminal li .phone_price + .phone_price {
    margin: 2vw 0 2vw;
    padding: 2vw 0 0;
  }
}
.box_device .ul_terminal li {
  border: none;
}
.box_device .ul_terminal li .btn_terminal {
  background: #f1f5f8;
  border: 3px solid #b3cfe7;
}
.box_device .ul_terminal li input[type=radio]:checked + .btn_terminal {
  background: #8fd68b;
  border: 3px solid #8fd68b;
}
.box_device .ul_terminal li::before {
  background: none;
}

.ul_terminal li .phone_price .phone_price_content.text {
  color: #182c4b;
  font-size: 1.5rem;
  min-width: 80px;
  margin-right: 10px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .ul_terminal li .phone_price .phone_price_content.text {
    font-size: 1.3rem;
    min-width: auto;
    display: block;
    margin: 0 0 2vw;
    text-align: center;
  }
}
.ul_terminal li .phone_price .phone_price_content .bulk_price {
  color: #182c4b;
  font-size: 1.6rem;
}
.ul_terminal li .phone_price .phone_price_content .bulk_price span.one-price {
  color: #000;
  text-decoration: inherit;
}
.ul_terminal li .phone_price .phone_price_content .bulk_price span.list-price {
  font-size: 1.8rem;
  color: #000;
  text-decoration: inherit;
}

@media screen and (max-width: 767px) {
  .ul_terminal li .phone_price .phone_price_content .bulk_price {
    font-size: 1.4rem;
  }
}
.ul_terminal li .phone_price.split .phone_price_content .bulk_price span.price {
  color: #000;
  text-decoration: inherit;
}
.ul_terminal li .phone_price.split .phone_price_content .bulk_price span.list-price {
  font-size: 1.8rem;
  color: #000;
  text-decoration: inherit;
}

.ul_terminal li .phone_price .phone_price_content .support_price {
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .ul_terminal li .phone_price .phone_price_content .support_price {
    font-size: 1.4rem;
  }
}
.ul_terminal li .phone_price .phone_price_content .support_price .price {
  font-size: 1.9rem;
}

@media screen and (max-width: 767px) {
  .ul_terminal li .phone_price .phone_price_content .support_price .price {
    font-size: 1.7rem;
  }
}
/* .bottom_btn_apply
================================= */
@media screen and (max-width: 767px) {
  .result_btn-wrap {
    padding: 20px 0 30px;
  }
  .bottom_btn_apply {
    margin: 0 auto;
    width: 86.95652174%;
  }
  .bottom_btn_apply a {
    display: block;
    padding: 16px 0 14px;
    width: 100%;
    border-radius: 10px;
    background: #23a71c;
    -webkit-box-shadow: 0 5px #068400;
    box-shadow: 0 5px #068400;
  }
  .bottom_btn_apply a img {
    margin-left: 20.83333%;
    width: 75.16667%;
  }
}
@media print, screen and (min-width: 768px) {
  .result_btn-wrap {
    padding: 20px 0 40px;
    margin-top: 20px;
  }
  .bottom_btn_apply {
    margin: 0 auto;
    width: 360px;
  }
  .bottom_btn_apply a {
    display: block;
    padding: 25px 0 5px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background: #23a71c;
    -webkit-box-shadow: 0 5px #068400;
    box-shadow: 0 5px #068400;
  }
  .bottom_btn_apply a img {
    margin-left: 47px;
    vertical-align: middle;
  }
  .bottom_btn_apply a:hover {
    border-bottom: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    -ms-transform: translateY(5px);
  }
}
.recommend-plan .box_shadow {
  padding: 60px 0 0;
}

@media screen and (max-width: 767px) {
  .recommend-plan .box_shadow {
    padding: 14vw 0 0;
  }
}
@media screen and (max-width: 767px) {
  .recommend-plan .tit_area {
    width: 80vw;
  }
}
.recommend-plan .ul_detail {
  width: auto;
}

.recommend-plan .ul_two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .recommend-plan .ul_two {
    display: block;
    width: 80vw;
  }
}
.recommend-plan .ul_two li {
  float: none;
}

@media screen and (max-width: 767px) {
  .recommend-plan .ul_two li {
    width: 80vw;
    margin: 0;
  }
  .recommend-plan .ul_two li + li {
    margin-top: 10vw;
  }
}
.recommend-plan .ul_two li label {
  height: 190px;
}

@media screen and (max-width: 767px) {
  .recommend-plan .ul_two li label {
    height: 24.1333333vw;
  }
}
.recommend-plan .ul_two li label input {
  -webkit-appearance: none;
}

.recommend-plan .ul_two li label img {
  vertical-align: initial;
}

.recommend-plan .box_s3 + .box_s3 {
  margin-top: 50px;
}

@media screen and (max-width: 767px) {
  .recommend-plan .box_s3 + .box_s3 {
    margin-top: 12vw;
  }
}
.recommend-plan .s3_boxA_3 {
  padding-top: 45px;
  border-top: solid 1px #000;
  max-width: 920px;
  width: 100%;
  margin: 45px auto 0;
}

@media screen and (max-width: 767px) {
  .recommend-plan .s3_boxA_3 {
    width: 80vw;
    padding-top: 7.733333vw;
    margin: 7.733333vw auto 0;
  }
}
.recommend-plan .s3_boxA_3 .btn_heading {
  font-size: 25px;
  letter-spacing: -0.08em;
  color: #182c4b;
}

@media screen and (max-width: 767px) {
  .recommend-plan .s3_boxA_3 .btn_heading {
    font-size: 5.0666666vw;
  }
}
.btn_heading {
  margin: 0 0 20px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #114799;
  line-height: 1.5;
  letter-spacing: -0.05em;
}

@media screen and (max-width: 767px) {
  .btn_heading {
    font-size: 4vw;
    margin: 0 0 5%;
  }
}
.blue_btn {
  margin: 0 auto;
  width: 641px;
}

.blue_btn-wrap {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .blue_btn-wrap {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .blue_btn {
    width: 86.95652174%;
  }
}
.blue_btn a {
  display: block;
  padding: 25px 0 20px;
  width: 100%;
  height: 72x;
  border-radius: 10px;
  background: #2971e1;
  -webkit-box-shadow: 0 5px #0f4eb9;
  box-shadow: 0 5px #0f4eb9;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .blue_btn a {
    padding: 16px 0 14px;
  }
  .blue_btn a img {
    width: 77.09%;
  }
}
.blue_btn a:hover {
  border-bottom: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
  -ms-transform: translateY(5px);
}

.function {
  padding: 32px 0 50px;
}

@media screen and (max-width: 767px) {
  .function.box_shadow {
    padding: 5% 4.5% 6%;
    margin: 8% auto 0;
  }
}
@media screen and (max-width: 767px) {
  .function .ul_two li {
    float: none;
    width: 100%;
    margin: 5% 0 0;
  }
}
.tit_area .tit_heading {
  text-align: center;
  margin: 0 0 40px;
}

@media screen and (max-width: 767px) {
  .tit_area .tit_heading {
    margin: 0 0 4.666666vw;
  }
}
/* sourceMappingURL=style.css.map */
.head .txt_lead {
  margin: 25px auto 8px;
}
.head .caution {
  text-align: center;
  width: auto;
  margin: 25px auto 0;
}
.head .caution p {
  position: relative;
  font-size: 13px;
  font-weight: bold;
  display: inline-block;
  background: #fff;
  color: #e2261a;
  padding: 15px;
  padding-left: 30px;
  position: relative;
  line-height: 1.3;
}
.head .caution p a {
  color: #193f78;
}
.head .caution p a:visited {
  color: #193f78;
}
.head .caution p a:hover {
  color: #193f78;
}
.head .caution p:before {
  content: "※";
  position: absolute;
  left: 15px;
  top: 15px;
}

.ul_terminal .img.special_price + .txt .bulk_price,
.ul_terminal .img.special_price + .txt .bulk_price .list-price,
.ul_terminal .img.special_price + .txt .bulk_price .one-price,
.ul_terminal .img.special_price + .txt .phone_price_content .bulk_price span.list-price,
.ul_terminal .img.special_price + .txt .phone_price_content .bulk_price span.price {
  color: #e2281c;
}

.ul_terminal .img.text-color--red + .txt .bulk_price,
.ul_terminal .img.text-color--red + .txt .bulk_price .list-price,
.ul_terminal .img.text-color--red + .txt .bulk_price .one-price,
.ul_terminal .img.text-color--red + .txt .phone_price_content .bulk_price span.list-price,
.ul_terminal .img.text-color--red + .txt .phone_price_content .bulk_price span.price {
  color: #e2281c;
}

.ul_two li:nth-child(2).none {
  display: none;
}

.hikari_discount dt {
  font-weight: bold;
  text-indent: -1.8rem;
}
.hikari_discount dt::before {
  content: "●";
}

@media screen and (max-width: 767px) {
  .hikari_discount dt {
    text-indent: -1rem;
  }
}
/* ---------------------------------------
dcBox
----------------------------------------*/
.dcBox {
  position: relative;
  margin-top: 120px;
  margin-bottom: 48px;
  padding: 0 40px;
  text-align: center;
}
.dcBox::before {
  display: block;
  position: absolute;
  top: -64px;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 40px 40px 0 40px;
  border-color: #114799 transparent transparent transparent;
  content: "";
}
.dcBox_lead {
  position: relative;
  margin-bottom: 16px;
  color: #182c4b;
  font-size: 3rem;
  font-weight: 600;
  font-feature-settings: "palt";
}
.dcBox_lead::before {
  display: inline-block;
  position: relative;
  top: -32px;
  left: 24px;
  font-size: 3.2rem;
  transform: rotate(-12deg);
  letter-spacing: 1px;
  content: "さらに！";
}
.dcBox_lead img {
  display: inline-block;
  height: 28px;
  margin-right: 10px;
  vertical-align: text-top;
}
.dcBox_dc {
  margin-bottom: 30px;
  color: #e7223e;
  font-size: 3.6rem;
  font-weight: 600;
  font-feature-settings: "palt";
  letter-spacing: 1px;
}
.dcBox_dc .is-fntS {
  font-size: 2.6rem;
}
.dcBox_dc strong {
  font-size: 5.2rem;
}
.dcBox_dc .el_tax {
  color: #182c4b;
  font-size: 2.2rem;
}
.dcBox_note {
  padding: 20px;
  border: 1px solid #ccc;
}
.dcBox_note p {
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: left;
}
.dcBox_note p strong {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .dcBox {
    margin-top: 96px;
    margin-bottom: 32px;
    padding: 0 15px;
  }
  .dcBox::before {
    top: -56px;
    border-width: 30px 30px 0 30px;
  }
  .dcBox_lead {
    font-size: 2.2rem;
  }
  .dcBox_lead::before {
    top: -8px;
    left: -72px;
    font-size: 2.4rem;
  }
  .dcBox_lead img {
    display: block;
    height: 26px;
    margin-bottom: 16px;
    margin-right: 0;
  }
  .dcBox_dc {
    font-size: 3.2rem;
  }
  .dcBox_dc .is-fntS {
    font-size: 2.4rem;
  }
  .dcBox_dc strong {
    font-size: 4.8rem;
  }
  .dcBox_dc .el_tax {
    display: block;
    margin-top: 10px;
    font-size: 2rem;
  }
  .dcBox_note {
    padding: 18px;
  }
  .dcBox_note p {
    font-size: 1.3rem;
  }
}

/* ---------------------------------------
entrybx
----------------------------------------*/
.entrybx {
  background: url(../../assets/images/bg02.jpg) no-repeat center;
  background-size: cover;
  margin-top: 48px;
  padding: 56px 20px 64px;
}
.entrybx p img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 40px;
  display: block;
}
.entrybx .eb_boxWrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  text-align: center;
  padding: 42px 94px;
  box-sizing: border-box;
  box-shadow: 0px 1px 6px 6px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0px 1px 6px 6px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 6px 1px 6px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 40px;
}
.entrybx .eb_boxWrap .eb_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 28px;
}
.entrybx .eb_boxWrap .eb_flex a img {
  width: 100%;
  max-width: 390px;
}
.entrybx .eb_boxWrap > a img {
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  .entrybx {
    margin-top: 32px;
    padding: 16px 0 36px;
  }
  .entrybx p img {
    width: 88%;
    margin: 20px auto;
  }
  .entrybx .eb_boxWrap {
    width: 92%;
    padding: 20px 16px;
  }
  .entrybx .eb_boxWrap > a img {
    max-width: 100%;
  }
  .entrybx .eb_boxWrap .eb_flex {
    justify-content: center;
    padding-bottom: 10px;
  }
  .entrybx .eb_boxWrap .eb_flex:first-of-type img:last-of-type {
    margin-bottom: 10px;
  }
}
/* ---------------------------------------
intro
----------------------------------------*/
.intro {
  position: relative;
  margin-bottom: 86px;
  padding: 50px 0;
  background: linear-gradient(90deg, rgb(230, 210, 246) 0%, rgb(252, 228, 221) 100%);
  text-align: center;
  box-sizing: border-box;
}
.intro::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -52px;
  width: 250px;
  height: 91px;
  margin: auto;
  background: url("../img/btn_intro_start.png") no-repeat left top/contain;
  content: "";
}
.intro_tit {
  display: inline-block;
  position: relative;
  width: 742px;
  height: 120px;
  margin: auto;
  background-color: #1a1a1a;
}
.intro_tit::before {
  display: inline-block;
  position: absolute;
  top: -67px;
  left: -90px;
  width: 127px;
  height: 268px;
  background: url("../img/img_intro.png") no-repeat left top/contain;
  content: "";
}
.intro_tit img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .intro {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-bottom: 48px;
    padding: 24px 10px;
  }
  .intro::after {
    bottom: -25px;
    width: 112.5px;
    height: 40.95px;
  }
  .intro_tit {
    width: 100%;
    height: 80px;
  }
  .intro_tit::before {
    top: -48px;
    left: 2px;
    width: 38.1px;
    height: 80.4px;
  }
  .intro_tit img {
    width: 88%;
  }
}
@media (min-width: 480px) and (max-width: 768px) {
  .intro {
    margin-bottom: 70px;
  }
  .intro::after {
    bottom: -38px;
    width: 150px;
    height: 54.6px;
  }
  .intro_tit {
    height: 110px;
  }
  .intro_tit::before {
    top: -72px;
    left: 6px;
    width: 57.15px;
    height: 120.6px;
  }
  .intro_tit img {
    width: 82%;
  }
}

/* ---------------------------------------
targetPlan
----------------------------------------*/
.targetPlan {
  width: 91%;
  max-width: 920px;
  margin: 32px auto 0;
  padding: 24px;
  border: 1px solid #e2261a;
  background-color: #fff1f3;
  box-sizing: border-box;
  text-align: center;
}
.targetPlan_title {
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
  color: #193f78;
  font-size: 2.4rem;
  font-weight: bold;
}
.targetPlan_title::before {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1.2em;
  width: 2rem;
  height: 2rem;
  margin: auto;
  background: url(../img/ico_red.png) no-repeat left top/contain;
  content: "";
}
.targetPlan_list {
  text-align: left;
}
.targetPlan_list li {
  position: relative;
  margin-left: 1.5em;
  font-size: 1.6rem;
  font-weight: bold;
  list-style-type: none;
  line-height: 1.2;
}
.targetPlan_list li::before {
  display: inline-block;
  position: absolute;
  left: -1.2em;
  top: 0.25em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #193f78;
  content: "";
}
.targetPlan_list li:not(:last-child) {
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .targetPlan {
    padding: 15px 12px 10px;
  }
  .targetPlan_title {
    margin-bottom: 12px;
    font-size: 1.8rem;
  }
  .targetPlan_title::before {
    width: 1.5rem;
    height: 1.5rem;
  }
  .targetPlan_list li {
    font-size: 1.3rem;
    font-weight: normal;
  }
}

/* ---------------------------------------
tcom/tnc
----------------------------------------*/
#tcomWrap .is-tnc {
  display: none !important;
}

#tncWrap .is-tcom {
  display: none !important;
}