@charset "UTF-8";

.catalog-section {
  width: 100%;
}
.catalog-section__inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 10px;
}
.catalog-section__bg-white {
  background-color: #fff;
  border-radius: 10px;
}
.catalog-section__bg-pink__only-pc {
  background-color: #FEE8EB;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .catalog-section__bg-pink__only-pc {
    background-color: transparent;
  }
}

.catalog-special {
  width: 100%;
  padding: 0 80px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .catalog-special {
    background-color: transparent;
    padding: 0;
  }
}
.catalog-special__ttl {
  position: relative;
  top: 0px;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .catalog-special__ttl img {
    width: 95%;
  }
}
.catalog-special__tiles {
  --gap: 20px;
  display: grid;
  grid-template-columns: 253px 253px calc(100% - 506px - var(--gap) * 2);
  grid-template-rows: auto;
  gap: var(--gap);
  width: 100%;
  grid-template-areas: "a b e" "c d e";
}
@media screen and (max-width: 768px) {
  .catalog-special__tiles {
    --gap: 15px;
    margin-top: -12px;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "a b" "e e" "c d";
  }
}
.catalog-special__tiles__item.tile01 {
  grid-area: a;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  border: 2px solid #C03;
  background: linear-gradient(180deg, rgba(196, 3, 51, 0.00) 5.82%, rgba(196, 3, 51, 0.06) 52.57%), #FFF;
}

.catalog-special__tiles__item__dsc-note{
  font-size: 1.2rem;
  color: #555;
  text-align: center;
  margin-top: 3px;
  margin-bottom: 14px;
}

.catalog-special__tiles__item.tile02 {
  grid-area: b;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  border: 2px solid #C03;
  background: linear-gradient(180deg, rgba(196, 3, 51, 0.00) 5.82%, rgba(196, 3, 51, 0.06) 52.57%), #FFF;
}
.catalog-special__tiles__item.tile03 {
  grid-area: c;
}
.catalog-special__tiles__item.tile04 {
  grid-area: d;
}
.catalog-special__tiles__item.tile05 {
  grid-area: e;
}
.catalog-special__tiles__item > img {
  width: 100%;
}
.catalog-special__tiles__item__large {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding: 42px 0px 56px 0px;
  border: 2px solid #0578FF;
  background: linear-gradient(180deg, rgb(250, 252, 255) 0%, rgb(231, 241, 255) 100%);
}
@media screen and (max-width: 768px) {
  .catalog-special__tiles__item__dsc-note{
    margin: 8px 12px 22px;
  }
  .catalog-special__tiles__item__title{
    margin-top: 7px;
    margin-bottom: 7px;
  }
  .catalog-special__tiles__item__title img{
    width: 100%;
  }
  .catalog-special__tiles__item__large {
    padding: 29px 0px 19px 0px;
  }
}
.catalog-special__tiles__item__large__ttl {
  width: 79.5%;
}
@media screen and (max-width: 768px) {
  .catalog-special__tiles__item__large__ttl {
    width: 56.5%;
  }
}
.catalog-special__tiles__item__large__ttl img {
  width: 100%;
}
.catalog-special__tiles__item__large__dsc {
  width: 100%;
  margin-top: 44px;
}
@media screen and (max-width: 768px) {
  .catalog-special__tiles__item__large__dsc {
    width: 92.5%;
    margin-top: 21px;
  }
}
.catalog-special__tiles__item__large__dsc img {
  width: 100%;
}
.catalog-special__tiles__item__large__dsc-note {
  width: 91%;
  margin-top: 21px;
  font-size: 1.2rem;
  color: #555;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .catalog-special__tiles__item__large__dsc-note {
    width: 86%;
    margin-top: 16px;
  }
}
.catalog-special__tiles__item__large__btn-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .catalog-special__tiles__item__large__btn-area {
    margin-top: 9px;
  }
}
.catalog-special__tiles__item__large__btn-area__note {
  width: 97%;
  margin-bottom: 11px;
}
@media screen and (max-width: 768px) {
  .catalog-special__tiles__item__large__btn-area__note {
    margin-bottom: 8px;
  }
}
.catalog-special__tiles__item__large__btn-area__note img {
  width: 100%;
}
.catalog-special__tiles__item__large__btn-area__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  margin-top: auto;
  color: #fff;
  padding: 8px 30px;
  font-size: 1.3rem;
  font-style: normal;
  border-radius: 100vw;
  background: #0578FF;
  text-decoration: none;
  transition: 0.2s all;
}
.catalog-special__tiles__item__large__btn-area__btn:visited,
.catalog-special__tiles__item__large__btn-area__btn:active,
.catalog-special__tiles__item__large__btn-area__btn:focus,
.catalog-special__tiles__item__large__btn-area__btn:hover {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .catalog-special__tiles__item__large__btn-area__btn {
    padding: 8px 23px;
    letter-spacing: 0.12rem;
  }
}
.catalog-special__tiles__item__large__btn-area__btn:hover {
  opacity: 0.8;
}
.catalog-special__tiles__item__large__btn-area__btn::after {
  content: "";
  position: absolute;
  right: 10px;
  width: 10px;
  height: 14px;
  background: url("/flcache_data/charge/docomo_max/images/ico_new_window_w.svg") no-repeat center center;
}

