@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Zen+Antique+Soft&family=Lato:wght@700&family=Poppins:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700;900&display=swap');
/* simulation用CSS */
.bootstrap p,
.bootstrap ol,
.bootstrap ul,
.bootstrap dl{
  margin: 0;
}
.bootstrap label{
  margin: 0;
  cursor: pointer;
}
.bootstrap table{
  width: 100%;
}
.bootstrap a{
  color: #272727;
}
.bootstrap a:hover,
.bootstrap a:focus{
  color: #bc2739;
  text-decoration: none;
}
.bootstrap a.oval-link{
  text-decoration: none;
}
.bootstrap a.oval-link--border--red{
  color: #bc2739;
}
.bootstrap a.oval-link--red{
  background: #bc2739;
}
.bootstrap .breadcrumb{
  padding: 0;
  background: transparent;
}

.font--lato {
  font-family: 'Lato', 'Noto Sans JP', Helvetica, Neue Haas Grotesk, Arial;
}

.text-underline,
.bootstrap a.text-underline{
  color: #272727;
  text-decoration: underline;
}
.text-underline:hover,
.text-underline:focus
.bootstrap .text-underline:hover,
.bootstrap .text-underline:focus {
  color: #bc2739;
  text-decoration: none !important;
}

.text,
.bootstrap p.text{
  margin: 22px 0 36px;
}


.main-heading{
  margin-top: 60px!important;
  font-size: 44px!important;
  font-weight: bold!important;
}
.main-heading--left-border::before{
  height: calc(100% - 0.7rem);
}

.catch{
  margin: 32px 0 0!important;
  font-size: 20px;
}
.catch + .hover-item--link{
  margin: 5px 0 0 !important;
  display: inline-block;
}

.background--gray{
  padding: 50px 0 60px;
  background: #F3F3F3;
}


/* 左右スラッシュテキスト */
.text-slash{
  position: relative;
  text-align: center;
}
.text-slash__item{
  position: relative;
  display: inline-block;
  padding: 0 20px;
  font-weight: bold;
  line-height: 1.3;
}
.text-slash__item::before,
.text-slash__item::after{
  position: absolute;
  top: 50%;
  content: "";
  display: inline-block;
  width: 2px;
  height: 50px;
  background: #272727;
}
.text-slash__item::before{
  left: 0;
  transform: translateY(-50%) rotate(-22deg);
}
.text-slash__item::after{
  right: 0;
  transform: translateY(-50%) rotate(22deg);
}

