@charset "UTF-8";
/*!
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags:
*/
/**
 # Foundation
 */
/* 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;
  box-sizing: border-box;
}

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

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;
}

/* reset for form */
input[type=text] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  box-sizing: border-box;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  box-sizing: border-box;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  box-sizing: border-box;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, YuGothic, sans-serif, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "メイリオ", Meiryo, sans-serif;
  color: #000;
  text-align: left;
  background-color: #FFF;
  font-size: 1.6rem;
  font-weight: normal;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.transition {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

.clearfix {
  zoom: 1;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.smp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .smp {
    display: block !important;
  }
}

/**
 # Layout
 */
/*--------------------------------------------------------------
      # footer.scss
--------------------------------------------------------------*/
.l--footer {
  padding: 40px 0;
}
.l--footer #copyright {
  display: block;
  font-size: 1.3rem;
  text-align: center;
  font-family: "Roboto", sans-serif;
}

@media screen and (max-width: 767px) {
  .l--footer {
    padding: calc(calc(100 / 375) * 20 * 1vw) 0;
  }
  .l--footer #copyright {
    font-size: calc(100vw / (375 / 11));
  }
}
/*
     Page top
--------------------------------------------------------------*/
#pagetop a {
  position: fixed;
  right: 10px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  -webkit-border-radius: 0.5rem 0 0 0.5rem;
  border-radius: 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #3382E7;
  cursor: pointer;
  z-index: 10;
}
#pagetop a:before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border: 1.2rem solid transparent;
  border-bottom-color: transparent;
  border-bottom-style: solid;
  border-bottom-width: 1.2rem;
  border-bottom: 1.2rem solid #fff;
  right: 0;
  left: 0;
  top: 0.5rem;
  margin: auto;
}
#pagetop a:after {
  content: "TOP";
  position: absolute;
  display: block;
  right: 0;
  left: 0;
  margin: auto;
  bottom: 10px;
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  #pagetop a {
    display: none;
  }
}
/*--------------------------------------------------------------
    # header.scss
--------------------------------------------------------------*/
.l--header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #FFF;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
  z-index: 9999;
}
.l--header__inner {
  position: relative;
  height: 80px;
}
.l--header-logo {
  position: absolute;
  top: 16px;
  left: 20px;
  width: 260px;
  display: block;
}
.l--header-logo img {
  width: 100%;
  vertical-align: bottom;
}
.l--header-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  top: 15px;
  width: 200px;
  height: 50px;
  background-color: #EB0000;
  background-image: url(../images/arrow__left__wh.png);
  background-repeat: no-repeat;
  background-size: 8px auto;
  background-position: 90.5% 51%;
  border-radius: 25px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.l--header-button:link {
  color: #FFF;
  text-decoration: none;
}
.l--header-button:visited {
  color: #FFF;
  text-decoration: none;
}
.l--header-button:hover {
  color: #FFF;
  text-decoration: none;
  background-color: #003477;
}

@media screen and (max-width: 1060px) {
  .l--header-button {
    right: 80px;
  }
}
@media screen and (max-width: 767px) {
  .l--header {
    top: 0;
    left: 0;
    background-color: #FFF;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    z-index: 9999;
  }
  .l--header__inner {
    position: relative;
    height: calc(calc(100 / 375) * 60 * 1vw);
  }
  .l--header-logo {
    position: absolute;
    top: calc(calc(100 / 375) * 20 * 1vw);
    left: calc(calc(100 / 375) * 10 * 1vw);
    width: calc(calc(100 / 375) * 140 * 1vw);
  }
  .l--header-button {
    right: calc(calc(100 / 375) * 50 * 1vw);
    top: calc(calc(100 / 375) * 10 * 1vw);
    width: calc(calc(100 / 375) * 150 * 1vw);
    height: calc(calc(100 / 375) * 40 * 1vw);
    background-color: #EB0000;
    background-image: url(../images/arrow__left__wh.png);
    background-repeat: no-repeat;
    background-size: calc(calc(100 / 375) * 7 * 1vw) auto;
    background-position: 93% 53%;
    border-radius: calc(calc(100 / 375) * 20 * 1vw);
    font-size: calc(100vw / (375 / 12));
    font-weight: 700;
    letter-spacing: -0.02em;
  }
}
/**
 # Objects
 */
/*
    gmenu
---------------------------------------------------------------------------- */
.l--gmenuNav {
  display: block;
  position: relative;
  left: 0;
  width: 100%;
}

.navigation-list {
  position: absolute;
  right: 220px;
  display: flex;
  top: 30px;
  justify-content: space-between;
  align-items: center;
}
.navigation-list li {
  border-left: 1px solid #707070;
  padding: 2.5px 10px;
}
.navigation-list li:first-child {
  border-left: none;
  padding: 2.5px 10px;
}
.navigation-list li a {
  letter-spacing: -0.02em;
  font-size: 1.4rem;
  font-weight: 700;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.navigation-list li a:link {
  color: #474747;
  text-decoration: none;
}
.navigation-list li a:visited {
  color: #474747;
  text-decoration: none;
}
.navigation-list li a:hover {
  color: #474747;
  text-decoration: none;
  opacity: 0.65;
}

/*
    Hamburger menu
---------------------------------------------------------------------------- */
.burger--wrap {
  display: none;
}

@media screen and (max-width: 1060px) {
  .navigation-list {
    display: none;
  }
  .nav-open .navigation-list {
    position: relative;
    right: inherit;
    display: block;
    top: 80px;
    background-color: #3382E7;
    width: auto;
    padding: 0;
  }
  .nav-open .navigation-list li {
    border-left: none;
    border-bottom: 1px solid #4FB5F5;
    padding: 0;
  }
  .nav-open .navigation-list li:last-child {
    border: none;
  }
  .nav-open .navigation-list li a {
    font-size: calc(100vw / (1060 / 16));
    padding: 15px;
    display: block;
    text-align: center;
    position: relative;
  }
  .nav-open .navigation-list li a:link {
    color: #FFF;
    text-decoration: none;
  }
  .nav-open .navigation-list li a:visited {
    color: #FFF;
    text-decoration: none;
  }
  .nav-open .navigation-list li a:hover {
    color: #FFF;
    text-decoration: none;
    opacity: 0.65;
  }
  .nav-open .navigation-list li a:before {
    content: "";
    display: block;
    position: absolute;
    width: 0.7em;
    height: 0.7em;
    border: 0px;
    border-top-color: currentcolor;
    border-top-style: none;
    border-top-width: 0px;
    border-right-color: currentcolor;
    border-right-style: none;
    border-right-width: 0px;
    border-top: solid 0.2rem #fff;
    border-right: solid 0.2rem #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
    right: 1.5em;
    margin: auto;
  }
  #menu-overlay {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 15;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: all 0.5s;
  }
  .nav-open #menu-overlay {
    display: block;
    opacity: 0.5;
  }
  .burger--wrap {
    display: block;
    height: 30px;
    width: 40px;
    top: 25px;
    right: 20px;
    position: absolute;
    z-index: 400;
    cursor: pointer;
  }
  .burger {
    width: 40px;
    height: 30px;
    z-index: 9999;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    top: 0;
    left: 0;
  }
  .burger .line {
    width: 100%;
    height: 3px;
    background: #3382E7;
    transition: 0.3s;
    right: 0;
    position: absolute;
  }
  .burger::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    top: 0;
    right: 0;
    background: #3382E7;
    transition: 0.6s;
  }
  .burger::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    right: 0;
    background: #3382E7;
    transition: 0.8s;
  }
  .nav-open .burger::before {
    transform: rotate(135deg);
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .nav-open .burger::after {
    transform: rotate(-135deg);
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
  }
  .nav-open .burger > .line {
    transform: scale(0);
  }
}
@media screen and (max-width: 767px) {
  .nav-open .navigation-list {
    position: relative;
    right: inherit;
    display: block;
    top: calc(calc(100 / 375) * 60 * 1vw);
    background-color: #3382E7;
    width: auto;
    padding: 0;
  }
  .nav-open .navigation-list li {
    border-left: none;
    border-bottom: 1px solid #4FB5F5;
    padding: 0;
  }
  .nav-open .navigation-list li:last-child {
    border: none;
  }
  .nav-open .navigation-list li a {
    font-size: calc(100vw / (375 / 16));
    padding: calc(calc(100 / 375) * 20 * 1vw);
    display: block;
    text-align: center;
    position: relative;
  }
  .nav-open .navigation-list li a:link {
    color: #FFF;
    text-decoration: none;
  }
  .nav-open .navigation-list li a:visited {
    color: #FFF;
    text-decoration: none;
  }
  .nav-open .navigation-list li a:hover {
    color: #FFF;
    text-decoration: none;
    opacity: 0.65;
  }
  .nav-open .navigation-list li a:before {
    content: "";
    display: block;
    position: absolute;
    width: 0.7em;
    height: 0.7em;
    border: 0px;
    border-top-color: currentcolor;
    border-top-style: none;
    border-top-width: 0px;
    border-right-color: currentcolor;
    border-right-style: none;
    border-right-width: 0px;
    border-top: solid 0.2rem #fff;
    border-right: solid 0.2rem #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
    bottom: 0;
    right: 1.5em;
    margin: auto;
  }
  #menu-overlay {
    display: none;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 15;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    transition: all 0.5s;
  }
  .nav-open #menu-overlay {
    display: block;
    opacity: 0.5;
  }
  .burger--wrap {
    display: block;
    height: calc(calc(100 / 375) * 20 * 1vw);
    width: calc(calc(100 / 375) * 30 * 1vw);
    top: calc(calc(100 / 375) * 22 * 1vw);
    right: calc(calc(100 / 375) * 10 * 1vw);
    position: absolute;
    z-index: 400;
    cursor: pointer;
  }
  .burger {
    width: calc(calc(100 / 375) * 30 * 1vw);
    height: calc(calc(100 / 375) * 20 * 1vw);
    z-index: 9999;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
    top: 0;
    left: 0;
  }
  .burger .line {
    width: 100%;
    height: 3px;
    background: #3382E7;
    transition: 0.3s;
    right: 0;
    position: absolute;
  }
  .burger::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    top: 0;
    right: 0;
    background: #3382E7;
    transition: 0.6s;
  }
  .burger::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    right: 0;
    background: #3382E7;
    transition: 0.8s;
  }
  .nav-open .burger::before {
    transform: rotate(135deg);
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .nav-open .burger::after {
    transform: rotate(-135deg);
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
  }
  .nav-open .burger > .line {
    transform: scale(0);
  }
}
/*  KeyVisual
--------------------------------------------------------------*/
.h--keyv {
  padding: 80px 0 0;
}

.h--keyv__inner {
  background-image: url(../images/mv/mv_pcback.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto 86.092715%;
  background-color: #ea6201;
}

.h--keyv-images {
  max-width: 1100px;
  margin: 0 auto;
}

.h--keyv-images img {
  width: 100%;
  vertical-align: bottom;
}

.h--keyv-caution02 {
  background-color: #E5F5FC;
  font-size: 1.4rem;
  line-height: 1.42857;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #383838;
}

.h--keyv-caution02 span {
  max-width: min(960px, 94vw);
  text-align: left;
  display: block;
  margin: auto;
  padding: 5px 0 0 0;
}

@media screen and (max-width: 767px) {
  .h--keyv {
    padding: calc(calc(100 / 375) * 60 * 1vw) 0 0;
  }
  .h--keyv__inner {
    background: none;
  }
  .h--keyv-caution02 {
    font-size: calc(100vw / (375 / 11));
  }
  .h--keyv-caution02 span {
    max-width: 100%;
    padding: calc(calc(100 / 375) * 5 * 1vw) calc(calc(100 / 375) * 10 * 1vw) 0;
    line-height: 1.6;
  }
}
/*  maintenance
--------------------------------------------------------------*/
.maintenance-wrap {
  max-width: 960px;
  margin: 34px auto;
  font-size: 1.5rem;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .maintenance-wrap {
    width: 100%;
    margin: 0 auto 6vw;
    font-size: calc(100vw / (375 / 12));
  }
}
/*  coupon
--------------------------------------------------------------*/
.coupon {
  position: relative;
  padding: 60px 0;
  background-color: #E5F5FC;
}

.coupon__head {
  text-align: center;
  position: relative;
  z-index: 2;
  margin: 0 0 6px;
}

.coupon__head::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-color: #fffb17;
  width: 100%;
  height: 104px;
  z-index: 1;
}

.coupon__head img {
  z-index: 2;
  position: relative;
}

.coupon__inner {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
}

.coupon__content {
  margin: 0 0 12px;
}

.coupon__content img {
  width: 100%;
  vertical-align: top;
}

.coupon__content__inner {
  padding: 0 25px;
}

.coupon-code strong {
  display: none;
}

.coupon-code-copy {
  cursor: pointer;
  position: relative;
}

.coupon-code-copy picture:first-child {
  opacity: 1;
  transition: all 0.6s ease;
}

.coupon-code-copy picture:last-child {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.6s ease;
}

@media (hover: hover) {
  .coupon-code-copy:hover picture:last-child {
    opacity: 1;
  }
  .coupon-code-copy:hover picture:first-child {
    opacity: 0;
  }
}
.coupon__content-text {
  text-align: center;
  margin: 10px 0 20px;
}

.coupon-limitdate {
  margin: 0 0 3px;
  font-size: 2.4rem;
  color: #333;
  line-height: 1.2;
  font-weight: 700;
}

.coupon-caution {
  color: #383838;
  font-size: 2rem;
}

.coupon-caution .coupon-caution__text {
  font-weight: 700;
}

.coupon-cation__wrap {
  text-align: center;
  margin: 0 0 40px;
}

.coupon-cation__wrap .coupon-cation__text {
  color: #383838;
  font-weight: 700;
  font-size: 2rem;
}

.coupon-arrow {
  width: 48px;
  margin: 0 auto 24px;
}

.coupon-arrow img {
  width: 100%;
  vertical-align: bottom;
}

.coupon-guide-title {
  background-color: #FFF;
  border: 3px solid #3382E7;
  text-align: center;
  color: #3382E7;
  font-weight: 700;
  font-size: 2.4rem;
  padding: 15px 0;
  cursor: pointer;
  position: relative;
}

.coupon-guide-title:before {
  content: "";
  position: absolute;
  display: block;
  height: 1.8rem;
  width: 1.8rem;
  border-bottom: 0.3rem solid #3382E7;
  border-right: 0.3rem solid #3382E7;
  right: 3rem;
  transform: rotate(45deg);
  top: -0.6em;
  bottom: 0;
  margin: auto;
}

.coupon-guide-title.toggle-on:before {
  border-top: 0.3rem solid #3382E7;
  border-right: 0.3rem solid #3382E7;
  border-bottom: none;
  transform: rotate(-45deg);
  top: 0.4em;
  bottom: 0;
}

.coupon-guide__content {
  border: 3px solid #3382E7;
  border-top: none;
  padding: 20px;
  display: none;
  background-color: #fff;
}

.coupon-guide__content.default-open {
  display: block;
}

.coupon-guide-box {
  background-color: #FAFAFA;
  border-radius: 10px;
  margin: 0 0 24px;
}

