@charset "UTF-8";
/* reset
============================================================================= */
/* http://meyerweb.com/eric/tools/css/reset/
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;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

input::-webkit-input-placeholder,
input:-ms-input-placeholder,
input::-moz-placeholder {
  color: #666;
  font-weight: normal;
}

/* base
============================================================================= */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, 游ゴシック体, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Noto Sans JP", sans-serif;
  font-style: normal;
  font-display: swap;
}

body {
  position: relative;
  color: #111;
  font-size: 1.3rem;
  font-weight: 600;
  font-feature-settings: "palt";
  letter-spacing: 1px;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body {
    letter-spacing: 0.8px;
  }
}

a {
  text-decoration: none;
}
@media (any-hover: hover) {
  a {
    transition: all 0.3s;
    backface-visibility: hidden;
  }
  a:hover {
    opacity: 0.8;
    backface-visibility: hidden;
  }
  a:hover {
    opacity: 0.8;
  }
}
@media (pointer: fine) {
  a:where([href^="tel:"]) {
    pointer-events: none;
    cursor: default;
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

/* ヘッダー
============================================================================= */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 64px;
  background-color: #e2261a;
  text-align: center;
}
.l-header .header {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  max-width: 1080px;
  height: 100%;
  margin: auto;
}
.l-header .headerLogo img {
  width: auto;
  height: 39px;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 50px;
  }
  .l-header .header {
    padding: 0 15px;
  }
  .l-header .headerLogo img {
    height: 27px;
  }
  .l-header .headerNav .el_hamburger {
    display: block;
    position: fixed;
    top: 17px;
    right: 0;
    width: 60px;
    height: 16px;
    cursor: pointer;
    transition: all 0.3s;
  }
  .l-header .headerNav .el_hamburger span {
    display: block;
    position: absolute;
    left: 2px;
    right: 0;
    width: 20px;
    height: 2px;
    margin: auto;
    background-color: #fff;
    transition: all 0.3s;
  }
  .l-header .headerNav .el_hamburger span:nth-of-type(1) {
    top: 0;
  }
  .l-header .headerNav .el_hamburger span:nth-of-type(2) {
    top: 7px;
  }
  .l-header .headerNav .el_hamburger span:nth-of-type(3) {
    bottom: 0;
  }
  .l-header .headerNav .el_hamburger.close span:nth-of-type(1) {
    transform: translateY(7px) rotate(-315deg);
  }
  .l-header .headerNav .el_hamburger.close span:nth-of-type(2) {
    opacity: 0;
  }
  .l-header .headerNav .el_hamburger.close span:nth-of-type(3) {
    transform: translateY(-7px) rotate(315deg);
  }
  .l-header .headerNav_list {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    padding: 24px 16px;
    background-color: rgba(255, 255, 255, 0.95);
    text-align: center;
  }
  .l-header .headerNav_list li {
    position: relative;
    text-align: left;
    font-size: 1.5rem;
  }
  .l-header .headerNav_list li a {
    display: block;
    position: relative;
    width: 100%;
    padding: 1vw;
    color: #111;
  }
  .l-header .headerNav_list li a::after {
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
    width: 1em;
    height: 1em;
    margin: auto;
    font-family: "Material Icons Round";
    content: "\e5e1";
  }
  .l-header .headerNav_list li:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  }
  .l-header .headerNav_list li a {
    padding: 18px 12px 15px;
  }
}

/* フッター
============================================================================= */
.l-footer {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding-top: 50px;
}
.l-footer .footer {
  width: 100%;
  max-width: 1080px;
}
.l-footer .footerTitle {
  margin-bottom: 20px;
  color: #fff;
  font-size: 2.4rem;
  text-align: left;
}
.l-footer .footerInfo {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 50px;
}
.l-footer .footerInfo_item {
  text-align: left;
}
.l-footer .footerInfo_item dt {
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.5;
}
.l-footer .footerInfo_item dd p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
}
.l-footer .footerInfo_item dd p:not(.el_box) {
  margin-bottom: 16px;
}
.l-footer .footerInfo_item dd p.el_box {
  width: 100%;
  padding: 16px 20px 15px;
  color: #111;
}
.l-footer .footerCopy {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 30px 0;
  background-color: #102732;
  text-align: center;
}
.l-footer .footerCopy::before {
  display: block;
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background-color: #102732;
  content: "";
}
.l-footer .footerCopy p {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 400;
}
.l-footer.is-hasMenu .footerCopy {
  padding-bottom: 150px;
}
@media screen and (min-width: 768px) {
  .l-footer .footerInfo_item {
    width: calc((100% - 60px) / 2);
  }
  .l-footer .footerInfo_item:first-of-type {
    margin-right: 60px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 32px 16px 0;
  }
  .l-footer .footerTitle {
    font-size: 2rem;
  }
  .l-footer .footerInfo {
    margin-bottom: 24px;
  }
  .l-footer .footerInfo_item {
    width: 100%;
  }
  .l-footer .footerInfo_item dt {
    font-size: 1.6rem;
  }
  .l-footer .footerInfo_item dd p {
    font-size: 1.3rem;
  }
  .l-footer .footerInfo_item dd p:not(.el_box) {
    margin-bottom: 12px;
  }
  .l-footer .footerInfo_item dd p .el_box {
    padding: 12px 16px 11px;
    font-size: 1.2rem;
  }
  .l-footer .footerInfo_item:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .l-footer .footerCopy {
    padding: 24px 10px;
  }
  .l-footer .footerCopy p {
    font-size: 1.2rem;
  }
  .l-footer.is-hasMenu .footerCopy {
    padding-bottom: 100px;
  }
}

/* tcomtnc color */
#tcomContainer + .libmoFooter .l-footer {
  background-color: #2b7ebf;
}
#tcomContainer + .libmoFooter .l-footer .footerInfo_item dd p.el_box {
  background-color: #d7e8f2;
}

#tncContainer + .libmoFooter .l-footer {
  background-color: #eb6c00;
}
#tncContainer + .libmoFooter .l-footer .footerInfo_item dd p.el_box {
  background-color: #ffe4d1;
}

/* フッター下部固定 */
.footerFloatingMenu {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  background-color: rgba(24, 44, 75, 0.8);
  box-shadow: -2px 0 6px #bbb;
  text-align: center;
}
.footerFloatingMenu ul {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 0;
}
.footerFloatingMenu ul li {
  position: relative;
  width: calc((100% - 20px) / 3);
  font-size: 1.65rem;
  line-height: 1.2;
}
.footerFloatingMenu ul li:not(:last-of-type) {
  margin-right: 10px;
}
.footerFloatingMenu ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 15px 15px 13px;
  border-radius: 5px;
  line-height: 1.4;
}
.footerFloatingMenu ul li a.document {
  color: #2b7ebf;
}
.footerFloatingMenu ul li a.document02 {
  background-color: #ffd558;
  color: #102732;
}
.footerFloatingMenu ul li a.document03 {
  background-color: #2b7ebf;
  color: #fff;
}
.footerFloatingMenu ul li a.apply {
  color: #e2261a;
}
.footerFloatingMenu ul li a.apply02 {
  background-color: #e2261a;
  color: #fff;
}
.footerFloatingMenu .el_img {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: absolute;
  top: -12px;
  right: -10px;
  width: 70px;
  height: auto;
}
.footerFloatingMenu .el_img img {
  width: 63px;
  height: 87.3px;
}
.footerFloatingMenu {
  /* 202307追記 ポイント施策 */
}
.footerFloatingMenu .el_balloon {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: absolute;
  top: -30px;
  left: -20px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #fff;
}
.footerFloatingMenu .el_balloon p {
  display: inline-block;
  margin-bottom: 4px;
  color: #e2261a;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: -0.5px;
}
.footerFloatingMenu .el_balloon p strong {
  display: block;
  font-size: 1.6em;
  line-height: 1.15;
}
@media screen and (min-width: 767px) and (max-width: 1080px) {
  .footerFloatingMenu ul li {
    font-size: 1.2vw;
  }
  .footerFloatingMenu ul li a {
    padding: 4.5% 2% 4%;
  }
}
@media screen and (max-width: 767px) {
  .footerFloatingMenu ul {
    padding: 10px 0;
  }
  .footerFloatingMenu ul li {
    width: 30%;
    font-size: 1.4rem;
  }
  .footerFloatingMenu ul li a {
    padding: 12% 2% 11%;
  }
  .footerFloatingMenu .el_balloon {
    top: -38px;
    left: 0px;
    z-index: 1;
    width: 180px;
    height: auto;
    padding: 5px 8px 6px;
    border-radius: 10px;
    background-color: #ffe1e1;
  }
  .footerFloatingMenu .el_balloon::before, .footerFloatingMenu .el_balloon::after {
    position: absolute;
    top: 100%;
    z-index: 1;
    height: 0;
    width: 0;
    margin-left: -4px;
    border: solid transparent;
    border-color: rgba(255, 225, 225, 0);
    border-top-color: #ffe1e1;
    border-width: 8px 4px;
    content: "";
  }
  .footerFloatingMenu .el_balloon::before {
    left: 20%;
  }
  .footerFloatingMenu .el_balloon::after {
    right: 20%;
  }
  .footerFloatingMenu .el_balloon p {
    margin-bottom: 0;
    font-size: 1.2rem;
  }
  .footerFloatingMenu .el_balloon p strong {
    display: inline-block;
    font-size: 1.3em;
  }
}