.bg-special {
  position: relative;
  padding: 80px 0;
  background: url(/flcache_data/charge/docomo_max/images/bg_special_main_pc.svg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .bg-special {
    background: url(/flcache_data/charge/docomo_max/images/bg_special_main_smt.svg);
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.bg-special::before {
  --w: 1443px;
  --h: 875px;
  content: "";
  position: absolute;
  top: 45px;
  left: calc(50% - var(--w) / 2 + 10px);
  display: block;
  width: var(--w);
  height: var(--h);
  background: url(/flcache_data/charge/docomo_max/images/bg_special_accents_pc.png);
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .bg-special::before {
    --w: 100vw;
    --h: 48.606012vw;
    position: absolute;
    top: -11vw;
    left: unset;
    background: url(/flcache_data/charge/docomo_max/images/bg_special_accents_smt.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
    overflow-x: hidden;
  }
}

.catalog-discount {
  width: 100%;
}
.catalog-discount__ttl {
  margin: 0 auto;
  width: 51%;
}
@media screen and (max-width: 768px) {
  .catalog-discount__ttl {
    width: 87%;
  }
}
.catalog-discount__ttl img {
  width: 100%;
}


.docomo-max__kv{
  background-color: #EDEDED;
}

/* float-cv */
.float-cv {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 15px 203px;
  background: rgba(51, 51, 51, 0.64);
  opacity: 0;
  z-index: 500;
  transition: 0.2s all;
}
@media screen and (max-width: 768px) {
  .float-cv {
    padding: 15px 8px;
    background: unset;
  }
}
.float-cv.is-show {
  opacity: 1;
}
.float-cv__inner  {
  position: relative;
  justify-content: center;
  align-items: center;
  gap: 14px;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .float-cv__inner  {
    flex-wrap: nowrap;
    gap: 2px;
  }
}
.float-cv__inner__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 194px;
  height: 57px;
  padding-right: 24px;
  border-radius: 10px;
  background-color: #fff;
  transition: 0.2s all;
}
.float-cv__inner__link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .float-cv__inner__link {
    width: 49%;
    height: 40px;
    padding-right: 21px;
    background: #666;
  }
}
.float-cv__inner__link img {
  width: 129px;
}
.float-cv__inner__link.blue img {
  width: 107px;
}
.float-cv__inner__link.green img {
  width: 113px;
}
@media screen and (max-width: 768px) {
  .float-cv__inner__link img {
    width: min(100px, 72%);
  }
  .float-cv__inner__link.red {
    border-radius: 10px 0 0 10px;
  }
  .float-cv__inner__link.red img {
    transform: translateY(6%) translateX(15%);
  }
  .float-cv__inner__link.blue {
    border-radius: 0;
  }
  .float-cv__inner__link.blue img {
    width: min(78px, 51%);
    transform: translateX(12%);
  }
  .float-cv__inner__link.green {
    border-radius: 0 10px 10px 0;
  }
  .float-cv__inner__link.green img {
    width: min(62px, 58%);
    transform: translateX(20%);
  }
}
.float-cv__inner__link::after {
  content: "";
  position: absolute;
  right: 11px;
  width: 8px;
  height: 10px;
  background: url(/flcache_data/charge/docomo_mini/images/icon_black_arrow.svg) no-repeat center center;
  background-size: contain;
}
.float-cv__inner__link.blue::after {
  width: 9px;
  height: 10px;
  background: url(/images_osp/common/ico/ico_window03_v2.png) no-repeat center center;
  background-size: contain;
}

.float-cv__inner__link.green::after {
  width: 9px;
  height: 10px;
  background: url(/images_osp/common/ico/ico_window03_v2.png) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .float-cv__inner__link::after {
    right: 4%;
    width: 9px;
    height: 11px;
    background-size: contain;
    background: url(/flcache_data/charge/docomo_mini/images/icon_white_arrow.svg) no-repeat center center;
  }
  .float-cv__inner__link.blue::after {
    background: url(/flcache_data/charge/docomo_mini/images/icon_target_white.svg) no-repeat center center;
  }
  .float-cv__inner__link.green::after {
    background: url(/flcache_data/charge/docomo_mini/images/icon_target_white.svg) no-repeat center center;
  }
}
.float-cv__close {
  --s: 22px;
  position: absolute;
  top: 0;
  left: calc((50% - var(--s) + 340px));
  width: var(--s);
  height: var(--s);
}
.float-cv__close img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .float-cv__close {
    display: none;
  }
}

/* catalog-discount-table */
.catalog-discount-table {
  position: relative;
  width: 100%;
  aspect-ratio: 960 / 447;
  background: url(/flcache_data/charge/docomo_max/images/img_discount_table_base_v2_pc.png) no-repeat center center;
  background-size: contain;
}
.catalog-discount-table::after {
  --s: 48px;
  content: "";
  position: absolute;
  top: calc(var(--s) * 2 / 3 * -1);
  left: calc(50% - var(--s) / 2);
  display: block;
  width: var(--s);
  height: var(--s);
  background: url(/flcache_data/charge/docomo_max/images/ico_plus_green.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .catalog-discount-table {
    aspect-ratio: 672 / 964;
    background: url(/flcache_data/charge/docomo_max/images/img_discount_table_base_v2_smt.png) no-repeat center center;
    background-size: contain;
    transform: translatey(10vw);
    margin-bottom: calc(10vw + 30px);
  }
  .catalog-discount-table::after {
    --s: 9.5vw;
    top: -11vw;
  }
}
.catalog-discount-table__list {
  position: absolute;
  top: 82px;
  left: 20px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
   .catalog-discount-table__list {
    top: calc((100vw - 20px) * 0.301);
    left: calc((100vw - 20px) * 0.035);
  }
}
.catalog-discount-table__list__item {
  display: flex;
  align-items: center;
  width: 422px;
  height: 80px;
  transition: 0.2s all;
}
.catalog-discount-table__list__item button{
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 48px;
}
@media screen and (max-width: 768px) {
  .catalog-discount-table__list__item {
    width: calc((100vw - 20px) * 0.926);
    height: calc((100vw - 20px) * 0.274);
    transform-origin: center left;
  }
  .catalog-discount-table__list__item button{
    align-items: unset;
    padding-top: calc((100vw - 20px) * 0.03);
    padding-left: calc((100vw - 20px) * 0.0265);
  }
}
.catalog-discount-table__list__item:hover {
  opacity: 0.7;
}
.catalog-discount-table__list__item.no-link:hover {
  opacity: 1;
}
.catalog-discount-table__list__item:nth-child(2) {
  height: 82px;
}
.catalog-discount-table__list__item:nth-child(3) {
  height: 102px;
}
.catalog-discount-table__list__item:nth-child(4) {
  height: 41px;
}
.catalog-discount-table__list__item:nth-child(5) {
  height: 40px;
}
@media screen and (max-width: 768px) {
  .catalog-discount-table__list__item:nth-child(1) img {
    width: auto;
    height: calc((100vw - 20px) * 0.0442);
  }
  .catalog-discount-table__list__item:nth-child(2) {
    height: calc((100vw - 20px) * 0.266);
  }
  .catalog-discount-table__list__item:nth-child(2) button {
    padding-top: calc((100vw - 20px) * 0.025);
  }
  .catalog-discount-table__list__item:nth-child(2) img {
    width: auto;
    height: calc((100vw - 20px) * 0.035);
  }
  .catalog-discount-table__list__item:nth-child(3) {
    height: calc((100vw - 20px) * 0.328);
  }
  .catalog-discount-table__list__item:nth-child(3) button {
    padding-top: calc((100vw - 20px) * 0.024);
  }
  .catalog-discount-table__list__item:nth-child(3) img {
    width: auto;
    height: calc((100vw - 20px) * 0.05886);
  }
  .catalog-discount-table__list__item:nth-child(4) {
    height: calc((100vw - 20px) * 0.126);
  }
  .catalog-discount-table__list__item:nth-child(4) button {
    padding-top: calc((100vw - 20px) * 0.025);
  }
  .catalog-discount-table__list__item:nth-child(4) img {
    width: auto;
    height: calc((100vw - 20px) * 0.0835);
  }
  .catalog-discount-table__list__item:nth-child(5) {
    height: calc((100vw - 20px) * 0.102);
  }
  .catalog-discount-table__list__item:nth-child(5) button {
    padding-top: calc((100vw - 20px) * 0.0303);
  }
  .catalog-discount-table__list__item:nth-child(5) img {
    width: auto;
    height: calc((100vw - 20px) * 0.0418);
  }
}

/* オーバーラップ用 */
/* .sec-common-lv2__inner, .sec-common-lv2__inner--slim {
  width: 100% !important;
} */
.btn-pagetop, .btn-pagetop.bottom {
  bottom: 10px;
}
html:has(.float-cv) .btn-pagetop,
html:has(.float-cv) .btn-pagetop.bottom {
  bottom: 105px;
}
html:has(.float-cv:not(.is-show)) .btn-pagetop,
html:has(.float-cv:not(.is-show)) .btn-pagetop.bottom {
  bottom: 10px;
}
@media screen and (max-width: 768px) {
  html:has(.float-cv) .btn-pagetop,
  html:has(.float-cv) .btn-pagetop.bottom {
    bottom: 70px;
  }
}
@media screen and (min-width: 767px) {
  .btn-common__button--h3-blank.wide {
    width: 340px;
  }
}


.catalog-section__bg-white{
    background-color: #fff;
    border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .catalog-section__bg-white{
    padding: 15px;
  }
}

.catalog-section__bg-red{
    background-color: #c03;
}
@media screen and (max-width: 767px) {
  .catalog-section__bg-red{
    padding: 0px;
  }
}

.catalog-section__fc-white{
    color: #fff;
}

/*charge-plan-anchor*/
.nav_area{
  padding: 30px 0!important;

}

@media screen and (max-width: 768px) {
  .nav_area{
  padding: 16px 14px!important;
  }
}

@media screen and (min-width: 768px) {
  .charge-plan__anchor{
    max-width: 940px;
    margin: 0 auto;
    padding: 0 10px;
  }
}

@media screen and (max-width: 767px) {
  .charge-plan__anchor{
    width: 100%;
  }
}

.nav-pageanchor{
	display: flex;
	flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .nav-pageanchor{
	  gap: 16px 20px;
  }
}

@media screen and (max-width: 767px) {
  .nav-pageanchor{
	  gap: 8px 12px;
  }
}

@media screen and (min-width: 768px) {
  .nav-pageanchor__list{
    width: calc((100% - 40px) / 3);
  }
}

@media screen and (max-width: 767px) {
  .nav-pageanchor__list{
    width: calc((100% - 12px) / 2);
  }
}

@media screen and (max-width: 767px) {
  .nav-pageanchor__txt{
    width: calc(100% - 20px);
  }
}


.nav-pageanchor__list a{
	position: relative;
	display: flex;
  align-items: center;
  justify-content: space-between;
	text-decoration: none;
	border-radius: 4px;
	border: 2px solid #FFF;
	background: #fff;
	box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.30);
	font-weight: bold;
	color: #000;
}

@media screen and (min-width: 768px) {
.nav-pageanchor__list a{
	padding: 12px 16px;
	font-size: 115%;
}
}

@media screen and (max-width: 767px) {
.nav-pageanchor__list a{
	padding: 3px 12px;
	font-size: 95%;
  min-height: 50px;
  line-height: 1.8rem;
}
}

@media screen and (min-width: 768px) {
.nav-pageanchor__list a:hover{
	opacity: 0.8;
}
}

.nav-pageanchor__list a::after{
	content: "";
	background: 0 0 no-repeat;
	background-size: contain;
}

@media screen and (min-width: 768px) {
.nav-pageanchor__list a::after{
	width: 20px;
	height: 20px;
}
}

@media screen and (max-width: 767px) {
.nav-pageanchor__list a::after{
	width: 18px;
	height: 18px;
}
}

.docomo-mini .nav-pageanchor__list a::after{
	background-image: url(/flcache_data/charge/docomo_max/images/icon_blue_arrow.svg);
}

/*maxのアイコンは下記で設定*/
.docomo-max .nav-pageanchor__list a::after{
	background-image: url(/flcache_data/charge/docomo_max/images/icon_red_arrow.svg);
}

/*contract-area*/
.contract-content__2col{
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
.contract-content__2col{
  row-gap: 16px;
}
}

@media screen and (max-width: 767px) {
.contract-content__2col{
  row-gap: 12px;
}
}

.contract-content__item{
  border-radius: 10px;
}

@media screen and (min-width: 768px) {
.contract-content__item{
  width: calc((100% - 16px) / 2);
}
}

@media screen and (max-width: 767px ) {
.contract-content__item{
  padding: 14px 7px;
  width: calc((100% - 12px) / 2);
  display: flex;
  flex-direction: column;
}
}

.contract-content__item.contract-content__charge{
  border: 1px solid #A76D00;
  background: linear-gradient(0deg, #A76D00 0%, rgba(167, 109, 0, 0.70) 100%);
}

.contract-content__item.contract-content__plan{
  border: 1px solid #C03;
  background: linear-gradient(0deg, #C03 0%, rgba(204, 0, 51, 0.70) 100%);
}


@media screen and (min-width: 768px) {
.contract-subttl{
  display: flex;
  column-gap: 10px;
  align-items: center;
}
}

@media screen and (max-width: 767px) {
.contract-subttl{
  text-align: center;
  flex-grow: 1;
}
}

@media screen and (min-width: 768px) {
.contract-subttl img{
  max-width: 100%;
}
}

@media screen and (max-width: 767px) {
.contract-subttl img{
  text-align: center;
}
}



.contract-subttl::before{
	content: "";
	background: 0 0 no-repeat;
	background-size: contain;
  display: block;
}

@media screen and (min-width: 768px) {
.contract-subttl::before{
	width: 64px;
  height: 64px;
}
}

@media screen and (max-width: 767px) {
.contract-subttl::before{
	width: 40px;
  height: 40px;
  margin: 0 auto 3px;
}
}

.contract-content__item.contract-content__charge .contract-subttl::before{
  background-image: url(/flcache_data/charge/docomo_max/images/icon_contract_charge.svg);
}

.contract-content__item.contract-content__plan .contract-subttl::before{
  background-image: url(/flcache_data/charge/docomo_max/images/icon_contract_plan.svg);
}

.contract-content__item .contract-btn{
  padding: 24px 38px 30px 38px;
  display: block;
  text-align: center;
  font-weight: bold;
	color: #000;
  text-decoration: none;
  position: relative;
}

@media screen and (min-width: 768px) {
.contract-content__item .contract-btn{
  font-size: 115%;
}
}

@media screen and (max-width: 767px) {
.contract-content__item .contract-btn{
  margin-top: 4px;
  padding: 0;
  font-size: 84%;
  min-height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
}
}

@media screen and (min-width: 768px) {
.contract-content__item .contract-btn:hover{
	opacity: 0.8;
}
}

.contract-btn__icon{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
.contract-btn__icon{
  right: 14px;
}
}

@media screen and (max-width: 767px) {
.contract-btn__icon{
  top: 40%;
  right: 5px;
}
}

/*select-option*/
.select-option__ttl{
  text-align: center;
}

@media screen and (min-width: 768px) {
.select-option__area{
  margin-top: 20px;
  padding: 40px 79px 50px 79px;
  border-radius: 10px;
  background: #FEE8EB;
}
}

@media screen and (max-width: 767px) {
.select-option__area{
  margin-bottom: 32px;
}
}

.select-option__item{
  border-bottom: 1px solid #F2C5CB;
  margin-top: 30px;
}

.select-option__item:first-child{
  margin-top: 0;
}

.select-option__item:last-child{
  border-bottom: none;
}

.select-option__subttl{
  font-size: 130%;
  font-weight: bold;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
.select-option__subttl{
  text-align: center;
}
}

.select-option__2col{
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
.select-option__2col{
  row-gap: 16px;
}
}

@media screen and (max-width: 767px) {
.select-option__2col{
  row-gap: 12px;
}
}


@media screen and (min-width: 768px) {
.select-option__2col .select-option__iconbtn-area,
.select-option__2col .select-option__btn-area{
  display: flex;
  width: calc((100% - 16px) / 2);
}
}

@media screen and (max-width: 767px) {
.select-option__2col .select-option__iconbtn-area,
.select-option__2col .select-option__btn-area{
  display: flex;
  width: calc((100% - 12px) / 2);
}
}

.select-option__iconbtn,
.select-option__btn{
  flex-grow: 1;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.20);
  display: flex;
  text-decoration: none;
  position: relative;
}

.select-option__btn{
  color: #000!important;
  justify-content: space-between;
}

.select-option__btn-txt-l{
    font-weight: bold;
}


@media screen and (min-width: 768px) {
  .select-option__btn{
    padding: 20px 16px 20px 30px;
  }
}

@media screen and (max-width: 767px) {
  .select-option__btn{
    padding: 18px 10px 18px 14px;
  }
}

@media screen and (min-width: 768px) {
  .select-option__btn-txt-l{
    font-size: 130%;
  }
}


@media screen and (max-width: 767px) {
.select-option__iconbtn{
  flex-direction: column;
}
}

@media screen and (min-width: 768px) {
  .select-option__iconbtn:hover,
  .select-option__btn:hover{
    opacity: 0.8;
  }
}

.select-option__btn-icon{
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
.select-option__btn-icon img,
.select-option__iconbtn-icon img{
  width: 5px;
  height: 10px;
}
}

.select-option__img{
  background: #000;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 768px) {
.select-option__img{
  border-radius: 10px 0 0 10px;
}
}

@media screen and (max-width: 767px) {
.select-option__img{
  border-radius: 10px 10px 0 0;
  justify-content: center;
  padding: 5px 0;
}
}

@media screen and (max-width: 767px) {
.select-option__img img{
  width: 40px;
  height: 40px;
}
}


@media screen and (min-width: 768px) {
.select-option__txtarea{
  padding: 14px 16px 8px 25px;
}
}

@media screen and (max-width: 767px) {
.select-option__txtarea{
  padding: 10px 11px 15px 11px;
}
}

.select-option__btnttl{
  color: #000;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
.select-option__txtarea .select-option__btnttl{
  font-size: 140%;
  margin-bottom: 10px;
}
}

@media screen and (max-width: 767px) {
.select-option__txtarea .select-option__btnttl{
  font-size: 110%;
  margin-bottom: 6px;
}
}

.select-option__price strong{
  font-weight: bold;
  display: inline-block;
}

@media screen and (min-width: 768px) {
.select-option__price strong{
  font-size: 140%;
}
}

@media screen and (max-width: 767px) {
.select-option__price strong{
  font-size: 110%;
}
}

.select-option__smalltxt{
  font-weight: normal;
  vertical-align: middle;
}

.select-option__smalltxt{
  font-size: 70%;
}


.select-option__iconbtn-icon{
  position: absolute;
}

@media screen and (min-width: 768px) {
.select-option__iconbtn-icon{
  bottom: 16px;
  right: 16px;
}
}

@media screen and (max-width: 767px) {
.select-option__iconbtn-icon{
  bottom: 0;
  right: 10px;
}
}

@media screen and (max-width: 767px) {
.select-option__btn-txt,
.select-option__btn-txt-l{
  display: flex;
  align-items: center;
}
}

.select-option__btn-txt strong,
.select-option__btn-txt-l strong{
  font-weight: bold;
}

@media screen and (min-width: 768px) {
.select-option__btn-txt strong{
  margin-right: 20px;
  font-size: 130%;
}
.select-option__btn-txt-l strong{
  margin-right: 20px;
}
}

@media screen and (max-width: 767px) {
.select-option__btn-txt strong,
.select-option__btn-txt-l strong{
  margin-right: 10px;
  max-width: 19px;
}
}

@media screen and (max-width: 767px) {
.select-option__connect img{
  width: 30px;
  height: 30px;
}
}

/*apply-method*/
.apply-method{
  background: url(/flcache_data/charge/docomo_max/images/bg_red.svg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
.apply-method{
  padding: 60px 0;
}
}

@media screen and (max-width: 767px) {
.apply-method {
  padding: 40px 11px!important;
  margin: 0 -11px;
  width: calc(100% + 22px);
}
}

.apply-method__ttl{
  font-weight: bold;
}

@media screen and (min-width: 768px) {
.apply-method__ttl{
  font-size: 343%;
}
}

@media screen and (max-width: 767px) {
.apply-method__ttl{
  font-size: 200%;
}
}

.apply-method .txt-link{
  color: #fff;
}

.apply-method__sec:last-child{
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
.apply-method__sec{
  margin-bottom: 40px;
}
}

@media screen and (max-width: 767px) {
.apply-method__sec{
  margin-bottom: 20px;
}
}

@media screen and (min-width: 768px) {
.apply-method__sec .catalog-section__bg-white{
  padding: 40px;
}
}

@media screen and (max-width: 767px) {
.apply-method__sec .catalog-section__bg-white{
  padding: 20px;
}
}

.apply-method__sec-ttl{
  font-weight: bold;
}

@media screen and (min-width: 768px) {
.apply-method__sec-ttl{
  font-size: 140%;
}
.apply-method__sec-ttl.large{
  font-size: 197%;
}
}

@media screen and (max-width: 767px) {
.apply-method__sec-ttl{
  font-size: 130%;
}
.apply-method__sec-ttl.large{
  font-size: 183%;
}
}

.apply-method__sec-ttl strong{
  font-weight: bold;
}

@media screen and (min-width: 768px) {
.apply-method__sec-ttl strong{
  font-size: 140%;
}
}

@media screen and (max-width: 767px) {
.apply-method__sec-ttl strong{
  font-size: 130%;
}
}

@media screen and (min-width: 768px) {
.apply-method__sec-subttl{
  font-size: 82%;
}
}

@media screen and (max-width: 767px) {
.apply-method__sec-subttl{
  font-size: 70%;
}
}

.apply-method__sec .apply-method__btn{
  display: block;
  border-radius: 10px;
  background: #C03;
  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.20);
  text-decoration: none;
  color: #fff;
  padding: 20px 40px;
  text-align: center;
  font-weight: bold;
  position: relative;
}

.apply-method__sec .apply-method__btn.white{
  background: #fff;
  border: 4px solid #C03;
}
.apply-method__sec .apply-method__btn.white img{
  width: 48%;
}

@media screen and (min-width: 768px) {
.apply-method__sec .apply-method__btn{
  font-size: 130%;
}
}

@media screen and (max-width: 767px) {
.apply-method__sec .apply-method__btn{
  font-size: 115%;
}
}

.apply-method__icon{
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  align-items: center;
  display: flex;
}

@media screen and (min-width: 768px) {
.apply-method__sec .apply-method__1col .apply-method__btn{
  margin: 0 auto;
  width: 492px;
  font-size: 160%;
}
}

@media screen and (min-width: 768px) {
.apply-method__sec .apply-method__btn:hover{
  opacity: 0.8;
}
}

.apply-method__4col{
  display: flex;
}

@media screen and (min-width: 768px) {
.apply-method__4col{
  column-gap: 20px;
}
}

@media screen and (max-width: 767px) {
.apply-method__4col{
  flex-direction: column;
  row-gap: 20px;
}
}

@media screen and (min-width: 768px) {
.apply-method__4col .apply-method__plan-btn-area{
  width: calc((100% - 60px) / 4);
}
}

.apply-method__plan-btn{
  display: block;
  text-align: center;
  background: #FFF;
  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.20);
  border-radius: 10px;
}

.apply-method__plan-btn.max{
  border: 4px solid #C03;
}

.apply-method__plan-btn.poikatsu{
  border: 4px solid #BC9500;
}

.apply-method__plan-btn.mini{
  border: 4px solid #0068B7;
}

@media screen and (min-width: 768px) {
.apply-method__plan-btn{
  padding: 30px 0;
}
}

@media screen and (min-width: 768px) {
.apply-method__plan-btn:hover{
  opacity: 0.8;
}
}

@media screen and (max-width: 767px) {
.apply-method__plan-btn{
  padding: 16px 0;
}
}


@media screen and (min-width: 768px) {
.apply-method__2col{
  display: flex;
  justify-content: space-between;
}
}

@media screen and (min-width: 768px) {
.left-block{
  width: 50%;
  padding-right: 40px;
  align-self: center;
}
}

@media screen and (min-width: 768px) {
.right-block{
  width: 50%;
  padding-left: 40px;
  border-left: 2px solid #D9D9D9;
}
}

.apply-other__sec-ttl{
  text-align: center;
  font-weight: bold;
  margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
.apply-other__sec-ttl{
  font-size: 130%;
}
}

@media screen and (min-width: 768px) {
.apply-other__sec-ttl{
  font-size: 115%;
}
}

.apply-other__tel-txt{
  display: block;
  font-weight: bold;
  text-align: center;
  font-size: 200%;
}


@media screen and (min-width: 768px) {
.apply-method__tel-btn{
  display: none;
}
}

@media screen and (max-width: 767px) {
.apply-method .apply-method__tel-btn{
  display: flex;
  align-items: center;
  padding: 2px;
  border-radius: 10px;
  background: #C03;
  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.20);
  align-items: center;
  color: #fff!important;
}
}