/* 見出し */
.underline-heading{
  font-size: 40px!important;
  font-weight: bold!important;
  line-height: 1.4!important;
  text-align: center;
}
.underline-heading span{
  display: inline-block;
  background: linear-gradient(transparent 80%, #F5DEE1 80%);
}

.primary-heading{
  margin: 0 0 32px !important;
  padding-bottom: 72px;
  font-size: 40px !important;
  font-weight: bold !important;
}
.primary-heading::after{
  width: 2px;
}

/* テキスト */
.underline-box{
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
.underline-box span{
  display: inline;
  background: linear-gradient(transparent 80%, #F5DEE1 80%);
}

@media (max-width: 768px) {
  .breadcrumb{
    display: none!important;
  }

  .main-heading{
    font-size: 30px!important;
  }

  .catch{
    margin-top: 24px !important;
    font-size: 18px;
  }

  /* 左右スラッシュテキスト */
  .text-slash__item{
    padding: 0 6px;
  }
  .text-slash__item::before,
  .text-slash__item::after{
    height: 76px;
  }
  .text-slash__item::before{
    transform: translateY(-50%) rotate(-20deg);
  }
  .text-slash__item::after{
    transform: translateY(-50%) rotate(20deg);
  }

  /* 見出し */
  .underline-heading{
    font-size: 32px!important;
  }

  .primary-heading{
    padding-bottom: 54px;
    font-size: 32px!important;
  }

}







/* ---------------------------------------
	タブ
--------------------------------------- */
.tab{
  display: flex;
  margin: 46px 0 0!important;
  border: 10px solid #F3F3F3;
}

.tab-item{
  width: 50%;
}
.tab-item + .tab-item{
  border-left: 10px solid #F3F3F3;
}
.tab-item a{
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 70px 0 60px;
  text-decoration: none;
}
.tab-item a::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(/themes/custom/subsphere/images/resources/icon_circle_anchor-d.webp) no-repeat center / 100%;
}

.tab-item .text-slash{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.tab-item img{
  display: block;
  max-width: 462px;
  margin: 15px auto 0;
}
.tab-item .tag{
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 100vh;
  background: #BC2739;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 768px) {
  .tab{
    display: block;
    margin-top: 54px !important;
  }

  .tab-item{
    width: 100%;
  }
  .tab-item + .tab-item{
    border-top: 10px solid #F3F3F3;
    border-left: none;
  }

  .tab-item img{
    width: 100%;
    margin-top: 18px;
  }
  .tab-item .tag{
    top: -44px;
  }

    .tab-item:nth-child(2) a{
    padding: 42px 0 50px;
  }
  .tab-item:nth-child(2) img{
    width: 96%;
    margin-top: 12px;
  }
}


/* ---------------------------------------
	ページ内リンク
--------------------------------------- */
.inner-link{
  margin: 45px 0 0!important;
}
.inner-link li{
  padding: 0 30px;
}
.inner-link li:not(:last-of-type){
  border: none;
}
.inner-link li a{
  display: inline-block;
  padding: 0 0 42px!important;
}
.inner-link li a::after{
  top: auto!important;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%)!important;
}

@media (max-width: 768px) {
  .inner-link{
    margin-top: 42px!important;
  }
  .inner-link li{
    /* padding: 0 30px; */
  }
  .inner-link li:nth-child(n + 2){
    margin-top: 10px;
  }
  .inner-link li:not(:last-of-type){
    /* border: none; */
  }
  .inner-link li a{
    display: block;
    padding: 0 20px 8px 0 !important;
    border-bottom: 1px solid #F3F3F3;
  }
  .inner-link li a::after{
    top: 50% !important;
    bottom: auto;
    left: auto;
    transform: translateY(-50%) !important;
    /* top: auto!important;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%)!important; */
  }

}


/* ---------------------------------------
	ボタン横並び
--------------------------------------- */
.btn-area{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 30px;
  margin: 46px 0 0;
}
.btn-area .oval-link{
  width: 380px;
  max-width: 100%;
}
.btn-area .text-slash{
  margin: 0 0 20px;
}
.btn-area .text-slash__item{
  padding: 0 12px;
  color: #BC2739;
}
.btn-area .text-slash__item::before{
  transform: translateY(-50%) rotate(-30deg);
}
.btn-area .text-slash__item::after{
  transform: translateY(-50%) rotate(30deg);
}
.btn-area .text-slash__item::before,
.btn-area .text-slash__item::after{
  height: 26px;
  background: #BC2739;
}
@media (max-width: 768px) {
  .btn-area{
    flex-direction: column;
  }
  .btns-item{
    width: 100%;
  }
  .btn-area .oval-link{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    padding: 0;
    font-size: 16px;
  }
}


/* ---------------------------------------
	タブ
--------------------------------------- */
.tabs{
  max-width: 1064px;
  margin: 0 auto;
}
.tab-list{
  display: flex;
  margin: 80px 0 0;
  justify-content: center;
}
.tab-button{
  position: relative;
  width: 50%;
  padding: 0;
  border: none;
  border-radius: 8px 8px 0 0 !important;
  overflow: hidden !important;
  background: #fff;
  cursor: pointer;
}

.tab-button span{
  display: block;
  border-right: 2px solid #E5E5E5;
  border-left: 2px solid #E5E5E5;
  padding: 24px 10px 22px;
  background: #eee;
  color: #7D7D87;
  font-size: 20px;
  font-weight: bold;
}
.tab-button span::after{
  content: "";
  display: inline-block;
  width: calc(100% + 4px);
  height: 8px;
  background: #E5E5E5;
  top: 0;
  position: absolute;
  left: -2px;
}
.tab-button.is-active span{
  background: #fff;
  color: #4B6C8D;
}
.tab-button.is-active span::after{
  background: #4B6C8D;
}

.tab-body{
  display: none;
  padding: 60px 92px 50px;
  border-right: 2px solid #E5E5E5;
  border-bottom: 2px solid #E5E5E5;
  border-left: 2px solid #E5E5E5;
}
.tab-body.is-show {
  display: block;
}

@media (max-width: 768px) {
  .tab-list{
    margin-top: 40px;
  }

  .tab-button span{
    padding: 17px 10px 9px;
    font-size: 18px;
  }
  .tab-body{
    padding: 22px 13px 19px;
  }
}


/* ---------------------------------------
	タブ本体 ドコモBizかけ放題
--------------------------------------- */
.border-box{
  overflow: hidden;
  border: 2px solid #CF0134;
  border-radius: 12px;
}
.border-box__heading{
  padding: 25px;
  background: #CF0134;
}
.border-box__heading .text-slash__item{
  padding: 0 55px;
  color: #fff;
  font-size: 30px;
}
.border-box__heading .text-slash__item .font--small{
  font-size: 26px;
}
.border-box__heading .text-slash__item .font--middle{
  font-size: 28px;
}
.border-box__heading .text-slash__item::before,
.border-box__heading .text-slash__item::after{
  width: 3px;
  height: 80px;
  background: rgba(255, 255, 255, .6);
}
.border-box__heading .text-slash__item::before{
  transform: translateY(-50%) rotate(-18deg);
}
.border-box__heading .text-slash__item::after{
  transform: translateY(-50%) rotate(18deg);
}

.border-box__body{
  position: relative;
  padding: 45px 86px 52px;
}
.border-box__text{
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
@media (max-width: 768px) {
  .border-box{
    border-radius: 6px;
  }
  .border-box__heading{
    padding: 10px;
  }
  .border-box__heading .text-slash__item{
    padding: 0 10px;
    font-size: 13px;
    font-weight: normal;
  }
  .border-box__heading .text-slash__item .font--small{
    font-size: 10px;
  }
  .border-box__heading .text-slash__item .font--middle{
    font-size: 11px;
  }
  .border-box__heading .text-slash__item::before,
  .border-box__heading .text-slash__item::after{
    width: 2px;
    height: 32px;
  }

  .border-box__body{
    padding: 15px 26px 22px;
  }
  .border-box__text{
    font-size: 10px;
  }
}


.price-box{
  position: relative;
  max-width: 498px;
  margin: 10px auto 0;
}
.price-box__new{
  position: absolute;
  top: 31px;
  left: -66px;
  width: 85px;
}
.price-box__logo{
  width: 420px;
  margin: 0 auto!important;
}

.price{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #CF0134;
  font-weight: bold;
}
.price::after{
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 20px;
  background: rgba(207, 1, 52, .2);
}
.price-label{
  font-size: 49px;
  line-height: 1;
}
.price-value{
  font-family: 'Poppins', 'Noto Sans JP', Helvetica, Neue Haas Grotesk, Arial;
  font-size: 125px;
  line-height: 1;
}
.price-unit{
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  font-size: 58px;
  line-height: 1;
}
.price-capacity{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 51px;
  height: 51px;
  border-radius: 50%;
  background: #CF0134;
  color: #fff;
  font-family: 'Poppins', 'Noto Sans JP', Helvetica, Neue Haas Grotesk, Arial;
  font-size: 18px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .price-box{
      margin-top: 6px;
  }
  .price-box__new{
    top: 1px;
    left: -17px;
    width: 44px;
  }
  .price-box__logo{
    width: 85%;
  }

  .price{
    padding-right: 12px;
  }
  .price-label{
    margin-right: 10px!important;
    font-size: 10px;
  }
  .price-value{
    margin-right: 8px!important;
    font-size: 58px;
  }
  .price-unit{
    font-size: 22px;
  }
  .price-capacity{
    width: 30px;
    height: 30px;
    font-size: 10px;
  }
}


.fee{
  max-width: 498px;
  margin: 3px auto 0;
  color: #CF0134;
  text-align: right;
}
.fee-label{
  font-size: 24px;
}
.fee-value{
  font-size: 36px;
  font-family: 'Poppins', 'Noto Sans JP', Helvetica, Neue Haas Grotesk, Arial;
  font-weight: 500;
}
.fee-unit{
  font-size: 25px;
}
.fee-note{
  font-size: 13px;
}
@media (max-width: 768px) {
  .fee-label{
    font-size: 11px;
  }
  .fee-value{
    font-size: 20px;
  }
  .fee-unit{
    font-size: 12px;
  }
  .fee-note{
    font-size: 8px;
  }
}


.breakdown{
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0 0!important;
  border-top: 2px solid #CF0134;
}
.breakdown dt,
.breakdown dd{
  width: 50%;
  margin: 0;
  padding: 17px 0;
  border-bottom: 1px solid #D0D0D0;
}
.breakdown dt{
  display: flex;
  align-items: center;
  padding-left: 36px;
  font-size: 18px;
  text-align: left;
}
.breakdown dt span{
  font-size: 16px;
}
.breakdown dd .breakdown-item{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 4px;
}
.breakdown-price{
  font-family: 'Poppins', 'Noto Sans JP', Helvetica, Neue Haas Grotesk, Arial;
  font-size: 21px;
  font-weight: bold;
}
.breakdown-price span{
  font-size: 18px;
}
.breakdown-text{
  font-family: 'Poppins', 'Noto Sans JP', Helvetica, Neue Haas Grotesk, Arial;
  font-size: 18px;
  font-weight: bold;
}
.breakdown-text span{
  font-weight: normal;
}
.breakdown-note{
  min-width: 135px;
  font-size: 18px;
}

.breakdown--small dt{
  font-size: 15px;
}
.breakdown--small .breakdown-price{
  font-size: 17px;
}
.breakdown--small .breakdown-price span{
  font-size: 14px;
}
.breakdown--small .breakdown-note{
  min-width: 90px;
  font-size: 12px;
}
@media (max-width: 768px) {
  .breakdown{
    margin-top: 10px !important;
  }
  .breakdown dt,
  .breakdown dd{
    padding: 7px 0;
  }
  .breakdown dt{
    padding-left: 8px;
    font-size: 10px;
  }
  .breakdown dt span{
    font-size: 8px;
  }
  .breakdown dd .breakdown-item{
    padding-right: 0;
  }
  .breakdown-price{
    font-size: 11px;
  }
  .breakdown-price span{
    font-size: 10px;
  }
  .breakdown-note{
    min-width: 60px;
    font-size: 8px;
  }

  .breakdown-text{
    font-size: 9px;
  }
  .breakdown-text span{
    font-size: 8px;
  }
  
  .breakdown--small dt{
    font-size: 8px;
  }
  .breakdown--small .breakdown-price{
    font-size: 9px;
  }
  .breakdown--small .breakdown-price span{
    font-size: 7px;
  }
  .breakdown--small .breakdown-note{
    min-width: 50px;
    font-size: 7px;
  }



}


.services{
  position: relative;
  margin: 82px 0 0;
  padding: 20px 20px 34px;
  border-radius: 6px;
  background: #FFEDF1;
  text-align: center;
}
.services::before{
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 39px;
  height: 39px;
  background: url(/sites/default/files/media/service/mobile/plan-biz/image/icon_plus.webp) no-repeat center / contain;
}
.services-title{
  font-size: 18px;
}
.services-block{
  margin: 12px 0 0!important;
  padding: 10px;
  border-radius: 3px;
  background: #fff;
}
.services-text{
  margin: 10px 0 0!important;
}
.services-block > span{
  color: #CF0134;
  font-size: 18px;
  font-weight: 600;
}
.services-block > span span{
  font-weight: 500;
}

.services-block--phone > span{
  position: relative;
  padding-left: 24px;
}
.services-block--phone > span::before{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 14px;
  height: 17px;
  background: url(/sites/default/files/media/service/mobile/plan-biz/image/icon_tel.webp) no-repeat center / contain;
}
@media (max-width: 768px) {
  .services{
    margin-top: 36px;
    padding: 10px 20px 14px;
  }
  .services::before{
    top: -28px;
    width: 18px;
    height: 18px;
  }
  .services-title{
    font-size: 10px;
  }
  .services-block{
    margin-top: 6px !important;
    padding: 1px;
  }
  .services-text{
    font-size: 8px;
  }
  .services-block > span{
    padding-left: 14px;
    font-size: 10px;
  }
  .services-block--phone > span::before{
    width: 8px;
    height: 12px;
  }

}

.breakdown-more{
  margin: 35px 0 0;
}
.breakdown-more__point{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 119px;
  height: 58px;
  margin: 0 auto!important;
  padding: 0 0 12px;
  background: url(/sites/default/files/media/service/mobile/plan-biz/image/icon_more.webp) no-repeat center / contain;
  font-size: 19px;
  font-weight: 500;
}

.breakdown-more__text{
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 2px 0 0;
}
.breakdown-more__text p{
  border-bottom: 2px dotted #CF0134;
  color: #CF0134;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.8;
}
.breakdown-more__text p + p{
  margin-top: 6px;
}

.note-list{
  margin: 27px 0 0!important;
  font-size: 13px;
  line-height: 1.7;
}
.note-list + .note-list{
  margin-top: 20px!important;
}
.note-text{
  margin-top: 10px!important;
  font-size: 13px;
}
@media (max-width: 768px) {
  .breakdown-more{
    margin-top: 13px;
  }
  .breakdown-more__point{
    width: 53px;
    height: 26px;
    padding-bottom: 6px;
    font-size: 8px;
  }

  .breakdown-more__text p{
    font-size: 10px;
  }

  .note-list{
    margin-top: 10px !important;
    font-size: 8px;
    line-height: 1.55;
  }
  .note-list + .note-list{
    margin-top: 12px !important;
  }
  .note-text{
    font-size: 8px;
  }
}




/* ---------------------------------------
	タブ本体 ドコモBizデータ無制限
--------------------------------------- */
.tab-body--data .border-box__heading .text-slash__item{
  padding: 0 25px;
  font-size: 28px;
}
.tab-body--data .border-box__text{
  font-size: 20px;
}

.tab-body--data .price-box{
  margin-top: 12px;
}
.tab-body--data .price-box__logo{
  width: 456px;
}

@media (max-width: 768px) {
  .tab-body--data .border-box__heading .text-slash__item{
    padding: 0 12px;
    font-size: 12px;
  }
  .tab-body--data .border-box__text{
    font-size: 9px;
  }

  .tab-body--data .price-box{
    width: 98%;
    margin-top: 7px;
  }
  .tab-body--data .price-box__logo{
    width: 100%;
  }
  
}

.discount-heading{
  margin: 34px 0 0 !important;
  padding: 12px 10px;
  border-radius: 4px 4px 0 0;
  background: #FFEDF1;
  color: #CF0134;
  font-size: 20px !important;
  font-weight: bold !important;
  text-align: center;
}
.discount-heading--border{
  background: #fff;
  border: 2px solid #CF0134;
}

.discount{
  margin: 29px 0 0;
}
.discount-list{
  display: flex;
}
.discount-item{
  width: calc(100% / 3);
  padding: 0 30px;
  text-align: center;
}
.discount-item + .discount-item{
  border-left: 1px solid #D0D0D0;
}
.discount-item__label{
  font-size: 28px;
  font-weight: bold;
  font-family: 'Lato', 'Noto Sans JP', Helvetica, Neue Haas Grotesk, Arial;
  line-height: 1.3;
}
.discount-item__label sup{
  color: #CF0134;
}
.discount-item__value{
  font-family: 'Poppins', 'Noto Sans JP', Helvetica, Neue Haas Grotesk, Arial;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.1;
}

.discount-item__unit{
  font-size: 24px;
}
.discount--after .discount-item__label,
.discount--after .discount-item__value{
  color: #CF0134;
}
.discount-item__value--fee,
.discount--after .discount-item__value--fee{
  color: #333;
  font-size: 17px;
  font-weight: 500;
}
.discount-item__value--fee .discount-item__unit{
  font-size: 13px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .discount-heading{
    margin-top: 10px!important;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 10px!important;
  }
  .discount-heading--border{
    margin-top: 12px;
    padding: 3px 10px;
    border-radius: 0;
    font-size: 11px;
  }

  .discount{
    margin-top: 10px;
  }

  .discount-item{
    padding: 0;
  }
  .discount-item + .discount-item{
    border: none;
  }
  .discount-item__label{
    font-size: 12px;
  }
  .discount-item__value{
    font-size: 20px;
  }
  .discount-item__unit{
    font-size: 12px;
  }
  .discount-item__value--fee,
  .discount--after .discount-item__value--fee{
    font-size: 9px;
  }
  .discount-item__value--fee .discount-item__unit{
    font-size: 7px;
  }
}


.tab-body--data .services{
  padding: 32px 78px 78px;
  border-radius: 24px;
}
.tab-body--data .services-title{
  font-size: 20px;
  font-weight: bold;
}
.tab-body--data .services-block{
  margin: 20px 0 0 !important;
  padding: 0;
  background: none;
}
.tab-body--data .services-item{
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 28px 10px 28px 40px;
  border: 1px solid #CF0134;
  border-radius: 4px;
  background: #fff;
}
.services-item:nth-child(n + 2){
  margin-top: 32px;
}
.services-item__image{
  width: 106px;
  height: 106px;
  background: #F2F2F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-item__image img{
  width: 66px;
}
.services-item__text{
  text-align: left;
}
.services-text--gray{
  color: #5A5A5A;
  font-size: 16px;
}
.services-text--red{
  color: #CF0134;
  font-size: 20px;
  font-weight: bold;
}
.services-text--red span{
  font-size: 26px;
}
.services-text--red span span{
  font-size: 22px;
}
.services-text--black{
  color: #333;
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .tab-body--data .services{
    padding: 8px 22px 20px;
    border-radius: 6px;
  }
  .tab-body--data .services-title{
    font-size: 9px;
  }
  .tab-body--data .services-block{
    margin-top: 10px !important;
  }
  .tab-body--data .services-item{
    gap: 7px;
    padding: 10px 0;
    border: none;
    border-top: 1px solid #CF0134;
    border-radius: 0;
    background: transparent;
  }
  .tab-body--data .services-item:last-of-type{
    border-bottom: 1px solid #CF0134;
  }
  .services-item:nth-child(n + 2){
    margin-top: 0;
  }
  .services-item__image{
    width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    background: #fff;
  }
  .services-item__image img{
    width: 28px;
  }
  .services-text--gray,
  .services-text--black{
    font-size: 7px;
  }
  .services-text--red{
    font-size: 8px;
  }
  .services-text--red span{
    font-size: 11px;
  }
  .services-text--red span span{
    font-size: 9px;
  }
}


.info-box{
  margin: 48px 0 0;
  border: 1px solid #D4D4D4;
  border-radius: 4px;
  overflow: hidden;
}
.info-box__title{
  padding: 12px 10px;
  background: #FFEDF1;
  color: #CF0134;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.info-box__body{
  padding: 15px 10px 24px;
  text-align: center;
}
.info-box__text{
  color: #444444;
  font-size: 27px;
  font-family: 'Poppins', 'Noto Sans JP', Helvetica, Neue Haas Grotesk, Arial;
  font-weight: bold;
}
.info-box__text span{
  font-size: 16px;
}
.info-box__note{
  display: flex;
  justify-content: center;
  margin: 17px 0 0 1rem!important;
  font-size: 14px;
  text-align: left;
  text-indent: -1rem;
}
@media (max-width: 768px) {
  .info-box{
    margin-top: 20px;
    border: none;
  }
  .info-box__title{
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
  }
  .info-box__body{
    margin-top: 10px;
    padding: 0;
  }
  .info-box__text{
    font-size: 16px;
  }
  .info-box__text span{
    font-size: 9px;
  }
  .info-box__note{
    margin-top: 10px !important;
    font-size: 7px;
  }
}


.discount-point__text{
  margin: 29px 0 0!important;
  color: #CF0134;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 768px) {
  .discount-point__text{
    margin-top: 20px !important;
    font-size: 10px;
  }
}


.accordion-button{
  position: relative;
  display: block;
  margin: -26px auto 0 !important;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50% !important;
  background: #CC0033 !important;
  cursor: pointer !important;
}
.accordion-button::before,
.accordion-button::after{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0)!important;
  content: "";
  display: inline-block;
  background: #fff;
}
.accordion-button::before{
  width: 24px;
  height: 2px;
}
.accordion-button::after{
  width: 2px;
  height: 24px;
}
.accordion-button.is-open::after{
  display: none;
}
@media (max-width: 768px) {
  .accordion-button{
    margin: -14px auto 0!important;
    width: 28px;
    height: 28px;
    padding: 0 !important;
  }
  .accordion-button::before{
    width: 12px;
  }
  .accordion-button::after{
    height: 12px;
  }
}


.border-box--more{
  display: none;
  position: relative;
  overflow: unset;
  margin: 88px 0 0;
}
.border-box--more.is-show{
  display: block;
}
.border-box--more::before{
  position: absolute;
  top: -31px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  width: 38px;
  height: 31px;
  background: url(/sites/default/files/media/service/mobile/plan-biz/image/more_block_bg-pc.webp) no-repeat center / 100%;
}
@media (max-width: 768px) {
  .border-box--more{
    margin-top: 22px;
  }
  .border-box--more::before{
    top: -15px;
    left: 50%;
    width: 13px;
    height: 15px;
    background: url(/sites/default/files/media/service/mobile/plan-biz/image/more_block_bg-sp.webp) no-repeat center / 100%;
  }
}


.breakdown + .discount-heading{
  position: relative;
  margin: 137px 0 0!important;
}
.breakdown + .discount-heading::before{
  position: absolute;
  top: -101px;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: inline-block;
  border-top: 52px solid #CF0134;
  border-right: 54px solid transparent;
  border-left: 54px solid transparent;
}
@media (max-width: 768px) {
  .tab-body--data .breakdown dt{
    width: 40%;
  }
  .tab-body--data .breakdown dd{
    width: 60%;
  }
  .tab-body--data .breakdown--small dt{
    width: 60%;
  }
  .tab-body--data .breakdown--small dd{
    width: 40%;
  }
  .breakdown + .discount-heading{
    margin-top: 50px!important;
  }
  .breakdown + .discount-heading::before{
    top: -36px;
    border-top-width: 22px;
    border-right-width: 24px;
    border-left-width: 24px;
  }
  
}



/* ---------------------------------------
	CTAブロック
--------------------------------------- */
.cta{
  margin: 100px 0 0;
}
.cta .btn-area{
  margin-top: 54px;
}
.flow + .cta{
  margin-top: 0;
}
@media (max-width: 768px) {
  .cta{
    margin-top: 60px;
  }
  .cta .btn-area{
    margin-top: 50px;
  }
  .btn-area .text-slash{
    margin-bottom: 23px;
    font-size: 15px;
  }
}


/* ---------------------------------------
	おすすめオプションサービス
--------------------------------------- */
.option{
  margin: 64px 0 0;
}
.option-list{
  display: flex;
  justify-content: center;
  gap: 20px;
}
.option-item{
  width: 286px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
  border-radius: 10px;
  overflow: hidden;
}
.option-item a{
  text-decoration: none;
}
.option-item a:hover{
  color: #272727;
}
.option-item:nth-child(n+2){
  margin: 0;
  padding: 0;
  border: none;
}
.option-detail{
  padding: 24px;
}
.option-tag{
  display: inline-block;
  border: 1px solid #BC2739;
  color: #BC2739;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  padding: 6px 10px;
}
.option-title{
  margin: 14px 0 0 !important;
  font-size: 22px !important;
  font-weight: bold !important;
  line-height: 1.27 !important;
}
.option-text{
  margin: 12px 0 0 !important;
  font-size: 14px;
  line-height: 1.42;
}
.option-note{
  color: #272727;
  font-size: 12px;
  text-indent: 0;
}
@media (max-width: 768px) {
  .content-inner--pd0__sp{
    padding: 0;
  }
  .option .scroll-block{
    margin-top: -24px;
  }
  .option-list{
    justify-content: flex-start;
  }
  .option-item{
    min-width: 286px;
  }
  .option .btn-area{
    padding: 0 24px;
  }
}



/* ---------------------------------------
	お申し込みの流れ
--------------------------------------- */
.flow{
  margin: 80px 0 0;
  padding: 68px 0 60px;
}
.flow .content-inner{
  width: 960px;
}
.flow .underline-heading{
  color: #bc2739;
}
.intro-lead{
  margin: 12px 0 0!important;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 1.7;
}

.flow-list{
  display: flex;
  gap: 40px;
  margin: 83px 0 0!important;
}

.flow-item{
  position: relative;
  width: calc((100% - 120px) / 4);
  padding: 62px 20px 23px;
  border: 3px solid #CC0033;
  border-radius: 8px;
  background: #fff;
}
.flow-step{
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(204, 0, 51, 1), rgba(214, 3, 56, 1) 30%, rgba(223, 6, 60, 1));
  line-height: 1;
}
.flow-step__text{
  color: #FFF718;
  font-size: 15px;
  font-family: 'Montserrat', 'Noto Sans JP', Helvetica, Neue Haas Grotesk, Arial;
}
.flow-step__num{
  color: #FEFEFE;
  font-size: 44px;
  font-family: 'Poppins', 'Noto Sans JP', Helvetica, Neue Haas Grotesk, Arial;
  font-weight: 600;
}
.flow-title{
  display: flex;
  align-items: center;
  justify-content: center;
  color: #CC0033;
  font-size: 20px !important;
  font-weight: bold !important;
  text-align: center;
}
.flow-image{
  width: 89px;
  margin: 10px auto 0 !important;
}
.flow-text{
  margin: 15px 0 0!important;
}
@media (max-width: 768px) {
  .flow{
    margin-top: 60px;
    padding: 34px 0 42px;
  }
  .flow .content-inner{
    width: 100%;
    padding: 0 14px;
  }
  .flow .underline-heading{
    font-size: 20px!important;
  }
  .intro-lead{
    font-size: 11px;
  }

  .flow-list{
    flex-wrap: wrap;
    gap: 40px 30px;
    margin-top: 42px !important;
  }
  .flow-item{
    position: relative;
    padding: 28px 15px 20px;
    width: calc(50% - 15px);
    border-radius: 4px;
  }
  .flow-item:nth-child(even)::before{
    content: "";
    position: absolute;
    top: 50%;
    left: -24px;
    transform: translateY(-50%);
    display: inline-block;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    border-left: 16px solid #CF0134;
  }
  .flow-step{
    top: -26px;
    width: 52px;
    height: 52px;
  }
  .flow-step__text{
    font-size: 9px;
  }
  .flow-step__num{
    font-size: 20px;
  }
  
  .flow-title{
    font-size: 12px!important;
    font-weight: 500!important;
  }
  .flow-image{
    width: 51px;
    margin-top: 4px !important;
  }
  .flow-text{
    margin-top: 7px !important;
    font-size: 10px;
  }


}



/* お申し込みの際に必要なもの */
.requirements-block{
  position: relative;
  margin: 74px 0 0;
  padding: 52px 110px;
  border: 3px solid #D50337;
  border-radius: 8px;
  background: #fff;
}
.requirements-heading{
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
  min-height: 42px;
  margin: 0 !important;
  font-size: 28px !important;
  font-weight: bold !important;
  text-align: center;
}
.requirements-heading span{
  position: relative;
  display: inline-block;
  height: 100%;
  padding: 0 12px;
}
.requirements-heading span::before{
  position: absolute;
  top: 17px;
  left: 0;
  content: "";
  display: inline-block;
  width: 100%;
  height: 10px;
  background: #fff;
  z-index: -1;
}

.requirements-list{
  display: flex;
  flex-wrap: wrap;
  gap: 30px 50px;
}
.requirements-item{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: calc(50% - 25px);
  padding: 17px 0 17px 24px;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
}
.requirements-item:nth-child(1){
  order: 1;
}
.requirements-item:nth-child(2){
  order: 3;
}
.requirements-item:nth-child(3){
  order: 5;
}
.requirements-item:nth-child(4){
  order: 2;
}
.requirements-item:nth-child(5){
  order: 4;
}
.requirements-num{
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  color: #CC0033;
  font-size: 32px;
  font-weight: bold;
}

.requirements-text{
  font-size: 21px;
  font-weight: bold;
}
.requirements-text .alphabet{
  font-size: 19px;
}
.requirements-text span:not(.alphabet){
  font-size: 17px;
}

.requirements-note{
  font-size: 14px;
}

@media (max-width: 768px) {
  .requirements-block{
    margin-top: 32px;
    padding: 20px 14px;
    border-radius: 4px;
  }

  .requirements-heading{
    top: -10px;
    min-width: 216px;
    min-height: 20px;
    font-size: 14px!important;
    font-weight: 500!important;
  }
  .requirements-heading span::before{
    top: 7px;
  }

  .requirements-list{
    gap: 12px 20px;
  }
  .requirements-item{
    width: calc(50% - 10px);
    padding: 5px 3px 6px 9px;
  }

  .requirements-num{
    left: -7px;
    font-size: 16px;
  }
  .requirements-text{
    font-size: 11px;
    font-weight: 500;
  }
  .requirements-text .alphabet{
    font-size: 12px;
  }
  .requirements-text span:not(.alphabet),
  .requirements-note{
    display: block;
    font-size: 9px;
  }



}



/* ---------------------------------------
	お得な機種割引キャンペーン
--------------------------------------- */
.campaign{
  margin: 62px 0 0;
}
.bnr-link{
  width: 1016px;
  margin: 0 auto!important;
}
.campaign .underline-box{
  margin: 110px 0 0!important;
}
.campaign .btn-area{
  align-items: center;
  flex-direction: column;
  gap: 40px;
  margin: 50px 0 60px;
}

@media (max-width: 768px) {
  .bnr-link{
    width: 100%;
  }

  .campaign .underline-box{
    margin-top: 60px !important;
    font-size: 24px;
  }
  .campaign .text-underline{
    font-size: 18px;
    font-weight: 500;
  }
}