.coupon-guide-box__inner {
  padding: 30px 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.coupon-guide-box-stepnum {
  width: 16.66667%;
  font-family: "Roboto", sans-serif;
  color: #3382E7;
  font-weight: 700;
  font-size: 2.1rem;
  text-align: center;
}

.coupon-guide-box-stepnum-circle {
  margin: 0 35px 0 auto;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 2px solid;
  position: relative;
}

.coupon-guide-box-stepnum em {
  font-size: 2.5rem;
  font-weight: 400;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.coupon-guide-box-stepcont {
  width: 83.33333%;
  padding: 5px 0 0;
}

.coupon-guide-box-stepcont p {
  line-height: 1.5;
}

.coupon-guide-box-images {
  margin: 20px 0 0;
  width: 430px;
  background-color: #FFF;
}

.coupon-guide-box-images img {
  width: 100%;
  vertical-align: bottom;
}

.coupon__block--guide {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 920px;
}

.coupon__block--cashback {
  max-width: 910px;
}

.coupon__block--cashback img {
  width: 100%;
  vertical-align: bottom;
  margin: 0 0 10px;
}

.coupon__block--cashback .cmn--cautionlist {
  margin: 0 0 0;
}

.coupon__countdown {
  max-width: 940px;
  margin: 0 auto;
  padding: 0 0 10px;
}

.coupon__countdown-timer1 {
  text-align: center;
  color: #003477;
  font-size: 3rem;
  font-weight: 700;
}

.coupon__countdown-timer2 {
  text-align: center;
  color: #E4386B;
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 3px 0 0;
}

.coupon__countdown-timer2--text::before {
  content: "";
  background-color: #E4386B;
  height: 35px;
  width: 3px;
  bottom: -1px;
  left: -20px;
  position: absolute;
  transform: rotate(-40deg);
}

.coupon__countdown-timer2--text::after {
  content: "";
  background-color: #E4386B;
  height: 35px;
  width: 3px;
  bottom: -1px;
  right: -20px;
  position: absolute;
  transform: rotate(40deg);
}

@media screen and (max-width: 767px) {
  .coupon {
    padding: calc(calc(100 / 375) * 20 * 1vw) 0 calc(calc(100 / 375) * 30 * 1vw);
  }
  .coupon__head {
    margin: 0 0 0.53333vw;
  }
  .coupon__head::before {
    top: 0;
    height: calc(calc(100 / 375) * 57 * 1vw);
  }
  .coupon__head img {
    width: 93.333333%;
    vertical-align: top;
  }
  .coupon__inner {
    max-width: initial;
    padding: 0;
  }
  .coupon__content {
    margin: 0 0 1.73333vw;
  }
  .coupon__content__inner {
    padding: 0;
  }
  .coupon__content-text {
    margin: calc(calc(100 / 375) * 5 * 1vw) calc(calc(100 / 375) * 10 * 1vw) calc(calc(100 / 375) * 8 * 1vw);
  }
  .coupon-limitdate {
    margin: 0 0 0.53333vw;
    font-size: calc(100vw / (375 / 18));
    line-height: 1.25;
  }
  .coupon-caution {
    font-size: calc(100vw / (375 / 15));
  }
  .coupon-cation__wrap {
    margin: 0 0 calc(calc(100 / 375) * 20 * 1vw);
  }
  .coupon-cation__wrap .coupon-cation__text {
    font-size: calc(100vw / (375 / 15));
  }
  .coupon__block--guide {
    margin: 0 0 0.8vw;
    margin: 0;
    padding: 0 4vw;
  }
  .coupon-arrow {
    width: 6.4vw;
    margin: 0 auto 5.33333vw;
  }
  .coupon-guide-title {
    font-size: calc(100vw / (375 / 16.5));
    padding: 3.33333vw 0;
    border-width: 2px;
  }
  .coupon-guide-title:before {
    content: "";
    position: absolute;
    display: block;
    height: 3.2vw;
    width: 3.2vw;
    border-bottom: 0.2rem solid #3382E7;
    border-right: 0.2rem solid #3382E7;
    right: 5.33333vw;
    transform: rotate(45deg);
    top: -0.5em;
    bottom: 0;
    margin: auto;
  }
  .coupon-guide-title.toggle-on:before {
    border-top: 0.2rem solid #3382E7;
    border-right: 0.2rem solid #3382E7;
    border-bottom: none;
    transform: rotate(-45deg);
    top: 0.4em;
    bottom: 0;
  }
  .coupon-guide__content {
    padding: 2.66667vw;
    display: none;
    background-color: #fff;
    border-width: 2px;
  }
  .coupon-guide-box {
    background-color: #FAFAFA;
    border-radius: calc(calc(100 / 375) * 10 * 1vw);
    margin: 0 0 calc(calc(100 / 375) * 20 * 1vw);
  }
  .coupon-guide-box__inner {
    padding: 5.33333vw;
  }
  .coupon-guide-box-stepnum {
    width: 20%;
  }
  .coupon-guide-box-stepnum-circle {
    width: calc(100vw / (375 / 16) * 2.2);
    height: calc(100vw / (375 / 16) * 2.2);
    border: 2px solid;
  }
  .coupon-guide-box-stepnum em {
    font-size: calc(100vw / (375 / 20));
  }
  .coupon-guide-box-stepcont {
    padding: 0;
    flex-basis: auto;
  }
  .coupon-guide-box-stepcont p {
    line-height: 1.5;
    font-size: calc(100vw / (375 / 13));
  }
  .coupon-guide-box-images {
    margin: 5.33333vw 0 0;
    width: auto;
  }
  .coupon__countdown {
    padding: 0 0 calc(calc(100 / 375) * 10 * 1vw);
  }
  .coupon__countdown-timer1 {
    font-size: calc(100vw / (375 / 24));
    line-height: 1.43;
  }
  .coupon__countdown-timer2 {
    font-size: calc(100vw / (375 / 16));
    margin: calc(calc(100 / 375) * 8 * 1vw) 0 0;
    line-height: 1;
  }
  .coupon__countdown-timer2--text::before {
    height: calc(calc(100 / 375) * 20 * 1vw);
    width: calc(calc(100 / 375) * 2 * 1vw);
    bottom: calc(calc(100 / 375) * -3 * 1vw);
    left: calc(calc(100 / 375) * -13 * 1vw);
  }
  .coupon__countdown-timer2--text::after {
    height: calc(calc(100 / 375) * 20 * 1vw);
    width: calc(calc(100 / 375) * 2 * 1vw);
    bottom: calc(calc(100 / 375) * -3 * 1vw);
    right: calc(calc(100 / 375) * -13 * 1vw);
  }
}
.coupon .btn, .coupon a.btn, .coupon button.btn {
  color: #fff;
  text-align: center;
  margin: 0 0 18px;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: block;
  padding: 1rem 4rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 50px;
}
.coupon .btn-wrap {
  margin: 54px 0 90px;
  width: 100%;
}
.coupon a.btn-c {
  width: 68%;
  font-size: 3.4rem;
  letter-spacing: 0.1em;
  position: relative;
  color: #fff;
  background: #EB0000;
  background-image: url(../images/arrow__left__wh.png);
  background-repeat: no-repeat;
  background-size: 1.8rem;
  background-position: 90.5% 58%;
  box-shadow: 0 5px 0 #740515;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 0 20px;
  height: auto;
  margin: 0 auto;
}
.coupon a.btn-c span {
  font-size: 1.8rem;
  letter-spacing: 0.01em;
  position: absolute;
  top: -1.8rem;
  left: calc(50% - 200px);
  display: block;
  width: 400px;
  color: #EB0000;
  border: 2px solid #EB0000;
  border-radius: 5px;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
.coupon a.btn-c span.btn-c__long-text {
  left: calc(50% - 244px);
  width: 488px;
  height: 38px;
  letter-spacing: 0.36px;
  padding: 3px 13px;
  top: -2.7rem;
}
.coupon a.btn-c span:before, .coupon a.btn-c span:after {
  position: absolute;
  left: calc(50% - 10px);
  content: "";
}
.coupon a.btn-c span:before {
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #EB0000 transparent transparent transparent;
}
.coupon a.btn-c span:after {
  bottom: -7px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.coupon a.btn-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #fff;
  background: #EB0000;
  background-image: url(../images/arrow__left__wh.png);
  background-repeat: no-repeat;
  background-size: 8px 16px;
  background-position: 90.5% 58%;
  display: flex;
  box-shadow: 0px 5px #EB0000;
}
@media screen and (max-width: 767px) {
  .coupon a.btn-c {
    width: 90%;
    font-size: calc(100vw / (375 / 22));
    letter-spacing: 0.01em;
    position: relative;
    color: #fff;
    background: #EB0000;
    background-image: url(../images/arrow__left__wh.png);
    background-repeat: no-repeat;
    background-size: calc(calc(100 / 375) * 12 * 1vw);
    background-position: 90.5% 58%;
    box-shadow: 0 5px 0 #740515;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: calc(calc(100 / 375) * 20 * 1vw) 0 calc(calc(100 / 375) * 15 * 1vw);
    height: auto;
    margin: 0 auto;
    border-radius: calc(calc(100 / 375) * 50 * 1vw);
  }
  .coupon a.btn-c:hover {
    background-size: calc(calc(100 / 375) * 8 * 1vw);
  }
  .coupon .btn-wrap {
    margin: 15.06666vw 0 11.06666vw;
  }
  .coupon a.btn-c span {
    width: 90%;
    font-size: calc(100vw / (375 / 13));
    letter-spacing: 0.01em;
    position: absolute;
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    color: #EB0000;
    border: 2px solid #EB0000;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  }
  .coupon a.btn-c span.btn-c__long-text {
    top: -11.53333vw;
    width: 68.53329%;
    height: auto;
    left: 50%;
    line-height: 1.34615;
    letter-spacing: -0.78px;
    padding: 1.13333vw 0vw;
  }
  .coupon a.btn-c02 span {
    font-size: calc(100vw / (375 / 12));
  }
}

/*  intro
--------------------------------------------------------------*/
.intro {
  position: relative;
  padding: 60px 20px 20px;
}

.intro.pt20 {
  position: relative;
  padding: 20px;
}

.intro_01 {
  position: relative;
  padding: 20px 0 0;
}

.intro__inner {
  max-width: 960px;
  margin: 0 auto;
}

.intro-catch {
  font-size: 3.6rem;
  color: #003477;
  font-weight: 900;
  text-align: center;
  margin: 0 0 32px;
}

.intro-catch em {
  display: inline-block;
  font-size: 4.8rem;
  background-image: url(../images/intro__line.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 140px;
  padding: 5px;
  letter-spacing: -0.1em;
}

.intro-catch_01 {
  font-size: min(5.4vw, 4.3rem);
  color: #003477;
  font-weight: 800;
  text-align: center;
  margin: 0 0 67px;
  position: relative;
}

.intro-catch_01 em {
  display: inline-block;
  font-size: 6.5rem;
  padding: 5px;
  letter-spacing: -0.1em;
}

.intro-catch_01:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 100%;
  height: 19px;
  background: -webkit-repeating-linear-gradient(-45deg, #fdd632, #fdd632 2px, #fff 2px, #fff 4px);
  background: repeating-linear-gradient(-45deg, #fdd632, #fdd632 2px, #fff 4px, #fff 8px);
}

.intro-lead {
  font-size: 1.6rem;
  line-height: 1.75;
  text-align: center;
  margin: 0 0 50px;
}

.intro-list {
  display: flex;
  justify-content: space-between;
  margin: 0 0 15px;
}

.intro-list li {
  width: 31.25%;
  border-radius: 5px;
  background-color: #3382E7;
  padding: 40px 0;
}

.intro-list-icon {
  width: 80px;
  margin: 0 auto 20px;
}

.intro-list-icon img {
  width: 100%;
  vertical-align: bottom;
}

.intro-list-text {
  text-align: center;
  color: #FFF;
  line-height: 1.52941;
  font-size: 1.7rem;
  color: #FFF;
  font-weight: 500;
}

.intro-list-text em {
  font-size: 1.1rem;
}

.intro-figure01 {
  margin: 0 auto 24px;
}

.intro-figure01 p {
  text-align: center;
}

.intro-figure01 img {
  width: 80%;
  vertical-align: bottom;
}

.intro-figure02 {
  margin: 0 auto 24px;
  background-color: #fffc9e;
}

.intro-figure02 img {
  width: 100%;
  vertical-align: bottom;
}

.intro-figure03 {
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
}

.intro-figure03 p {
  padding: 0 10px 10px;
  font-size: 1.3rem;
  text-align: right;
}

.intro-figure03 img {
  width: 100%;
  vertical-align: bottom;
}

.intro-figure04 img {
  width: 100%;
  margin: 0 auto 10px;
}

.intro-box {
  border-radius: 5px;
  background-color: #3382E7;
  padding: 20px;
  margin: 0 0 30px;
}

.intro-box_02 {
  background-color: #FFF;
  padding: 0;
  margin: 0;
}

.intro-box:last-of-type {
  margin: 0 0 12px;
}

.intro-box__inner {
  background-color: #FFF;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.intro-box__inner_02 {
  background-color: #FFF;
  padding: 30px 0 30px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.intro-box__inner_03 {
  background-color: #FFF;
  padding: 20px 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.intro-box figure {
  width: 18.60465%;
}

.intro-box_02 figure {
  width: 100%;
}

.intro-box figure img {
  width: 100%;
  vertical-align: bottom;
}

.intro-box_04 figure img {
  width: 80%;
  vertical-align: bottom;
  margin: 20px auto 0;
}

.intro-box-contents {
  width: 76%;
}

.intro-box-contents h4 {
  color: #003477;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 20px;
}

.intro-box-contents h4 em {
  font-size: 1.1rem;
}

.intro-box-contents p em {
  font-size: 1.1rem;
}

.intro-box-contents p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.33333;
  margin: 0 0 12px;
}

.intro-box-contents_02 p {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.33333;
  margin: 0 0 12px 30px;
}

.intro-box-contents_03 h4 {
  color: #333;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 20px;
  padding: 20px 0;
}

.intro-box-caution {
  font-size: 1.4rem;
  color: #383838;
  line-height: 1.71429;
  font-weight: 400;
}

.intro-box-caution {
  font-size: 1.3rem;
  color: #383838;
  line-height: 1.4;
  font-weight: 400;
}

.intro-box-caution a {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  font-weight: 400;
}

.intro-box-caution a:link {
  color: #3382E7;
  text-decoration: none;
}

.intro-box-caution a:visited {
  color: #3382E7;
  text-decoration: none;
}

.intro-box-caution a:hover {
  color: #3382E7;
  text-decoration: none;
  opacity: 0.65;
}

.intro-arrow {
  width: 48px;
  margin: 0 auto 30px;
}

.intro-arrow img {
  width: 100%;
  vertical-align: bottom;
}

.cashback_text {
  position: relative;
  flex-direction: row;
  justify-content: space-between;
}

.intro-box_01 {
  position: relative;
  padding: 40px 0 40px;
  background-color: #fffc9e;
}

.intro-box_03 {
  position: relative;
  padding: 40px 0 30px;
  background-color: #fffc9e;
  margin-bottom: 60px;
}

.intro-wrap {
  width: 85.416666%;
  margin: 30px auto 0;
}

.intro_01 .cmn--cautionlist li {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .intro {
    position: relative;
    padding: 8vw 2.66667vw 0;
  }
  .intro.pt20 {
    position: relative;
    padding: 2.66667vw;
  }
  .intro_01 {
    position: relative;
    padding: 0 2.66667vw;
  }
  .intro-catch {
    font-size: calc(100vw / (375 / 30));
    margin: 0 0 2.66667vw;
  }
  .intro-catch em {
    display: inline-block;
    font-size: calc(100vw / (375 / 40));
    background-size: 29.33333vw;
    padding: 5px;
  }
  .intro-catch_01 {
    font-size: calc(100vw / (375 / 30));
    margin: 0 0 15vw;
  }
  .intro-catch_01 em {
    display: inline-block;
    font-size: calc(100vw / (375 / 40));
    background-size: 29.33333vw;
    padding: 5px;
  }
  .intro-lead {
    font-size: calc(100vw / (375 / 13));
    margin: 0 0 8vw;
    text-align: left;
  }
  .intro-lead br {
    display: none;
  }
  .intro-list {
    margin: 0 0 4vw;
  }
  .intro-list li {
    padding: 5.33333vw 0;
  }
  .intro-list-icon {
    width: 16vw;
    margin: 0 auto 2.66667vw;
  }
  .intro-list-text {
    font-size: calc(100vw / (375 / 12));
    color: #FFF;
    font-weight: 500;
  }
  .intro-list-text em {
    font-size: calc(100vw / (375 / 9));
  }
  .intro-figure01 {
    margin: 0 auto 4vw;
  }
  .intro-figure01 img {
    width: 100%;
  }
  .intro-figure02 {
    margin: 0 auto 5.33333vw;
  }
  .intro-head__text {
    display: inline-block;
    margin-top: calc(calc(100 / 375) * 5 * 1vw);
  }
  .intro-box {
    padding: 1.33333vw;
    margin: 0 0 5.33333vw;
  }
  .intro-box_02 {
    padding: 1.33333vw;
    margin: 0 2vw;
  }
  .intro-box:last-of-type {
    margin: 0 2vw 2.66667vw;
    padding: 1.33333vw 1.33333vw 4vw;
  }
  .intro-box__inner {
    padding: 2vw 1vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .intro-box__inner_02 {
    padding: 0 calc(calc(100 / 375) * 2.7 * 1vw);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .intro-box figure {
    width: 22%;
  }
  .intro-box figure img {
    width: 100%;
    vertical-align: bottom;
  }
  .intro-box_02 figure {
    width: 100%;
    margin: auto;
  }
  .intro-box-contents {
    width: 75%;
  }
  .intro-box-contents h4 {
    font-size: calc(100vw / (375 / 18));
    margin: 0 0 2.66667vw;
    line-height: 1.28571;
  }
  .intro-box-contents h4 em {
    font-size: calc(100vw / (375 / 9));
  }
  .intro-box-contents p {
    font-size: calc(100vw / (375 / 14));
    margin: 0 0 2.66667vw;
  }
  .intro-box-contents p em {
    font-size: calc(100vw / (375 / 9));
  }
  .intro-box-contents_03 h4 {
    font-size: calc(100vw / (375 / 18));
    margin: 0 0 2vw;
    padding: 2vw 0 0;
  }
  .intro-box-caution {
    font-size: calc(100vw / (375 / 11));
  }
  .intro-arrow {
    width: 6.4vw;
    margin: 0 auto 5.33333vw;
  }
  .intro-arrow img {
    width: 100%;
    vertical-align: bottom;
  }
  .cashback_text {
    padding: calc(calc(100 / 375) * 15 * 1vw) 0;
    flex-direction: column;
    margin: 0;
  }
  .cashback_text:nth-child(even) .pict {
    margin-left: 0;
    margin-right: 0%;
  }
  .intro-box_01 {
    position: relative;
    padding: calc(calc(100 / 375) * 30 * 1vw) 0 calc(calc(100 / 375) * 20 * 1vw);
    background-color: #fffc9e;
  }
  .merit .intro-box_01 {
    margin: 0 0 calc(calc(100 / 375) * 10 * 1vw);
  }
  .merit .cmn--title02 {
    line-height: 1.2;
  }
  .intro-box_03 {
    padding: calc(calc(100 / 375) * 30 * 1vw) 0 calc(calc(100 / 375) * 20 * 1vw);
    margin-bottom: calc(calc(100 / 375) * 30 * 1vw);
  }
  .intro-figure03 {
    width: 100%;
  }
  .intro-figure03 p {
    padding: 0 0 2vw;
    font-size: calc(100vw / (375 / 11));
  }
  .intro-figure03 img {
    width: 100%;
    padding: 0;
    vertical-align: bottom;
  }
  .intro-figure04 img {
    margin: 0 auto 2vw;
  }
  .intro-wrap {
    width: 90.0375%;
    margin: calc(calc(100 / 375) * 15 * 1vw) auto 0;
  }
}
/*  anchor
--------------------------------------------------------------*/
.intro-link__wrap {
  display: flex;
  justify-content: center;
  gap: 3.125%;
  margin: 0 0 30px 0;
  width: 100%;
}

.intro-link__box {
  flex-basis: 31.25%;
}

.intro-link__anchor {
  display: block;
  transition: all 0.15s;
}

.intro-link__anchor--1 {
  background: url(../images/menu_01_pc_hover.png) no-repeat center top/contain;
}

.intro-link__anchor--2 {
  background: url(../images/menu_02_pc_hover.png) no-repeat center top/contain;
}

.intro-link__anchor--3 {
  background: url(../images/menu_03_pc_hover.png) no-repeat center top/contain;
}

.intro-link__img {
  max-width: 100%;
}

.intro-link__anchor:hover {
  transform: translateY(6px);
}

.intro-link__anchor:hover img {
  visibility: hidden;
}

@media screen and (max-width: 1000px) {
  .intro-link__anchor:hover {
    transform: translateY(calc((100vw - 40px) * 0.3125 * 0.02));
  }
}
#merit-01 {
  padding-top: 30px;
  margin-top: -30px;
}

@media screen and (max-width: 767px) {
  .intro-link__wrap {
    gap: 3.8675%;
    margin: 0 0 6.4vw 0;
  }
  .intro-link__box {
    flex-basis: 30.755%;
  }
  .intro-link__anchor {
    transition: all 0s;
  }
  .intro-link__anchor--1 {
    background: url(../images/menu_01_sp_hover.png) no-repeat center top/contain;
  }
  .intro-link__anchor--2 {
    background: url(../images/menu_02_sp_hover.png) no-repeat center top/contain;
  }
  .intro-link__anchor--3 {
    background: url(../images/menu_03_sp_hover.png) no-repeat center top/contain;
  }
  .intro-link__anchor:hover {
    transform: translateY(1.2658578566vw);
  }
  #merit-01 {
    padding-top: 6.4vw;
    margin-top: -6.4vw;
  }
}
/*  sub6 2024/09/27
--------------------------------------------------------------*/
.sub6 {
  padding: 0 20px 77px;
}
.sub6__wrap {
  max-width: 960px;
  margin: 0 auto 0;
}
.sub6-bnr {
  margin: 0 auto;
  cursor: pointer;
  background-color: #43bedf;
  position: relative;
  padding: 0 63px 0 0;
}
.sub6-bnr__arrow {
  position: absolute;
  top: calc(50% - 0.3rem);
  right: 3.3rem;
  transition: transform 0.3s;
  transform-origin: 0.05rem 0.25rem;
}
.sub6-bnr.toggle-on .sub6-bnr__arrow {
  transform: rotate(180deg);
}
.sub6-bnr__arrow::before {
  content: "";
  position: absolute;
  height: 1.8rem;
  width: 0.3rem;
  transform: rotate(45deg) translateY(-50%);
  border-radius: 0.3rem;
  background: #003477;
  right: -0.1rem;
}
.sub6-bnr__arrow::after {
  content: "";
  position: absolute;
  height: 1.8rem;
  width: 0.3rem;
  transform: rotate(-45deg) translateY(-50%);
  border-radius: 0.3rem;
  background: #003477;
}
.sub6-bnr.toggle-on .sub6-bnr__arrow:before {
  transform: rotate(45deg) translateY(-50%);
}
.sub6-bnr.toggle-on .sub6-bnr__arrow:after {
  transform: rotate(-45deg) translateY(-50%);
}
.sub6-bnr img {
  width: 100%;
  vertical-align: bottom;
}
.sub6-contents__wrap {
  margin: 0 auto;
  border: 3px solid #43bedf;
  border-top: none;
  background-color: transparent;
  display: none;
}
.sub6-contents__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 30px 0;
}
.sub6-contents__reference-mark {
  color: #ea5606;
}
.sub6-contents-head__text {
  color: #003477;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.022em;
  position: relative;
  margin-bottom: 54px;
}
.sub6-contents-head__text::before {
  content: "";
  background: #fdd632;
  width: 442px;
  height: 16px;
  border-radius: 2px;
  position: absolute;
  bottom: -30px;
}
.sub6-contents-head__text:last-of-type::before {
  width: 219px;
}
.sub6-contents-detail__wrap {
  margin: 0 auto 40px;
}
.sub6-contents-detail__img {
  max-width: 800px;
  margin: 20px auto 0;
}
.sub6-contents-detail__img img {
  width: 100%;
  vertical-align: bottom;
}
.sub6-contents-detail__text--head {
  color: #333;
  font-size: 2.4rem;
  font-weight: 700;
  margin: -2px 0 18px;
  line-height: 1.5;
}
.sub6-contents-detail__text--head em {
  color: #3382E7;
}
.sub6-contents-detail__text--head span {
  font-size: 1.6rem;
}
.sub6-contents-detail__text--item {
  color: #333;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.sub6-contents-detail__text--item span {
  font-size: 1.4rem;
}
.sub6-contents-detail__text--caution {
  font-size: 1.2rem;
  color: #383838;
}
.sub6-contents-detail__text--caution2 {
  font-size: 1.2rem;
  color: #383838;
  text-align: center;
  margin-top: 5px;
}
.sub6-contents-detail__caution {
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .sub6 {
    padding: 0 calc(calc(100 / 375) * 10 * 1vw) calc(calc(100 / 375) * 30 * 1vw);
  }
  .sub6__wrap {
    max-width: 100%;
  }
  .sub6-bnr {
    max-width: 100%;
    padding: 0 11.46667vw 0 0;
  }
  .sub6-bnr__arrow {
    top: calc(50% - 0.5vw);
    right: 5.86667vw;
    transition: transform 0.3s;
    transform-origin: 0.13334vw 0.4vw;
  }
  .sub6-bnr__arrow::before {
    height: 2.93333vw;
    width: 0.53333vw;
    border-radius: 0.8vw;
    background: #003477;
    right: -0.26667vw;
  }
  .sub6-bnr__arrow::after {
    height: 2.93333vw;
    width: 0.53333vw;
    border-radius: 0.8vw;
    background: #003477;
  }
  .sub6-contents__wrap {
    max-width: 100%;
    border: calc(calc(100 / 375) * 3 * 1vw) solid #43bedf;
    border-top: none;
  }
  .sub6-contents__inner {
    max-width: 100%;
    padding: calc(calc(100 / 375) * 20 * 1vw) calc(calc(100 / 375) * 17 * 1vw) 0;
  }
  .sub6-contents-head__text {
    font-size: calc(100vw / (375 / 20));
    letter-spacing: 0.016em;
    margin-bottom: calc(calc(100 / 375) * 50 * 1vw);
  }
  .sub6-contents-head__text::before {
    width: calc(calc(100 / 375) * 245 * 1vw);
    height: calc(calc(100 / 375) * 16 * 1vw);
    border-radius: calc(calc(100 / 375) * 2 * 1vw);
    bottom: calc(calc(100 / 375) * -29 * 1vw);
  }
  .sub6-contents-head__text:last-of-type::before {
    width: calc(calc(100 / 375) * 121 * 1vw);
  }
  .sub6-contents-detail__wrap {
    margin: 0 auto calc(calc(100 / 375) * 30 * 1vw);
  }
  .sub6-contents-detail__img {
    max-width: 100%;
    margin: calc(calc(100 / 375) * 15 * 1vw) auto 0;
  }
  .sub6-contents-detail__text--head {
    color: #333;
    font-size: calc(100vw / (375 / 16));
    margin: calc(calc(100 / 375) * -1 * 1vw) 0 calc(calc(100 / 375) * 12 * 1vw);
  }
  .sub6-contents-detail__text--head span {
    font-size: calc(100vw / (375 / 12));
  }
  .sub6-contents-detail__text--item {
    font-size: calc(100vw / (375 / 14));
    margin-bottom: calc(calc(100 / 375) * 10 * 1vw);
  }
  .sub6-contents-detail__text--item span {
    font-size: calc(100vw / (375 / 11));
  }
  .sub6-contents-detail__text--caution {
    font-size: calc(100vw / (375 / 11));
  }
  .sub6-contents-detail__text--caution2 {
    font-size: calc(100vw / (375 / 11));
    text-align: left;
    margin-top: calc(calc(100 / 375) * 3 * 1vw);
    line-height: 1.5;
  }
  .sub6-contents-detail__caution {
    margin-top: calc(calc(100 / 375) * 10 * 1vw);
  }
}
/*  intro
--------------------------------------------------------------*/
.intro-caution__list {
  padding: 0 40px;
  display: table;
  width: 100%;
}
.intro-caution__item {
  color: #383838;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.intro-caution__item--head {
  display: table-cell;
  vertical-align: top;
  white-space: nowrap;
  width: 2em;
}
.intro-caution__item--head-nonum {
  width: 1.5em;
}
.intro-caution__item--body {
  display: table-cell;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .intro-caution__list {
    padding: 0;
  }
  .intro-caution__item {
    font-size: calc(100vw / (375 / 10));
  }
}
@media screen and (max-width: 767px) {
  .intro-caution__list-feature {
    padding: 0 calc(calc(100 / 375) * 15 * 1vw);
  }
}

.intro-feature {
  background-color: #E5F5FC;
  padding: 80px 0;
}
.intro-feature__container {
  margin: 0 0 60px 0;
  background-color: #fff;
  padding-top: 54px;
  padding-bottom: 35px;
}
.intro-feature__container03 {
  padding-top: 50px;
}
.intro-feature__container04 {
  padding-top: 50px;
  margin: 0;
}
.intro-feature__header {
  margin-bottom: 67px;
  position: relative;
  text-align: center;
}
.intro-feature__header02 {
  margin-bottom: 30px;
}
.intro-feature__header03 {
  margin-bottom: 33px;
}
.intro-feature__header04 {
  margin-bottom: 11px;
}
.intro-feature__heading {
  color: #003477;
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.02em;
}
.intro-feature__heading em {
  font-size: 3rem;
  padding-left: 9px;
  letter-spacing: 0.02em;
}
.intro-feature__heading sub {
  vertical-align: sub;
  font-size: 2rem;
}
.intro-feature__heading02 {
  padding-left: 39px;
}
.intro-feature__heading03 {
  line-height: 1.25;
}
.intro-feature__heading04 {
  line-height: 1.25;
}
.intro-feature__heading--text {
  color: #003477;
  font-size: 2.5rem;
  font-weight: 700;
}
.intro-feature__heading--text02 {
  margin-top: 8px;
}
.intro-feature__heading--text04 {
  margin-top: 3px;
}
.intro-feature__heading--text-dot {
  padding-top: 0.4em;
  background-position: top left -2px;
  background-repeat: repeat-x;
  background-size: 1.1em 0.3em;
  background-image: radial-gradient(0.15em 0.15em at center center, #003477, #003477 100%, transparent, transparent);
  display: inline;
}
.intro-feature__box01 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0 15px;
  margin-bottom: 20px;
  margin-right: 25px;
}
.intro-feature__box01 img {
  vertical-align: bottom;
}
.intro-feature__box01--img01 {
  max-width: 196px;
}
.intro-feature__box01--img02 {
  max-width: 75px;
  margin-left: 17px;
  margin-right: 25px;
  transform: translateY(-29px);
}
.intro-feature__box01--img03 {
  max-width: 162px;
}
.intro-feature__box02 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0 15px;
  margin-bottom: 15px;
  margin-left: 1px;
}
.intro-feature__box02 img {
  max-width: 100%;
  vertical-align: bottom;
}
.intro-feature__box03 {
  padding: 0 15px;
  margin-bottom: 35px;
  text-align: center;
}
.intro-feature__box03 img {
  max-width: 100%;
  vertical-align: bottom;
}
.intro-feature__box03-button {
  margin: 0 auto 23px;
}
.intro-feature__box04--img01 {
  padding: 0 15px;
  margin-bottom: 15px;
  text-align: center;
}
.intro-feature__box04--img01 img {
  max-width: 75%;
  vertical-align: bottom;
}
.intro-feature__box04--text {
  color: #003477;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-block;
  margin: 0 auto 22px;
  position: relative;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.intro-feature__box04--text::before {
  content: "";
  background-color: #003477;
  height: 35px;
  width: 3px;
  bottom: -6px;
  left: -20px;
  position: absolute;
  transform: rotate(-40deg);
}
.intro-feature__box04--text::after {
  content: "";
  background-color: #003477;
  height: 35px;
  width: 3px;
  bottom: -6px;
  right: -20px;
  position: absolute;
  transform: rotate(40deg);
}
.intro-feature__box04--img02 {
  padding: 0 15px;
  margin-bottom: 16px;
  text-align: center;
}
.intro-feature__box04--img02 img {
  max-width: 80%;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .intro-feature {
    padding: calc(calc(100 / 375) * 30 * 1vw) 0 calc(calc(100 / 375) * 30 * 1vw);
  }
  .intro-feature__container {
    margin: 0 0 calc(calc(100 / 375) * 30 * 1vw) 0;
    padding-top: calc(calc(100 / 375) * 26 * 1vw);
    padding-bottom: calc(calc(100 / 375) * 20 * 1vw);
  }
  .intro-feature__container02 {
    padding-top: calc(calc(100 / 375) * 27 * 1vw);
  }
  .intro-feature__container03 {
    padding-top: calc(calc(100 / 375) * 28 * 1vw);
  }
  .intro-feature__container04 {
    margin: 0;
    padding-top: calc(calc(100 / 375) * 28 * 1vw);
  }
  .intro-feature__header {
    margin-bottom: calc(calc(100 / 375) * 40 * 1vw);
  }
  .intro-feature__header02 {
    margin-bottom: calc(calc(100 / 375) * 12 * 1vw);
  }
  .intro-feature__header03 {
    margin-bottom: calc(calc(100 / 375) * 16 * 1vw);
  }
  .intro-feature__header04 {
    margin-bottom: calc(calc(100 / 375) * 8 * 1vw);
  }
  .intro-feature__heading {
    font-size: calc(100vw / (375 / 24));
    line-height: 1.375;
    letter-spacing: 0.02em;
  }
  .intro-feature__heading em {
    font-size: calc(100vw / (375 / 19));
    padding-left: calc(calc(100 / 375) * 1 * 1vw);
    padding-right: calc(calc(100 / 375) * 5 * 1vw);
  }
  .intro-feature__heading sub {
    vertical-align: sub;
    font-size: calc(100vw / (375 / 14));
  }
  .intro-feature__heading02 {
    padding-left: 0;
    line-height: 1.3125;
  }
  .intro-feature__heading03 {
    line-height: 1.3125;
  }
  .intro-feature__heading04 {
    font-size: calc(100vw / (375 / 22));
    line-height: 1.3125;
  }
  .intro-feature__heading--text {
    font-size: calc(100vw / (375 / 16));
    font-weight: 700;
  }
  .intro-feature__heading--text02 {
    margin-top: calc(calc(100 / 375) * 5 * 1vw);
  }
  .intro-feature__heading--text04 {
    margin-top: calc(calc(100 / 375) * 5 * 1vw);
  }
  .intro-feature__heading--text-dot {
    background-position: top left calc(calc(100 / 375) * -2 * 1vw);
  }
  .intro-feature__box01 {
    padding: 0 calc(calc(100 / 375) * 15 * 1vw);
    margin-bottom: calc(calc(100 / 375) * 20 * 1vw);
    margin-right: calc(calc(100 / 375) * 10 * 1vw);
  }
  .intro-feature__box01--img01 {
    max-width: calc(calc(100 / 375) * 121 * 1vw);
    transform: translateX(2px);
  }
  .intro-feature__box01--img02 {
    max-width: calc(calc(100 / 375) * 41 * 1vw);
    margin-left: 0;
    margin-right: calc(calc(100 / 375) * 11 * 1vw);
    transform: translateY(calc(calc(100 / 375) * -21 * 1vw));
  }
  .intro-feature__box01--img03 {
    max-width: calc(calc(100 / 375) * 100 * 1vw);
  }
  .intro-feature__box02 {
    padding: 0 calc(calc(100 / 375) * 15 * 1vw);
    margin-bottom: calc(calc(100 / 375) * 15 * 1vw);
    margin-left: calc(calc(100 / 375) * 1 * 1vw);
  }
  .intro-feature__box02 img {
    max-width: calc(calc(100 / 375) * 300 * 1vw);
  }
  .intro-feature__box03 {
    padding: 0 calc(calc(100 / 375) * 15 * 1vw);
    margin-bottom: calc(calc(100 / 375) * 18 * 1vw);
    margin-left: calc(calc(100 / 375) * 1 * 1vw);
  }
  .intro-feature__box03 img {
    max-width: calc(calc(100 / 375) * 300 * 1vw);
  }
  .intro-feature__box03-button {
    margin: 0 auto calc(calc(100 / 375) * 16 * 1vw);
    padding: 0 calc(calc(100 / 375) * 15 * 1vw);
  }
  .intro-feature__box03-button .c-btn {
    margin-bottom: 0;
  }
  .intro-feature__box04--img01 {
    padding: 0 calc(calc(100 / 375) * 22 * 1vw);
    margin-bottom: calc(calc(100 / 375) * 12 * 1vw);
    margin-left: calc(calc(100 / 375) * 1 * 1vw);
  }
  .intro-feature__box04--img01 img {
    max-width: 100%;
  }
  .intro-feature__box04--text {
    font-size: calc(100vw / (375 / 16));
    margin: 0 auto calc(calc(100 / 375) * 10 * 1vw);
  }
  .intro-feature__box04--text::before {
    height: calc(calc(100 / 375) * 20 * 1vw);
    width: calc(calc(100 / 375) * 2 * 1vw);
    bottom: calc(calc(100 / 375) * -3 * 1vw);
    left: calc(calc(100 / 375) * -13 * 1vw);
  }
  .intro-feature__box04--text::after {
    height: calc(calc(100 / 375) * 20 * 1vw);
    width: calc(calc(100 / 375) * 2 * 1vw);
    bottom: calc(calc(100 / 375) * -3 * 1vw);
    right: calc(calc(100 / 375) * -13 * 1vw);
  }
  .intro-feature__box04--img02 {
    padding: 0 calc(calc(100 / 375) * 15 * 1vw);
    margin-bottom: calc(calc(100 / 375) * 16 * 1vw);
  }
  .intro-feature__box04--img02 img {
    max-width: 100%;
  }
}

.intro__wrap {
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .intro__wrap {
    padding: 0 calc(calc(100 / 375) * 15 * 1vw) 0;
  }
}
/*  price
--------------------------------------------------------------*/
.price {
  background: #2e7be1;
  background: linear-gradient(90deg, #2e7be1 0%, #3aa7dc 49%, #43c0df 100%);
  padding: 60px 20px;
}

.price .cmn--title03 {
  color: #FFF;
}

.price-info {
  max-width: 640px;
  margin: 0 auto 40px;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  text-align: center;
  font-size: 1.8rem;
  color: #FFF;
  font-weight: 700;
  padding: 20px 0;
}

.price__inner {
  max-width: 960px;
  margin: 0 auto;
  background-color: #FFF;
  padding: 50px;
}

.price-figure01 {
  margin: 0 auto 20px;
  padding: 30px 80px;
  background-color: #f7f7f7;
}

.price-figure01 img {
  width: 100%;
  vertical-align: bottom;
}

.price .cmn--cautionlist {
  margin: 15px 0 0;
}

.price-datalist {
  margin: 0 0 10px;
  background-color: #F7F7F7;
  border-radius: 5px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-datalist dt {
  width: 25%;
  text-align: center;
  border-right: 1px solid #505050;
  padding: 25px 0;
  color: #050505;
  font-weight: 700;
  text-align: center;
  font-size: 1.8rem;
}

.price-datalist dd {
  width: 72.5%;
  padding: 25px 0;
  color: #3382E7;
  font-weight: 700;
  text-align: center;
  font-size: 2.2rem;
}

.price-datalist dd em {
  font-size: 1.1rem;
}

.price-caution-title {
  margin: 15px 0 5px;
  color: #383838;
  font-weight: 400;
  font-size: 1.4rem;
}

.price-caution-text {
  color: #383838;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
}

.price-detail {
  margin: 24px 0 0;
  padding: 0 0 40px;
  background-color: #F7F7F7;
}

.price-detail-title {
  background: #2e7be1;
  background: linear-gradient(90deg, #2e7be1 0%, #3aa7dc 49%, #43c0df 100%);
  padding: 15px 0;
  font-size: 3.2rem;
  color: #FFF;
  font-weight: 700;
  text-align: center;
}

.price-detail-title02 {
  background: #2e7be1;
  background: linear-gradient(90deg, #2e7be1 0%, #3aa7dc 49%, #43c0df 100%);
  padding: 15px 0;
  font-size: 2.4rem;
  color: #FFF;
  font-weight: 700;
  text-align: center;
}

.price-detail-title span {
  font-size: 1.4rem;
  font-weight: 400;
  display: block;
  margin: 10px 0 0;
}

.price-detail-title.price-subtitle {
  padding: 27px 0;
}

.price-detail__plan {
  margin: 65px 0 0;
  color: #003477;
  display: flex;
  justify-content: center;
  position: relative;
}

.price-detail__plan:not(:first-of-type) {
  margin: 30px 0 0;
}

.price-detail__plan::before {
  content: "";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #2e7be1 0%, #3aa7dc 49%, #43c0df 100%);
  width: 450px;
  height: 6px;
  border-radius: 3px;
}

.price-detail__plan::after {
  content: "";
  position: absolute;
  top: 93px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #2e7be1 0%, #3aa7dc 49%, #43c0df 100%);
  width: 450px;
  height: 6px;
  border-radius: 3px;
}

.price-detail__plan--title {
  text-align: center;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 12px;
  position: relative;
  display: inline-block;
}

.price-detail__plan--title-new {
  position: absolute;
  top: -46px;
  left: -66px;
  width: 78px;
}

.price-detail__plan--title-new .st0 {
  fill: #fdd632;
}

.price-detail__plan--title-new::after {
  content: "NEW";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -68%);
  color: #eb0000;
  font-size: 1.8rem;
  font-weight: 900;
}

.price-detail__plan--title em {
  font-size: 1.8rem;
  padding-left: 1.5rem;
  font-weight: 500;
}

.price-detail__wrap {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 10px clamp(15px, 2.4vw, 25px) 25px;
  gap: 2.9%;
  margin: 0 0 8px 0;
}

.price-detail__inner {
  padding: 0;
  flex-basis: 50%;
}

.price-detail__inner02 {
  padding: 25px clamp(15px, 2.4vw, 25px) 0;
}

.price-detail-meta {
  display: flex;
  justify-content: space-between;
}

.price-detail-meta li {
  width: 48.14815%;
  border: 5px solid #3382E7;
}

.price-detail-meta-title {
  background-color: #3382E7;
  font-size: 2rem;
  padding: 15px 0;
  text-align: center;
  color: #FFF;
  font-weight: 700;
}

.price-detail-meta-content {
  padding: 25px 0;
}

.price-detail-meta-content p {
  color: #3382E7;
  font-weight: 700;
  text-align: center;
  line-height: 1.6;
  font-size: min(2.4vw, 2.4rem);
}

.price-detail-meta-content p em {
  font-size: 1.4rem;
}

.price-detail-arrow {
  width: 25px;
  margin: 10px auto;
}

.price-detail-arrow img {
  width: 100%;
  vertical-align: bottom;
}

.price-detail-box01 {
  background-color: #FFF;
  position: relative;
  padding: 15px 0 14px;
  margin: 40px auto 0;
  height: 90%;
}

.price-detail-box01 h4 {
  top: -30px;
  position: relative;
  margin: 0 auto;
  width: 100%;
  background-color: #003477;
  color: #FFF;
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  border-radius: 20px;
  padding: 12.5px 0;
}

.price-detail-box01 p {
  text-align: center;
  font-size: min(3vw, 2.8rem);
  font-weight: 700;
  color: #EB0000;
}

.price-detail-box01 p em {
  font-size: 1.8rem;
}

.price-detail-box01 p span {
  font-size: 1.8rem;
  font-weight: 900;
  color: #333;
}

.price-detail-box01 .price-detail-box01__currency1 {
  color: #EB0000;
  margin: 0 3px 0 0;
  font-size: 2rem;
  font-weight: 900;
}

.price-detail-box01 .price-detail-box01__currency2 {
  color: #EB0000;
  font-size: 1.7rem;
  font-weight: 700;
}

.price-detail-box01 .price-detail-box01__multiplication {
  color: #EB0000;
  font-size: 2.4rem;
  display: inline-block;
  margin: 0 5px 0;
  transform: translateY(-0.1rem);
}

@media screen and (max-width: 860px) {
  .price-detail-box01 .price-detail-box01__multiplication {
    margin: 0;
  }
}
.price-detail-box01 .price-detail-box01__times {
  color: #EB0000;
  font-size: min(2.6vw, 2.4rem);
  font-weight: 700;
  display: inline-block;
  transform: translateY(-0.15rem);
}

.price-detail-box01 .price-detail-box01__caution {
  font-weight: normal;
  font-size: x-small;
  margin: 0 0 0 3px;
}

@media screen and (min-width: 910px) {
  .price-detail-box01__word-break {
    display: none;
  }
}
.price-detail-box01 .price-detail-box01__link {
  font-size: 1.8rem;
  margin: 24px 0 0 0;
}

.price-detail-box01-priceplus {
  font-size: 3.5rem !important;
  color: #333 !important;
}

.price-detail-box01 .price-detail-box01__cash {
  font-weight: 700;
}

.plan-popup3 .price-detail-box01__popup {
  margin-top: 0;
  padding-top: 11px;
}

.price-detail-box01-list {
  margin: 23px 0 0;
  padding: 0 25px 30px;
  padding: 0 clamp(15px, 2.4vw, 25px) 30px;
}

.price-detail-box01-list02 {
  padding: 0 25px 30px;
}

.price-detail-box01-list li {
  color: #383838;
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0 0 5px;
  line-height: 1.42857;
  padding-left: 2em;
  text-indent: -2em;
}

.price-detail-box01-list li span {
  margin: 0 0.5em 0 0;
}

.price-detail-box01-list__nonum {
  padding-left: 2.5em;
  text-indent: -2.5em;
}

.price-detail-box01-list .price-detail-box01-list__nonum span {
  margin: 0 1em 0 0;
}

.price-detail-box01__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 80px;
  margin-top: -10px;
}

p.price-detail-box01__method {
  color: #333;
}

p.price-detail-box01__method--how {
  color: #333;
  font-size: 1.8rem;
}

.price-detail__sub {
  padding: 0 25px;
}

.price-detail__sub-title {
  background-color: #FFF;
  border: 3px solid #3382E7;
  text-align: center;
  color: #3382E7;
  font-weight: 700;
  font-size: 2.4rem;
  padding: 15px 0;
  cursor: pointer;
  position: relative;
}

.price-detail__sub-title:before {
  content: "";
  position: absolute;
  display: block;
  height: 1.8rem;
  width: 1.8rem;
  border-bottom: 0.3rem solid #3382E7;
  border-right: 0.3rem solid #3382E7;
  right: 3rem;
  transform: rotate(45deg);
  top: -0.6em;
  bottom: 0;
  margin: auto;
}

.price-detail__sub-title.toggle-on:before {
  border-top: 0.3rem solid #3382E7;
  border-right: 0.3rem solid #3382E7;
  border-bottom: none;
  transform: rotate(-45deg);
  top: 0.4em;
  bottom: 0;
}

.price-detail__sub-content {
  display: none;
  background-color: #FFF;
  padding: 25px;
}

.price-detail__sub-illust {
  margin: 0 auto 10px;
}

.price-detail__sub-illust img {
  width: 100%;
  vertical-align: bottom;
}

.price-detail__sub-attention {
  margin: 30px 0 0;
  background-color: #F7F7F7;
  border-radius: 5px;
  padding: 25px;
}

.price-detail__sub-attention h4 {
  top: -30px;
  position: relative;
  margin: 0 auto;
  width: 200px;
  background-color: #003477;
  color: #FFF;
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  border-radius: 20px;
  padding: 12.5px 0;
}

.price-detail__sub-attention p {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #EB0000;
  margin: 0 0 15px;
}

.price-detail__sub-attention p em {
  font-size: 1.8rem;
}

.price-detail__sub-attention p span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
}

@media screen and (max-width: 767px) {
  .price {
    padding: 8vw 2.66667vw;
  }
  .price-info {
    width: 90.66667vw;
    margin: 0 auto 5.33333vw;
    font-size: calc(100vw / (375 / 13));
    padding: 2.66667vw 0;
  }
  .price__inner {
    padding: 4vw;
  }
  .price-figure01 {
    margin: 0 auto 4vw;
    padding: calc(calc(100 / 375) * 10 * 1vw) calc(calc(100 / 375) * 12.5 * 1vw);
  }
  .price .cmn--cautionlist {
    margin: 4vw 0 0;
  }
  .price-datalist {
    margin: 0 0 2.66667vw;
    padding: 2.66667vw;
  }
  .price-datalist dt {
    width: 40%;
    padding: 2.66667vw 0;
    font-size: calc(100vw / (375 / 12));
  }
  .price-datalist dd {
    width: 55.5%;
    padding: 2.66667vw 0;
    font-size: calc(100vw / (375 / 14));
    line-height: 1.25;
  }
  .price-datalist dd em {
    font-size: 1.1rem;
  }
  .price-caution-title {
    margin: 5vw 0 1vw;
    font-size: calc(100vw / (375 / 12));
  }
  .price-caution-text {
    font-weight: 400;
    font-size: calc(100vw / (375 / 12));
    line-height: 1.4;
  }
  .price-detail {
    margin: 5.33333vw 0 0;
    padding: 0 0 4vw;
  }
  .price-detail-title {
    padding: 2.66667vw 0;
    font-size: calc(100vw / (375 / 20));
  }
  .price-detail-title span {
    font-size: calc(100vw / (375 / 11));
    margin: 2.66667vw 0 0;
  }
  .price-detail-title.price-subtitle {
    padding: 2.66667vw 0;
  }
  .price-detail-title02 {
    margin: 0 0 3vw;
    padding: 2.66667vw 0;
    font-size: calc(100vw / (375 / 20));
  }
  .price-detail__plan {
    margin: 12.333332vw 0 0;
  }
  .price-detail__plan::before {
    top: -5vw;
    height: 1.066666vw;
    border-radius: 0.533333vw;
    width: 93.847099%;
  }
  .price-detail__plan::after {
    top: 16.3vw;
    height: 1.066666vw;
    border-radius: 0.533333vw;
    width: 93.847099%;
  }
  .price-detail__plan--title {
    font-size: calc(100vw / (375 / 18));
    margin: 0;
    line-height: 1.3;
  }
  .price-detail__plan--title-new {
    position: absolute;
    top: -9.066666vw;
    left: -7.866666vw;
    width: 12.533333vw;
  }
  .price-detail__plan--title-new::after {
    font-size: calc(100vw / (375 / 12));
    font-weight: 700;
    transform: translate(-50%, -65%);
  }
  .price-detail__plan--title em {
    font-size: calc(100vw / (375 / 14));
    padding-left: 0;
    font-weight: 400;
  }
  .price-detail__wrap {
    flex-direction: column;
    padding: 1.333333vw 0 2.66667vw;
    margin: 0 0 1.4vw;
  }
  .price-detail__inner {
    padding: 2.66667vw 2.66667vw 0;
  }
  .price-detail__inner02 {
    padding: 2.66667vw 2.66667vw 0;
  }
  .price-detail-meta {
    display: block;
    justify-content: space-between;
  }
  .price-detail-meta li {
    width: auto;
    border: 5px solid #3382E7;
    margin: 0 0 2.66667vw;
  }
  .price-detail-meta-title {
    font-size: calc(100vw / (375 / 15));
    padding: 2.66667vw 0;
  }
  .price-detail-meta-content {
    padding: 4vw 0;
  }
  .price-detail-meta-content p {
    line-height: 1.4;
    font-size: calc(100vw / (375 / 16));
  }
  .price-detail-meta-content p em {
    font-size: calc(100vw / (375 / 12));
  }
  .price-detail-box01 {
    padding: 2.66667vw 2.66667vw 5.33333vw;
    margin: 7.66667vw 0 0;
  }
  .price-detail-box01 h4 {
    top: -8.66vw;
    position: relative;
    margin: 0 auto;
    width: 64vw;
    font-size: calc(100vw / (375 / 14));
    border-radius: calc(calc(100 / 375) * 20 * 1vw);
    padding: 2.66667vw 0;
  }
  .price-detail-box01 p {
    text-align: center;
    font-size: calc(100vw / (375 / 18));
    font-weight: 700;
    color: #EB0000;
  }
  .price-detail-box01.price-detail-box01__popup p {
    font-size: calc(100vw / (375 / 18));
  }
  .price-detail-box01 p em {
    font-size: calc(100vw / (375 / 14));
  }
  .price-detail-box01 p span {
    font-size: calc(100vw / (375 / 15));
  }
  .price-detail-box01 .price-detail-box01__currency1 {
    font-size: calc(100vw / (375 / 14));
  }
  .price-detail-box01 .price-detail-box01__currency2 {
    font-size: calc(100vw / (375 / 13.3));
  }
  .price-detail-box01 .price-detail-box01__multiplication {
    font-size: calc(100vw / (375 / 16));
    margin: 0 calc(calc(100 / 375) * 5 * 1vw) 0;
  }
  .price-detail-box01 .price-detail-box01__times {
    font-size: calc(100vw / (375 / 14));
    transform: translateY(-0.06em);
  }
  .price-detail-box01__word-break {
    display: none;
  }
  .price-detail-box01 .price-detail-box01__link {
    font-size: calc(100vw / (375 / 14));
    margin: 5.333333vw 0 0 0;
  }
  .price-detail-box01-priceplus {
    margin: 1.33333vw 0;
    font-size: calc(100vw / (375 / 24)) !important;
  }
  .price-detail-box01-list {
    margin: 0;
    padding: 0 2.66667vw 4vw;
  }
  .price-detail-box01-list li {
    font-size: calc(100vw / (375 / 11));
    margin: 0 0 1.6vw;
  }
  .price-detail-box01__container {
    height: 4em;
    margin-top: -1.5em;
  }
  p.price-detail-box01__method {
    color: #333;
    font-size: calc(100vw / (375 / 20));
  }
  p.price-detail-box01__method--how {
    color: #333;
    font-size: calc(100vw / (375 / 15));
  }
  .price-detail__sub {
    padding: 0 2.66667vw;
  }
  .price-detail__sub a {
    max-width: 460px;
  }
  .price-detail__sub a.c-btn {
    margin-bottom: 4vw;
  }
  .price-detail__sub-title {
    font-size: calc(100vw / (375 / 16));
    padding: 2.66667vw 0;
    cursor: pointer;
    position: relative;
  }
  .price-detail__sub-title:before {
    content: "";
    position: absolute;
    display: block;
    height: 1.2rem;
    width: 1.2rem;
    border-bottom: 0.2rem solid #3382E7;
    border-right: 0.2rem solid #3382E7;
    right: 2rem;
    transform: rotate(45deg);
    top: -0.5em;
    bottom: 0;
    margin: auto;
  }
  .price-detail__sub-title.toggle-on:before {
    border-top: 0.2rem solid #3382E7;
    border-right: 0.2rem solid #3382E7;
    border-bottom: none;
    transform: rotate(-45deg);
    top: 0.4em;
    bottom: 0;
  }
  .price-detail__sub-content {
    display: none;
    padding: 2.66667vw;
  }
  .price-detail__sub-illust {
    margin: 0 auto;
  }
  .price-detail__sub-illust img {
    width: 100%;
    vertical-align: bottom;
  }
  .price-detail__sub-attention {
    margin: 4vw 0 0;
    padding: 4vw;
  }
  .price-detail__sub-attention p {
    text-align: center;
    font-size: calc(100vw / (375 / 18));
    font-weight: 700;
    color: #EB0000;
    margin: 0 0 15px;
  }
  .price-detail__sub-attention p em {
    font-size: calc(100vw / (375 / 14));
  }
  .price-detail__sub-attention p span {
    font-size: calc(100vw / (375 / 14));
    font-weight: 700;
    color: #000;
  }
  .price-detail__sub-attention p strong {
    display: block;
  }
}
/*  smpset
--------------------------------------------------------------*/
.smpset {
  background-color: #E5F5FC;
  padding: 20px 20px 60px;
}

.smpset__inner {
  max-width: 960px;
  margin: 0 auto;
  background-color: #FFF;
  padding: 40px 70px 20px;
}

.smpset-catch {
  font-size: min(2.2vw, 1.8rem);
  font-weight: 700;
  margin: 0 0 40px;
  text-align: center;
}

.smpset-bnlist {
  display: flex;
  justify-content: space-between;
  margin: 0 0 20px;
}

.smpset-bnlist li {
  width: 47.76119%;
}

.smpset-bnlist li img {
  width: 100%;
  vertical-align: bottom;
}

.smpset-bnlist li a {
  display: block;
  margin: 0;
}

.smpset-bnlist + p {
  font-size: 1.4rem;
  color: #383838;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 0 30px 5px;
}

.smpset-title {
  color: #003477;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 10px;
}

.smpset-text {
  color: #EB5505;
  font-weight: 700;
  text-align: center;
  font-size: 3rem;
  line-height: 1.33333;
  margin: 0 0 20px;
}

.smpset-text em {
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .smpset {
    padding: 0 2.66667vw 8vw;
  }
  .smpset__inner {
    padding: 8vw 4vw 0.1vw;
  }
  .smpset-catch {
    font-size: calc(100vw / (375 / 16));
    margin: 0 0 5.33333vw;
  }
  .smpset-bnlist {
    display: flex;
    justify-content: space-between;
    margin: 0 0 2.66666vw;
  }
  .smpset-bnlist li {
    width: 47.76119%;
  }
  .smpset-bnlist li img {
    width: 100%;
    vertical-align: bottom;
  }
  .smpset-bnlist li a {
    display: block;
    margin: 0;
  }
  .smpset-bnlist + p {
    font-size: calc(100vw / (375 / 11));
    margin: 0 0 2.66666vw;
    line-height: 1.5;
    padding-left: 1em;
    text-indent: -1em;
  }
  .smpset-title {
    font-size: calc(100vw / (375 / 20));
    margin: 0 0 2vw;
  }
  .smpset-text {
    font-size: calc(100vw / (375 / 16));
    line-height: 1.33333;
    margin: 0 0 2vw;
  }
  .smpset-text em {
    font-size: calc(100vw / (375 / 12));
  }
}
/*  lineup
--------------------------------------------------------------*/
.lineup {
  padding: 40px 20px 2.4rem;
}

.lineup__inner {
  max-width: 960px;
  margin: 0 auto;
}

.lineup-head-text {
  text-align: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  font-weight: 700;
}

.lineup-box {
  background: #2e7be1;
  background: linear-gradient(90deg, #2e7be1 0%, #3aa7dc 49%, #43c0df 100%);
  padding: 5px;
  margin: 0 0 8px;
}

.lineup-box:first-of-type {
  margin-bottom: 40px;
}

.lineup-box-title__wrap {
  display: flex;
  justify-content: center;
}

.lineup-box-title {
  font-size: 3.2rem;
  text-align: center;
  padding: 10px 0 12px;
  color: #FFF;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
}

.lineup-box-title em {
  font-size: 2.2rem;
  font-weight: 500;
}

.lineup-box-title__new {
  position: absolute;
  top: 5px;
  left: -78px;
  width: 78px;
}

.lineup-box-title__new .st0 {
  fill: #fdd632;
}

.lineup-box-title__new::after {
  content: "NEW";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -68%);
  color: #eb0000;
  font-size: 1.8rem;
  font-weight: 900;
}

.lineup-box__contents {
  background-color: #FFF;
  padding: 40px 45px 46px;
  margin-bottom: -1px;
}

.lineup-box__contents:last-of-type {
  padding-top: 0;
  padding-bottom: 45px;
  margin-bottom: 0;
}

.lineup-cbox > li:first-child {
  margin: 0 0 60px;
}

.lineup-cbox > li:last-child {
  margin: 0;
}

.line-cbox--mark {
  background-color: #EB0000;
  display: inline-block;
  padding: 5px 37px 8px 22px;
  position: relative;
  margin: 0 0 17px 0;
  clip-path: polygon(0 0, 82% 0%, 100% 100%, 0% 100%);
}

.line-cbox--mark span {
  letter-spacing: 0.14em;
  color: #fff;
  font-weight: 500;
  font-size: 2.2rem;
}

.line-cbox--mark .line-cbox--mark__osusume {
  letter-spacing: 0.03em;
}

.lineup-cbox-osusume {
  margin: 0 0 10px;
}

.lineup-cbox-osusume img {
  width: 17%;
  filter: drop-shadow(1px 2px 1px #c0c0c0);
}

.lineup-cbox-sub-title {
  color: #003477;
  margin: 0 0 5px 0;
}

.lineup-cbox-title__wrap {
  margin: 0 0 30px 0;
  text-align: center;
}

.lineup-cbox-title {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.lineup-cbox-title h4 {
  position: relative;
  font-size: 3.5rem;
  font-weight: 700;
  color: #003477;
  z-index: 2;
}

.lineup-cbox-title__new-img {
  position: absolute;
  top: -12px;
  left: -12px;
  transform: translateX(-100%);
}

.lineup-cbox-item {
  display: flex;
}

.lineup-cbox-item li {
  border-radius: 10px;
  color: #FFF;
  padding: 1px 12px 0 12px;
  font-family: "Roboto", sans-serif;
  text-align: center;
  height: 20px;
  line-height: 2rem;
  margin: 0 10px 0 0;
  font-size: 1.4rem;
  width: 10rem;
}

.lineup-cbox-item li.au5g {
  background-color: #e4007f;
}

.lineup-cbox-item li.au-bg {
  background-color: #EB5505;
}

.lineup-cbox-item li.wimax-bg {
  background-color: #3382E7;
}

.lineup-cbox-content {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: flex-start;
}

.lineup-cbox-content__images-box {
  flex-basis: 40%;
}

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

.lineup-pagination {
  bottom: -25px;
  padding: 0;
}

.lineup-page {
  width: 64px;
  height: 12px;
  margin-left: 5px;
  margin-right: 5px;
  border-radius: 0;
}

.lineup-page.is-active {
  background-color: #000;
  transform: scale(1);
}

.lineup-cbox-title-price {
  font-weight: 700;
  font-size: 2.2rem;
  color: #003477;
  line-height: 1;
}

.lineup-cbox-title-price em {
  font-size: 1.6rem;
  margin: 0 0 0 8px;
}

.lineup-cbox-content-catch {
  margin-bottom: 30px;
}

.lineup-cbox-content-catch p {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.7;
  color: #333;
  text-align: center;
}

.lineup-cbox-content-catch em {
  font-size: 1.3rem;
  line-height: 1.38462;
}

.lineup-cbox-content__detail-box {
  flex-basis: 48%;
}

.lineup-cbox-content__detail-box--items img {
  max-width: 100%;
}

.lineup-cbox-content-button {
  display: block;
  width: 520px;
  margin: 0 auto;
  border: 3px solid #3382E7;
  text-align: center;
  color: #3382E7;
  font-weight: 700 !important;
  font-size: 2.4rem;
  padding: 15px 0;
  cursor: pointer;
  position: relative;
}

.lineup-cbox-content-button:before {
  content: "";
  position: absolute;
  display: block;
  height: 1.5rem;
  width: 1.5rem;
  border-bottom: 0.3rem solid #3382E7;
  border-right: 0.3rem solid #3382E7;
  right: 3rem;
  transform: rotate(315deg);
  top: 0;
  bottom: 0;
  margin: auto;
}

.lineup-cbox-content__detail-box--caution {
  font-size: 1.2rem;
  text-indent: -2em;
  padding-left: 2em;
  color: #383838;
}

.lineup-cbox-content__detail-box--caution em {
  margin: 0 0.5em 0 0;
}

.lineup-cbox--caution {
  margin: 0;
}

.lineup-cbox--caution p {
  text-align: right;
  font-size: 1.4rem;
  color: #383838;
}

.lineup-detail-box {
  margin: 0 0 40px;
}
.lineup-detail-box:last-child {
  margin: 0;
}
.lineup-detail-box-title {
  background-color: #FFF;
  border: 3px solid #3382E7;
  text-align: center;
  color: #3382E7;
  font-weight: 700;
  font-size: 2.4rem;
  padding: 15px 0;
  cursor: pointer;
  position: relative;
}
.lineup-detail-box-title:before {
  content: "";
  position: absolute;
  display: block;
  height: 1.8rem;
  width: 1.8rem;
  border-bottom: 0.3rem solid #3382E7;
  border-right: 0.3rem solid #3382E7;
  right: 3rem;
  transform: rotate(45deg);
  top: -0.6em;
  bottom: 0;
  margin: auto;
}
.lineup-detail-box-title.toggle-on:before {
  border-top: 0.3rem solid #3382E7;
  border-right: 0.3rem solid #3382E7;
  border-bottom: none;
  transform: rotate(-45deg);
  top: 0.4em;
  bottom: 0;
}
.lineup-detail-box-contents {
  display: none;
  border-top: none;
  background-color: #FFF;
}
.lineup-detail-data-box {
  display: flex;
  align-items: center;
  padding: 4rem 4rem 0;
  margin-bottom: 2.5rem;
  justify-content: space-between;
  gap: 4rem;
}
.lineup-detail-data-box .left-box {
  flex-basis: 282px;
  flex-shrink: 0;
}
.lineup-detail-data-box .left-box p {
  font-weight: bold;
}
.lineup-detail-data-box .left-box .lineup-detail-bg-box {
  margin-top: 2rem;
}
.lineup-detail-data-box .right-box {
  margin: 0 auto;
  width: 32rem;
}
.lineup-detail-data-box .right-box img {
  max-width: 100%;
}
.lineup-detail-data-modal h3 {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
}
.lineup-detail-data-modal .bg-box {
  margin: auto;
  margin-bottom: 1rem;
}
.lineup-detail-data-modal h4 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.lineup-detail-data-feature {
  background: #F2F2F2;
  padding: 4rem 3rem 1rem;
}
.lineup-detail-data-feature ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.lineup-detail-data-feature li {
  flex-basis: 49%;
  margin: 0 0 3rem 0;
  box-sizing: border-box;
  background: #fff;
}
.lineup-detail-data-feature li img {
  width: 100%;
  border-bottom: 0.1rem solid #ccc;
  margin-bottom: 2rem;
}
.lineup-detail-data-feature li .bold {
  font-size: min(1.8vw, 1.6rem);
}
.lineup-detail-data-feature li .feature-txt {
  margin: 0 2rem 1.5rem;
  font-size: 1.4rem;
}
.lineup-detail-data-feature li .feature-txt.f12 {
  font-size: 1.2rem;
  color: #383838;
}
.lineup-detail-data-feature li p.mb0 {
  margin-bottom: 0;
}
.lineup-detail-data-feature li .l2 {
  min-height: 4.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lineup-detail-data-spec {
  padding: 15px 0 0;
}
.lineup-detail-data-spec table {
  width: 100%;
  table-layout: fixed;
}
.lineup-detail-data-spec .spec-box th {
  color: #3382E7;
  background: #E9FBFF;
  font-size: 1.6rem;
  width: 180px;
  padding: 10px 0 10px 25px;
  line-height: 1.4;
  font-weight: 700;
  border: 0.1rem solid #3382E7;
  border-bottom: none;
  vertical-align: middle;
}
.lineup-detail-data-spec .spec-box th sub {
  font-size: 1.2rem;
  padding-left: 0.5em;
}
.lineup-detail-data-spec .spec-box th em {
  font-size: 1.2rem;
  display: block;
}
.lineup-detail-data-spec .spec-box:last-child th, .lineup-detail-data-spec .spec-box:last-child td {
  border-bottom: 0.1rem solid #3382E7;
}
.lineup-detail-data-spec .spec-box td {
  padding: 10px 15px 10px 15px;
  font-size: 1.6rem;
  line-height: 1.4;
  border: 0.1rem solid #3382E7;
  border-bottom: none;
  vertical-align: middle;
  width: 50%;
  overflow-wrap: break-word;
}
.lineup-detail-data-spec .spec-box td sub {
  font-size: 1.2rem;
  padding-left: 0.5em;
}
.lineup-detail-data-spec #home-5g-l13 .spec-box td {
  width: 100%;
}
.lineup-detail-data-spec__wrap {
  text-align: center;
}
.lineup-detail-data-spec__box {
  position: relative;
  display: inline-block;
  margin: 15px auto;
}
.lineup-detail-data-spec__title {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 2;
}
.lineup-detail-data-spec__new-img {
  position: absolute;
  top: -6px;
  left: 4px;
  transform: translateX(-80%);
  text-align: left;
}
.lineup-detail-data-spec__new-img img {
  max-width: 70%;
}
.lineup-detail-data-spec__img {
  margin-bottom: 20px;
}
.lineup-detail-data-spec__img img {
  max-height: min(14vw, 140px);
}
.lineup-detail-data-under {
  margin: 10px 0 0;
  padding: 0 5px 0 5px;
  text-align: justify;
}
.lineup-detail-data-under p {
  font-size: 1.2rem;
  color: #383838;
}
.lineup-detail-data-under p span {
  padding-right: 1em;
}
.lineup-detail-wimax-bg {
  background: #3382E7;
  color: #fff;
  border-radius: 2rem;
  padding: 0.2rem 1.4rem;
  font-size: 1.4rem;
}
.lineup-detail-au-bg {
  background: #EB5505;
  color: #fff;
  border-radius: 2rem;
  padding: 0.2rem 1.4rem;
  font-size: 1.4rem;
}
.lineup-detail-au5g {
  background: #e4007f;
  color: #fff;
  border-radius: 2rem;
  padding: 0.2rem 1.4rem;
  font-size: 1.4rem;
}
.lineup-detail-bg-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lineup-detail-box .cmn--banner01 {
  background-color: #fff;
  padding: 0;
}
.lineup-detail-box .cmn--banner01-primary {
  justify-content: center;
  margin: 3rem 0 0;
}
.lineup-detail-box .cmn--banner01-links {
  width: min(75%, 184px);
  margin: 0 auto 10px;
}
.lineup-detail-box .cmn--banner01-links-button {
  background-size: 1rem;
  background-position: 90% 53%;
  padding: 10px 0;
  font-size: 1.8rem;
  box-shadow: 0px 3px #740515;
  transform: translateY(-3px);
}
.lineup-detail-box .cmn--banner01-links-button:hover {
  box-shadow: 0px 1px #740515;
  transform: translateY(-2px);
  background-size: 0.6rem;
}

@media screen and (max-width: 767px) {
  .lineup {
    padding: 8vw 2.66667vw 5vw;
  }
  .lineup-head-text {
    font-size: calc(100vw / (375 / 15));
    text-align: left;
    margin: 0 auto calc(calc(100 / 375) * 16 * 1vw);
  }
  .lineup-box {
    padding: 1.33333vw;
    margin: 0 0 1vw;
  }
  .lineup-box:first-of-type {
    margin-bottom: 5.33333vw;
  }
  .lineup-box-title {
    font-size: calc(100vw / (375 / 20));
    padding: 0.8vw 0 2.13333vw 0;
    line-height: 1.4;
  }
  .lineup-box-title em {
    font-size: calc(100vw / (375 / 16));
  }
  .lineup-box-title__new {
    top: 0.266666vw;
    left: -9.6vw;
    width: 12.533333vw;
  }
  .lineup-box-title__new::after {
    font-size: calc(100vw / (375 / 12));
    font-weight: 700;
    transform: translate(-50%, -65%);
  }
  .lineup-box__contents {
    padding: calc(calc(100 / 375) * 25 * 1vw) calc(calc(100 / 375) * 15 * 1vw) calc(calc(100 / 375) * 20 * 1vw);
  }
  .lineup-box__contents:last-of-type {
    padding-bottom: calc(calc(100 / 375) * 20 * 1vw);
  }
  .lineup-cbox > li:first-child {
    margin: 0 0 calc(calc(100 / 375) * 30 * 1vw);
  }
  .lineup-cbox > li:last-child {
    margin: 0;
  }
  .line-cbox--mark {
    padding: 1.06666vw 7vw 1.6vw 4.333333vw;
    margin: 0 0 3vw 0;
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0% 100%);
  }
  .line-cbox--mark span {
    font-size: calc(100vw / (375 / 16));
    letter-spacing: 0.1em;
  }
  .lineup-cbox-osusume {
    margin: 0 0 2vw;
  }
  .lineup-cbox-osusume img {
    width: 35%;
  }
  .lineup-cbox-sub-title {
    font-size: calc(100vw / (375 / 14));
    margin: 0 0 0.8vw 0;
    text-align: center;
  }
  .lineup-cbox-title__wrap {
    margin: 0 0 calc(calc(100 / 375) * 20 * 1vw);
  }
  .lineup-cbox-title {
    margin-bottom: calc(calc(100 / 375) * 10 * 1vw);
  }
  .lineup-cbox-title h4 {
    font-size: calc(100vw / (375 / 22));
  }
  .lineup-cbox-title__new-img {
    top: calc(calc(100 / 375) * -47 * 1vw);
    left: calc(calc(100 / 375) * -42 * 1vw);
    transform: translateX(0);
    text-align: left;
  }
  .lineup-cbox-title__new-img img {
    width: clamp(8.6rem, -0.0096rem + 22.96vw, 17.6rem);
  }
  .lineup-cbox-title-price {
    font-size: calc(100vw / (375 / 16));
    font-weight: 400;
    margin: 0 0 calc(calc(100 / 375) * 18.75 * 1vw);
  }
  .lineup-cbox-title-price em {
    font-size: calc(100vw / (375 / 12));
    margin: 0 0 0 1vw;
  }
  .lineup-cbox-item {
    display: flex;
    justify-content: center;
    padding: 0;
    gap: 2.666666vw;
  }
  .lineup-cbox-item li {
    border-radius: 20px;
    color: #FFF;
    padding: 0.26667vw 2.66667vw 0 2.66667vw;
    height: 5.333333vw;
    line-height: 5.333333vw;
    margin: 0;
    font-size: calc(100vw / (375 / 12));
    width: 7em;
  }
  .lineup-cbox-content {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: calc(calc(100 / 375) * 25 * 1vw);
  }
  .lineup-cbox-content__images-box {
    width: 80%;
  }
  .lineup-pagination {
    bottom: calc(calc(100 / 375) * -20 * 1vw);
  }
  .lineup-page {
    width: calc(calc(100 / 375) * 44 * 1vw);
    height: calc(calc(100 / 375) * 10 * 1vw);
    margin-left: calc(calc(100 / 375) * 5 * 1vw);
    margin-right: calc(calc(100 / 375) * 5 * 1vw);
  }
  .lineup-cbox-content-catch {
    margin-bottom: calc(calc(100 / 375) * 10 * 1vw);
  }
  .lineup-cbox-content-catch p {
    font-size: calc(100vw / (375 / 16));
    line-height: 1.5;
    text-align: left;
  }
  .lineup-cbox-content-catch em {
    font-size: calc(100vw / (375 / 11));
  }
  .lineup-cbox-content-button {
    display: block;
    width: auto;
    margin: 0 auto;
    font-size: calc(100vw / (375 / 18));
    padding: 2.66667vw 0;
  }
  .lineup-cbox-content-button:before {
    content: "";
    position: absolute;
    display: block;
    height: 1.2rem;
    width: 1.2rem;
    border-bottom: 0.2rem solid #3382E7;
    border-right: 0.2rem solid #3382E7;
    right: 2rem;
    transform: rotate(315deg);
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .lineup-cbox-content__detail-box--caution {
    font-size: calc(100vw / (375 / 11));
  }
  .lineup-cbox--caution p {
    font-size: calc(100vw / (375 / 11));
  }
  .lineup-detail-box-title {
    font-size: calc(100vw / (375 / 16));
    padding: 2.66667vw 0;
    letter-spacing: -0.04em;
  }
  .lineup-detail-box-title:before {
    content: "";
    position: absolute;
    display: block;
    height: 3.2vw;
    width: 3.2vw;
    border-bottom: 0.53334vw solid #3382E7;
    border-right: 0.53334vw solid #3382E7;
    right: 5.33333vw;
    transform: rotate(45deg);
    top: -0.6em;
    bottom: 0;
    margin: auto;
  }
  .lineup-detail-box-title.toggle-on:before {
    border-top: 0.53334vw solid #3382E7;
    border-right: 0.53334vw solid #3382E7;
    border-bottom: none;
    transform: rotate(-45deg);
    top: 0.4em;
    bottom: 0;
  }
  .lineup-detail-data-box {
    display: block;
    margin: 5.33333vw 0;
    padding: 0;
  }
  .lineup-detail-data-box .left-box {
    margin-bottom: 4vw;
  }
  .lineup-detail-data-box .left-box h3 {
    font-size: calc(100vw / (375 / 22));
    margin: 0.8vw auto 0.266666vw;
    padding: 0;
  }
  .lineup-detail-data-box .left-box .f24 {
    font-size: calc(100vw / (375 / 16));
  }
  .lineup-detail-data-box .left-box h3 + p {
    font-size: calc(100vw / (375 / 16));
  }
  .lineup-detail-data-box .left-box .lineup-detail-bg-box {
    margin-top: 2.66666vw;
  }
  .lineup-detail-bg-box {
    justify-content: center;
    gap: 1.33333vw;
  }
  .lineup-detail-au5g, .lineup-detail-au-bg, .lineup-detail-wimax-bg {
    font-size: calc(100vw / (375 / 12));
    padding: 0.53333vw 4.26666vw;
  }
  .lineup-detail-data-box .right-box {
    width: 58.5%;
    margin: auto;
  }
  .lineup-detail-data-modal h4 {
    font-size: calc(100vw / (375 / 16));
    margin-bottom: 2.66666vw;
  }
  .lineup-detail-data-feature {
    padding: 5.33333vw 4vw;
    margin: 0 -4vw;
  }
  .lineup-detail-data-feature ul {
    flex-direction: column;
  }
  .lineup-detail-data-feature li {
    margin: 0 0 8vw 0;
  }
  .lineup-detail-data-feature li img {
    margin-bottom: 2.66666vw;
  }
  .lineup-detail-data-feature li .bold {
    font-size: calc(100vw / (375 / 15));
  }
  .lineup-detail-data-feature li .mb15 {
    margin-bottom: 2.66666vw;
  }
  .lineup-detail-data-feature li .feature-txt {
    margin: 0 2.66666vw 2.66666vw;
    font-size: calc(100vw / (375 / 12));
  }
  .lineup-detail-data-feature li .feature-txt.f12 {
    font-size: calc(100vw / (375 / 12));
  }
  .lineup-detail-data-feature li .l2 {
    min-height: 0;
  }
  .lineup-detail-data-spec {
    padding: calc(calc(100 / 375) * 10 * 1vw) calc(calc(100 / 375) * 15 * 1vw) 0;
    margin: 0 calc(calc(100 / 375) * -15 * 1vw);
  }
  .lineup-detail-data-spec table {
    margin-bottom: calc(calc(100 / 375) * 6 * 1vw);
  }
  .lineup-detail-data-spec .spec-box th {
    width: calc(calc(100 / 375) * 78 * 1vw);
    padding: calc(calc(100 / 375) * 10 * 1vw);
    font-size: calc(100vw / (375 / 12));
  }
  .lineup-detail-data-spec .spec-box th sub {
    font-size: calc(100vw / (375 / 10));
  }
  .lineup-detail-data-spec .spec-box th em {
    font-size: calc(100vw / (375 / 10));
  }
  .lineup-detail-data-spec .spec-box td {
    font-size: calc(100vw / (375 / 12));
    padding: calc(calc(100 / 375) * 10 * 1vw);
  }
  .lineup-detail-data-spec .spec-box td sub {
    font-size: calc(100vw / (375 / 10));
  }
  .lineup-detail-data-spec__box {
    margin: calc(calc(100 / 375) * 8 * 1vw) auto calc(calc(100 / 375) * 4 * 1vw);
  }
  .lineup-detail-data-spec__title {
    font-size: calc(100vw / (375 / 14));
  }
  .lineup-detail-data-spec__new-img {
    top: calc(calc(100 / 375) * -16 * 1vw);
    left: calc(calc(100 / 375) * 11 * 1vw);
  }
  .lineup-detail-data-spec__new-img img {
    width: clamp(8.6rem, -0.0096rem + 22.96vw, 17.6rem);
  }
  .lineup-detail-data-spec__img {
    margin-bottom: calc(calc(100 / 375) * 8 * 1vw);
  }
  .lineup-detail-data-spec__img img {
    max-height: calc(calc(100 / 375) * 60 * 1vw);
  }
  .lineup-detail-data-under {
    margin: calc(calc(100 / 375) * 10 * 1vw) 0 0;
    padding: 0;
  }
  .lineup-detail-data-under p {
    font-size: calc(100vw / (375 / 12));
  }
  .lineup-detail-pop-up-center {
    text-align: center;
  }
  .lineup-detail-box .cmn--banner01-primary {
    margin: 5.33333vw 0 0;
  }
  .lineup-detail-box .cmn--banner01-links {
    width: min(100%, calc(100 / 375) * 98 * 1vw);
    margin: 0 auto;
  }
  .lineup-detail-box .cmn--banner01-links-button {
    background-size: calc(calc(100 / 375) * 6 * 1vw);
    background-position: 90% 53%;
    padding: calc(calc(100 / 375) * 8 * 1vw) 0;
    font-size: calc(100vw / (375 / 12));
    box-shadow: 0px calc(calc(100 / 375) * 3 * 1vw) #740515;
    transform: translateY(calc(calc(100 / 375) * -3 * 1vw));
  }
  .lineup-detail-box .cmn--banner01-links-button:hover {
    box-shadow: 0px 1px #740515;
    transform: translateY(calc(calc(100 / 375) * -2 * 1vw));
    background-size: calc(calc(100 / 375) * 5 * 1vw);
  }
}
/*  tips
--------------------------------------------------------------*/
.tips {
  padding: 0 20px 2.4rem;
}
.tips__wrap {
  max-width: 960px;
  margin: 26px auto 46px;
}
.tips-bnr {
  max-width: 890px;
  margin: 0 auto;
  cursor: pointer;
  background-color: #43bedf;
  border-radius: 8px;
  position: relative;
  padding: 0 63px 0 17px;
}
.tips-bnr__box {
  width: 810px;
}
.tips-bnr__arrow {
  position: absolute;
  top: calc(50% - 0.3rem);
  right: 3.3rem;
  transition: transform 0.3s;
  transform-origin: 0.05rem 0.25rem;
}
.tips-bnr.toggle-on .tips-bnr__arrow {
  transform: rotate(180deg);
}
.tips-bnr__arrow::before {
  content: "";
  position: absolute;
  height: 1.8rem;
  width: 0.3rem;
  transform: rotate(45deg) translateY(-50%);
  border-radius: 0.3rem;
  background: #003477;
  right: -0.1rem;
}
.tips-bnr__arrow::after {
  content: "";
  position: absolute;
  height: 1.8rem;
  width: 0.3rem;
  transform: rotate(-45deg) translateY(-50%);
  border-radius: 0.3rem;
  background: #003477;
}
.tips-bnr.toggle-on .tips-bnr__arrow:before {
  transform: rotate(45deg) translateY(-50%);
}
.tips-bnr.toggle-on .tips-bnr__arrow:after {
  transform: rotate(-45deg) translateY(-50%);
}
.tips-bnr img {
  width: 100%;
  vertical-align: bottom;
}
.tips-contents__wrap {
  max-width: 890px;
  margin: 0 auto;
  border: 3px solid #43bedf;
  border-top: none;
  background-color: transparent;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  transform: translateY(-8px);
  display: none;
}
.tips-contents__inner {
  max-width: 659px;
  margin: 0 auto;
  padding: 3.8rem 0 1.5rem;
}
.tips-contents-head__wrap {
  display: flex;
  gap: 2rem;
  margin-bottom: 3.1rem;
}
.tips-contents-head__img {
  width: 4.5rem;
}
.tips-contents-head__img img {
  width: 100%;
  vertical-align: bottom;
}
.tips-contents-head__text {
  color: #003477;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.022em;
  line-height: 1.3;
  margin-top: 0.2rem;
}
.tips-contents-head__text span:nth-of-type(n+2) {
  background: linear-gradient(transparent 68%, #FFE13B 0%);
  padding-bottom: 0.1rem;
}
.tips-contents-detail__wrap {
  padding: 0 4.5rem;
  margin: 0 auto;
}
.tips-contents-detail__box {
  display: flex;
  gap: 3rem;
  padding-left: 1.3rem;
}
.tips-contents-detail__img {
  flex-basis: 18rem;
}
.tips-contents-detail__img img {
  width: 100%;
  vertical-align: bottom;
}
.tips-contents-detail__text {
  flex: 1;
}
.tips-contents-detail__text--item {
  color: #333;
}
.tips-contents-detail__text--caution {
  font-size: 1.2rem;
  padding-top: 1.5rem;
  color: #383838;
}
.tips-caution-head__wrap {
  display: flex;
  justify-content: center;
  margin: 3.5rem auto 3rem;
}
.tips-caution-head__box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: solid 0.3rem #003477;
}
.tips-caution-head__img {
  width: 4rem;
}
.tips-caution-head__img img {
  width: 100%;
  vertical-align: bottom;
}
.tips-caution-head__text {
  text-align: center;
  color: #003477;
  font-size: 2rem;
  font-weight: 500;
}
.tips-caution-detail__wrap {
  padding: 0 0 0 3.3rem;
  display: flex;
  justify-content: space-between;
  gap: 5.9rem;
}
.tips-caution-detail__img {
  height: 12rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tips-caution-detail__img--left {
  width: 23.8rem;
  vertical-align: bottom;
}
.tips-caution-detail__img--right {
  width: 23.4rem;
  vertical-align: bottom;
  margin-top: 0.3rem;
}
.tips-caution-detail__text--left {
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  color: #333;
}
.tips-caution-detail__text--right {
  padding: 1.5rem 0.5rem 1.5rem 0;
  text-align: justify;
  color: #333;
}

@media screen and (max-width: 767px) {
  .tips {
    padding: 0 2.66667vw 5vw;
  }
  .tips__wrap {
    max-width: 100%;
    margin: 1.66667vw 0 3vw;
  }
  .tips-bnr {
    max-width: 100%;
    border-radius: 2.13333vw;
    padding: 0 11.46667vw 0 3.2vw;
  }
  .tips-bnr__arrow {
    top: calc(50% - 0.5vw);
    right: 5.86667vw;
    transition: transform 0.3s;
    transform-origin: 0.13334vw 0.4vw;
  }
  .tips-bnr__arrow::before {
    height: 2.93333vw;
    width: 0.53333vw;
    border-radius: 0.8vw;
    background: #003477;
    right: -0.26667vw;
  }
  .tips-bnr__arrow::after {
    height: 2.93333vw;
    width: 0.53333vw;
    border-radius: 0.8vw;
    background: #003477;
  }
  .tips-contents__wrap {
    max-width: 100%;
    border: 0.8vw solid #43bedf;
    border-top: none;
    border-bottom-left-radius: 2.13333vw;
    border-bottom-right-radius: 2.13333vw;
    transform: translateY(-2.13333vw);
  }
  .tips-contents__inner {
    max-width: 100%;
    padding: 8.8vw 4.8vw 6.66666vw;
  }
  .tips-contents-head__wrap {
    gap: 2.93333vw;
    margin-bottom: 3.46666vw;
    padding: 0 3.2vw 0;
  }
  .tips-contents-head__img {
    width: 8.26666vw;
  }
  .tips-contents-head__text {
    font-size: calc(100vw / (375 / 17.9));
    line-height: 1.45;
    margin-top: 0.26666vw;
    letter-spacing: 0em;
  }
  .tips-contents-head__text span {
    padding: 0 0.53333vw 0 1.06666vw;
  }
  .tips-contents-head__text span:nth-of-type(n+2) {
    background: linear-gradient(transparent 76%, #FFE13B 0%);
    background-position: left bottom 0.26666vw;
    padding-bottom: 0;
  }
  .tips-contents-head__text span:last-of-type {
    padding-right: 0;
  }
  .tips-contents-detail__wrap {
    padding: 0;
    margin-left: -0.8vw;
  }
  .tips-contents-detail__box {
    gap: 2.66666vw;
    padding-left: 0;
  }
  .tips-contents-detail__img {
    flex-basis: 40vw;
  }
  .tips-contents-detail__text {
    line-height: 1.2;
  }
  .tips-contents-detail__text--item {
    font-size: calc(100vw / (375 / 14));
  }
  .tips-contents-detail__text--caution {
    font-size: calc(100vw / (375 / 10));
    padding-top: 2.93333vw;
  }
  .tips-caution-head__wrap {
    margin: 9.33333vw auto 5.33333vw;
  }
  .tips-caution-head__box {
    gap: 1.86666vw;
    padding: 0 0.53333vw 0.53333vw 0.53333vw;
    border-bottom: solid 0.53333vw #003477;
  }
  .tips-caution-head__img {
    width: 8.26666vw;
  }
  .tips-caution-head__text {
    font-size: calc(100vw / (375 / 14));
  }
  .tips-caution-detail__wrap {
    padding: 0;
    flex-direction: column;
    justify-content: space-between;
    gap: 6.66666vw;
  }
  .tips-caution-detail__box {
    display: flex;
    align-items: center;
    gap: 2.66666vw;
  }
  .tips-caution-detail__img {
    flex-basis: 40vw;
    display: block;
    height: auto;
    margin-left: -0.8vw;
  }
  .tips-caution-detail__img--left {
    width: 100%;
  }
  .tips-caution-detail__img--right {
    width: 100%;
    margin-top: 0;
  }
  .tips-caution-detail__text--left {
    align-self: flex-start;
  }
  .tips-caution-detail__text--left, .tips-caution-detail__text--right {
    padding: 0;
    text-align: left;
    flex: 1;
    font-size: calc(100vw / (375 / 14));
  }
}
/*  museigen 追加
--------------------------------------------------------------*/
.museigen {
  background-color: #E5F5FC;
  padding: 80px 0 60px;
}

.museigen__inner {
  max-width: 960px;
  margin: 0 auto;
  background-color: #FFF;
  padding: 40px 10px 10px;
  text-align: center;
}

.museigen__inner .intro-figure02 img {
  width: 80%;
  vertical-align: bottom;
}

.museigen-catch {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0 0 40px;
  text-align: center;
}

.museigen-catch em {
  font-size: 1.1rem;
}

.museigen__inner .cmn--cautionlist li {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .museigen {
    padding: 8vw 2.66667vw;
  }
  .museigen__inner {
    padding: 10vw 4vw 2vw;
  }
  .museigen-catch {
    font-size: calc(100vw / (375 / 16));
    font-weight: bold;
    margin: 0 0 4.33333vw;
  }
  .museigen__inner .intro-figure02 img {
    width: 100%;
  }
}
.tab_link {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.tab_list {
  width: 32%;
  background-color: #fff;
}

.about__accordion--btn {
  border: 3px solid #3176d5;
  color: #3176d5;
  background-color: #fff;
}

.c-btn {
  max-width: 350px;
  height: 500px;
  height: 60px;
  padding: 0 48px;
  border-radius: 0px;
  font-size: 18px;
  font-weight: 700;
}

.c-btn {
  position: relative;
  display: table;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
  -webkit-box-shadow: 0 3px 0 0 rgba(99, 99, 99, 0.3);
  box-shadow: 0 3px 0 0 rgba(99, 99, 99, 0.3);
  -webkit-transition: background-color 0.1s linear;
  transition: background-color 0.1s linear;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none;
}

.c-btn::after {
  right: 20px;
}

.c-btn__content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 10px 0;
}

.c-btn--detail:link {
  color: #3176d5;
}

.c-btn--detail:visited {
  color: #3176d5;
}

.c-btn--detail:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

.c-btn--detail::after {
  content: "";
  position: absolute;
  width: 12px;
  border-color: #3176d5;
  height: 12px;
  right: 20px;
  display: block;
  border-right: 2px solid #3176d5;
  border-bottom: 2px solid #3176d5;
  top: 50%;
  -webkit-transform: translateY(-70%) rotate(45deg);
  transform: translateY(-70%) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .tab_link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .tab_link .c-btn {
    width: 100%;
    height: 0;
    padding: 0 4vw 0 0;
    font-size: calc(100vw / (375 / 16));
  }
  .tab_list {
    width: 30%;
    background-color: #fff;
  }
  .tab_list:not(:last-child) {
    margin-bottom: 30px;
  }
  .c-btn {
    max-width: 460px;
    height: 60px;
    padding: 0 48px;
    border-radius: 0px;
    font-size: 18px;
  }
  .c-btn {
    position: relative;
    display: table;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    -webkit-box-shadow: 0 3px 0 0 rgba(99, 99, 99, 0.3);
    box-shadow: 0 3px 0 0 rgba(99, 99, 99, 0.3);
    -webkit-transition: background-color 0.1s linear;
    transition: background-color 0.1s linear;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-decoration: none;
  }
  .c-btn::after {
    right: 20px;
  }
  .c-btn--detail::after {
    width: calc(calc(100 / 375) * 12 * 1vw);
    height: calc(calc(100 / 375) * 12 * 1vw);
  }
}
/*  kantan_setsuzoku 追加
--------------------------------------------------------------*/
.kantan_setsuzoku {
  background-color: #E5F5FC;
  padding: 0 0 60px;
}

.kantan_setsuzoku--last {
  padding: 0 0 80px;
}

.kantan_setsuzoku__inner {
  max-width: 960px;
  margin: 0 auto;
  background-color: #FFF;
  padding: 40px 10px 10px;
  text-align: center;
}

.kantan_setsuzoku__inner .intro-figure02 img {
  width: 90%;
  vertical-align: bottom;
}

.kantan_setsuzoku-catch {
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0 0 25px;
  text-align: center;
}

.kantan_setsuzoku__inner .cmn--cautionlist li {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .kantan_setsuzoku {
    padding: 0 2.66667vw 8vw;
  }
  .kantan_setsuzoku__inner {
    padding: 10vw 4vw 2vw;
  }
  .kantan_setsuzoku__inner .intro-figure02 img {
    width: 100%;
  }
  .kantan_setsuzoku-catch {
    font-size: calc(100vw / (375 / 16));
    font-weight: bold;
    margin: 0 0 5.33333vw;
  }
  .kantan_setsuzoku figure img {
    width: 100%;
  }
}
/*  area
--------------------------------------------------------------*/
.area {
  padding: 60px 20px 20px;
}

.area__inner {
  max-width: 960px;
  margin: 0 auto;
}

.area-text {
  text-align: center;
  margin: 0 0 20px;
  font-size: 2rem;
  font-weight: 700;
}

.area-text span {
  padding: 2.5px;
}

.area-red {
  color: #fd8b8f;
  font-size: 1.6rem;
}

.area-orange {
  color: #FEC76D;
  font-size: 1.6rem;
}

.area-yellow {
  color: #FFEF81;
  font-size: 1.6rem;
}

.area-map {
  margin: 0 0 24px;
}

.area-map iframe {
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .area {
    padding: 8vw 2.66667vw 0;
  }
  .area-text {
    font-size: calc(100vw / (375 / 15));
    margin: 0 0 calc(calc(100 / 375) * 5 * 1vw);
  }
  .area-text span {
    padding: 0.53333vw;
  }
  .area-map {
    margin: 0 0 4vw;
  }
  .area-map iframe {
    vertical-align: bottom;
  }
}
/*  flow
--------------------------------------------------------------*/
.flow-caution__list {
  width: min(850px, 94.79166vw);
  margin: 0 auto 31px;
  display: table;
}
.flow-caution__item {
  color: #383838;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.flow-caution__item--head {
  display: table-cell;
  vertical-align: top;
  white-space: nowrap;
  width: 2em;
}
.flow-caution__item--body {
  display: table-cell;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .flow-caution__list {
    width: 100%;
    margin: 0 auto calc(calc(100 / 375) * 12 * 1vw);
    display: table;
  }
  .flow-caution__item {
    font-size: calc(100vw / (375 / 10));
  }
}

.flow-box-title {
  background-color: #FFF;
  border: 3px solid #3382E7;
  text-align: center;
  color: #3382E7;
  font-weight: 600;
  font-size: 2.2rem;
  padding: 16px 0;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.02em;
  line-height: 1.2727272727;
}
.flow-box-title--arrow {
  position: absolute;
  top: calc(50% - 0.3rem);
  right: 5.1rem;
  transition: transform 0.3s;
  transform-origin: 0.05rem 0.25rem;
}
.flow-box-title.toggle-on .flow-box-title--arrow {
  transform: rotate(180deg);
}
.flow-box-title--arrow::before {
  content: "";
  position: absolute;
  height: 2rem;
  width: 0.4rem;
  transform: rotate(45deg) translateY(-50%);
  border-radius: 0.4rem;
  background: #3382E7;
  right: -0.1rem;
}
.flow-box-title--arrow::after {
  content: "";
  position: absolute;
  height: 2rem;
  width: 0.4rem;
  transform: rotate(-45deg) translateY(-50%);
  border-radius: 0.4rem;
  background: #3382E7;
}
.flow-box-title.toggle-on .flow-box-title--arrow:before {
  transform: rotate(45deg) translateY(-50%);
}
.flow-box-title.toggle-on .flow-box-title--arrow:after {
  transform: rotate(-45deg) translateY(-50%);
}
@media screen and (max-width: 767px) {
  .flow-box-title {
    font-size: calc(100vw / (375 / 16));
    padding: calc(calc(100 / 375) * 10 * 1vw) 0;
    cursor: pointer;
    position: relative;
    border: calc(calc(100 / 375) * 2 * 1vw) solid #3382E7;
    line-height: 1.3125;
  }
  .flow-box-title--credit {
    text-align: left;
    padding-left: calc(calc(100 / 375) * 22 * 1vw);
  }
  .flow-box-title--arrow {
    top: calc(50% - calc(100 / 375) * 2 * 1vw);
    right: calc(calc(100 / 375) * 23 * 1vw);
    transform-origin: calc(calc(100 / 375) * 0.5 * 1vw) calc(calc(100 / 375) * 1.5 * 1vw);
  }
  .flow-box-title--arrow::before {
    height: calc(calc(100 / 375) * 14 * 1vw);
    width: calc(calc(100 / 375) * 3 * 1vw);
    border-radius: calc(calc(100 / 375) * 3 * 1vw);
    right: calc(calc(100 / 375) * -1 * 1vw);
  }
  .flow-box-title--arrow::after {
    height: calc(calc(100 / 375) * 14 * 1vw);
    width: calc(calc(100 / 375) * 3 * 1vw);
    border-radius: calc(calc(100 / 375) * 3 * 1vw);
  }
}

.flow {
  padding: 74px 20px 60px;
  background-color: #E5F5FC;
}
.flow__heading {
  margin: 0 0 29px;
  text-align: center;
  color: #003477;
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.25;
  letter-spacing: 0.02em;
}
.flow__lead {
  margin: 0 0 33px;
  text-align: center;
  color: #333;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.3333333333;
  letter-spacing: 0.02em;
}
.flow-step__container {
  max-width: 850px;
  margin: 0 auto 52px;
}
.flow-step__container:last-of-type {
  margin: 0 auto 15px;
}
.flow-step__heading {
  margin: 0 0 12px;
  color: #003477;
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1.2727272727;
  letter-spacing: 0.02em;
}
.flow-step__heading sub {
  vertical-align: sub;
  font-size: 1.3rem;
}
.flow-step__box img {
  max-width: 100%;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .flow {
    padding: calc(calc(100 / 375) * 22 * 1vw) calc(calc(100 / 375) * 15 * 1vw) calc(calc(100 / 375) * 35 * 1vw);
  }
  .flow__heading {
    margin: 0 0 calc(calc(100 / 375) * 20 * 1vw);
    font-size: calc(100vw / (375 / 24));
    line-height: 1.2916666667;
  }
  .flow__lead {
    font-size: calc(100vw / (375 / 14));
    margin: 0 0 calc(calc(100 / 375) * 20 * 1vw);
    line-height: 1.2857142857;
  }
  .flow-step__container {
    max-width: 100%;
    margin: 0 auto calc(calc(100 / 375) * 27 * 1vw);
  }
  .flow-step__container:last-of-type {
    margin: 0 auto calc(calc(100 / 375) * 12.5 * 1vw);
  }
  .flow-step__heading {
    margin: 0 0 calc(calc(100 / 375) * 5.5 * 1vw);
    font-size: calc(100vw / (375 / 16));
    line-height: 1.3125;
  }
  .flow-step__heading sub {
    font-size: calc(100vw / (375 / 10));
  }
}

.flow__inner {
  max-width: 960px;
  margin: 0 auto;
}

.flow-steplist {
  max-width: 900px;
  margin: 0 auto 32px;
  display: flex;
  justify-content: space-between;
}

.flow-steplist li {
  width: 33.33333%;
}

.flow-steplist li:last-child .flow-steplist-icon:before {
  display: none;
}

.flow-steplist li:last-child .flow-steplist-icon:after {
  display: none;
}

.flow-steplist-icon {
  width: 61.66667%;
  margin: 0 auto 15px;
  position: relative;
}

.flow-steplist-icon img {
  width: 100%;
  vertical-align: bottom;
}

.flow-steplist-icon:before {
  content: "";
  width: 4rem;
  height: 0.6rem;
  background: #3382E7;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -7rem;
  margin: auto;
}

.flow-steplist-icon:after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  border: 0px;
  border-top: solid 0.6rem #3382E7;
  border-right: solid 0.6rem #3382E7;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: -7rem;
  margin: auto;
}

.flow-steplist-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 16px;
}

.flow-steplist-text {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}

.flow-steplist-text em {
  font-size: 1.1rem;
}

.flow .flow-steplist-caution {
  max-width: 740px;
  margin: 0 auto 40px;
}

.flow-box {
  margin: 0 auto 25px;
  max-width: 900px;
}

.flow-box:last-child {
  margin: 0 auto;
}

.flow-box-contents {
  display: none;
  border: 3px solid #3382E7;
  border-top: none;
  background-color: #FFF;
  padding: 45px 70px;
  padding: 45px 40px;
}

.flow-arrow {
  width: 48px;
  margin: 0 auto 12px;
}

.flow-arrow img {
  width: 100%;
  vertical-align: bottom;
}

.flow-result {
  text-align: center;
  color: #3382E7;
  font-size: 3.2rem;
  font-weight: 700;
}

.flow-cbox {
  background-color: #FAFAFA;
  border-radius: 10px;
  margin: 0 0 12px;
}

.flow-cbox .cmn--cautionlist {
  margin: 0;
}

.flow-cbox__inner {
  padding: 30px;
  display: flex;
  justify-content: space-between;
}

.flow-cbox-stepnum {
  width: 16%;
  border: 4px dotted #3382E7;
  border-radius: 50%;
  background-color: #FFF;
  height: 120px;
  color: #3382E7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto", sans-serif;
}

.flow-cbox-stepnum em {
  font-weight: 700;
  font-size: 2.1rem;
  display: block;
  text-align: center;
  margin: 0 0 6px;
}

.flow-cbox-stepnum span {
  font-weight: 700;
  font-size: 3.3rem;
  display: block;
  text-align: center;
}

.flow-cbox-contents {
  width: 80%;
  margin: auto 0;
}

.flow-cbox-contents h4 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.flow-cbox-contents p {
  font-size: 1.6rem;
  line-height: 1.66667;
}

.flow-cbox-tabbox {
  border: 1px solid #3382E7;
  background-color: #FFF;
}

.flow-cbox-tablist {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #3382E7;
}

.flow-cbox-tablist li {
  width: 50%;
  text-align: center;
  padding: 12px 0;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.375;
  cursor: pointer;
  color: #A2A2A2;
}

.flow-cbox-tablist li.toggle-on {
  background-color: #3382E7;
  color: #FFF;
}

.flow-cbox-tabcontents {
  display: none;
  padding: 20px;
}

.flow-cbox-tabcontents.on {
  display: block;
}

.flow-cbox-tabcontents:last-child p {
  text-indent: 0em;
  padding-left: 0em;
}

.flow-cbox-tabcontents p {
  text-indent: -2em;
  padding-left: 2em;
  font-size: 1.6rem;
  margin: 0 0 12px;
}

.flow-cbox-tabcontents p span {
  color: #3382E7;
  font-weight: 700;
  font-size: 2.4rem;
  margin-right: 0.5rem;
}

.flow-cbox-tabcontents p em {
  color: #383838;
  font-weight: 400;
  font-size: 1.3rem;
}

.flow-cbox-tabcontents p a {
  display: inline-block;
  color: #3382E7;
  text-decoration: none;
  font-weight: 700 !important;
  padding-left: 4.5rem;
  position: relative;
  font-size: 1.6rem;
}

.flow-cbox-tabcontents p a:before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border: 0.7rem solid transparent;
  border-left-color: transparent;
  border-left-style: solid;
  border-left-width: 0.7rem;
  border-left: 0.7rem solid #3382E7;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .flow-steplist {
    max-width: 900px;
    margin: 0 auto 4vw;
    display: flex;
    justify-content: space-between;
  }
  .flow-steplist li {
    width: 32.22222%;
  }
  .flow-steplist li:last-child .flow-steplist-icon:before {
    display: none;
  }
  .flow-steplist li:last-child .flow-steplist-icon:after {
    display: none;
  }
  .flow-steplist-icon {
    width: 71.42857%;
    margin: 0 auto 4vw;
  }
  .flow-steplist-icon:before {
    display: none;
  }
  .flow-steplist-icon:after {
    content: "";
    width: 1rem;
    height: 1rem;
    border: 0px;
    border-top: solid 0.2rem #3382E7;
    border-right: solid 0.2rem #3382E7;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1.9rem;
    margin: auto;
  }
  .flow-steplist-title {
    text-align: center;
    font-size: calc(100vw / (375 / 18));
    margin: 0 0 4vw;
    min-height: 2em;
  }
  .flow-steplist-text {
    font-size: calc(100vw / (375 / 13));
    font-weight: 400;
    line-height: 1.5;
  }
  .flow-steplist-text em {
    font-size: 1.1rem;
  }
  .flow-steplist-text br {
    display: none;
  }
  .flow .flow-steplist-caution {
    max-width: 740px;
    margin: 0 auto 4vw;
  }
  .flow-box {
    margin: 0 0 5.33333vw;
  }
  .flow-box:last-child {
    margin: 0;
  }
  .flow-box-contents {
    display: none;
    padding: 5.33333vw 4vw;
    border: calc(calc(100 / 375) * 2 * 1vw) solid #3382E7;
    border-top: none;
  }
  .flow-arrow {
    width: 6.4vw;
    margin: 0 auto 5.33333vw;
  }
  .flow-result {
    font-size: calc(100vw / (375 / 20));
  }
  .flow-cbox {
    margin: 0 0 2.66667vw;
  }
  .flow-cbox__inner {
    padding: 4vw 1vw;
  }
  .flow-cbox-stepnum {
    width: 16vw;
    border: 3px dotted #3382E7;
    border-radius: 50%;
    height: 16vw;
  }
  .flow-cbox-stepnum em {
    font-size: calc(100vw / (375 / 14));
    margin: 0;
  }
  .flow-cbox-stepnum span {
    font-weight: 700;
    font-size: calc(100vw / (375 / 18));
    display: block;
    text-align: center;
  }
  .flow-cbox-contents {
    width: 78.66667%;
  }
  .flow-cbox-contents h4 {
    font-size: calc(100vw / (375 / 16));
    line-height: 1.25;
    margin: 0 0 2.66667vw;
  }
  .flow-cbox-contents p {
    font-size: calc(100vw / (375 / 13));
    line-height: 1.66667;
  }
  .flow-cbox-tablist {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #3382E7;
  }
  .flow-cbox-tablist li {
    width: 50%;
    text-align: center;
    padding: 2.66667vw;
    font-weight: 700;
    font-size: calc(100vw / (375 / 13));
    line-height: 1.375;
    cursor: pointer;
    color: #A2A2A2;
  }
  .flow-cbox-tablist li br {
    display: none;
  }
  .flow-cbox-tablist li.toggle-on {
    background-color: #3382E7;
    color: #FFF;
  }
  .flow-cbox-tabcontents {
    display: none;
    padding: 2.66667vw;
  }
  .flow-cbox-tabcontents.on {
    display: block;
  }
  .flow-cbox-tabcontents:last-child p {
    text-indent: 0em;
    padding-left: 0em;
  }
  .flow-cbox-tabcontents p {
    text-indent: -1.5em;
    padding-left: 1.5em;
    font-size: calc(100vw / (375 / 13));
    margin: 0 0 2.66667vw;
  }
  .flow-cbox-tabcontents p span {
    color: #3382E7;
    font-weight: 700;
    font-size: calc(100vw / (375 / 16));
    margin-right: 0.5rem;
  }
  .flow-cbox-tabcontents p em {
    font-size: calc(100vw / (375 / 11));
  }
  .flow-cbox-tabcontents p a {
    display: inline-block;
    color: #3382E7;
    text-decoration: none;
    font-weight: 700 !important;
    padding-left: 8vw;
    position: relative;
    font-size: calc(100vw / (375 / 13));
  }
  .flow-cbox-tabcontents p a:before {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border: 0.5rem solid transparent;
    border-left-color: transparent;
    border-left-style: solid;
    border-left-width: 0.7rem;
    border-left: 0.5rem solid #3382E7;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
/*  FAQ
--------------------------------------------------------------*/
.faq {
  padding: 60px 20px 20px;
}

.faq__inner {
  max-width: 960px;
  margin: 0 auto;
}

.faq-box {
  margin: 30px 0 0;
}

.faq-box__inner {
  background-color: #f7f7f7;
  margin: 0 0 20px;
  border-radius: 8px;
}

.faq-box__inner:last-of-type {
  margin: 0;
}

.faq-question {
  padding: 20px 33px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  line-height: 1.5;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question__head {
  color: #3382E7;
  font-size: 1.6rem;
  font-weight: 700;
  flex-basis: 13px;
  flex-shrink: 0;
  text-align: center;
}

.faq-question__txt {
  color: #333;
  font-size: 1.6rem;
  font-weight: 700;
  flex: 1;
}

.faq-question__icon {
  display: block;
  position: relative;
  width: 24px;
  flex-shrink: 0;
  transform-origin: center 1px;
  transition: transform 0.3s;
  align-self: flex-start;
  top: 12px;
}

.faq-question.toggle-on .faq-question__icon {
  transform: rotate(180deg);
}

.faq-question__icon::before,
.faq-question__icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 3px;
  background-color: #959595;
}

.faq-question__icon::before {
  left: 0;
  transform: rotate(45deg);
}

.faq-question__icon::after {
  right: 0;
  transform: rotate(-45deg);
}

.faq-answer__container {
  display: none;
}

.faq-answer__wrap {
  padding: 0 33px 10px 33px;
  display: flex;
  gap: 30px;
  line-height: 1.5;
}

.faq-answer__head {
  color: rgba(51, 51, 51, 0.5);
  font-size: 1.6rem;
  font-weight: 700;
  flex-basis: 13px;
  flex-shrink: 0;
  text-align: center;
}

.faq-answer__txt {
  color: #333;
  font-size: 1.6rem;
  margin: 0 0 1rem 0;
  flex: 1;
}

.faq-answer__txt--indent {
  padding-left: 1em;
  display: inline-block;
}

.faq-answer__caution-mark {
  font-size: 1.2rem;
  margin-left: 0.3em;
}

.faq-answer__caution--wrap {
  display: flex;
  gap: 0.5rem;
  margin: 0 0 3px 0;
}

.faq-answer__caution--wrap:first-of-type {
  padding: 1rem 0 0 0;
}

.faq-answer__caution--wrap:last-of-type {
  margin: 0 0 1rem 0;
}

.faq-answer__caution--content-mark {
  font-size: 1rem;
  color: #383838;
}

.faq-answer__caution--content-txt {
  font-size: 1.2rem;
  color: #383838;
  flex-grow: 1;
}

.faq-answer__link {
  padding: 1rem 0 0 0;
  margin: 0 0 1rem 0;
}

@media screen and (max-width: 767px) {
  .faq {
    padding: 8vw 2.66667vw 2.66667vw;
  }
  .faq-box {
    margin: 0;
  }
  .faq-box__inner {
    margin: 0 0 2.66667vw;
  }
  .faq-question {
    padding: 5.333333vw;
    gap: 4vw;
  }
  .faq-question__head {
    font-size: calc(100vw / (375 / 15));
    line-height: 1.4;
    flex-basis: 4vw;
  }
  .faq-question__txt {
    font-size: calc(100vw / (375 / 15));
    line-height: 1.6;
  }
  .faq-question__icon {
    width: 3.45vw;
    transform-origin: center center;
    top: 3.5vw;
  }
  .faq-question__icon::before,
  .faq-question__icon::after {
    width: 2.176vw;
    height: 0.533333vw;
  }
  .faq-answer__wrap {
    padding: 0 5.333333vw 1.333333vw 5.333333vw;
    gap: 4vw;
  }
  .faq-answer__head {
    font-size: calc(100vw / (375 / 15));
    line-height: 1.5;
    flex-basis: 4vw;
  }
  .faq-answer__txt {
    font-size: calc(100vw / (375 / 14));
    line-height: 1.6;
    margin: 0 0 4vw 0;
  }
  .faq-answer__caution-mark {
    font-size: calc(100vw / (375 / 12));
  }
  .faq-answer__caution--wrap {
    gap: 1vw;
    margin: 0 0 1vw 0;
  }
  .faq-answer__caution--wrap:first-of-type {
    padding: 0;
  }
  .faq-answer__caution--wrap:last-of-type {
    margin: 0 0 4vw 0;
  }
  .faq-answer__caution--content-mark {
    font-size: calc(100vw / (375 / 10));
  }
  .faq-answer__caution--content-txt {
    font-size: calc(100vw / (375 / 11));
    display: block;
    line-height: 1.5;
  }
  .faq-answer__link {
    font-size: calc(100vw / (375 / 14));
    padding: 0;
    margin: 0 0 4vw 0;
  }
}
/*  guide
--------------------------------------------------------------*/
.guide {
  padding: 60px 20px 20px;
}

.guide__inner {
  max-width: 960px;
  margin: 0 auto;
}

.guide .guide-header {
  margin-bottom: 18px;
}

.guide-header__caution {
  text-align: center;
  font-size: 18px;
  margin-bottom: 30px;
}

.guide-box {
  margin: 0 0 32px;
}

.guide-title {
  color: #3382E7;
  font-size: 2.4rem;
  font-weight: 700;
  border-bottom: 5px solid #3382E7;
  padding: 18px 0 20px;
  cursor: pointer;
  position: relative;
}

.guide-title__caution {
  font-size: 1.8rem;
}

.guide-title__arrow {
  position: absolute;
  top: calc(50% - 0.3rem);
  right: 4.6rem;
  transition: transform 0.3s;
  transform-origin: 0.05rem 0.25rem;
}

.guide-title.toggle-on .guide-title__arrow {
  transform: rotate(180deg);
}

.guide-title__arrow::before {
  content: "";
  position: absolute;
  height: 2rem;
  width: 0.4rem;
  transform: rotate(45deg) translateY(-50%);
  border-radius: 0.4rem;
  background: #3382E7;
  right: -0.1rem;
}

.guide-title__arrow::after {
  content: "";
  position: absolute;
  height: 2rem;
  width: 0.4rem;
  transform: rotate(-45deg) translateY(-50%);
  border-radius: 0.4rem;
  background: #3382E7;
}

.guide-title.toggle-on .guide-title__arrow:before {
  transform: rotate(45deg) translateY(-50%);
}

.guide-title.toggle-on .guide-title__arrow:after {
  transform: rotate(-45deg) translateY(-50%);
}

.guide-box__wrap {
  display: none;
}

.guide-box__inner {
  background-color: #f7f7f7;
  margin: 10px 0 20px;
  padding: 20px;
}

.guide-box__inner:first-of-type {
  margin-top: 25px;
}

.guide-box h4 {
  color: #003477;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 10px;
}

.guide-box p {
  font-size: 1.8rem;
  line-height: 1.71429;
  margin: 0 0 10px;
}

.guide-box__inner li {
  padding-left: 1em;
  text-indent: -1em;
  margin: 0 0 6px;
  font-size: 1.6rem;
  line-height: 1.2;
  list-style: none;
  color: #383838;
}

.guide-box__inner li.mb30 {
  padding-left: 1em;
  text-indent: -1em;
  margin: 0 0 30px;
  font-size: 1.6rem;
  line-height: 1.2;
  list-style: none;
}

.guide-box__inner--del {
  text-decoration: line-through;
}

.guide-tax {
  margin: 60px 10px 20px;
  font-size: 1.6rem;
}

.guide-tax h4 {
  margin: 0 0 10px;
}

@media screen and (max-width: 767px) {
  .guide {
    padding: 8vw 2.66667vw 2.66667vw;
  }
  .guide .guide-header {
    margin-bottom: calc(calc(100 / 375) * 10 * 1vw);
  }
  .guide-header__caution {
    font-size: calc(100vw / (375 / 14));
    margin-bottom: calc(calc(100 / 375) * 8 * 1vw);
  }
  .guide-title {
    font-size: calc(100vw / (375 / 18));
    padding: calc(calc(100 / 375) * 10 * 1vw) 0;
    border-bottom: calc(calc(100 / 375) * 3 * 1vw) solid #3382E7;
    line-height: 1.2;
  }
  .guide-title--small {
    font-size: calc(100vw / (375 / 16));
    line-height: 1.3;
  }
  .guide-title__caution {
    font-size: calc(100vw / (375 / 14));
  }
  .guide-title__arrow {
    top: calc(50% - calc(100 / 375) * 2 * 1vw);
    right: calc(calc(100 / 375) * 27 * 1vw);
    transform-origin: calc(calc(100 / 375) * 0.5 * 1vw) calc(calc(100 / 375) * 1.5 * 1vw);
  }
  .guide-title__arrow--right {
    right: calc(calc(100 / 375) * 12 * 1vw);
  }
  .guide-title__arrow::before {
    height: calc(calc(100 / 375) * 14 * 1vw);
    width: calc(calc(100 / 375) * 3 * 1vw);
    border-radius: calc(calc(100 / 375) * 3 * 1vw);
    right: calc(calc(100 / 375) * -1 * 1vw);
  }
  .guide-title__arrow::after {
    height: calc(calc(100 / 375) * 14 * 1vw);
    width: calc(calc(100 / 375) * 3 * 1vw);
    border-radius: calc(calc(100 / 375) * 3 * 1vw);
  }
  .guide-box {
    margin: 0 0 5.33333vw;
  }
  .guide-box__inner {
    margin: 0 0 2.66667vw;
    padding: 2.66667vw;
  }
  .guide-box__inner:first-of-type {
    margin-top: calc(calc(100 / 375) * 15 * 1vw);
  }
  .guide-box h4 {
    font-size: calc(100vw / (375 / 15));
    margin: 0 0 2.66667vw;
  }
  .guide-box p {
    font-size: calc(100vw / (375 / 15));
    line-height: 1.6;
  }
  .guide-box__inner li {
    margin: 0 0 2.66667vw;
    font-size: calc(100vw / (375 / 14));
    line-height: 1.2;
  }
  .guide-box__inner li.mb30 {
    margin: 0 0 2.66667vw;
    font-size: calc(100vw / (375 / 14));
    line-height: 1.2;
  }
  .guide-tax {
    margin: 0;
    font-size: calc(100vw / (375 / 14));
  }
  .guide-tax h4 {
    margin: 0 0 1.333333vw;
  }
}
/*  splide
--------------------------------------------------------------*/
.splide-section {
  padding: 0 0 25px;
}

.splide__wrap {
  margin: 0 auto 15px;
}

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

.splide__arrow--prev {
  left: 26.5%;
  transform: translateY(-68%);
  background: url(../images/voice/img_afi_left.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 1;
  width: min(55px, 5.43077vw);
  height: min(55px, 5.43077vw);
}

.splide__arrow--next {
  right: 26.5%;
  transform: translateY(-68%);
  background: url(../images/voice/img_afi_right.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 1;
  width: min(55px, 5.43077vw);
  height: min(55px, 5.43077vw);
}

.splide__arrow--prev:hover:not(:disabled) {
  opacity: 1;
}

.splide__arrow--next:hover:not(:disabled) {
  opacity: 1;
}

.splide__caution {
  margin-bottom: 8px;
  color: #383838;
  font-size: 13px;
}

@media screen and (max-width: 767px) {
  .splide-section {
    padding: 0 0 calc(calc(100 / 375) * 12 * 1vw);
  }
  .splide__wrap {
    margin: 0 auto calc(calc(100 / 375) * 10 * 1vw);
  }
  .splide__arrow--prev {
    left: 6.3%;
    width: calc(calc(100 / 375) * 32 * 1vw);
    height: calc(calc(100 / 375) * 32 * 1vw);
  }
  .splide__arrow--next {
    right: 6.3%;
    width: calc(calc(100 / 375) * 32 * 1vw);
    height: calc(calc(100 / 375) * 32 * 1vw);
  }
  .splide__caution {
    margin-bottom: calc(calc(100 / 375) * 3 * 1vw);
    font-size: calc(100vw / (375 / 11));
    line-height: 1.4;
  }
}
/*  coverage
2024/10/17 端末保証
--------------------------------------------------------------*/
.coverage-info {
  background-color: #E5F5FC;
  padding: 0px 20px 60px;
}
.coverage-info__box--first {
  margin-bottom: 20px;
}
.coverage-info__box {
  text-align: center;
}
.coverage-info__box img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .coverage-info {
    padding: 0 calc(calc(100 / 375) * 10 * 1vw) calc(calc(100 / 375) * 30 * 1vw);
  }
  .coverage-info__box--first {
    margin-bottom: calc(calc(100 / 375) * 15 * 1vw);
  }
}

.coverage {
  padding: 60px 20px 0;
  margin: -60px auto 60px;
}
.coverage img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.coverage__wrap {
  max-width: 960px;
  margin: 0 auto 47px;
}
.coverage__wrap a.coverage__mv {
  transition: all 0.6s ease;
}
.coverage__wrap a:link:hover.coverage__mv {
  opacity: 0.65;
}
.coverage__option--head {
  text-align: center;
  margin: 0 auto 20px;
}
.coverage__option--head-title {
  letter-spacing: 0.02em;
  color: #003477;
  margin: 0 auto 5px;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.6;
}
.coverage__option--head-text {
  margin: 0 auto;
  font-size: 2rem;
  font-weight: 700;
}
.coverage__arrow--prev {
  left: 25%;
  background: url(../images/coverage/arrow_left.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 1;
  width: min(70px, 7vw);
  height: min(70px, 7vw);
}
.coverage__arrow--next {
  right: 25%;
  background: url(../images/coverage/arrow_right.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 1;
  width: min(70px, 7vw);
  height: min(70px, 7vw);
}
.coverage__arrow--prev:hover:not(:disabled) {
  opacity: 1;
}
.coverage__arrow--next:hover:not(:disabled) {
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .coverage {
    padding: calc(calc(100 / 375) * 20 * 1vw) 0 0;
    margin: calc(calc(100 / 375) * -20 * 1vw) auto calc(calc(100 / 375) * 20 * 1vw);
  }
  .coverage__wrap {
    margin: 0 auto calc(calc(100 / 375) * 34 * 1vw);
  }
  .coverage__wrap:last-of-type {
    padding: 0 calc(calc(100 / 375) * 10 * 1vw) 0;
  }
  .coverage__option--head {
    margin: 0 auto calc(calc(100 / 375) * 16 * 1vw);
  }
  .coverage__option--head-title {
    margin: 0 auto calc(calc(100 / 375) * 3 * 1vw);
    font-size: calc(100vw / (375 / 30));
  }
  .coverage__option--head-text {
    text-align: left;
    font-size: calc(100vw / (375 / 15));
  }
  .coverage__arrow--prev {
    left: 6%;
    width: calc(calc(100 / 375) * 46 * 1vw);
    height: calc(calc(100 / 375) * 46 * 1vw);
  }
  .coverage__arrow--next {
    right: 6%;
    width: calc(calc(100 / 375) * 46 * 1vw);
    height: calc(calc(100 / 375) * 46 * 1vw);
  }
}
.coverage__modal img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.coverage__modal-head {
  display: flex;
  justify-content: center;
  margin: 0 auto 25px;
  gap: 25px;
}
.coverage__modal-head--logo {
  align-items: start;
  width: 80px;
}
.coverage__modal-head--box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.coverage__modal-head--sub {
  margin: 0 0 10px;
  padding: 5px;
  font-size: 1.6rem;
  text-align: center;
  border: 1px solid darkgray;
  background-color: whitesmoke;
  border-radius: 500px;
  width: 130px;
}
.coverage__modal-head--title {
  font-weight: 700;
  font-size: 3rem;
  margin: 0 0 15px;
  position: relative;
}
.coverage__modal-head--title span {
  font-weight: 900;
  font-size: 3.6rem;
  position: absolute;
  top: -4px;
  right: -34px;
}
.coverage__modal-head--cost {
  font-weight: 700;
  font-size: 2.2rem;
  text-align: center;
}
.coverage__modal-head--cost span {
  font-weight: 900;
  font-size: 1.6rem;
}
.coverage__modal-content {
  margin: 0 auto 30px;
}
.coverage__modal-content--text {
  font-size: 2rem;
  margin: 0 auto 5px;
}
.coverage__modal-content--text em {
  font-size: 1rem;
}
.coverage__modal-content--caution {
  color: #383838;
}
.coverage__modal-table {
  width: 100%;
  border: 1px solid gray;
  margin: 0 auto 15px;
}
.coverage__modal-table__head {
  text-align: center;
  vertical-align: middle;
  font-weight: 700;
  padding: 24px;
  border: 1px solid gray;
  border-right: 4px double gray;
}
.coverage__modal-table__text {
  padding: 24px 0 24px 32px;
  border: 1px solid gray;
  border-left: none;
  vertical-align: middle;
  line-height: 1.5;
}
.coverage__modal-table--caution {
  color: #383838;
  font-size: 1.2rem;
  margin: 5px 0 0;
}
.coverage__modal-content--option-benefit {
  width: 500px;
  border: 2px solid #E4386B;
  padding: 10px 30px;
  margin: 20px auto 20px;
  text-align: center;
  color: #E4386B;
  font-size: 2.2rem;
}
.coverage__modal-content--option-benefit2 {
  width: 600px;
}
.coverage__modal-content--option-caution {
  color: #383838;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .coverage__modal-head {
    margin: 0 auto calc(calc(100 / 375) * 15 * 1vw);
    gap: calc(calc(100 / 375) * 15 * 1vw);
    justify-content: flex-start;
  }
  .coverage__modal-head--logo {
    width: calc(calc(100 / 375) * 60 * 1vw);
  }
  .coverage__modal-head--sub {
    margin: 0 0 calc(calc(100 / 375) * 8 * 1vw);
    padding: calc(calc(100 / 375) * 5 * 1vw);
    font-size: calc(100vw / (375 / 14));
    border: calc(calc(100 / 375) * 1 * 1vw) solid darkgray;
    width: calc(calc(100 / 375) * 116 * 1vw);
  }
  .coverage__modal-head--title {
    font-size: calc(100vw / (375 / 20));
    line-height: 1.2;
    margin: 0 0 calc(calc(100 / 375) * 8 * 1vw);
  }
  .coverage__modal-head--title span {
    font-size: calc(100vw / (375 / 22));
    position: absolute;
    top: calc(calc(100 / 375) * -3 * 1vw);
    right: calc(calc(100 / 375) * -21 * 1vw);
  }
  .coverage__modal-head--title2 {
    font-size: calc(100vw / (375 / 16));
  }
  .coverage__modal-head--title3 {
    font-size: calc(100vw / (375 / 18));
  }
  .coverage__modal-head--cost {
    font-size: calc(100vw / (375 / 16));
  }
  .coverage__modal-content {
    margin: 0 auto calc(calc(100 / 375) * 20 * 1vw);
  }
  .coverage__modal-head--cost span {
    font-size: calc(100vw / (375 / 14));
  }
  .coverage__modal-content .coverage__modal-content--text {
    font-size: calc(100vw / (375 / 14));
  }
  .coverage__modal-content .coverage__modal-content--text em {
    font-size: calc(100vw / (375 / 10));
  }
  .coverage__modal-content .coverage__modal-content--caution {
    text-align: left;
    font-size: calc(100vw / (375 / 12));
  }
  .coverage__modal-table__head {
    padding: calc(calc(100 / 375) * 10 * 1vw) 0;
    border: calc(calc(100 / 375) * 1 * 1vw) solid gray;
    border-right: calc(calc(100 / 375) * 3 * 1vw) double gray;
    font-size: calc(100vw / (375 / 14));
    width: 7.5em;
  }
  .coverage__modal-table__text {
    padding: calc(calc(100 / 375) * 10 * 1vw) calc(calc(100 / 375) * 5 * 1vw) calc(calc(100 / 375) * 10 * 1vw) calc(calc(100 / 375) * 8 * 1vw);
    border: calc(calc(100 / 375) * 1 * 1vw) solid gray;
    border-left: none;
    font-size: calc(100vw / (375 / 14));
  }
  .coverage__modal-table .coverage__modal-table--caution {
    font-size: calc(100vw / (375 / 12));
    margin: calc(calc(100 / 375) * 3 * 1vw) 0 0;
  }
  .coverage__modal-table__wrap .coverage__modal-content--caution {
    text-align: left;
    font-size: calc(100vw / (375 / 12));
  }
  .coverage__modal-content--option-benefit {
    width: 100%;
    border: calc(calc(100 / 375) * 1 * 1vw) solid #E4386B;
    padding: calc(calc(100 / 375) * 12 * 1vw) 0;
    margin: calc(calc(100 / 375) * 20 * 1vw) auto calc(calc(100 / 375) * 16 * 1vw);
    font-size: calc(100vw / (375 / 16));
  }
  .coverage__modal-content--option-benefit {
    width: 100%;
    padding: calc(calc(100 / 375) * 8 * 1vw) 0;
  }
  .coverage__modal .coverage__modal-content--option-benefit p {
    font-size: calc(100vw / (375 / 16));
  }
  .coverage__modal .coverage__modal-content--option-benefit2 p {
    font-size: calc(100vw / (375 / 14));
  }
  .coverage__modal .coverage__modal-content--option-caution {
    font-size: calc(100vw / (375 / 12));
  }
}
/*  visit-popup　2023/12/06
--------------------------------------------------------------*/
body.open_visit-popup {
  overflow: hidden;
}

.bg_visit-popup {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
}

body.open_visit-popup .bg_visit-popup {
  opacity: 1;
  visibility: visible;
}

.visit-popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.visit-popup__content img {
  height: min(350px, 80dvh);
  vertical-align: bottom;
}

.visit-popup__close {
  position: absolute;
  top: -70px;
  right: 0px;
  width: 30px;
  height: 100px;
  cursor: pointer;
  display: block;
}

.visit-popup__close--s02 {
  top: -8px;
}

.visit-popup__close::before,
.visit-popup__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 100%;
  height: 2px;
  background-color: #fff;
  content: "";
}

.visit-popup__close::before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.visit-popup__close::after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

/*--------------------------------------------------------------
      # _compornent.scss
--------------------------------------------------------------*/
/*  links
--------------------------------------------------------------*/
.l--main ul li a {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  font-weight: 500;
}

.l--main ul li a:link {
  color: #3382E7;
  text-decoration: none;
}

.l--main ul li a:visited {
  color: #3382E7;
  text-decoration: none;
}

.l--main ul li a:hover {
  color: #3382E7;
  text-decoration: none;
  opacity: 0.65;
}

.l--main p a {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  font-weight: 500;
}

.l--main p a:link {
  color: #3382E7;
  text-decoration: none;
}

.l--main p a:visited {
  color: #3382E7;
  text-decoration: none;
}

.l--main p a:hover {
  color: #3382E7;
  text-decoration: none;
  opacity: 0.65;
}

/*  list
--------------------------------------------------------------*/
.cmn--cautionlist {
  margin: 0 0 50px;
}

.cmn--cautionlist li {
  font-size: 1.3rem;
  color: #383838;
  font-weight: 400;
  line-height: 1.4;
  margin: 0 10px 1px;
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 767px) {
  .cmn--cautionlist {
    margin: 0 0 4vw;
  }
  .cmn--cautionlist li {
    font-size: calc(100vw / (375 / 11));
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    padding-left: 1em;
    text-indent: -1em;
  }
}
/*  headline
--------------------------------------------------------------*/
.cmn--title00 {
  margin: 0;
  text-align: center;
  color: #003477;
  font-weight: bold;
  font-size: 3.2rem;
}

.cmn--title00 em {
  font-size: 1.4rem;
}

.cmn--title00 span {
  display: inline-block;
  position: relative;
}

.cmn--title00 span:before {
  content: url("../../assets/images/icon_left.png");
  padding: 10px 10px 0 0;
  vertical-align: middle;
}

.cmn--title00 span:after {
  content: url("../../assets/images/icon_right.png");
  padding: 10px 0 0 10px;
  vertical-align: middle;
}

.cmn--title01 {
  margin: 0 0 20px;
  text-align: center;
  color: #003477;
  font-weight: bold;
  font-size: 4rem;
}

.cmn--title01 span {
  display: inline-block;
  position: relative;
  margin-bottom: 1em;
}

.cmn--title01 span:before {
  content: "";
  position: absolute;
  bottom: -30px;
  display: inline-block;
  width: 190px;
  height: 16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fdd632;
  border-radius: 2px;
}

.cmn--title01 em {
  font-size: 1.5rem;
  vertical-align: bottom;
}

.cmn--title02 {
  margin: 0 0 32px;
  text-align: center;
  color: #003477;
  font-weight: 700;
  font-size: 3rem;
}

.cmn--title02_fs {
  font-size: 4.8rem;
}

.cmn--title_lh {
  line-height: 1.3;
}

.cmn--title02 em {
  font-size: 1.1rem;
}

.cmn--title02 span {
  display: inline-block;
  position: relative;
}

.cmn--title02 span:before {
  content: "";
  background-color: #003477;
  height: 35px;
  width: 3px;
  bottom: -6px;
  left: -20px;
  position: absolute;
  transform: rotate(-40deg);
}

.cmn--title02 span:after {
  content: "";
  background-color: #003477;
  height: 35px;
  width: 3px;
  bottom: -6px;
  right: -20px;
  position: absolute;
  transform: rotate(40deg);
}

.cmn--title02 p.dot-text {
  padding-top: 0.4em;
  background-position: top left -2px;
  background-repeat: repeat-x;
  background-size: 1.1em 0.3em;
  background-image: radial-gradient(0.15em 0.15em at center center, #003477, #003477 100%, transparent, transparent);
  display: inline;
}

.cmn--title02_kddi {
  font-size: min(3.6vw, 3rem);
}

.cmn--title03 {
  margin: 0 0 32px;
  text-align: center;
  color: #003477;
  font-weight: 700;
  font-size: 4rem;
}

.cmn--title03 figure {
  width: 80px;
  margin: 0 auto 12px;
}

.cmn--title03 figure img {
  width: 100%;
  vertical-align: bottom;
}

.cmn--title03--mb {
  margin-bottom: 20px;
}

.cmn--title04 {
  margin: 0;
  text-align: center;
  color: #333;
  font-weight: bold;
  font-size: 2.8rem;
}

.cmn--title05 {
  margin: 30px 0 20px;
  text-align: center;
  color: #333;
  font-weight: 700;
  font-size: min(4.5vw, 4rem);
}

.cmn--title05 strong {
  font-size: 5.8rem;
  color: #fe0000;
}

.cmn--title05 span {
  display: inline-block;
  position: relative;
}

.cmn--title05 span:before {
  content: "";
  background-color: #333333;
  height: 35px;
  width: 3px;
  bottom: -6px;
  left: -20px;
  position: absolute;
  transform: rotate(-40deg);
}

.cmn--title05 span:after {
  content: "";
  background-color: #333333;
  height: 35px;
  width: 3px;
  bottom: -6px;
  right: -20px;
  position: absolute;
  transform: rotate(40deg);
}

.cmn--title05--cautionlist {
  margin: 20px 40px 60px;
  font-size: 1.3rem;
  text-align: right;
  color: #383838;
}

.cmn--title06 {
  margin: 0 0 10px 0;
  text-align: center;
  color: #333;
  font-weight: bold;
  font-size: 2.6rem;
}

@media screen and (max-width: 767px) {
  .cmn--title00 {
    font-size: calc(100vw / (375 / 24));
  }
  .cmn--title01 {
    margin: 0 0 5vw;
    text-align: center;
    color: #003477;
    font-weight: bold;
    font-size: calc(100vw / (375 / 22));
  }
  .cmn--title01 em {
    font-size: calc(100vw / (375 / 11));
  }
  .cmn--title01 span {
    display: inline-block;
    position: relative;
    margin-bottom: 1em;
  }
  .cmn--title01 span:before {
    content: "";
    position: absolute;
    bottom: calc(calc(100 / 375) * -30 * 1vw);
    display: inline-block;
    width: calc(100vw / (375 / 80));
    height: calc(calc(100 / 375) * 16 * 1vw);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #fdd632;
    border-radius: calc(calc(100 / 375) * 2 * 1vw);
  }
  .cmn--title02 {
    margin: 0 0 5.33333vw;
    font-size: calc(100vw / (375 / 20));
  }
  .cmn--title02_fs {
    font-size: calc(100vw / (375 / 25));
  }
  .cmn--title02 em {
    font-size: calc(100vw / (375 / 9));
  }
  .cmn--title02 span {
    display: inline-block;
    position: relative;
  }
  .cmn--title02 span:before {
    content: "";
    background-color: #003477;
    height: calc(calc(100 / 375) * 30 * 1vw);
    width: calc(calc(100 / 375) * 3 * 1vw);
    bottom: calc(calc(100 / 375) * -6 * 1vw);
    left: calc(calc(100 / 375) * -20 * 1vw);
    position: absolute;
    transform: rotate(-40deg);
  }
  .cmn--title02 span:after {
    content: "";
    background-color: #003477;
    height: calc(calc(100 / 375) * 30 * 1vw);
    width: calc(calc(100 / 375) * 3 * 1vw);
    bottom: calc(calc(100 / 375) * -6 * 1vw);
    right: calc(calc(100 / 375) * -20 * 1vw);
    position: absolute;
    transform: rotate(40deg);
  }
  .cmn--title03 {
    margin: 0 0 5.33333vw;
    font-size: calc(100vw / (375 / 30));
  }
  .cmn--title03 figure {
    width: 16vw;
    margin: 0 auto 2.66667vw;
  }
  .cmn--title03 figure img {
    width: 100%;
    vertical-align: bottom;
  }
  .cmn--title03--mb {
    margin-bottom: calc(calc(100 / 375) * 16 * 1vw);
  }
  .cmn--title04 {
    margin: 5vw 0 0;
    font-size: calc(80vw / (375 / 20));
  }
  .cmn--title05 {
    margin: 0px 10px 20px;
    font-size: calc(90vw / (375 / 20));
    line-height: 1.2;
  }
  .cmn--title05 strong {
    font-size: calc(100vw / (375 / 30));
  }
  .cmn--title05 span:before {
    height: calc(calc(100 / 375) * 35 * 1vw);
    width: calc(calc(100 / 375) * 3 * 1vw);
    bottom: calc(calc(100 / 375) * -6 * 1vw);
    left: calc(calc(100 / 375) * -20 * 1vw);
  }
  .cmn--title05 span:after {
    height: calc(calc(100 / 375) * 35 * 1vw);
    width: calc(calc(100 / 375) * 3 * 1vw);
    bottom: calc(calc(100 / 375) * -6 * 1vw);
    right: calc(calc(100 / 375) * -20 * 1vw);
  }
  .cmn--title05--cautionlist {
    margin: 5vw calc(calc(100 / 375) * 10 * 1vw) 10vw 0;
    font-size: calc(80vw / (375 / 12));
  }
  .cmn--title06 {
    margin: 20px 0s;
    text-align: left;
    font-size: calc(80vw / (375 / 20));
  }
}
/*  common banner-01
--------------------------------------------------------------*/
.cmn--banner01 {
  background-color: #E5F5FC;
  padding: 64px 10px 32px;
  position: relative;
}

.cmn--banner01.pt1 {
  padding: 1px 10px;
}

.cmn--banner01.pt10 {
  padding: 14px 10px 34px;
}

.cmn--banner01_02.pt20 {
  background-color: #FFF;
  position: relative;
  padding: 20px 0;
}

.cmn--banner01_02.pt50 {
  background-color: #FFF;
  position: relative;
  padding: 50px 0;
}

.cmn--banner01.bg-white {
  background-color: #FFF;
}

.cmn--banner01__inner {
  max-width: 960px;
  margin: 0 auto;
}

.cmn--banner01-primary {
  display: flex;
  margin: 0 0 20px;
  justify-content: space-between;
  align-items: center;
}

.cmn--banner01-illust {
  width: 45.83333%;
}

.cmn--banner01-illust img {
  width: 100%;
  vertical-align: bottom;
}

.cmn--banner01-links {
  width: 52.08333%;
}

.cmn--banner01-links_02 {
  width: 70%;
  margin: 0 auto;
}

.cmn--banner01-links-text {
  color: #EB0000;
  font-weight: 700;
  display: block;
  text-align: center;
  margin: 0 0 18px;
  font-size: 2.4rem;
}

.cmn--banner01-links-text em {
  display: inline-block;
  position: relative;
}

.cmn--banner01-links-text em:before {
  content: "";
  background-color: #EB0000;
  height: 25px;
  width: 3px;
  bottom: -4px;
  left: -20px;
  position: absolute;
  transform: rotate(-45deg);
}

.cmn--banner01-links-text em:after {
  content: "";
  background-color: #EB0000;
  height: 25px;
  width: 3px;
  bottom: -4px;
  right: -20px;
  position: absolute;
  transform: rotate(45deg);
}

.cmn--banner01-links-button {
  width: 100%;
  background-color: #EB0000;
  background-image: url(../images/arrow__left__wh.png);
  background-repeat: no-repeat;
  background-size: 1.8rem;
  background-position: 92% 54%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  height: auto;
  border-radius: 50px;
  font-size: 3.5rem;
  font-weight: 700;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  box-shadow: 0px 5px #740515;
  transform: translateY(-5px);
}

.cmn--banner01-links-button:link {
  color: #FFF;
  text-decoration: none;
}

.cmn--banner01-links-button:visited {
  color: #FFF;
  text-decoration: none;
}

.cmn--banner01-links-button:hover {
  color: #FFF;
  text-decoration: none;
  box-shadow: 0px 1px #740515;
  transform: translateY(-2px);
  background-size: 8px 16px;
}

.cmn--banner01-secondry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 30px;
  padding: 0 15px;
}

.cmn--banner01-caution {
  font-size: 1.5rem;
  text-align: center;
  margin: 0 0 8px;
}

.cmn--banner01-teltext {
  background-color: #FFF;
  border: 1px solid #000;
  padding: 10px 20px;
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}

.cmn--banner01-tel {
  line-height: 1;
  color: #000;
}

.cmn--banner01-tel .tel-number {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
  font-weight: 900;
}

.cmn--banner01-tel .tel-number:link {
  color: #000;
}

.cmn--banner01-tel .tel-number:visited {
  color: #000;
}

.cmn--banner01-tel .tel-number:hover {
  color: #000;
}

.cmn--banner01-telcaution {
  font-size: 1.4rem;
  font-weight: 700;
}

.cmn--banner01-links__wrap {
  text-align: center;
}

.cmn--banner01-linkstext {
  display: inline-block;
  background-image: url(../images/arrow__left__re.png);
  background-size: 6px 12px;
  background-repeat: no-repeat;
  background-position: left center;
  padding: 0 0 0 15px;
  font-size: 1.5rem;
  font-weight: 700;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.cmn--banner01-linkstext:link {
  color: #EB0000;
  text-decoration: none;
}

.cmn--banner01-linkstext:visited {
  color: #EB0000;
  text-decoration: none;
}

.cmn--banner01-linkstext:hover {
  color: #EB0000;
  text-decoration: none;
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .cmn--banner01 {
    padding: 8vw 2.66667vw;
  }
  .cmn--banner01.pt1 {
    padding: 0.26667vw 0;
  }
  .cmn--banner01.pt10 {
    padding: 2vw 2.66667vw 8vw;
  }
  .cmn--banner01_02.pt20 {
    padding: 2vw 0;
  }
  .cmn--banner01_02.pt50 {
    padding: 8vw 0 5vw;
  }
  .cmn--banner01-primary {
    display: flex;
    flex-flow: column;
    margin: 0;
  }
  .cmn--banner01-illust {
    width: 74.66667vw;
    order: 2;
    margin: 0 auto 4vw;
  }
  .cmn--banner01-illust img {
    width: 100%;
    vertical-align: bottom;
  }
  .cmn--banner01-links {
    order: 1;
    width: auto;
    margin: 0 auto 4vw;
  }
  .cmn--banner01-links-text {
    margin: 0 0 4vw;
    font-size: calc(100vw / (375 / 18));
  }
  .cmn--banner01-links-text em:before {
    content: "";
    background-color: #EB0000;
    height: calc(calc(100 / 375) * 20 * 1vw);
    width: calc(calc(100 / 375) * 1 * 1vw);
    bottom: calc(calc(100 / 375) * -4 * 1vw);
    left: calc(calc(100 / 375) * -20 * 1vw);
    position: absolute;
    transform: rotate(-45deg);
  }
  .cmn--banner01-links-text em:after {
    content: "";
    background-color: #EB0000;
    height: calc(calc(100 / 375) * 20 * 1vw);
    width: calc(calc(100 / 375) * 1 * 1vw);
    bottom: calc(calc(100 / 375) * -4 * 1vw);
    right: calc(calc(100 / 375) * -20 * 1vw);
    position: absolute;
    transform: rotate(45deg);
  }
  .cmn--banner01-links-button {
    width: 100%;
    background-color: #EB0000;
    background-size: 2.13334vw 4.26667vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5.33333vw 16vw;
    height: auto;
    border-radius: 13.33334vw;
    font-size: calc(100vw / (375 / 24));
    font-weight: 700;
  }
  .cmn--banner01-secondry {
    display: block;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 1vw;
    padding: 0;
  }
  .cmn--banner01-caution {
    font-size: calc(100vw / (375 / 11));
    margin: 0 0 4vw;
  }
  .cmn--banner01-teltext {
    padding: 2.66667vw 5.33333vw;
    font-size: calc(100vw / (375 / 14));
    font-weight: 700;
    text-align: center;
    display: block;
    margin: 0 auto 4vw;
    width: 85%;
  }
  .cmn--banner01-tel .tel-number {
    font-size: calc(100vw / (375 / 30));
    display: block;
    text-align: center;
    margin: 0 0 2.66667vw;
  }
  .cmn--banner01-telcaution {
    font-size: calc(100vw / (375 / 13));
    display: block;
    text-align: center;
  }
  .cmn--banner01-links__wrap {
    text-align: center;
  }
  .cmn--banner01-linkstext {
    display: inline-block;
    background-size: 6px 12px;
    background-repeat: no-repeat;
    background-position: left center;
    padding: 0 0 0 15px;
    font-size: calc(100vw / (375 / 14));
  }
}
/*  common banner-02
--------------------------------------------------------------*/
.cmn--banner {
  padding: 40px 20px 0;
}

.cmn--banner02 {
  padding: 40px 20px 60px;
}

.cmn--banner02-links-button {
  width: 600px;
  margin: 0 auto;
  background-color: #EB0000;
  background-image: url(../images/arrow__left__wh.png);
  background-repeat: no-repeat;
  background-size: 8px 16px;
  background-position: 90.5% center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  height: auto;
  border-radius: 50px;
  font-size: 3.5rem;
  font-weight: 700;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  box-shadow: 0px 5px #740515;
  transform: translateY(-5px);
}

.cmn--banner02-links-button:link {
  color: #FFF;
  text-decoration: none;
}

.cmn--banner02-links-button:visited {
  color: #FFF;
  text-decoration: none;
}

.cmn--banner02-links-button:hover {
  color: #FFF;
  text-decoration: none;
  box-shadow: 0px 1px #740515;
  transform: translateY(-2px);
}

@media screen and (max-width: 767px) {
  .cmn--banner {
    padding: 4vw 2.66667vw;
  }
  .cmn--banner02 {
    padding: 4vw 2.66667vw;
  }
  .cmn--banner02-links-button {
    width: 85.33333vw;
    background-position: 94.5% center;
    padding: 4vw 0;
    height: auto;
    border-radius: 10.66667vw;
    font-size: calc(100vw / (375 / 20));
    font-weight: 700;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    box-shadow: 0px 5px #740515;
    transform: translateY(-5px);
  }
  .cmn--banner02-links-button:link {
    color: #FFF;
    text-decoration: none;
  }
  .cmn--banner02-links-button:visited {
    color: #FFF;
    text-decoration: none;
  }
  .cmn--banner02-links-button:hover {
    color: #FFF;
    text-decoration: none;
    box-shadow: 0px 1px #740515;
    transform: translateY(-2px);
  }
}
/*  common banner-03
--------------------------------------------------------------*/
.cmn--banner03 {
  background-color: #E5F5FC;
  padding: 48px 20px 32px;
  position: relative;
}

.cmn--banner03__inner {
  max-width: 960px;
  margin: 0 auto;
}

.cmn--banner03-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 32px;
}

.cmn--banner03-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 20px;
}

.cmn--banner03-telbox {
  border-radius: 5px;
  background-color: #FFF;
  width: 47.91667%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cmn--banner03-telbox__inner {
  padding: 30px 0;
  width: 100%;
}

.cmn--banner03-telbox-title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 15px;
}

.cmn--banner03-telbox-meta {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0 auto 10px;
  width: 70%;
}

.cmn--banner03-telbox-meta span {
  background-color: #EB0000;
  padding: 2.5px 5px;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 700;
  display: block;
  width: 15%;
  text-align: center;
}

.cmn--banner03-telbox-meta strong {
  color: #EB0000;
  width: 85%;
  letter-spacing: -0.02em;
}

.cmn--banner03-telbox-meta strong .tel-number {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  font-weight: 900;
  font-family: "Roboto", sans-serif;
  font-size: 3.3rem;
}

.cmn--banner03-telbox-meta strong .tel-number:link {
  color: #EB0000;
  text-decoration: none;
}

.cmn--banner03-telbox-meta strong .tel-number:visited {
  color: #EB0000;
  text-decoration: none;
}

.cmn--banner03-telbox-meta strong .tel-number:hover {
  color: #EB0000;
  text-decoration: none;
}

.cmn--banner03-telbox-info {
  text-align: center;
}

.cmn--banner03-links {
  width: 47.91667%;
  border-radius: 5px;
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cmn--banner03-links__inner {
  padding: 45px 0;
}

.cmn--banner03-links-text {
  color: #EB0000;
  font-weight: 700;
  display: block;
  text-align: center;
  margin: 0 0 12px;
  font-size: 2rem;
}

.cmn--banner03-links-text em {
  display: inline-block;
  position: relative;
}

.cmn--banner03-links-text em:before {
  content: "";
  background-color: #EB0000;
  height: 25px;
  width: 3px;
  bottom: -4px;
  left: -20px;
  position: absolute;
  transform: rotate(-45deg);
}

.cmn--banner03-links-text em:after {
  content: "";
  background-color: #EB0000;
  height: 25px;
  width: 3px;
  bottom: -4px;
  right: -20px;
  position: absolute;
  transform: rotate(45deg);
}

.cmn--banner03-links-button {
  width: 340px;
  background-color: #EB0000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  height: auto;
  border-radius: 50px;
  font-size: 2.2rem;
  font-weight: 700;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  background-color: #EB0000;
  background-image: url(../images/arrow__left__wh.png);
  background-repeat: no-repeat;
  background-size: 8px 16px;
  background-position: 90.5% center;
  box-shadow: 0px 5px #740515;
  transform: translateY(-5px);
}

.cmn--banner03-links-button:link {
  color: #FFF;
  text-decoration: none;
}

.cmn--banner03-links-button:visited {
  color: #FFF;
  text-decoration: none;
}

.cmn--banner03-links-button:hover {
  color: #FFF;
  text-decoration: none;
  box-shadow: 0px 1px #740515;
  transform: translateY(-2px);
}

.cmn--banner03-caution {
  font-size: 1.5rem;
  text-align: center;
  margin: 0 0 10px;
}

.cmn--banner03-teltext {
  background-color: #FFF;
  border: 1px solid #000;
  padding: 10px 20px;
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}

.cmn--banner03-tel {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
}

.cmn--banner03-telcaution {
  font-size: 1.4rem;
  font-weight: 700;
}

.cmn--banner03-links__wrap {
  text-align: center;
}

.cmn--banner03-linkstext {
  display: inline-block;
  background-image: url(../images/arrow__left__re.png);
  background-size: 6px 12px;
  background-repeat: no-repeat;
  background-position: left center;
  padding: 0 0 0 15px;
  font-size: 1.5rem;
  font-weight: 700;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.cmn--banner03-linkstext:link {
  color: #EB0000;
  text-decoration: none;
}

.cmn--banner03-linkstext:visited {
  color: #EB0000;
  text-decoration: none;
}

.cmn--banner03-linkstext:hover {
  color: #EB0000;
  text-decoration: none;
  opacity: 0.5;
}

@media screen and (max-width: 767px) {
  .cmn--banner03 {
    padding: 5.33333vw;
    position: relative;
  }
  .cmn--banner03-title {
    font-size: calc(100vw / (375 / 18));
    margin: 0 0 5.33333vw;
  }
  .cmn--banner03-contents {
    display: flex;
    flex-flow: column;
    margin: 0 0 5.33333vw;
  }
  .cmn--banner03-telbox {
    order: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }
  .cmn--banner03-telbox__inner {
    padding: 5.33333vw 0;
    width: 100%;
  }
  .cmn--banner03-telbox-title {
    font-size: calc(100vw / (375 / 16));
    margin: 0 0 2.66667vw;
  }
  .cmn--banner03-telbox-meta {
    margin: 0 auto 1.33333vw;
    width: 90%;
  }
  .cmn--banner03-telbox-meta span {
    background-color: #EB0000;
    padding: 0.53333vw 1.33333vw;
    font-size: calc(100vw / (375 / 11));
  }
  .cmn--banner03-telbox-meta strong {
    color: #EB0000;
    width: 85%;
    letter-spacing: -0.02em;
  }
  .cmn--banner03-telbox-meta strong .tel-number {
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    font-weight: 900;
    font-family: "Roboto", sans-serif;
    font-size: calc(100vw / (375 / 35));
  }
  .cmn--banner03-telbox-meta strong .tel-number:link {
    color: #EB0000;
    text-decoration: none;
  }
  .cmn--banner03-telbox-meta strong .tel-number:visited {
    color: #EB0000;
    text-decoration: none;
  }
  .cmn--banner03-telbox-meta strong .tel-number:hover {
    color: #EB0000;
    text-decoration: none;
  }
  .cmn--banner03-telbox-info {
    text-align: center;
  }
  .cmn--banner03-links {
    order: 1;
    margin: 0 0 4vw;
    width: 100%;
  }
  .cmn--banner03-links__inner {
    padding: 5.33333vw 0;
  }
  .cmn--banner03-links-text {
    margin: 0 0 2.66667vw;
    font-size: calc(100vw / (375 / 16));
  }
  .cmn--banner03-links-text em {
    display: inline-block;
    position: relative;
  }
  .cmn--banner03-links-text em:before {
    content: "";
    background-color: #EB0000;
    height: 25px;
    width: 3px;
    bottom: -4px;
    left: -20px;
    position: absolute;
    transform: rotate(-45deg);
  }
  .cmn--banner03-links-text em:after {
    content: "";
    background-color: #EB0000;
    height: 25px;
    width: 3px;
    bottom: -4px;
    right: -20px;
    position: absolute;
    transform: rotate(45deg);
  }
  .cmn--banner03-links-button {
    width: 80vw;
    padding: 5.33333vw 0;
    height: auto;
    border-radius: 8vw;
    font-size: calc(100vw / (375 / 16));
    font-weight: 700;
  }
  .cmn--banner03-caution {
    font-size: calc(100vw / (375 / 13));
    text-align: center;
    margin: 0 0 3vw;
  }
  .cmn--banner03-tel {
    color: #000;
    font-family: "Roboto", sans-serif;
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1;
  }
  .cmn--banner03-linkstext {
    display: inline-block;
    background-image: url(../images/arrow__left__re.png);
    background-size: 6px 12px;
    background-repeat: no-repeat;
    background-position: left center;
    padding: 0 0 0 15px;
    font-size: calc(100vw / (375 / 15));
    font-weight: 700;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
  .cmn--banner03-linkstext:link {
    color: #EB0000;
    text-decoration: none;
  }
  .cmn--banner03-linkstext:visited {
    color: #EB0000;
    text-decoration: none;
  }
  .cmn--banner03-linkstext:hover {
    color: #EB0000;
    text-decoration: none;
    opacity: 0.5;
  }
}
/* -----------------------------------------
   キャッシュバック受け取り3ステップ
------------------------------------------- */
#cashback {
  background-color: #E5F5FC;
  padding: 0 0 1px;
}

#cashback .intro__inner {
  max-width: 900px;
}

.balloon {
  position: relative;
  display: block;
  text-align: center;
  filter: drop-shadow(2px 3px #003477);
  margin: 0 auto;
  max-width: 25%;
}

.cls-balloon1 {
  fill: #fff;
}

.cls-balloon2,
.cls-balloon3 {
  fill: #003477;
}

.cls-balloon4 {
  fill: none;
  stroke: #003477;
  stroke-miterlimit: 10;
  stroke-width: 3px;
}

.cls-balloon3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.075em;
}

.cls-cashback-step1-1 {
  clip-path: url(#clippath);
}

.cls-cashback-step1-2 {
  fill: none;
  stroke: #333;
  stroke-miterlimit: 10;
  stroke-width: 7px;
}

.cls-cashback-step2-1 {
  fill: none;
  stroke: #333;
  stroke-miterlimit: 10;
  stroke-width: 7px;
}

.cls-cashback-step3-1,
.cls-cashback-step3-2 {
  stroke-miterlimit: 10;
  stroke-width: 4px;
}

.cls-cashback-step3-1,
.cls-cashback-step3-2,
.cls-cashback-step3-3 {
  stroke: #333;
}

.cls-cashback-step3-1,
.cls-cashback-step3-3 {
  fill: none;
}

.cls-cashback-step3-4 {
  font-size: 48px;
  font-weight: 700;
}

.cls-cashback-step3-2 {
  fill: #fff;
}

.cls-cashback-step3-3 {
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 10px;
  stroke: #3382E7;
}

.cls-cashback-step3-3-2 {
  fill: #3382E7;
}

.ttl {
  margin-bottom: 2rem;
  margin: 0 auto;
}

.ttl h2 {
  font-size: 3.4rem;
  color: #003477;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  letter-spacing: 0.3rem;
  position: relative;
  margin-bottom: 2rem;
}

.coupon-cashback__container:nth-last-child(3) {
  padding-top: 20px;
}

.coupon-cashback__container:nth-last-child(1) {
  padding-bottom: 20px;
}

.coupon-cashback__wrap {
  flex-wrap: wrap;
  row-gap: 25px;
  column-gap: 5%;
  padding: 20px 40px;
}

.coupon-cashback__inner--step {
  flex-basis: 18.4%;
  align-self: center;
}

.coupon-cashback__inner--step p {
  width: 100%;
  text-align: center;
  color: #3382E7;
  font-size: 2.5rem;
  font-weight: 600;
  border: 2px solid #3382E7;
  padding: 0.1rem 0rem 0.3rem 0rem;
  border-radius: 5px;
}

.coupon-cashback__inner--title {
  text-align: left;
  align-self: center;
}

.coupon-cashback__inner--title h4 {
  margin-bottom: 0;
  padding: 0;
}

.coupon-cashback__inner--icon {
  flex-basis: 18.4%;
  text-align: center;
}

.coupon-cashback__inner--icon svg {
  width: 60%;
}

.coupon-cashback__inner--text {
  color: #333;
}

.coupon-cashback__inner--text b {
  font-weight: 700;
}

.coupon-cashback__inner--caution {
  color: #383838;
}

.intro-box .coupon-cashback__inner--arrow {
  width: 48px;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .balloon {
    margin: 0 auto;
    padding: calc(calc(100 / 375) * 2 * 1vw);
    max-width: 40%;
    font-size: calc(100vw / (375 / 18));
  }
  .ttl h2 {
    font-size: calc(100vw / (375 / 28));
    letter-spacing: 0;
    margin-bottom: 0;
    line-height: 1.4;
  }
  .ttl {
    margin-bottom: calc(calc(100 / 375) * 20 * 1vw);
  }
  .coupon-cashback__container:nth-last-child(3) {
    padding-top: 2vw;
  }
  .coupon-cashback__container:nth-last-child(1) {
    padding-bottom: 2vw;
  }
  .coupon-cashback__wrap {
    padding: 2vw 4vw;
    flex-direction: column;
    row-gap: 0;
  }
  .coupon-cashback__wrap:first-of-type {
    margin-top: 2.66667vw;
  }
  .coupon-cashback__wrap:last-of-type {
    padding-bottom: 0;
  }
  .coupon-cashback__inner--step {
    margin: 0 auto calc(calc(100 / 375) * 5 * 1vw) auto;
  }
  .coupon-cashback__inner--step p {
    width: auto;
    line-height: 1;
    color: #3382E7;
    font-size: calc(100vw / (375 / 20));
    font-weight: 600;
    border: calc(calc(100 / 375) * 2 * 1vw) solid #3382E7;
    padding: calc(calc(100 / 375) * 5 * 1vw) calc(calc(100 / 375) * 19 * 1vw) calc(calc(100 / 375) * 7 * 1vw) calc(calc(100 / 375) * 19 * 1vw);
    border-radius: calc(calc(100 / 375) * 3 * 1vw);
  }
  .coupon-cashback__inner--title {
    margin: 0 auto calc(calc(100 / 375) * 5 * 1vw) auto;
    text-align: center;
  }
  .coupon-cashback__inner--title h4 {
    margin: 0 0 2vw;
    padding: 2vw 0 0;
  }
  .coupon-cashback__inner--icon {
    width: 20vw;
    margin: 0 auto calc(calc(100 / 375) * 15 * 1vw) auto;
  }
  .coupon-cashback__inner--icon svg {
    width: 100%;
  }
  .coupon-cashback__inner--text {
    width: 100%;
  }
  .intro-box .coupon-cashback__inner--arrow {
    width: 6.4vw;
  }
  .intro-box .coupon-cashback__inner--arrow img {
    margin-bottom: -3.33333vw;
    margin-top: 6vw;
  }
}
/*--------------------------------------------------------------
		# _modal.scss
--------------------------------------------------------------*/
#popup {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 999;
  pointer-events: auto;
  background-color: rgba(71, 71, 71, 0.8);
}

#popup.open {
  display: block;
}

#popup .overlay {
  position: fixed;
  width: 80rem;
  height: 70%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 15rem auto;
  background-color: #fff;
  border-radius: 0rem;
  z-index: 1000;
  display: none;
}

.popup-box {
  padding: 4rem;
}

.popup-box h3 {
  background: #3382E7;
  font-size: 2.1rem;
  color: #fff;
  text-align: center;
  padding: 1.8rem;
  margin-bottom: 2.5rem;
}

.popOpend {
  position: fixed;
  width: 100%;
  height: 100%;
}

#popup .scroll-wrap {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 80rem;
  height: 70%;
  margin: 15rem auto;
  z-index: 1001;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  box-sizing: border-box;
}

#popup plan-popup2.scroll-wrap {
  height: 50%;
}

#popup .scroll-wrap.open {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  overflow: scroll;
}

#popup .popup-close {
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: -4rem;
  right: 0;
  z-index: 1003;
  cursor: pointer;
}

#popup .popup-close::before,
#popup .popup-close::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#popup .popup-close::before {
  width: 0.3rem;
  height: 100%;
}

#popup .popup-close::after {
  width: 100%;
  height: 0.3rem;
}

#popup a:link {
  color: #3382E7;
}

.scroll-wrap-in {
  display: none;
  overflow-y: auto;
}

.data-modal .notes-box h3 {
  font-size: 2.1rem;
  padding: 2rem;
  text-align: center;
}

.data-modal .notes-box .notes-in {
  line-height: 1.7;
  font-size: 1.7rem;
}

.data-modal h3 {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: 700;
}

.data-modal h3 span {
  color: #3382E7;
  font-size: 3.4rem;
  display: block;
}

.data-box {
  display: flex;
  align-items: center;
  padding: 4rem 4rem 0;
  margin-bottom: 2.5rem;
}

.data-box .left-box p {
  font-weight: bold;
}

.data-box .left-box .bg-box {
  margin-top: 2rem;
}

.data-box .right-box {
  margin-left: auto;
  margin-right: 2rem;
}

.data-box .right-box.galaxy {
  width: 32rem;
}

.data-box .right-box.galaxy img {
  max-width: 100%;
}

.data-modal .bg-box {
  margin: auto;
  margin-bottom: 1rem;
}

.data-modal h4 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.data-modal .data-spec h4 {
  padding-top: 0;
  font-weight: 700;
}

.data-feature {
  background: #F2F2F2;
  padding: 4rem 3rem 1rem;
}

.data-feature ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

.data-feature li {
  width: 35.5rem;
  margin: 0 0 3rem 0;
  box-sizing: border-box;
  background: #fff;
}

.data-feature li:nth-of-type(even) {
  margin-right: 0;
}

.data-feature li img {
  width: 100%;
  border-bottom: 0.1rem solid #ccc;
  margin-bottom: 2rem;
}

.data-feature li .feature-txt {
  margin: 0 2rem 1.5rem;
  font-size: 1.4rem;
}

.data-feature li .feature-txt.f12 {
  font-size: 1.2rem;
}

.data-feature li p.mb0 {
  margin-bottom: 0;
}

.data-feature li .l2 {
  min-height: 4.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.data-feature li p .com {
  font-size: 1.2rem;
  display: block;
  margin-top: 0.4rem;
  font-weight: normal;
  text-align: left;
}

.data-feature li p .com.inline {
  display: inline;
}

.data-feature li p .f-block {
  font-size: 1.4rem;
  display: block;
}

.data-feature li p .f-block {
  font-size: 1.4rem;
  display: block;
}

.data-feature li p .f-block.f12 {
  font-size: 1.2rem;
}

.data-spec {
  padding: 4rem 3rem 0;
}

.data-spec .spec-box {
  border: 0.1rem solid #3382E7;
  border-bottom: none;
  display: flex;
  align-items: center;
}

.data-spec .spec-box h5 {
  color: #3382E7;
  background: #E9FBFF;
  font-size: 1.6rem;
  width: 20rem;
  height: 8.7rem;
  display: flex;
  align-items: center;
  padding-left: 2.5rem;
  line-height: 1.4;
  box-sizing: border-box;
  font-weight: 700;
}

.data-spec .spec-box h5 span {
  color: #333;
  margin-left: 0.3rem;
}

.data-spec .spec-box .right-box {
  padding: 0 2.5rem;
  font-weight: bold;
  line-height: 1.4;
  width: 54rem;
}

.data-spec .spec-box p {
  font-weight: bold;
  padding: 2rem 0 0 3rem;
  font-size: 1.4rem;
}

.data-spec .spec-box ul {
  padding-left: 4rem;
  font-size: 1.4rem;
}

.data-spec .spec-box ul li {
  line-height: 1.5;
}

.data-spec .spec-box:last-child {
  border-bottom: 0.1rem solid #3382E7;
}

.data-spec .spec-box .spec-table {
  padding-left: 3rem;
  font-weight: bold;
  font-size: 1.4rem;
  padding-top: 2rem;
}

.data-under {
  margin: 2rem 3rem;
}

.data-under p,
.data-comments p {
  font-size: 1.2rem;
}

.data-under p span {
  padding-right: 1em;
}

.data-modal.wx05 .data-feature ul li p .com {
  line-height: 1.1;
  display: block;
}

.data-modal.w05 .data-feature ul li p .com,
.data-modal.l01s .data-feature ul li p .com,
.data-modal.wx04 .data-feature ul li p .com {
  display: block;
}

.wimax-bg {
  background: #3382E7;
  display: inline;
  color: #fff;
  border-radius: 2rem;
  padding: 0.2rem 1.6rem;
  font-size: 1.4rem;
}

.au-bg {
  background: #EB5505;
  display: inline;
  color: #fff;
  border-radius: 2rem;
  padding: 0.2rem 1.6rem;
  font-size: 1.4rem;
  margin-right: 1rem;
}

.au5g {
  background: #e4007f;
  display: inline;
  color: #fff;
  border-radius: 2rem;
  padding: 0.2rem 1.5rem;
  font-size: 1.4rem;
  margin-right: 1rem;
}

.bg-box {
  margin-left: auto;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  #popup .overlay {
    position: fixed;
    width: 90%;
    height: 70%;
    margin: calc(calc(100 / 375) * 120 * 1vw) auto;
  }
  .popup-box {
    padding: calc(calc(100 / 375) * 20 * 1vw);
  }
  .popup-box h3 {
    font-size: calc(100vw / (375 / 22));
    padding: calc(calc(100 / 375) * 20 * 1vw);
    margin-bottom: calc(calc(100 / 375) * 15 * 1vw);
  }
  .popOpend {
    position: fixed;
    width: 100%;
    height: 100%;
  }
  #popup .scroll-wrap {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    width: 90%;
    height: 70%;
    margin: calc(calc(100 / 375) * 120 * 1vw) auto;
    z-index: 1001;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    box-sizing: border-box;
  }
  #popup plan-popup2.scroll-wrap {
    height: 50%;
  }
  #popup .scroll-wrap.open {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    overflow: scroll;
  }
  #popup .popup-close {
    width: 3rem;
    height: 3rem;
    position: absolute;
    top: -4rem;
    right: 0;
    z-index: 1003;
    cursor: pointer;
  }
  #popup .popup-close::before,
  #popup .popup-close::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #popup .popup-close::before {
    width: 0.3rem;
    height: 100%;
  }
  #popup .popup-close::after {
    width: 100%;
    height: 0.3rem;
  }
  #popup a:link {
    color: #3382E7;
  }
  .scroll-wrap-in {
    display: none;
    overflow-y: auto;
  }
  .data-feature li,
  .data-feature li img {
    width: 100%;
  }
  .data-modal h3 {
    font-size: 1.6rem;
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .spec-table li .left-box {
    display: block;
    width: auto;
  }
  .spec-table li .right-box {
    display: block;
    width: auto;
    font-weight: normal;
    margin-bottom: 0.5rem;
  }
  .data-modal .bg-box {
    margin: 2rem auto 0;
  }
  #pagetop a {
    width: 4.4rem;
    height: 4.4rem;
  }
  #pagetop a:before {
    top: 0.2rem;
    border: 0.8rem solid transparent;
    border-bottom: 0.8rem solid #fff;
  }
  #pagetop a:after {
    font-size: 1rem;
    bottom: 0.8rem;
  }
  .data-feature li p .f-block br {
    display: none;
  }
  .data-modal .notes-box h3 {
    font-size: 1.8rem;
    text-align: left;
    padding: 1rem 2rem;
  }
  .data-modal .notes-box .notes-in {
    line-height: 1.6;
    font-size: 1.5rem;
  }
  .popup-box {
    padding: 2rem 1.5rem;
  }
  .popup-box p {
    font-size: 1.4rem;
  }
  .popup-box p.mb50 {
    margin-bottom: 3rem;
  }
  .data-box {
    display: block;
    margin-bottom: 2rem;
  }
  .data-box .left-box {
    margin-bottom: 1.5rem;
  }
  .data-box .left-box h3 {
    font-size: 2.2rem;
    margin: 0.3rem auto 0.1rem;
    padding: 0;
  }
  .data-box .left-box .f24 {
    font-size: 1.6rem;
  }
  .data-box .left-box .bg-box {
    margin-top: 1rem;
  }
  .au5g,
  .au-bg {
    margin-right: 0.5rem;
  }
  .data-box .right-box.galaxy {
    width: 70%;
    margin: auto;
  }
  .data-feature {
    padding: 2rem 1.5rem;
  }
  .data-modal h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
  .data-feature li img {
    margin-bottom: 1rem;
  }
  .data-feature li .mb15 {
    margin-bottom: 1rem;
  }
  .data-feature li .feature-txt {
    margin: 0 1rem 1rem;
    font-size: 1.2rem;
  }
  .data-spec {
    padding: 3rem 1.5rem 0;
  }
  .data-spec .spec-box {
    display: block;
  }
  .data-spec .spec-box h5 {
    width: 100%;
    height: 100%;
    display: block;
    padding: 1rem;
    box-sizing: border-box;
  }
  .data-spec .spec-box .right-box {
    font-size: 1.4rem;
    padding: 1rem;
    width: auto;
  }
  .data-under {
    margin: 2rem 1.5rem;
  }
  .data-feature li .l2 {
    min-height: 0;
  }
  /* -----------------------------------------
  データ
  ------------------------------------------- */
  .data-top {
    margin: 2rem 0;
  }
  .data-list li {
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .data-list li h3 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 2rem;
  }
  .data-list li h3 span {
    font-size: 1.8rem;
  }
  .bg-box.data-item {
    justify-content: center;
  }
  .data-list li .title-box {
    display: block;
    text-align: center;
  }
  h4.two-line {
    line-height: 1.2;
  }
  .data-list li .title-box h4 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  .au5g,
  .au-bg,
  .wimax-bg {
    font-size: 1.2rem;
  }
  .data-list li .list-link .link-style::before {
    top: -0.1em;
  }
  .data-list p.f18.txt-center {
    font-size: 1.6rem;
  }
  .data-list li .new-icon {
    padding-left: 6rem;
  }
  .data-list li .new-icon::before {
    height: 4.5rem;
    width: 4.5rem;
  }
  .data-list li .reco-icon {
    padding-left: 6rem;
  }
  .data-list li .reco-icon::before {
    width: 4.5rem;
  }
  .data-list li.mb0 {
    border-bottom-width: 0.3rem;
  }
  .list-box {
    display: block;
    padding: 0 1rem 7rem;
    position: relative;
  }
  .list-box .left-side {
    width: auto;
    padding-right: 0;
    margin-bottom: 1rem;
  }
  .list-box .left-side .galaxy-5g {
    width: 70%;
    margin: 0 auto 0.5rem;
  }
  .list-box .left-side p.f20 {
    font-size: 1.6rem;
  }
  .list-box .right-side {
    width: auto;
  }
  .list-charge-box .btm-side {
    padding: 1.2rem 1.5rem 0.8rem;
  }
  .list-link {
    margin-top: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .list-link a {
    width: 80%;
  }
  .list-link a.link-style {
    font-size: 1.4rem;
  }
  #lineup .f16 {
    font-size: 1.2rem;
  }
  .pop-up-center {
    text-align: center;
  }
}
/*--------------------------------------------------------------
    # _general.scss
--------------------------------------------------------------*/
/* -----------------------------------------
 レイアウト
------------------------------------------- */
.wrap,
.wrap-in {
  margin: 0 auto;
  box-sizing: border-box;
}