@media screen and (max-width: 767px) {
.apply-method__tel-btn-icon{
  background: #fff;
  align-self: stretch;
  width: 32px;
  border-radius: 8px 0 0 8px;
  display: flex;
  align-items: center;
}
}

@media screen and (max-width: 767px) {
.apply-method__tel-btn-icon img{
  margin: 0 auto;
}
}
@media screen and (max-width: 767px) {
.apply-method .apply-method__tel-btn-txt{
  text-align: center;
  font-size: 115%;
  font-weight: bold;
  width: calc(100% - 32px);
}
}

@media screen and (max-width: 767px) {
.apply-method__tel-btn-s-txt{
  font-size: 75%;
}
}


/* --- background --- */
/* bg-special */
.bg-special {
  position: relative;
  padding: 80px 0 40px;
  background: url(/flcache_data/charge/docomo_max/images/bg_special_main_pc.svg);
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .bg-special {
    padding: 80px 0 0;
    background: url(/flcache_data/charge/docomo_max/images/bg_special_main_smt.svg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    overflow: visible;
  }
}
.bg-special::before {
  --w: 1443px;
  --h: 875px;
  content: "";
  position: absolute;
  top: 45px;
  left: calc(50% - var(--w) / 2 + 10px);
  display: block;
  width: var(--w);
  height: var(--h);
  background: url(/flcache_data/charge/docomo_max/images/bg_special_accents_pc.png);
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .bg-special::before {
    --w: 100vw;
    --h: 48.606012vw;
    position: absolute;
    top: -11vw;
    left: unset;
    background: url(/flcache_data/charge/docomo_max/images/bg_special_accents_smt.png);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
  }
}

/* bg-ryoukin */
.bg-ryoukin {
  position: relative;
  padding: 70px 0 50px;
  background: url(/flcache_data/charge/docomo_max/images/bg_ryoukin_main_v2_pc.svg);
  background-size: auto;
  background-position: center top;
  background-repeat: repeat-x;
  background-color: #FFF0F4;
}
@media screen and (max-width: 768px) {
  .bg-ryoukin {
    padding: 50px 0;
    background: url(/flcache_data/charge/docomo_max/images/bg_ryoukin_main_v2_smt.svg),#fef0f4 70%;
    background-size: contain;
    background-repeat: repeat-x;
    /*background-image: linear-gradient(#ffffff 0%, #fef0f4 70%);*/
  }
}

/* bg-otoku */
.bg-otoku {
  position: relative;
  padding: 70px 0 50px;
  background: #FFF5F5;
}


/* bg-red */
.bg-red {
  position: relative;
  padding: 60px 0;
  background: url(/flcache_data/charge/docomo_max/images/bg_red_main_pc.svg);
  background-size: 100% auto;
  background-position: center top;
  background-repeat: repeat-y;
  overflow: hidden;
}
 @media screen and (max-width: 768px) {
  .bg-red {
      padding: 0;
    /*background: url(/flcache_data/charge/docomo_max/images/bg_red_main_smt.svg);*/
    background-size: 100% auto;
    background-repeat: repeat-y;
  }
}
.waribiki-area.bg-red::before {
  --w: 1443px;
  --h: 875px;
  content: "";
  position: absolute;
  top: -45px;
  left: calc(50% - var(--w) / 2 + 10px);
  display: block;
  width: var(--w);
  height: var(--h);
  background: url(/flcache_data/charge/docomo_max/images/bg_waribiki_accents_pc.svg);
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}




/* --- smt 余白調整 --- */
@media screen and (max-width: 767px) {
  .catalog-section__inner{
    padding: 0 10px;
  }
}



/* --- catalog-special --- */
.catalog-special {
  width: 100%;
  padding: 40px 80px;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .catalog-special {
    background-color: transparent;
    padding: 0;
  }
}
.catalog-special__ttl {
  position: relative;
  top: -0px;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .catalog-special__ttl img {
    max-width: 95%;
  }
}

@media screen and (min-width: 768px) {
.apply-method__tel-btn{
  display: none;
}
}

@media screen and (max-width: 767px) {
.apply-method .apply-method__tel-btn{
  display: flex;
  align-items: center;
  padding: 2px;
  border-radius: 10px;
  background: #C03;
  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.20);
  align-items: center;
  color: #fff!important;
}
}