/* 共通
============================================================================= */
/* 共通cv */
.cvSec {
  margin-bottom: 48px;
  padding: 50px 0 56px;
  background: url("/libmo/assets/img/bg_cv.png") repeat left top;
  text-align: center;
}
.cvSec_title {
  margin-bottom: 24px;
  color: #fff;
  font-size: 5.2rem;
}
.cvSec_title img {
  display: inline-block;
  position: relative;
  top: 3px;
  height: 56px;
  margin-right: 5px;
}
.cvCont:not(.is-min) {
  max-width: 1080px;
  margin: auto;
  border-radius: 10px;
  background-color: #fff;
  padding: 40px;
}
.cvCont:not(.is-min):has(.cvCont_col2) {
  padding: 32px;
}
.cvCont:not(.is-min) a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  border-radius: 10px;
}
.cvCont:not(.is-min) a::before {
  display: inline-block;
  position: relative;
  content: "";
}
.cvCont:not(.is-min) a::after {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 1em;
  margin: auto;
  font-family: "Material Icons";
  transform: rotate(-90deg);
  content: "\e7cd";
}
.cvCont:not(.is-min) .cvCont_col {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cvCont:not(.is-min) .cvCont_col a {
  width: calc((100% - 24px) / 2);
  max-width: 400px;
  height: 80px;
  padding: 0 15px;
  border: 4px solid #e2261a;
  background-color: #fff;
  color: #e2261a;
  font-size: 2rem;
}
.cvCont:not(.is-min) .cvCont_col a::before {
  width: 48px;
  height: 48px;
  margin-right: 10px;
}
.cvCont:not(.is-min) .cvCont_col a::after {
  right: 0.5em;
  font-size: 1.4em;
}
.cvCont:not(.is-min) .cvCont_col a.el_requestBtn {
  margin-right: 24px;
}
.cvCont:not(.is-min) .cvCont_col a.el_requestBtn::before {
  background: url("/libmo/assets/img/icn_document.png") no-repeat left top/contain;
}
.cvCont:not(.is-min) .cvCont_col a.el_callbackBtn::before {
  background: url("/libmo/assets/img/icn_tel.png") no-repeat left top/contain;
}
.cvCont:not(.is-min) .cvCont_col2_catch {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 10px;
}
.cvCont:not(.is-min) .cvCont_col2_catch img {
  height: 75px;
  margin-right: 8px;
}
.cvCont:not(.is-min) .cvCont_col2_catch span {
  font-size: 2.6rem;
}
.cvCont:not(.is-min) .cvCont_col2_list {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin-bottom: 28px;
}
.cvCont:not(.is-min) .cvCont_col2_list li {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
  width: calc((100% - 24px) / 3);
  max-width: 400px;
  border-radius: 10px;
  border: 3px solid #ba0613;
  background-color: #fff;
  font-size: 2rem;
}
.cvCont:not(.is-min) .cvCont_col2_list li a {
  display: -webkit-box;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  flex-direction: column;
  -webkit-box-pack: start;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  color: unset;
}
.cvCont:not(.is-min) .cvCont_col2_list li a::after {
  display: none;
}
.cvCont:not(.is-min) .cvCont_col2_list li a dl {
  display: -webkit-box;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.cvCont:not(.is-min) .cvCont_col2_list li a dl dt {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  height: calc(100% - 90px);
  padding: 16px 16px 12px;
  color: #2b7ebf;
  font-size: 1.7rem;
  line-height: 1.35;
}
.cvCont:not(.is-min) .cvCont_col2_list li a dl dd {
  display: -webkit-box;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: relative;
  height: 90px;
  margin-top: auto;
  padding: 16px 16px 11px;
  background-color: #2b7ebf;
  color: #ffeb63;
  font-size: 1.9rem;
  line-height: 1.35;
}
.cvCont:not(.is-min) .cvCont_col2_list li a dl dd strong {
  color: #fff;
  font-size: 1.1em;
}
.cvCont:not(.is-min) .cvCont_col2_list li a dl dd i {
  position: relative;
  bottom: 1px;
  margin-right: 5px;
  font-size: 1.2em;
  vertical-align: sub;
}
.cvCont:not(.is-min) .cvCont_col2_list li a dl dd::after {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.1em;
  width: 1em;
  height: 1em;
  margin: auto;
  color: #fff;
  font-family: "Material Icons";
  font-size: 2.5rem;
  line-height: 1;
  content: "\e5cc";
}
.cvCont:not(.is-min) .cvCont_col2_list li a.el_callbackBtn dl dt {
  color: #333;
}
.cvCont:not(.is-min) .cvCont_col2_list li a.el_callbackBtn dl dd {
  background-color: #f1be34;
  color: #ba0613;
}
.cvCont:not(.is-min) .cvCont_col2_list li a.el_callbackBtn dl dd strong {
  color: #333;
}
.cvCont:not(.is-min) .cvCont_col2_list li:has(a.el_requestBtn) {
  border-color: #2b7ebf;
}
.cvCont:not(.is-min) .cvCont_col2_list li:has(a.el_callbackBtn) {
  border-color: #f1be34;
}
.cvCont:not(.is-min) .el_applyBtn {
  -webkit-box-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 824px;
  height: 90px;
  margin: auto;
  background-color: #e2261a;
  color: #fff;
  font-size: 3rem;
  line-height: 90px;
}
.cvCont:not(.is-min) .el_applyBtn::before {
  width: 52px;
  height: 52px;
  margin-right: 15px;
  background: url("/libmo/assets/img/icn_apply.png") no-repeat left top/contain;
}
.cvCont:not(.is-min) .el_applyBtn::after {
  right: 1.5em;
  font-size: 1em;
}
.cvCont:not(.is-min) .el_applyBtn img {
  position: relative;
  bottom: 3px;
  height: 40px;
  margin-right: 4px;
  vertical-align: middle;
}
.cvCont:not(.is-min) .el_applyBtn span {
  margin-top: 4px;
}
.cvCont.is-min {
  max-width: 1000px;
  margin: 0 auto 64px;
}
.cvCont.is-min .cvCont_col {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cvCont.is-min .cvCont_col a {
  display: inline-block;
  position: relative;
  width: calc((100% - 24px) / 2);
  max-width: 400px;
  height: 56px;
  border-radius: 8px;
  border: 2px solid;
  background-color: #fff;
  font-size: 2.2rem;
  line-height: 52px;
}
.cvCont.is-min .cvCont_col a:first-of-type {
  margin-right: 24px;
}
.cvCont.is-min > a {
  display: block;
  position: relative;
  width: 100%;
  max-width: 824px;
  height: 70px;
  margin: auto;
  border-radius: 8px;
  background-color: #e2261a;
  color: #fff;
  font-size: 2.5rem;
  line-height: 73px;
}
.cvCont.is-min.tcomCtaMin .cvCont_col a, .cvCont.is-min.tcomCtaMin_countdown .cvCont_col a, .cvCont.is-min.tcomCtaMin_default .cvCont_col a {
  border-color: #2b7ebf;
  color: #2b7ebf;
}
.cvCont.is-min.tcomCtaMin .cvCont_col a::after, .cvCont.is-min.tcomCtaMin_countdown .cvCont_col a::after, .cvCont.is-min.tcomCtaMin_default .cvCont_col a::after {
  color: #2b7ebf;
}
.cvCont.is-min.tncCtaMin .cvCont_col a, .cvCont.is-min.tncCtaMin_countdown .cvCont_col a, .cvCont.is-min.tncCtaMin_default .cvCont_col a {
  border-color: #eb6c00;
  color: #eb6c00;
}
.cvCont.is-min.tncCtaMin .cvCont_col a::after, .cvCont.is-min.tncCtaMin_countdown .cvCont_col a::after, .cvCont.is-min.tncCtaMin_default .cvCont_col a::after {
  color: #eb6c00;
}
.cvCont {
  /* 202307追記 ポイント施策 */
}
.cvCont .cvCont_catch {
  display: inline-block;
  position: relative;
  margin-bottom: 24px;
}
.cvCont .cvCont_catch::before, .cvCont .cvCont_catch::after {
  display: inline-block;
  position: absolute;
  bottom: 0;
  width: 3px;
  height: 40px;
  border-radius: 1.5px;
  background-color: #e2261a;
  content: "";
}
.cvCont .cvCont_catch::before {
  left: -43px;
  transform: rotate(-32deg);
}
.cvCont .cvCont_catch::after {
  right: -43px;
  transform: rotate(32deg);
}
.cvCont .cvCont_catch p {
  display: inline-block;
  position: relative;
  font-size: 2.1rem;
  line-height: 1.5;
}
.cvCont .cvCont_catch p::before, .cvCont .cvCont_catch p::after {
  display: inline-block;
  position: absolute;
  bottom: 0;
  width: 3px;
  height: 50px;
  border-radius: 1.5px;
  background-color: #e2261a;
  content: "";
}
.cvCont .cvCont_catch p::before {
  left: -30px;
  transform: rotate(-20deg);
}
.cvCont .cvCont_catch p::after {
  right: -30px;
  transform: rotate(20deg);
}
.cvCont .cvCont_catch p strong {
  color: #e2261a;
  font-size: 1.2em;
}
.cvCont .cvCont_catch p .is-fntXS {
  font-size: 0.7em !important;
  font-weight: 500;
}
.cvCont .cvCont_catch p .is-fntL {
  position: relative;
  bottom: -2px;
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-display: swap;
  font-size: 1.8em !important;
  line-height: 0.7;
}
.cvCont .cvCont_catch p img {
  margin: 0 3px;
}
.cvCont .cvCont_catch p img.el_tcom {
  height: 21px;
  vertical-align: text-bottom;
}
.cvCont .cvCont_catch p img.el_tnc {
  height: 30px;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .cvSec {
    margin-bottom: 32px;
    padding: 38px 15px 40px;
  }
  .cvSec_title {
    margin-bottom: 20px;
    font-size: 2.8rem;
  }
  .cvSec_title img {
    height: 30px;
  }
  .cvCont:not(.is-min) {
    padding: 24px 16px;
  }
  .cvCont:not(.is-min):has(.cvCont_col2) {
    padding: 20px 16px;
  }
  .cvCont:not(.is-min) .cvCont_col {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  .cvCont:not(.is-min) .cvCont_col a {
    width: 100%;
    height: 50px;
    border-width: 2px;
    font-size: 1.7rem;
  }
  .cvCont:not(.is-min) .cvCont_col a::before {
    width: 32px;
    height: 32px;
  }
  .cvCont:not(.is-min) .cvCont_col a::after {
    font-size: 1.3em;
  }
  .cvCont:not(.is-min) .cvCont_col a.el_requestBtn {
    margin-right: unset;
    margin-bottom: 15px;
  }
  .cvCont:not(.is-min) .cvCont_col2_catch img {
    height: 65px;
  }
  .cvCont:not(.is-min) .cvCont_col2_catch span {
    font-size: 1.9rem;
    text-align: left;
    line-height: 1.3;
  }
  .cvCont:not(.is-min) .cvCont_col2_list {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
    margin-bottom: 12px;
  }
  .cvCont:not(.is-min) .cvCont_col2_list li {
    width: 100%;
    margin-bottom: 10px;
  }
  .cvCont:not(.is-min) .cvCont_col2_list li a dl dt {
    height: auto;
    padding: 14px 15px 10px;
    font-size: 1.5rem;
  }
  .cvCont:not(.is-min) .cvCont_col2_list li a dl dd {
    height: auto;
    padding: 14px 15px 10px;
    font-size: 1.6rem;
  }
  .cvCont:not(.is-min) .el_applyBtn {
    height: 60px;
    font-size: 1.9rem;
    line-height: 60px;
  }
  .cvCont:not(.is-min) .el_applyBtn::before {
    width: 36px;
    height: 36px;
    margin-right: 10px;
  }
  .cvCont:not(.is-min) .el_applyBtn::after {
    right: 1.85em;
  }
  .cvCont:not(.is-min) .el_applyBtn img {
    height: 25px;
  }
  .cvCont.is-min {
    margin-bottom: 32px;
  }
  .cvCont.is-min .cvCont_col {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }
  .cvCont.is-min .cvCont_col a {
    width: 100%;
    height: 48px;
    font-size: 1.7rem;
    line-height: 46px;
  }
  .cvCont.is-min .cvCont_col a:first-of-type {
    margin-right: unset;
    margin-bottom: 12px;
  }
  .cvCont.is-min > a {
    height: 56px;
    font-size: 1.7rem;
    line-height: 60px;
  }
  .cvCont {
    /* 202307追記 ポイント施策 */
  }
  .cvCont .cvCont_catch {
    margin-bottom: 10px;
  }
  .cvCont .cvCont_catch::before, .cvCont .cvCont_catch::after {
    bottom: 8px;
    height: 32px;
  }
  .cvCont .cvCont_catch::before {
    left: -24px;
  }
  .cvCont .cvCont_catch::after {
    right: -24px;
  }
  .cvCont .cvCont_catch p {
    font-size: 1.5rem;
  }
  .cvCont .cvCont_catch p::before, .cvCont .cvCont_catch p::after {
    bottom: 8px;
    height: 45px;
  }
  .cvCont .cvCont_catch p::before {
    left: -15px;
  }
  .cvCont .cvCont_catch p::after {
    right: -15px;
  }
  .cvCont .cvCont_catch p strong {
    display: block;
    margin: 3px auto 2px;
    font-size: 1.3em;
    line-height: 1.15;
  }
  .cvCont .cvCont_catch p .is-fntL {
    bottom: -1px;
    font-size: 1.6em !important;
  }
  .cvCont .cvCont_catch p img.el_tcom {
    height: 16px;
  }
  .cvCont .cvCont_catch p img.el_tnc {
    height: 24px;
    vertical-align: bottom;
  }
}

/* 料金
============================================================================= */
/* 料金表 */
.priceWrap_tab {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
}
.priceWrap_tab li {
  display: inline-block;
  width: calc((100% - 12px) / 2);
  height: 72px;
  border-radius: 8px 8px 0 0;
  background-color: #ddd;
  color: #999;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 78px;
  cursor: pointer;
}
.priceWrap_tab li i {
  position: relative;
  bottom: 1px;
  margin-right: 6px;
  color: #999;
  font-size: 1.3em;
  vertical-align: middle;
}
.priceWrap_tab li.is-current {
  background-color: #182c4b;
  color: #fff;
}
.priceWrap_tab li.is-current i {
  color: #fff;
}
.priceWrap_cont_flex {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  overflow-y: hidden;
}
.priceWrap_cont_flex + .cmn-notes {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .priceWrap_tab li {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    width: calc((100% - 8px) / 2);
    height: auto;
    padding: 11px 10px 6px;
    font-size: 1.35rem;
    line-height: 1.3;
  }
  .priceWrap_tab li i {
    display: inline-block;
    margin: 0;
  }
}

/* 料金表 */
.planTable {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  border: 3px solid #182c4b;
}
.planTable th, .planTable td {
  padding: 15px 12px 12px;
  border: 2px solid #182c4b;
  background-color: #fff;
  color: #182c4b;
  font-size: 1.5rem;
  text-align: center;
  vertical-align: middle;
  line-height: 1.3;
}
.planTable thead th {
  background-color: #dcdfe4;
  font-size: 2rem;
}
.priceWrap_cont_flex .planTable thead th {
  font-size: 1.6rem;
}
.planTable thead th img {
  margin: auto;
  vertical-align: sub;
}
.planTable thead th img.is-tcom {
  height: 17px;
}
.planTable thead th img.is-tnc {
  height: 25px;
}
.planTable thead th img:not(.is-tcom):not(.is-tnc):not(.is-setwari) {
  height: 24px;
}
.planTable thead th img.is-setwari {
  height: 45px;
}
.planTable thead th i {
  margin-right: 5px;
  font-size: 1.3em;
  vertical-align: sub;
}
.planTable tbody th {
  background-color: #dcdfe4;
}
.planTable tbody td {
  color: #111;
}
.planTable tbody td strong {
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-display: swap;
}
.planTable tbody td strong:not(.is-fntS strong):not(.el_box strong) {
  font-size: 1.7em;
}
.priceWrap_cont_flex .planTable tbody td {
  height: 72.5px;
}
.planTable .is-bgRd {
  background-color: #ffe1e1;
  color: #e2261a;
}
.planTable .is-bgBu {
  background-color: #e3f9fd;
  color: #0071bc;
}
.planTable .is-bgYe {
  background-color: #f8f6b9;
}
.planTable .el_box {
  margin-bottom: 3px;
  padding: 10px 12px 7px;
  border-radius: 5px;
  background-color: #fff;
  color: #e2261a;
}
.planTable .el_box strong {
  font-size: 1.3em;
  line-height: 1;
}
.priceWrap_cont_flex .planTable .el_box strong {
  font-size: 1em;
}
.planTable.is-nattokuPlan thead th.el_campaign, .planTable.is-nattokuPlan thead th.el_setwari {
  position: relative;
}
.planTable.is-nattokuPlan thead th.el_campaign::before, .planTable.is-nattokuPlan thead th.el_setwari::before {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: -48px;
  width: 60px;
  height: 60px;
  background-size: contain;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0;
}
.planTable.is-nattokuPlan thead th.el_campaign::before {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20150%20150%22%20style%3D%22enable-background%3Anew%200%200%20150%20150%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23E2261A%3B%7D%3C%2Fstyle%3E%3Cg%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M66.9%2C4c1.9-2.5%2C4.9-4%2C8.1-4c3.2%2C0%2C6.2%2C1.5%2C8.1%2C4l-0.7-0.9c3.1%2C4.1%2C8.8%2C5.2%2C13.2%2C2.6l-1%2C0.6%20c2.8-1.6%2C6.1-1.8%2C9-0.6c2.9%2C1.2%2C5.1%2C3.7%2C6%2C6.8l-0.3-1.1c1.3%2C4.9%2C6.1%2C8.1%2C11.2%2C7.5l-1.1%2C0.1c3.2-0.4%2C6.3%2C0.7%2C8.6%2C2.9%20c2.2%2C2.2%2C3.3%2C5.4%2C2.9%2C8.6l0.1-1.1c-0.6%2C5.1%2C2.5%2C9.9%2C7.5%2C11.2l-1.1-0.3c3.1%2C0.8%2C5.6%2C3%2C6.8%2C6c1.2%2C2.9%2C1%2C6.3-0.6%2C9l0.6-1%20c-2.5%2C4.4-1.4%2C10.1%2C2.6%2C13.2l-0.9-0.7c2.5%2C1.9%2C4%2C4.9%2C4%2C8.1c0%2C3.2-1.5%2C6.2-4%2C8.1l0.9-0.7c-4.1%2C3.1-5.2%2C8.8-2.6%2C13.2l-0.6-1%20c1.6%2C2.8%2C1.8%2C6.1%2C0.6%2C9c-1.2%2C2.9-3.7%2C5.1-6.8%2C6l1.1-0.3c-4.9%2C1.3-8.1%2C6.1-7.5%2C11.2l-0.1-1.1c0.4%2C3.2-0.7%2C6.3-2.9%2C8.6%20c-2.2%2C2.2-5.4%2C3.3-8.6%2C2.9l1.1%2C0.1c-5.1-0.6-9.9%2C2.5-11.2%2C7.5l0.3-1.1c-0.8%2C3.1-3%2C5.6-6%2C6.8c-2.9%2C1.2-6.3%2C1-9-0.6l1%2C0.6%20c-4.4-2.5-10.1-1.4-13.2%2C2.6l0.7-0.9c-1.9%2C2.5-4.9%2C4-8.1%2C4c-3.2%2C0-6.2-1.5-8.1-4l0.7%2C0.9c-3.1-4.1-8.8-5.2-13.2-2.6l1-0.6%20c-2.8%2C1.6-6.1%2C1.8-9%2C0.6c-2.9-1.2-5.1-3.7-6-6.8l0.3%2C1.1c-1.3-4.9-6.1-8.1-11.2-7.5l1.1-0.1c-3.2%2C0.4-6.3-0.7-8.6-2.9%20c-2.2-2.2-3.3-5.4-2.9-8.6l-0.1%2C1.1c0.6-5.1-2.5-9.9-7.5-11.2l1.1%2C0.3c-3.1-0.8-5.6-3-6.8-6c-1.2-2.9-1-6.3%2C0.6-9l-0.6%2C1%20c2.5-4.4%2C1.4-10.1-2.6-13.2L4%2C83.1c-2.5-1.9-4-4.9-4-8.1c0-3.2%2C1.5-6.2%2C4-8.1l-0.9%2C0.7c4-3.1%2C5.2-8.8%2C2.6-13.2l0.6%2C1%20c-1.6-2.8-1.8-6.1-0.6-9c1.2-2.9%2C3.7-5.1%2C6.8-6l-1.1%2C0.3c4.9-1.3%2C8.1-6.1%2C7.5-11.2l0.1%2C1.1c-0.4-3.2%2C0.7-6.3%2C2.9-8.6%20c2.2-2.2%2C5.4-3.3%2C8.6-2.9l-1.1-0.1c5.1%2C0.6%2C9.9-2.5%2C11.2-7.5l-0.3%2C1.1c0.8-3.1%2C3-5.6%2C6-6.8c2.9-1.2%2C6.3-1%2C9%2C0.6l-1-0.6%20c4.4%2C2.5%2C10.1%2C1.4%2C13.2-2.6L66.9%2C4z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  line-height: 60px;
  content: "さらに";
}
.planTable.is-nattokuPlan thead th.el_setwari::before {
  display: none;
  padding-top: 1.5px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20150%20150%22%20style%3D%22enable-background%3Anew%200%200%20150%20150%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%230074C4%3B%7D%3C%2Fstyle%3E%3Cg%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M66.9%2C4c1.9-2.5%2C4.9-4%2C8.1-4c3.2%2C0%2C6.2%2C1.5%2C8.1%2C4l-0.7-0.9c3.1%2C4.1%2C8.8%2C5.2%2C13.2%2C2.6l-1%2C0.6%20c2.8-1.6%2C6.1-1.8%2C9-0.6c2.9%2C1.2%2C5.1%2C3.7%2C6%2C6.8l-0.3-1.1c1.3%2C4.9%2C6.1%2C8.1%2C11.2%2C7.5l-1.1%2C0.1c3.2-0.4%2C6.3%2C0.7%2C8.6%2C2.9%20c2.2%2C2.2%2C3.3%2C5.4%2C2.9%2C8.6l0.1-1.1c-0.6%2C5.1%2C2.5%2C9.9%2C7.5%2C11.2l-1.1-0.3c3.1%2C0.8%2C5.6%2C3%2C6.8%2C6c1.2%2C2.9%2C1%2C6.3-0.6%2C9l0.6-1%20c-2.5%2C4.4-1.4%2C10.1%2C2.6%2C13.2l-0.9-0.7c2.5%2C1.9%2C4%2C4.9%2C4%2C8.1c0%2C3.2-1.5%2C6.2-4%2C8.1l0.9-0.7c-4.1%2C3.1-5.2%2C8.8-2.6%2C13.2l-0.6-1%20c1.6%2C2.8%2C1.8%2C6.1%2C0.6%2C9c-1.2%2C2.9-3.7%2C5.1-6.8%2C6l1.1-0.3c-4.9%2C1.3-8.1%2C6.1-7.5%2C11.2l-0.1-1.1c0.4%2C3.2-0.7%2C6.3-2.9%2C8.6%20c-2.2%2C2.2-5.4%2C3.3-8.6%2C2.9l1.1%2C0.1c-5.1-0.6-9.9%2C2.5-11.2%2C7.5l0.3-1.1c-0.8%2C3.1-3%2C5.6-6%2C6.8c-2.9%2C1.2-6.3%2C1-9-0.6l1%2C0.6%20c-4.4-2.5-10.1-1.4-13.2%2C2.6l0.7-0.9c-1.9%2C2.5-4.9%2C4-8.1%2C4c-3.2%2C0-6.2-1.5-8.1-4l0.7%2C0.9c-3.1-4.1-8.8-5.2-13.2-2.6l1-0.6%20c-2.8%2C1.6-6.1%2C1.8-9%2C0.6c-2.9-1.2-5.1-3.7-6-6.8l0.3%2C1.1c-1.3-4.9-6.1-8.1-11.2-7.5l1.1-0.1c-3.2%2C0.4-6.3-0.7-8.6-2.9%20c-2.2-2.2-3.3-5.4-2.9-8.6l-0.1%2C1.1c0.6-5.1-2.5-9.9-7.5-11.2l1.1%2C0.3c-3.1-0.8-5.6-3-6.8-6c-1.2-2.9-1-6.3%2C0.6-9l-0.6%2C1%20c2.5-4.4%2C1.4-10.1-2.6-13.2L4%2C83.1c-2.5-1.9-4-4.9-4-8.1c0-3.2%2C1.5-6.2%2C4-8.1l-0.9%2C0.7c4-3.1%2C5.2-8.8%2C2.6-13.2l0.6%2C1%20c-1.6-2.8-1.8-6.1-0.6-9c1.2-2.9%2C3.7-5.1%2C6.8-6l-1.1%2C0.3c4.9-1.3%2C8.1-6.1%2C7.5-11.2l0.1%2C1.1c-0.4-3.2%2C0.7-6.3%2C2.9-8.6%20c2.2-2.2%2C5.4-3.3%2C8.6-2.9l-1.1-0.1c5.1%2C0.6%2C9.9-2.5%2C11.2-7.5l-0.3%2C1.1c0.8-3.1%2C3-5.6%2C6-6.8c2.9-1.2%2C6.3-1%2C9%2C0.6l-1-0.6%20c4.4%2C2.5%2C10.1%2C1.4%2C13.2-2.6L66.9%2C4z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  line-height: 1.2;
  white-space: pre;
  content: "会員様\a限定";
}
.planTable.is-nattokuPlan tbody th {
  font-size: 2.4rem;
}
.planTable.is-nattokuPlan tbody th.el_popularUp, .planTable.is-nattokuPlan tbody th.el_no1 {
  position: relative;
}
.planTable.is-nattokuPlan tbody th.el_popularUp .el_balloon, .planTable.is-nattokuPlan tbody th.el_no1 .el_balloon {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.38rem;
  font-weight: 500;
  line-height: 1.2;
  box-sizing: border-box;
}
.planTable.is-nattokuPlan tbody th.el_popularUp .el_balloon::after, .planTable.is-nattokuPlan tbody th.el_no1 .el_balloon::after {
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: solid transparent;
  border-color: rgba(24, 44, 75, 0);
  border-width: 5px 12px;
  content: "";
}
.planTable.is-nattokuPlan tbody th.el_no1 .el_balloon, .planTable.is-nattokuPlan tbody th.el_popularUp .el_balloon {
  bottom: calc(50% - 70px);
  left: calc(50% - 110px);
  background-color: #c1272d;
  transform: rotate(-20deg);
}
.planTable.is-nattokuPlan tbody th.el_no1 .el_balloon::after, .planTable.is-nattokuPlan tbody th.el_popularUp .el_balloon::after {
  top: 35%;
  left: 96%;
  border-left-color: #c1272d;
  transform: rotate(-15deg);
}
.planTable.is-nattokuPlan tbody th.el_popularUp .el_balloon {
  padding-left: 1px;
  background-color: #182c4b;
}
.planTable.is-nattokuPlan tbody th.el_popularUp .el_balloon::after {
  border-left-color: #182c4b;
}
.planTable.is-nattokuPlan tbody th.el_newArrival {
  position: relative;
}
.planTable.is-nattokuPlan tbody th.el_newArrival .el_balloon {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: absolute;
  top: -18px;
  right: -24px;
  z-index: 1;
  width: 50px;
  height: 50px;
  padding-right: 1px;
  border-radius: 50%;
  background-color: #c1272d;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  box-sizing: border-box;
  transform: rotate(20deg);
}
.planTable.is-nattokuPlan tbody th span.is-fntXS {
  font-size: 0.65em;
}
.planTable.is-nattokuPlan tbody td.is-arrowRd, .planTable.is-nattokuPlan tbody td.is-arrowBu {
  position: relative;
}
.planTable.is-nattokuPlan tbody td.is-arrowRd::after, .planTable.is-nattokuPlan tbody td.is-arrowBu::after {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -28px;
  z-index: 1;
  height: 1em;
  margin: auto;
  font-family: "Material Icons";
  font-size: 4.2rem;
  line-height: 1;
  content: "\e154";
}
.planTable.is-nattokuPlan tbody td.is-arrowRd::after {
  color: #e2261a;
}
.planTable.is-nattokuPlan tbody td.is-arrowBu::after {
  color: #0071bc;
}
.planTable.is-nattokuPlan tbody td .is-fntS {
  font-weight: 400;
}
.planTable.is-nattokuPlan tbody td.el_1rank_3gb, .planTable.is-nattokuPlan tbody td.el_1rank_8gb, .planTable.is-nattokuPlan tbody td.el_1rank_20gb {
  position: relative;
  padding-left: 62px;
}
.planTable.is-nattokuPlan tbody td.el_1rank_3gb::before, .planTable.is-nattokuPlan tbody td.el_1rank_8gb::before, .planTable.is-nattokuPlan tbody td.el_1rank_20gb::before {
  display: inline-block;
  position: absolute;
  left: -10px;
  top: 0;
  bottom: 0;
  min-width: 50px;
  height: fit-content;
  margin: auto;
  padding: 8px 7px 6px;
  border-radius: 5px;
  background-color: #e2261a;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.5px;
  white-space: pre;
}
.planTable.is-nattokuPlan tbody td.el_1rank_3gb::before {
  content: "3GBと\a同額！";
}
.planTable.is-nattokuPlan tbody td.el_1rank_8gb::before {
  content: "8GBと\a同額！";
}
.planTable.is-nattokuPlan tbody td.el_1rank_20gb::before {
  content: "20GBと\a同額！";
}
.planTable.is-nattokuPlan tbody .is-borderRd {
  border: 4px solid #e2261a;
}
.planTable.is-gogoPlan tbody th {
  font-size: 2rem;
}
.planTable.is-main {
  width: 70%;
}
.planTable.is-sub {
  position: relative;
  width: 27%;
  margin-left: 2%;
}
.planTable.is-sub::before {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -0.97em;
  z-index: 1;
  width: 1em;
  height: 1em;
  margin: auto;
  font-family: "Material Icons";
  font-weight: 400;
  color: #182c4b;
  font-size: 3.5rem;
  content: "\e147";
}
.planTable.is-sub::after {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -2.3em;
  z-index: 0;
  width: 28px;
  height: 28px;
  margin: auto;
  border-radius: 50%;
  background-color: #fff;
  content: "";
}
.planTable.is-sub tbody tr:first-of-type td {
  border-top: none;
}
.planTable.is-sub tbody tr:last-of-type td {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .planTable {
    table-layout: fixed;
  }
  .priceWrap_cont_flex .planTable.is-nattokuPlan tbody th {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 767px) {
  .planTable th, .planTable td {
    padding: 12px 15px 10px;
    font-size: 1.5rem;
  }
  .planTable thead th {
    font-size: 1.5rem;
  }
  .planTable thead th img.is-tcom {
    height: 14px;
    margin-bottom: 3px;
  }
  .planTable thead th img.is-tnc {
    height: 24px;
    margin-bottom: 3px;
  }
  .planTable tbody td strong:not(.is-fntS strong) {
    font-size: 1.5em;
  }
  .planTable.is-nattokuPlan thead th.el_campaign::before, .planTable.is-nattokuPlan thead th.el_setwari::before {
    top: 0;
    left: -31px;
    width: 48px;
    height: 48px;
    background-size: contain;
    font-size: 1rem;
  }
  .planTable.is-nattokuPlan tbody th {
    font-size: 1.6rem;
  }
  .planTable.is-nattokuPlan tbody th.el_popularUp .el_balloon, .planTable.is-nattokuPlan tbody th.el_no1 .el_balloon {
    display: none;
    z-index: unset;
    bottom: calc(50% - 30px);
    left: calc(50% - 90px);
    width: 50px;
    height: 50px;
    padding-left: 1px;
    font-size: 1.1rem;
  }
  .planTable.is-nattokuPlan tbody th.el_popularUp .el_balloon::after, .planTable.is-nattokuPlan tbody th.el_no1 .el_balloon::after {
    border-width: 4px 8px;
  }
  .planTable.is-nattokuPlan tbody .is-borderRd {
    border-width: 3px;
  }
  .planTable.is-gogoPlan tbody th {
    font-size: 1.6rem;
  }
  .planTable.is-sub::before {
    left: -0.65em;
  }
  .planTable.is-sub::after {
    left: -1.55em;
  }
  .planTable.is-sub tbody td {
    padding: 11px 15px 10px;
  }
}

/* シミュレーターボタン */
.simulatorBlock {
  margin: 40px auto 48px;
  text-align: center;
}
.simulatorBlock_catch {
  display: block;
  position: relative;
  width: fit-content;
  margin: 0 auto 15px;
  color: #e2261a;
  font-size: 2.5rem;
}
.simulatorBlock_catch::before, .simulatorBlock_catch::after {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  height: 35px;
  margin: auto;
  background-color: #e2261a;
  content: "";
}
.simulatorBlock_catch::before {
  left: -20px;
  transform: rotate(-20deg);
}
.simulatorBlock_catch::after {
  right: -20px;
  transform: rotate(20deg);
}
.simulatorBlock_btn {
  display: block;
  position: relative;
  width: min(100%, 960px);
  margin: auto;
  padding: 30px 10px 26px;
  border: 5px solid #5bbc56;
  border-radius: 10px;
  background-color: #baf8b8;
  color: #111;
}
.simulatorBlock_btn::after {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.3em;
  width: 1em;
  height: 1em;
  margin: auto;
  color: #111;
  font-family: "Material Icons";
  font-size: 3.5rem;
  content: "\e5df";
}
.simulatorBlock_btn p {
  display: inline-block;
  position: relative;
  font-size: 3.5rem;
}
.simulatorBlock_btn p .el_marker {
  padding: 0 10px;
  background: linear-gradient(transparent 55%, #ffd558 55%);
}
.simulatorBlock_btn p img {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -50px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .simulatorBlock {
    margin: 0 auto 30px;
  }
  .simulatorBlock_catch {
    margin-bottom: 10px;
    font-size: 1.9rem;
    line-height: 1.3;
  }
  .simulatorBlock_catch::before, .simulatorBlock_catch::after {
    bottom: -8px;
  }
  .simulatorBlock_btn {
    padding: 18px 10px 17px;
    border-width: 3px;
  }
  .simulatorBlock_btn::after {
    right: 0.15em;
    font-size: 2.8rem;
  }
  .simulatorBlock_btn p {
    font-size: 2.4rem;
    line-height: 1.2;
  }
  .simulatorBlock_btn p .el_marker {
    padding: 0 5px;
  }
  .simulatorBlock_btn p img {
    top: -20px;
    left: -35px;
    right: unset;
    width: 35px;
    height: 35px;
  }
}

/* 端末
============================================================================= */
/* 端末一覧 */
.deviceSale_list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .deviceSale_list {
    max-width: 960px;
    margin: auto;
  }
  .deviceSale_list.is-2col .deviceSale_list_item {
    width: 48%;
  }
  .deviceSale_list.is-2col:has(.deviceSale_list_item:nth-of-type(7)) .deviceSale_list_item {
    width: 49%;
    padding-left: 16px;
    padding-right: 16px;
  }
  .deviceSale_list.is-3col .deviceSale_list_item {
    width: 32%;
  }
}
@media screen and (max-width: 767px) {
  .deviceSale_list {
    margin-bottom: 0;
  }
  .deviceSale_list .deviceSale_list_item {
    width: 100%;
  }
}

/* 端末詳細 */
.deviceSale_list_item {
  display: inline-block;
  position: relative;
  margin-bottom: 40px;
  padding: 42px 20px 20px;
  border: 1px solid #333;
}
.deviceSale_list_item::before {
  display: block;
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  width: fit-content;
  margin: auto;
  padding: 11px 20px 10px;
  border-radius: 3px;
  background-color: #ffeb63;
  color: #ba0613;
  font-size: 1.8rem;
  content: "＼20,000円割引／";
}
.deviceSale_list_item::after {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -5px;
  border-style: solid;
  border-width: 12px 10px 0 10px;
  border-color: #ffeb63 transparent transparent transparent;
  content: "";
}
.deviceSale_list_item#aquos_sense10::before {
  content: "＼実質15,000円割引／";
}
.deviceSale_list_item .el_point {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  justify-content: center;
  margin-bottom: 15px;
}
.deviceSale_list_item .el_point p {
  display: inline-block;
  padding: 8px 15px 5px;
  border-radius: 8px;
  background-color: #6a6a6a;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.1;
}
.deviceSale_list_item .el_point p:not(:last-child) {
  margin-right: 8px;
}
.deviceSale_list_item .el_title {
  position: relative;
  width: fit-content;
  margin: 0 auto 24px;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.deviceSale_list_item .el_title.is-new::before {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: absolute;
  top: -10px;
  left: -60px;
  width: 50px;
  height: 50px;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2269px%22%20height%3D%2269px%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20fill%3D%22rgb(226%2C%2038%2C%2026)%22%20d%3D%22M63.189%2C27.835%20L67.0%2C23.499%20L61.339%2C22.368%20L64.230%2C17.371%20L58.456%2C17.364%20L60.317%2C11.899%20L54.653%2C13.19%20L55.412%2C7.297%20L50.76%2C9.500%20L49.704%2C3.740%20L44.899%2C6.942%20L43.411%2C1.365%20L39.323%2C5.443%20L36.775%2C0.262%20L33.563%2C5.61%20L30.53%2C0.477%20L27.838%2C5.810%20L23.500%2C1.999%20L22.369%2C7.660%20L17.370%2C4.768%20L17.365%2C10.542%20L11.899%2C8.681%20L13.21%2C14.346%20L7.297%2C13.587%20L9.502%2C18.922%20L3.740%2C19.296%20L6.943%2C24.99%20L1.365%2C25.589%20L5.445%2C29.675%20L0.263%2C32.222%20L5.61%2C35.435%20L0.477%2C38.947%20L5.809%2C41.161%20L1.998%2C45.499%20L7.660%2C46.631%20L4.769%2C51.629%20L10.543%2C51.633%20L8.682%2C57.99%20L14.346%2C55.977%20L13.587%2C61.702%20L18.923%2C59.496%20L19.296%2C65.258%20L24.100%2C62.55%20L25.589%2C67.633%20L29.676%2C63.554%20L32.224%2C68.736%20L35.437%2C63.938%20L38.947%2C68.520%20L41.162%2C63.190%20L45.498%2C66.999%20L46.631%2C61.338%20L51.628%2C64.230%20L51.635%2C58.455%20L57.99%2C60.315%20L55.979%2C54.652%20L61.702%2C55.411%20L59.497%2C50.75%20L65.259%2C49.703%20L62.56%2C44.898%20L67.634%2C43.411%20L63.555%2C39.323%20L68.735%2C36.774%20L63.938%2C33.561%20L68.521%2C30.51%20L63.189%2C27.835%20Z%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  content: "NEW";
}
.deviceSale_list_item .el_title.is-release::before {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: absolute;
  top: -10px;
  left: -65px;
  width: 60px;
  height: 60px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20version%3D%221.1%22%20id%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%20150%20150%22%20style%3D%22enable-background%3Anew%200%200%20150%20150%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3E%20.st0%7Bfill%3A%23B01E23%3B%7D%3C%2Fstyle%3E%3Cg%3E%20%3Cpath%20class%3D%22st0%22%20d%3D%22M66.88%2C3.98C68.82%2C1.47%2C71.82%2C0%2C75%2C0c3.18%2C0%2C6.18%2C1.47%2C8.12%2C3.98L82.43%2C3.1c3.13%2C4.05%2C8.77%2C5.17%2C13.22%2C2.63%20l-0.98%2C0.56c2.76-1.58%2C6.09-1.79%2C9.03-0.57c2.94%2C1.22%2C5.14%2C3.72%2C5.98%2C6.79l-0.3-1.09c1.35%2C4.94%2C6.13%2C8.14%2C11.21%2C7.49l-1.11%2C0.14%20c3.15-0.4%2C6.31%2C0.68%2C8.56%2C2.92c2.25%2C2.25%2C3.33%2C5.41%2C2.93%2C8.56l0.14-1.12c-0.65%2C5.08%2C2.55%2C9.86%2C7.49%2C11.21l-1.09-0.3%20c3.07%2C0.84%2C5.57%2C3.04%2C6.79%2C5.98c1.22%2C2.94%2C1.01%2C6.27-0.57%2C9.03l0.56-0.98c-2.54%2C4.44-1.42%2C10.08%2C2.63%2C13.22l-0.89-0.69%20c2.51%2C1.95%2C3.98%2C4.94%2C3.98%2C8.12c0%2C3.18-1.47%2C6.18-3.98%2C8.12l0.89-0.69c-4.05%2C3.13-5.17%2C8.77-2.63%2C13.22l-0.56-0.98%20c1.58%2C2.76%2C1.79%2C6.09%2C0.57%2C9.03c-1.21%2C2.93-3.72%2C5.14-6.79%2C5.98l1.09-0.3c-4.94%2C1.35-8.14%2C6.13-7.49%2C11.21l-0.14-1.12%20c0.4%2C3.15-0.68%2C6.31-2.93%2C8.56c-2.25%2C2.25-5.41%2C3.33-8.56%2C2.93l1.11%2C0.14c-5.08-0.65-9.86%2C2.55-11.21%2C7.49l0.3-1.09%20c-0.83%2C3.07-3.04%2C5.57-5.98%2C6.79c-2.94%2C1.22-6.27%2C1-9.03-0.57l0.98%2C0.56c-4.45-2.54-10.09-1.42-13.22%2C2.63l0.69-0.89%20C81.18%2C148.53%2C78.18%2C150%2C75%2C150c-3.18%2C0-6.18-1.47-8.12-3.98l0.69%2C0.89c-3.13-4.05-8.77-5.17-13.22-2.63l0.98-0.56%20c-2.76%2C1.58-6.09%2C1.79-9.03%2C0.57c-2.94-1.22-5.14-3.72-5.98-6.79l0.3%2C1.09c-1.35-4.94-6.13-8.14-11.21-7.49l1.12-0.14%20c-3.15%2C0.4-6.31-0.68-8.56-2.93c-2.25-2.25-3.33-5.41-2.92-8.56l-0.14%2C1.12c0.65-5.08-2.55-9.86-7.49-11.21l1.09%2C0.3%20c-3.07-0.84-5.57-3.04-6.79-5.98c-1.22-2.94-1-6.27%2C0.57-9.03l-0.56%2C0.98c2.54-4.44%2C1.42-10.08-2.63-13.22l0.89%2C0.69%20C1.47%2C81.18%2C0%2C78.18%2C0%2C75c0-3.18%2C1.47-6.18%2C3.98-8.12l-0.89%2C0.69c4.05-3.13%2C5.17-8.77%2C2.63-13.22l0.56%2C0.98%20c-1.58-2.76-1.79-6.09-0.57-9.03c1.22-2.93%2C3.72-5.14%2C6.79-5.98l-1.09%2C0.3c4.94-1.35%2C8.14-6.13%2C7.49-11.21l0.14%2C1.12%20c-0.4-3.15%2C0.68-6.31%2C2.92-8.56c2.25-2.25%2C5.41-3.33%2C8.56-2.92l-1.12-0.14c5.08%2C0.65%2C9.86-2.55%2C11.21-7.49l-0.3%2C1.09%20c0.84-3.07%2C3.04-5.57%2C5.98-6.79c2.94-1.22%2C6.27-1.01%2C9.03%2C0.57l-0.98-0.56c4.44%2C2.54%2C10.08%2C1.42%2C13.22-2.63L66.88%2C3.98z%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-size: contain;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.15;
  white-space: pre;
  content: "12月\a発売";
}
.deviceSale_list_item .l-flex {
  -webkit-box-align: center;
  align-items: center;
}
.deviceSale_list_item .el_img {
  margin-bottom: 15px;
}
.deviceSale_list_item .el_img_device {
  position: relative;
  width: 100%;
  height: 150px;
  margin: 0 auto 15px;
  overflow: hidden;
}
.deviceSale_list_item .el_img_device img {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: auto;
  height: 100%;
  margin: auto;
}
.deviceSale_list_item .el_img_color {
  text-align: center;
}
.deviceSale_list_item .el_img_color li {
  display: inline-block;
  cursor: pointer;
}
.deviceSale_list_item .el_img_color li span {
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #c8c8c8;
}
.deviceSale_list_item .el_img_color li:not(:last-child) {
  margin-right: 3px;
}
.deviceSale_list_item .el_payment {
  position: relative;
}
.deviceSale_list_item .el_payment dl {
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 0;
}
.deviceSale_list_item .el_payment dl dt, .deviceSale_list_item .el_payment dl dd {
  display: inline-block;
}
.deviceSale_list_item .el_payment dl.is-regular, .deviceSale_list_item .el_payment dl.is-sale, .deviceSale_list_item .el_payment dl.is-plan {
  -webkit-box-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  justify-content: space-between;
  font-size: 1.3rem;
}
.deviceSale_list_item .el_payment dl.is-regular dt, .deviceSale_list_item .el_payment dl.is-sale dt, .deviceSale_list_item .el_payment dl.is-plan dt {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
  position: relative;
  width: 132px;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: left;
}
.deviceSale_list_item .el_payment dl.is-regular dt strong, .deviceSale_list_item .el_payment dl.is-sale dt strong, .deviceSale_list_item .el_payment dl.is-plan dt strong {
  font-size: 1.3em;
  font-weight: 700;
}
.deviceSale_list_item .el_payment dl.is-regular dt i, .deviceSale_list_item .el_payment dl.is-sale dt i, .deviceSale_list_item .el_payment dl.is-plan dt i {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #c2c2c2;
  font-size: 4rem;
  vertical-align: middle;
  line-height: 1.5rem;
}
.deviceSale_list_item .el_payment dl.is-regular dd, .deviceSale_list_item .el_payment dl.is-sale dd, .deviceSale_list_item .el_payment dl.is-plan dd {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  position: relative;
  width: calc(100% - 132px);
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-display: swap;
  font-size: 2rem;
  text-align: right;
}
.deviceSale_list_item .el_payment dl.is-sale {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
}
.deviceSale_list_item .el_payment dl.is-sale dt {
  width: unset;
  height: unset;
  margin: 0;
  padding: 0;
  color: #ba0613;
  font-size: 1.3rem;
  line-height: 1.3;
}
.deviceSale_list_item .el_payment dl.is-sale dd {
  width: unset;
  margin-bottom: 3px;
  color: #ba0613;
  font-size: 1.7rem;
}
.deviceSale_list_item .el_payment dl.is-sale dd strong {
  font-size: 1.45em;
  font-weight: 500;
  line-height: 0.75;
}
.deviceSale_list_item .el_payment dl.is-plan {
  margin-top: 32px;
}
.deviceSale_list_item .el_payment dl.is-plan dd {
  color: #ba0613;
  line-height: 1.5;
}
.deviceSale_list_item .el_payment dl.is-plan dd strong {
  display: inline-block;
  position: relative;
  bottom: -3px;
  margin-right: 3px;
  font-size: 2.1em;
  font-weight: 500;
  text-align: right;
  letter-spacing: -0.5px;
}
.deviceSale_list_item .el_payment dl.is-plan dd strong.is-lowest {
  bottom: 0;
  font-size: 3em;
  line-height: 0.8;
}
.deviceSale_list_item .el_payment dl.is-plan dt::before, .deviceSale_list_item .el_payment dl.is-plan dd::before {
  display: block;
  position: absolute;
  top: -30px;
  width: fit-content;
  height: 22px;
  margin-bottom: 5px;
  padding: 0 10px;
  border: 1px solid #999;
  background-color: #fff;
  font-size: 1.3rem;
  line-height: 24px;
  letter-spacing: 0.5px;
  content: "契約プラン";
}
.deviceSale_list_item .el_payment dl.is-plan dd::before {
  border: 1px solid #ba0613;
  background-color: #ba0613;
  color: #fff;
  content: "実質";
}
.deviceSale_list_item .el_payment dl.is-plan:last-of-type {
  padding-top: unset !important;
  border-top: unset !important;
}
.deviceSale_list_item .el_payment dl:not(:last-of-type) {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
}
.deviceSale_list_item .el_payment p {
  font-size: 1.3rem;
  text-align: left;
  line-height: 1.4;
}
.deviceSale_list_item .el_payment p.is-attn {
  color: #ba0613;
}
.deviceSale_list_item .el_payment p.el_box {
  display: block;
  width: fit-content;
  height: 26px;
  margin-bottom: 8px;
  padding: 0 20px;
  border: 1px solid #333;
  border-radius: 50vh;
  background-color: #fff;
  font-size: 1.3rem;
  line-height: 27px;
}
.deviceSale_list_item .el_payment p.is-really {
  color: #ba0613;
  font-size: 1.6rem;
  text-align: right;
}
.deviceSale_list_item .el_payment p.is-really strong {
  display: inline-block;
  position: relative;
  bottom: -3px;
  margin-right: 3px;
  font-family: "din-2014", sans-serif;
  font-size: 2.1em;
  font-weight: 500;
  letter-spacing: -0.5px;
  line-height: 0.8;
}
.deviceSale_list_item .el_payment p.is-really strong.is-lowest {
  bottom: -2px;
  font-size: 4em;
  line-height: 0.8;
}
.deviceSale_list_item .el_notes {
  position: relative;
  top: -8px;
  color: #e70731;
  font-size: 1.25rem;
  text-align: left;
  line-height: 1.4;
}
.deviceSale_list_item .el_description {
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: left;
}
.deviceSale_list_item .stockout {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 12;
  width: fit-content;
  height: fit-content;
  margin: auto;
  padding: 20px 20px;
  background-color: rgba(150, 150, 150, 0.85);
  text-align: center;
}
.deviceSale_list_item .stockout p {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.3;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}
.deviceSale_list_item .stockout p span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
}
.deviceSale_list_item .stockout p:not(:first-of-type) {
  margin-top: 10px;
}
@media screen and (max-width: 424px) {
  .deviceSale_list_item .stockout {
    top: 15%;
    left: 12%;
    width: 80%;
  }
}
@media screen and (min-width: 768px) {
  .deviceSale_list_item .l-flex:has(dl.is-plan) {
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .deviceSale_list_item .el_img {
    width: 40%;
  }
  .deviceSale_list_item .el_payment {
    width: 58%;
  }
}
@media screen and (max-width: 767px) {
  .deviceSale_list_item {
    margin-bottom: 32px;
    padding: 32px 20px 16px;
  }
  .deviceSale_list_item:last-of-type {
    margin-bottom: 24px;
  }
  .deviceSale_list_item::before {
    font-size: 1.5rem;
  }
  .deviceSale_list_item .el_point {
    margin-bottom: 10px;
  }
  .deviceSale_list_item .el_point p {
    padding: 5px 10px 4.5px;
    border-radius: 6px;
    font-size: 1.1rem;
    letter-spacing: 0;
  }
  .deviceSale_list_item .el_title {
    margin-top: 16px;
    margin-bottom: 12px;
    font-size: 2.4rem;
  }
  .deviceSale_list_item .el_img {
    margin-bottom: 20px;
  }
  .deviceSale_list_item .el_img_device {
    width: 44vw;
    height: 44vw;
  }
  .deviceSale_list_item .el_payment {
    width: 100%;
    margin-bottom: 0 !important;
  }
  .deviceSale_list_item .el_payment dl.is-plan dt {
    width: 50%;
    font-size: 1.3rem;
  }
  .deviceSale_list_item .el_payment dl.is-plan dd {
    width: 50%;
  }
  .deviceSale_list_item .el_payment dl.is-plan dd strong {
    line-height: 1.15;
  }
  .deviceSale_list_item .el_payment dl.is-plan:not(:last-of-type) {
    margin-top: 45px;
  }
  .deviceSale_list_item .el_payment dl.is-plan:not(:last-of-type) dt::before, .deviceSale_list_item .el_payment dl.is-plan:not(:last-of-type) dd::before {
    top: -30px;
    line-height: 25px;
  }
  .deviceSale_list_item .el_description {
    font-size: 1.4rem;
  }
  .deviceSale_list_item .stockout {
    top: 14.8%;
  }
}

/* 税込注意書き */
.el_tax {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  justify-content: flex-end;
  position: relative;
  margin-top: -20px;
}
.el_tax p {
  display: inline-block;
  width: fit-content;
  padding: 6px 10px 5px;
  border: 1px solid #999;
  background-color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .el_tax p {
    font-size: 1.1rem;
  }
}

/* 共通
============================================================================= */
/* 共通ミニバナー */
.minibnrArea {
  padding: 20px 0;
  text-align: center;
}
.minibnrArea_lead {
  display: inline-block;
  padding: 0 16px;
  background: linear-gradient(transparent 50%, rgba(43, 126, 191, 0.4) 50%);
  font-size: 2.5rem;
  font-weight: 600;
}
.minibnrArea_list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
  margin-top: 30px;
}
.minibnrArea_list li {
  display: inline-block;
  width: 23%;
  margin: 0 1%;
}
.minibnrArea_list li a {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .minibnrArea {
    padding: 16px 10px 10px;
  }
  .minibnrArea_lead {
    display: inline;
    padding: 0 5px;
    background: linear-gradient(transparent 62%, rgba(43, 126, 191, 0.4) 62%);
    font-size: 1.9rem;
    line-height: 1.4;
  }
  .minibnrArea_list {
    margin-top: 20px;
  }
  .minibnrArea_list li {
    width: 47%;
    margin-left: 1%;
    margin-right: 1%;
  }
  .minibnrArea_list li:not(:nth-last-child(-n+2)) {
    margin-bottom: 10px;
  }
}

/* 共通
============================================================================= */
/* 202308追記 キャンペーンエリア */
.campArea {
  width: 100%;
  max-width: 1080px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.campArea img {
  margin: auto;
}
@media screen and (max-width: 767px) {
  .campArea {
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 8px;
    padding: 0 10px;
  }
}

/* 202307追記 ポイント施策 注意事項 */
.pointNotes {
  padding: 0 20px;
}
.pointNotes_title {
  margin-bottom: 20px;
  color: #ba0613;
  font-size: 2.5rem;
  text-align: center;
  line-height: 1.3;
}
.pointNotes_title strong {
  font-size: 1.2em;
}
.pointNotes_title img {
  position: relative;
  bottom: 4px;
  margin: 0 4px;
  vertical-align: middle;
}
.pointNotes_title img.el_tcom {
  height: 25px;
}
.pointNotes_title img.el_tnc {
  height: 34px;
}
.pointNotes a {
  color: #e2261a;
}
@media screen and (max-width: 767px) {
  .pointNotes {
    padding-top: 12px;
  }
  .pointNotes_title {
    margin-bottom: 15px;
    font-size: 2rem;
  }
  .pointNotes_title img {
    bottom: 2px;
  }
  .pointNotes_title img.el_tcom {
    height: 19px;
  }
  .pointNotes_title img.el_tnc {
    height: 27px;
  }
}

/* セット割
============================================================================= */
/* LIBMO×光セット割 */
.setwariCont {
  padding: 48px 60px;
  background-color: #fff;
}
.setwariCont_title {
  margin-bottom: 16px;
  padding-bottom: 20px;
  font-size: 3rem;
}
.setwariCont_title img {
  margin: 0 auto;
  height: 150px;
}
.setwariCont_notes {
  margin-bottom: 20px;
}
.setwariCont_notes li {
  margin-bottom: 8px;
  font-size: 1.7rem;
  font-weight: 500;
  text-align: left;
  line-height: 1.6;
  list-style-type: decimal;
}
.setwariCont_btn {
  display: block;
  width: 100%;
  padding: 20px;
  border-radius: 10px;
  background-color: #fff2f2;
  color: #e2261a;
  font-size: 2rem;
  text-align: center;
  line-height: 1.4;
}
.setwariCont_btn.is-arrow::after {
  color: #e2261a;
}
@media screen and (max-width: 767px) {
  .setwariCont {
    margin-bottom: 24px;
    padding: 0 16px;
  }
  .setwariCont_title {
    margin-bottom: 0;
    padding-bottom: 16px;
    font-size: 2rem;
  }
  .setwariCont_title img {
    height: 80px;
  }
  .setwariCont_notes {
    padding-left: 24px;
    padding-right: 4px;
  }
  .setwariCont_notes li {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.7;
    word-break: break-all;
  }
  .setwariCont_btn {
    padding: 20px 30px 20px 16px;
    font-size: 1.7rem;
  }
  .setwariCont_btn.is-arrow::after {
    right: 0.3em;
  }
}

/* カウントダウンタイマー
============================================================================= */
/* 特典カウントダウン */
.timerCont {
  position: relative;
  z-index: 10;
  text-align: center;
}
.timerCont.is-top {
  margin-bottom: 24px;
  padding: 24px 0 20px;
  background-color: rgba(226, 38, 26, 0.95);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
.timerCont.is-cv {
  margin-bottom: 20px;
}
.timerCont_lead {
  display: inline-block;
  position: relative;
  margin-bottom: 5px;
  color: #fdefbf;
  font-size: 2.2rem;
  font-weight: 700;
}
.timerCont_lead::before, .timerCont_lead::after {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  height: 28px;
  margin: auto;
  background-color: #fdefbf;
  content: "";
}
.timerCont_lead::before {
  left: -20px;
  transform: rotate(-20deg);
}
.timerCont_lead::after {
  right: -20px;
  transform: rotate(20deg);
}
.is-cv .timerCont_lead {
  color: #e2261a;
}
.is-cv .timerCont_lead::before, .is-cv .timerCont_lead::after {
  display: none;
}
.timerCont:has(.timerCont_msg) .timerCont_lead {
  display: none;
}
.timerCont_count {
  color: #fff;
  font-size: 3.4rem;
  font-weight: 700;
}
.is-cv .timerCont_count {
  color: #e2261a;
}
.timerCont_msg {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.2;
}
.timerCont .timeText {
  position: relative;
  bottom: -2px;
  padding: 0 2px;
  font-family: "din-2014", sans-serif;
  font-weight: 600;
  font-display: swap;
  font-size: 1.5em;
}
.timerCont:not(:has(.timeText)) .timerCont_lead {
  display: none;
}
.timerCont_period {
  margin-top: 8px;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .timerCont {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
  .timerCont.is-top {
    margin-bottom: 16px;
    padding: 18px 12px 16px;
  }
  .timerCont.is-cv {
    margin-top: 5px;
    margin-bottom: 0;
    padding: 0 12px 12px;
  }
  .timerCont_lead {
    margin-bottom: 4px;
    font-size: 1.5rem;
  }
  .timerCont_lead::before, .timerCont_lead::after {
    height: 20px;
  }
  .timerCont_count {
    font-size: 2.2rem;
  }
  .timerCont_msg {
    font-size: 1.8rem;
  }
  .timerCont .timeText {
    font-size: 1.3em;
  }
  .timerCont_period {
    margin-top: 6px;
    font-size: 1.2rem;
  }
}

/* screen size */
@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}
.sm-max {
  max-width: 768px !important;
  margin-left: auto;
  margin-right: auto;
}

.md-max {
  max-width: 960px !important;
  margin-left: auto;
  margin-right: auto;
}

/* distribution */
#tcomContainer .is-tnc {
  display: none !important;
}
#tcomContainer + .libmoFooter .footerFloatingMenu .is-tnc {
  display: none !important;
}

#tncContainer .is-tcom {
  display: none !important;
}
#tncContainer + .libmoFooter .footerFloatingMenu .is-tcom {
  display: none !important;
}

/* margin */
.mgt0 {
  margin-top: 0px !important;
}

.mgt5 {
  margin-top: 5px !important;
}

.mgt10 {
  margin-top: 10px !important;
}

.mgt15 {
  margin-top: 15px !important;
}

.mgt20 {
  margin-top: 20px !important;
}

.mgt25 {
  margin-top: 25px !important;
}

.mgt30 {
  margin-top: 30px !important;
}

.mgt35 {
  margin-top: 35px !important;
}

.mgt40 {
  margin-top: 40px !important;
}

.mgt45 {
  margin-top: 45px !important;
}

.mgt50 {
  margin-top: 50px !important;
}

.mgt55 {
  margin-top: 55px !important;
}

.mgt60 {
  margin-top: 60px !important;
}

.mgt65 {
  margin-top: 65px !important;
}

.mgt70 {
  margin-top: 70px !important;
}

.mgt75 {
  margin-top: 75px !important;
}

.mgt80 {
  margin-top: 80px !important;
}

.mgt85 {
  margin-top: 85px !important;
}

.mgt90 {
  margin-top: 90px !important;
}

.mgt95 {
  margin-top: 95px !important;
}

.mgt100 {
  margin-top: 100px !important;
}

.mgb0 {
  margin-bottom: 0px !important;
}

.mgb5 {
  margin-bottom: 5px !important;
}

.mgb10 {
  margin-bottom: 10px !important;
}

.mgb15 {
  margin-bottom: 15px !important;
}

.mgb20 {
  margin-bottom: 20px !important;
}

.mgb25 {
  margin-bottom: 25px !important;
}

.mgb30 {
  margin-bottom: 30px !important;
}

.mgb35 {
  margin-bottom: 35px !important;
}

.mgb40 {
  margin-bottom: 40px !important;
}

.mgb45 {
  margin-bottom: 45px !important;
}

.mgb50 {
  margin-bottom: 50px !important;
}

.mgb55 {
  margin-bottom: 55px !important;
}

.mgb60 {
  margin-bottom: 60px !important;
}

.mgb65 {
  margin-bottom: 65px !important;
}

.mgb70 {
  margin-bottom: 70px !important;
}

.mgb75 {
  margin-bottom: 75px !important;
}

.mgb80 {
  margin-bottom: 80px !important;
}

.mgb85 {
  margin-bottom: 85px !important;
}

.mgb90 {
  margin-bottom: 90px !important;
}

.mgb95 {
  margin-bottom: 95px !important;
}

.mgb100 {
  margin-bottom: 100px !important;
}

.mgl0 {
  margin-left: 0px !important;
}

.mgl5 {
  margin-left: 5px !important;
}

.mgl10 {
  margin-left: 10px !important;
}

.mgl15 {
  margin-left: 15px !important;
}

.mgl20 {
  margin-left: 20px !important;
}

.mgl25 {
  margin-left: 25px !important;
}

.mgl30 {
  margin-left: 30px !important;
}

.mgl35 {
  margin-left: 35px !important;
}

.mgl40 {
  margin-left: 40px !important;
}

.mgl45 {
  margin-left: 45px !important;
}

.mgl50 {
  margin-left: 50px !important;
}

.mgr0 {
  margin-right: 0px !important;
}

.mgr5 {
  margin-right: 5px !important;
}

.mgr10 {
  margin-right: 10px !important;
}

.mgr15 {
  margin-right: 15px !important;
}

.mgr20 {
  margin-right: 20px !important;
}

.mgr25 {
  margin-right: 25px !important;
}

.mgr30 {
  margin-right: 30px !important;
}

.mgr35 {
  margin-right: 35px !important;
}

.mgr40 {
  margin-right: 40px !important;
}

.mgr45 {
  margin-right: 45px !important;
}

.mgr50 {
  margin-right: 50px !important;
}

.pdt0 {
  padding-top: 0px !important;
}

.pdt5 {
  padding-top: 5px !important;
}

.pdt10 {
  padding-top: 10px !important;
}

.pdt15 {
  padding-top: 15px !important;
}

.pdt20 {
  padding-top: 20px !important;
}

.pdt25 {
  padding-top: 25px !important;
}

.pdt30 {
  padding-top: 30px !important;
}

@media screen and (max-width: 767px) {
  .pdt20 {
    padding-top: calc((20px) - 8px) !important;
  }
  .pdt25 {
    padding-top: calc((25px) - 8px) !important;
  }
  .pdt30 {
    padding-top: calc((30px) - 8px) !important;
  }
  .pdt35 {
    padding-top: calc((35px) - 8px) !important;
  }
  .pdt40 {
    padding-top: calc((40px) - 8px) !important;
  }
  .pdt45 {
    padding-top: calc((45px) - 8px) !important;
  }
  .pdt50 {
    padding-top: calc((50px) - 8px) !important;
  }
}
.pdb0 {
  padding-bottom: 0px !important;
}

.pdb5 {
  padding-bottom: 5px !important;
}

.pdb10 {
  padding-bottom: 10px !important;
}

.pdb15 {
  padding-bottom: 15px !important;
}

.pdb20 {
  padding-bottom: 20px !important;
}

.pdb25 {
  padding-bottom: 25px !important;
}

.pdb30 {
  padding-bottom: 30px !important;
}

@media screen and (max-width: 767px) {
  .pdb20 {
    padding-bottom: calc((20px) - 8px) !important;
  }
  .pdb25 {
    padding-bottom: calc((25px) - 8px) !important;
  }
  .pdb30 {
    padding-bottom: calc((30px) - 8px) !important;
  }
  .pdb35 {
    padding-bottom: calc((35px) - 8px) !important;
  }
  .pdb40 {
    padding-bottom: calc((40px) - 8px) !important;
  }
  .pdb45 {
    padding-bottom: calc((45px) - 8px) !important;
  }
  .pdb50 {
    padding-bottom: calc((50px) - 8px) !important;
  }
}
.pdl0 {
  padding-left: 0px !important;
}

.pdl5 {
  padding-left: 5px !important;
}

.pdl10 {
  padding-left: 10px !important;
}

.pdl15 {
  padding-left: 15px !important;
}

.pdl20 {
  padding-left: 20px !important;
}

.pdl25 {
  padding-left: 25px !important;
}

.pdl30 {
  padding-left: 30px !important;
}

.pdr0 {
  padding-right: 0px !important;
}

.pdr5 {
  padding-right: 5px !important;
}

.pdr10 {
  padding-right: 10px !important;
}

.pdr15 {
  padding-right: 15px !important;
}

.pdr20 {
  padding-right: 20px !important;
}

.pdr25 {
  padding-right: 25px !important;
}

.pdr30 {
  padding-right: 30px !important;
}

/* layout */
.align-left {
  text-align: left !important;
}

.align-center {
  text-align: center !important;
}

.align-right {
  text-align: right !important;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.disp-block {
  display: block !important;
}

.disp-inline-block {
  display: inline-block !important;
}

.disp-flex {
  display: flex !important;
}

.disp-table {
  display: table !important;
}

.disp-none {
  display: none !important;
}

.disp-inline {
  display: inline !important;
}

/* font */
.fs8 {
  font-size: 8px;
}

.fs9 {
  font-size: 9px;
}

.fs10 {
  font-size: 10px;
}

.fs11 {
  font-size: 11px;
}

.fs12 {
  font-size: 12px;
}

.fs13 {
  font-size: 13px;
}

.fs14 {
  font-size: 14px;
}

.fs15 {
  font-size: 15px;
}

.is-fntXL {
  display: inline-block;
  font-size: 1.25em !important;
}

.is-fntL {
  display: inline-block;
  font-size: 1.2em !important;
}

.is-fntM {
  display: inline-block;
  font-size: 1.15em !important;
}

.is-fntS {
  display: inline-block;
  font-size: 0.9em !important;
}

.is-fntXS {
  display: inline-block;
  font-size: 0.8em !important;
}

.is-scale-xs {
  transform: scale(0.7) !important;
}

.is-scale-sm {
  transform: scale(0.8) !important;
}

.is-scale-md {
  transform: scale(0.9) !important;
}

.is-scale-mdMax {
  transform: scale(0.95) !important;
}

.is-scale-lg {
  transform: scale(1.1) !important;
}

.is-attn {
  color: #e2261a;
  font-weight: 600;
}

small {
  font-size: 0.7em;
}