.wrap-in {
  margin: 0 1.6rem;
}

section {
  clear: both;
  position: relative;
  padding: 3.2rem 0 2.4rem;
}

section:after {
  content: "";
  display: block;
  clear: both;
}

.sp-only {
  display: none;
}

/* -----------------------------------------
 文字装飾
------------------------------------------- */
.bold {
  font-weight: bold;
}

.nomal {
  font-weight: normal;
}

.blue {
  color: #3382E7;
}

.yellow {
  color: #FDE24E;
}

.orange {
  color: #EB5505;
}

.black {
  color: #000;
}

.red {
  color: #f5020b;
}

.line-marker {
  background: #FFE786;
  background: -webkit-linear-gradient(top, transparent 60%, #FFE786 60%);
  background: linear-gradient(transparent 60%, #FFE786 60%);
}

p {
  line-height: 1.5;
}

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

.txt-right {
  text-align: right;
}

.txt-left {
  text-align: left;
}

.f60 {
  font-size: 6rem;
}

.f48 {
  font-size: 4.8rem;
}

.f42 {
  font-size: 4.2rem;
}

.f40 {
  font-size: 4rem;
}

.f38 {
  font-size: 3.8rem;
}

.f36 {
  font-size: 3.6rem;
}

.f34 {
  font-size: 3.4rem;
}

.f32 {
  font-size: 3.2rem;
}

.f28 {
  font-size: 2.8rem;
}

.f24 {
  font-size: 2.4rem;
}

.f21 {
  font-size: 2.1rem;
}

.f20 {
  font-size: 2rem;
}

.f18 {
  font-size: 1.8rem;
}

.f16 {
  font-size: 1.6rem;
}

.f15 {
  font-size: 1.5rem;
}

.f14 {
  font-size: 1.4rem;
}

.f13 {
  font-size: 1.3rem;
}

.f12 {
  font-size: 1.2rem;
}

.mb0 {
  margin-bottom: 0;
}

.mb5e {
  margin-bottom: 0.5em;
}

.mb5 {
  margin-bottom: 0.5rem;
}

.mb10 {
  margin-bottom: 1rem;
}

.mb15 {
  margin-bottom: 1.5rem;
}

.mb20 {
  margin-bottom: 2rem;
}

.mb25 {
  margin-bottom: 2.5rem;
}

.mb30 {
  margin-bottom: 3rem;
}

.mb40 {
  margin-bottom: 4rem;
}

.mb50 {
  margin-bottom: 5rem;
}

.mt60 {
  margin-top: 6rem;
}

.mt50 {
  margin-top: 5rem;
}

.mt40 {
  margin-top: 4rem;
}

.mt30 {
  margin-top: 3rem;
}

.mt20 {
  margin-top: 2rem;
}

.mt10 {
  margin-top: 1rem;
}

.mt00 {
  margin-top: 0;
}

.pb60 {
  padding-bottom: 6rem;
}

.pb50 {
  padding-bottom: 5rem;
}

.pb30 {
  padding-bottom: 3rem;
}

.pb20 {
  padding-bottom: 2rem;
}

.pb0 {
  padding-bottom: 0;
}

.pt40 {
  padding-top: 4rem;
}

.pt0 {
  padding-top: 0;
}

.radius-btm {
  border-radius: 0 0 1rem 1rem;
}

.radius {
  border-radius: 1rem;
}

.txt-indent {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.5;
}

.txt-indent2 {
  text-indent: -2em;
  padding-left: 2em;
  line-height: 1.2;
}

.txt-indent-s {
  text-indent: -2.7em;
  padding-left: 0.7em;
}

.sub-deco span {
  position: relative;
  padding: 0 2rem;
  font-size: 2.4rem;
}

.sub-deco span::before,
.sub-deco span::after {
  position: absolute;
  content: "";
  display: block;
  height: 3rem;
  width: 0.3rem;
  background: #333;
  transform: rotate(-45deg);
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}

.sub-deco span::after {
  left: auto;
  right: 0;
  transform: rotate(45deg);
}

.word-wrap {
  word-break: break-all;
  word-wrap: break-word;
}

.an-size {
  font-size: 1.1em;
}

/* -----------------------------------------
 背景色
------------------------------------------- */
.bg-white {
  background-color: #FFF;
}

/* -----------------------------------------
 特典終了告知
------------------------------------------- */
.top-band-wrap {
  height: 45px;
  margin: auto;
  background: #fff201;
}

.top-band-box {
  display: flex;
  justify-content: space-around;
  margin: auto;
}

.top-band-box .txt1 {
  margin: auto;
  padding-top: 1.4rem;
  text-align: center;
  color: #000;
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.3rem;
}

/* -----------------------------------------
 リンク
------------------------------------------- */
a:link {
  color: #3382E7;
  text-decoration: none;
}

a:visited {
  color: #35318F;
  text-decoration: underline;
}

a:active {
  color: #e00;
  text-decoration: none;
}

a.white {
  color: #fff;
  text-decoration: underline;
}

a.blank {
  position: relative;
}

a.blank::after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  background: url(../common/img/blank.png) 0 0 no-repeat;
  -webkit-background-size: contain;
  background-size: contain;
  display: inline-block;
  margin-left: 0.3em;
  position: relative;
  top: 0.1em;
}

a.arrow {
  display: inline-block;
  position: relative;
  padding-left: 1.8em;
  text-decoration: none;
}

a.arrow::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border: 0px;
  border-top: solid 0.1rem #007CD1;
  border-right: solid 0.1rem #007CD1;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0.6em;
}