@media screen and (max-width: 767px) {
.apply-method__tel-btn-icon{
  background: #fff;
  align-self: stretch;
  width: 32px;
  border-radius: 8px 0 0 8px;
  display: flex;
  align-items: center;
}
}

@media screen and (max-width: 767px) {
.apply-method__tel-btn-icon img{
  margin: 0 auto;
}
}
@media screen and (max-width: 767px) {
.apply-method .apply-method__tel-btn-txt{
  text-align: center;
  font-size: 115%;
  font-weight: bold;
  width: calc(100% - 32px);
}
}

@media screen and (max-width: 767px) {
.apply-method__tel-btn-s-txt{
  font-size: 75%;
}
}

/* --- waribiki-area --- */
.waribiki-area .catalog-section__inner{
  padding-bottom: 60px 0;
}
@media screen and (max-width: 768px) {
  .waribiki-area.bg-red{
    background: #fff;
    padding-bottom: 60px;
  }
  .waribiki-area .catalog-section__inner{
    margin-top: 0;
    background: #fff;
    padding: 0 10px 20px;
  }
  .waribiki-area .catalog-section__bg-white{
    padding: 15px 0;
  }
}

/* --- bnr-mydocomo --- */
.bnr-mydocomo a{
  box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.20);
  border-radius: 10px;
}

@media screen and (min-width: 768px) {
  .bnr-mydocomo a:hover{
    opacity: 0.8;
  }
}

/* modal-note */
.modal-note {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  z-index: 100;
}
.modal-note__dsc-area {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  width: 400px;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  z-index: -1;
  transition: 0.2s all;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .modal-note__dsc-area {
    width: 80vw;
  }
}
.modal-note__dsc-area.is-show {
  opacity: 1;
  z-index: 100;
  pointer-events: auto;
}
.modal-note__dsc-area::after {
  --w: 12px;
  --h: 8px;
  content: "";
  position: absolute;
  bottom: -12px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: var(--h) solid transparent;
  border-left: var(--h) solid transparent;
  border-top: var(--w) solid rgba(0, 0, 0, 0.6);
  border-bottom: 0;
}
.modal-note__dsc-area__close {
  display: flex;
  justify-content: end;
  position: absolute;
  top: 0;
  right: 0;
  padding-top: 4px;
  padding-right: 4px;
  width: 30px;
  height: 30px;
}
.modal-note__dsc-area__close img {
  height: 100%;
  cursor: pointer;
}
.modal-note__dsc-area__dsc {
  width: 100%;
  margin-top: 25px;
  font-size: 1.2rem;
  color: #fff;
}
.modal-note__icon {
  position: absolute;
  bottom: -40px;
  left: 187px;
  width: 22px;
  height: 22px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .modal-note__icon {
    left: 48vw;
    width: 19px;
    height: 19px;
  }
}
.modal-note__icon img {
  width: 100%;
}