a.arrow:visited::before {
  border-top: solid 0.1rem #35318F;
  border-right: solid 0.1rem #35318F;
}

a.arrow::after {
  content: "";
  width: 1.2em;
  height: 0.1rem;
  background: #007CD1;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}

a.arrow:visited::after {
  background: #35318F;
}

/*========== utility.scss ==========*/
.u-radius5 {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

.u-radiusC {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

.transition {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

.clearfix {
  zoom: 1;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.smp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .smp {
    display: block !important;
  }
}

.u-break-keep {
  word-break: keep-all;
}

/*--------------------------------------------------------------
    # _print.scss
--------------------------------------------------------------*/
@media print {
  .l--header {
    opacity: 100;
    position: relative;
    width: 100%;
  }
  .fadein {
    opacity: 1;
    transform: translate(0, 0);
  }
  .keyVisual__pritBlock {
    display: block !important;
  }
  .keyVisual__pritBlock img {
    width: 100%;
  }
  .keyVisual {
    height: auto !important;
  }
  .h--productsBox__thum {
    width: 640px;
    height: 480px;
    position: absolute;
    overflow: hidden;
    right: 0;
    top: -60px;
  }
  .h--productsBox__thum img {
    width: 100%;
    transition: none !important;
  }
  .h--productsBox__thumCover {
    width: 640px;
    height: 480px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: none;
    z-index: 10;
    transition: none !important;
  }
  .h--productsBox__title {
    position: absolute;
    margin: 0;
    padding: 0;
    text-align: center;
    top: 200px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    color: #FFF;
    line-height: 1;
  }
  .h--productsBox__titleEn {
    font-family: "Roboto", sans-serif;
    display: block;
    font-size: 3.2rem;
    margin: 0 0 10px;
  }
  .h--productsBox__titleJp {
    font-size: 1.8rem;
  }
}
/*追加コンテンツ*/
.logo_all {
  border: 4px solid #003477;
  border-radius: 5px;
  width: 100%;
  margin: 80px auto 40px;
  position: relative;
}

.logo_kddi {
  color: #006dd9;
  position: absolute;
  top: -50px;
  left: 34%;
}

.pbox {
  display: flex;
  justify-content: space-around;
  padding: 5px;
  width: 700px;
  margin: 100px auto 20px;
}

@media screen and (max-width: 767px) {
  .logo_all {
    border: 3px solid #003477;
    border-radius: 5px;
    width: 100%;
    margin: 13vw auto 5vw;
    position: relative;
    height: auto;
  }
  .logo_kddi {
    position: absolute;
    top: -20px;
    left: 34%;
  }
  .logo_kddi img {
    width: calc(100vw / (375 / 100));
  }
  .pbox {
    display: flex;
    width: 75%;
    justify-content: space-around;
    padding: 5px;
    margin: 9vw auto 6vw;
  }
  .pbox .boxA img {
    width: calc(100vw / (375 / 80));
  }
  .pbox .boxB img {
    width: calc(100vw / (375 / 150));
  }
}
/*  2023/6/1 満足度、お客様の声掲載位置変更
--------------------------------------------------------------*/
.uservoice--header {
  margin-top: -2rem;
}

.uservoice--container {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.uservoice--box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 8px;
  border: 3px solid rgba(128, 128, 128, 0.2);
  padding: 30px 20px 30px;
  gap: 1rem;
}

.uservoice--box__icon {
  width: 60%;
  margin-bottom: 1rem;
}

.uservoice--box__address {
  font-size: 1.8rem;
}

.uservoice--box__comment {
  font-size: 2.2rem;
  font-weight: 700;
}

.uservoice--box__comment span {
  display: block;
  white-space: nowrap;
}

.uservoice--caution {
  margin-bottom: 30px;
}

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

@media screen and (max-width: 767px) {
  .uservoice--header {
    margin-top: -3rem;
  }
  .uservoice--container {
    flex-direction: column;
    gap: 1rem;
  }
  .uservoice--box {
    flex-direction: row;
    justify-content: flex-start;
    padding: 1rem 0 1rem 3rem;
    gap: 3rem;
  }
  .uservoice--box__spwrap {
    flex-basis: 25%;
  }
  .uservoice--box__icon {
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 0;
  }
  .uservoice--box__address {
    font-size: calc(100vw / (375 / 14));
  }
  .uservoice--box__comment {
    font-size: calc(100vw / (375 / 16));
    text-align: left;
  }
  .uservoice--box__comment span.sp-nobr {
    display: inline;
  }
  .uservoice--caution {
    margin-bottom: calc(calc(100 / 375) * 15 * 1vw);
  }
  .uservoice--caution__text {
    text-align: left;
  }
}
/*  2023/6/15 フッターに概要追加
--------------------------------------------------------------*/
.footer__01 {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.3rem;
  padding: 32px 0 0;
}

.footer__01-container {
  max-width: 100%;
  margin: 0 auto;
}

.footer__01-container ul {
  column-count: 4;
}

.footer__01-container li {
  list-style: none;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .footer__01 {
    width: 100%;
    font-size: calc(100vw / (375 / 12));
    padding: 2.4rem 0 0;
  }
  .footer__01-container ul {
    column-count: 1;
  }
}/*# sourceMappingURL=style_01-0625.css.map */