/* モーダル用 */
#catalog-modal-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}
#catalog-modal-area.active {
  visibility: visible;
  opacity: 1;
}

.catalog-modal-area__content {
  width: 100%;
}

.catalog-modal-slider {
  width: 100%;
}
.catalog-modal-slider__item {
  position: relative;
  height: 100vh;
  display: flex!important;
  justify-content: center;
  align-items: center;
}
.slick-initialized .slick-slide {
  display: flex !important;
}
.catalog-modal-slider__item__body {
  --w: 980px;
  --h: 516px;
  position: relative;
  display: flex;
  flex-direction: column;
  width: var(--w);
  margin: 0 auto;
  padding: 40px 87px;
  background-color: #fff;
  border-radius: 10px;
  background: url(/flcache_data/charge/docomo_max/images/bg_modal_pc.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .catalog-modal-slider__item__body {
    --w: 94vw;
    --h: 74.5vh;
    max-height: var(--h);
    padding: 32px 14px;
    background: url(/flcache_data/charge/docomo_max/images/bg_modal_smt.png);
    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;
  }
}
.catalog-modal-slider__item__body__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 62px 60px;
  background-color: #fff;
  border-radius: 10px;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .catalog-modal-slider__item__body__inner {
    padding: 31px 24px;
  }
}
.catalog-modal-slider__item__body__inner__ttl {
  color: #000;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .catalog-modal-slider__item__body__inner__ttl {
    font-size: 2rem;
  }
}
.catalog-modal-slider__item__body__inner__ttl + .catalog-modal-slider__item__inner__txt {
  margin-top: 20px;
}
.catalog-modal-slider__item__body__inner__txt {
  color: #000;
  font-size: 1.6rem;
  line-height: 180%;
}
@media screen and (max-width: 768px) {
  .catalog-modal-slider__item__body__inner__txt {
    font-size: 1.5rem;
  }
}
.catalog-modal-slider__item__body__inner__txt strong {
  color: #C03;
  font-weight: bold;
}
.catalog-modal-slider__item__body__inner__btn-area {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: auto;
}
.catalog-modal-slider__item__body__inner__btn-area__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 310px;
  padding: 14px 40px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 16.8px;
  color: #fff;
  background: linear-gradient(90deg, #C03 0%, #F06789 100%);
  border-radius: 100vw;
  text-decoration: none;
  transition: 0.2s all;
}
.catalog-modal-slider__item__body__inner__btn-area__btn:visited, .catalog-modal-slider__item__body__inner__btn-area__btn:active {
  color: #fff;
}
.catalog-modal-slider__item__body__inner__btn-area__btn .ico-arrow {
  --s: 8px;
  content: "";
  position: relative;
  top: calc(var(--s) * -0.14);
  margin-left: 4px;
  width: var(--s);
  height: var(--s);
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg);
}
.catalog-modal-slider__item__body__inner__btn-area__btn:hover {
  opacity: 0.8;
  color: #fff;
}
.catalog-modal-slider__item__close-btn {
  --s: 40px;
  position: absolute;
  top: 21px;
  right: 33px;
  font-size: 0;
  width: var(--s);
  height: var(--s);
  background: url(/flcache_data/charge/docomo_max/images/ico_close_w.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .catalog-modal-slider__item__close-btn {
    top: -48px;
    right: 4px;
  }
}

.catalog-modal-slider .slick-list {
  overflow: unset !important;
}
.catalog-modal-slider .slick-prev, .catalog-modal-slider .slick-next {
  --s: 40px;
  position: absolute;
  top: calc(50% - var(--s) / 2);
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--s);
  height: var(--s);
  background-color: #fff;
  border-radius: 100vw;
  font-size: 0;
  border: none;
  cursor: pointer;
}
.catalog-modal-slider .slick-prev::before, .catalog-modal-slider .slick-next::before {
  --s: 11px;
  content: "";
  position: absolute;
  width: var(--s);
  height: var(--s);
  border-bottom: 4px solid #cc0033;
  border-right: 4px solid #cc0033;
  transform: rotate(-45deg);
}
.catalog-modal-slider .slick-prev {
  left: calc(50% - 504px);
}
@media screen and (max-width: 768px) {
  .catalog-modal-slider .slick-prev {
    left: 0;
  }
}
.catalog-modal-slider .slick-prev::before {
  right: 9px;
  transform: rotate(135deg);
}
.catalog-modal-slider .slick-next {
  right: calc(50% - 498px);
}
@media screen and (max-width: 768px) {
  .catalog-modal-slider .slick-next {
    right: 0;
  }
}
.catalog-modal-slider .slick-next::before {
  left: 9px;
}

.catalog-modal-slider .slick-prev,
.catalog-modal-slider .slick-prev {
  background: #fff !important;
  z-index: 100 !important;
}

.catalog-modal-slider .slick-prev:hover,
.catalog-modal-slider .slick-prev:focus,
.catalog-modal-slider .slick-next:hover,
.catalog-modal-slider .slick-next:focus {
  color: unset !important;
  background: #fff !important;
  z-index: 100 !important;
}

html:has(.catalog-modal-slider .slick-active[data-slick-index="0"]) .slick-prev {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

html:has(.catalog-modal-slider .slick-active[data-slick-index="4"]) .slick-next {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}


/* 高さ調整 */
@media screen and (max-width: 768px) {
  .s-h-300-smt {
    height: 300px;
  }
}

/* txt-side-line */
.txt-side-line{
margin-top: 40px;
}
.txt-side-line span{
display: inline-block;
position: relative;
padding: 0 10px;
}
.txt-side-line span:before,
.txt-side-line span:after{
content: "";
display: block;
width: 1px;
height: 27px;
position: absolute;
background: #000;
}
.txt-side-line span:before{
left: -10px;
bottom: -2px;
transform: rotate(-45deg);
}
.txt-side-line span:after{
right: -10px;
bottom: -2px;
transform: rotate(45deg);
}