@charset "utf-8";

/* == base ============================================== */
html {
  font-size: 62.5%;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.08em;
  color: #333;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
a {
  display: block;
}
main {
  display: block;
}
input,
textarea {
  -webkit-appearance: none;
  appearance: none;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.sp_only {
  display: none !important;
}

/* ▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲
            header
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲ */
.headerSP {
  display: none !important;
}
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateY(0);
  transition: linear 0.2s;
  z-index: 100;
}

#js-header.change {
  transform: translateY(-54%);
}

/*  ====== 下ナビゲーション ===== */
.navBott {
  position: relative;
  display: flex;
  justify-content: space-between;
  z-index: 4;
}

.navBott > li {
  text-align: center;
  width: 16.67%;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #fff;
  border-right: 1px solid #fff;
  box-sizing: border-box;
}

.navBott > li:last-child {
  border: none;
}

.navBott > li > a {
  padding: 12px 0;
  background-color: #cf0f31;
  transition: linear 0.2s;
}

.navBott > li.navOpp {
  position: relative;
  cursor: pointer;
  padding: 12px 0;
  color: #fff;
  background-color: #56a523;
  transition: linear 0.2s;
}

.navBott > li.navOpp::before {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 22px;
  height: 15px;
  background: url(../img/Arrow-down.svg) center no-repeat;
  background-size: contain;
  visibility: hidden;
  transition: linear 0.2s;
}

.navBott > li.navOpp.open::before {
  visibility: visible;
}

.navBott > li.app a {
  background-color: #f89829;
}

.navOpp span {
  position: relative;
  padding-right: 25px;
}

.navOpp span::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  right: 0;
  background: url(../img/Arrow-navOpp.svg) center no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  transition: linear 0.2s;
}

/* ========= ホバーアニメーション ========== */

.navBott > li:hover > a {
  color: #cf0f31;
  background-color: rgba(255, 255, 255, 0.95);
}

.navBott > li.app:hover a {
  color: #fff;
  background-color: #c47b26;
}

.navBott > li.navOpp:hover {
  color: #56a523;
  background-color: rgba(255, 255, 255, 0.95);
}

.navBott > li.navOpp:hover span::before {
  background: url(../img/Arrow-navOppf.svg) center no-repeat;
}

/* ====== ▼アコーディオンオープン時  ======= */

.navBott > li.navOpp.open:hover {
  color: #fff;
  background-color: #56a523;
}

.navBott > li.navOpp.open:hover span::before {
  background: url(../img/Arrow-navOpp.svg) center no-repeat;
}

/* ---- アニメーション設定 ---- */

#js-navBott.change > li {
  color: #cf0f31;
  border-right: solid 1px #eaeaea;
}

#js-navBott.change > li:last-child {
  border-right: none;
}

#js-navBott.change > li > a {
  transition: background-color linear 0.2s;
  padding: 17px 0;
  background-color: rgba(255, 255, 255, 0.95);
}

#js-navBott.change > li.navOpp {
  transition: all linear 0.2s;
  padding: 17px 0;
  background-color: rgba(255, 255, 255, 0.95);
}

#js-navBott.change > li.navOpp.open {
  color: #fff;
  background-color: rgba(86, 165, 32, 0.95);
}

#js-navBott.change > li.navOpp::before {
  display: none;
}

#js-navBott.change > li.app a {
  background-color: #f89829;
  color: #fff;
}

#js-navBott.change > li.navOpp span::before {
  background: url(../img/Arrow-f-navOpp.svg) center no-repeat;
}
#js-navBott.change > li.navOpp.open span::before {
  background: url(../img/Arrow-navOpp.svg) center no-repeat;
}

#js-navBott.change > li:hover > a {
  color: #fff;
  background-color: rgba(207, 15, 49, 0.95);
}

#js-navBott.change > li.app:hover a {
  color: #fff;
  background-color: #c47b26;
}

#js-navBott.change > li:hover.navOpp {
  color: #fff;
  background-color: rgba(86, 165, 35, 0.95);
}

#js-navBott.change > li.navOpp:hover span::before {
  background: url(../img/Arrow-navOpp.svg) center no-repeat;
}

/* ==== ヘッダーブレイクポイント ===== */
@media screen and (max-width: 1000px) {
  .headerPC {
    display: none !important;
  }
  .headerSP {
    display: block !important;
  }

  header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 10;
  }

  .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 59.47%;
    padding-left: 20px;
    border-bottom: solid 4px #cc0033;
    background-color: #fff;
  }

  /*  */
  .headerItem {
    display: flex;
    height: 64px;
  }

  /* ハンバーガーメニュー */
  .hamBtn {
    width: 17.07%;
    height: 64px;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #fff;
    cursor: pointer;
    border: none;
    z-index: 10;
    border-bottom: solid 4px #cc0033;
  }
  .hamBtn .border {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    display: block;
    height: 2px;
    width: 32px;
    background-color: #333;
    transition: all 0.2s;
  }
  .hamBtn .border:nth-of-type(1) {
    top: 16px;
  }
  .hamBtn .border:nth-of-type(2) {
    top: 24px;
  }
  .hamBtn .border:nth-of-type(3) {
    top: 32px;
  }
  .hamBtn .js-hamText {
    position: absolute;
    top: 37px;
    left: 50%;
    transform: translate(-50%, 0);
    font-weight: bold;
    color: #333;
  }
  .hamBtn.active .border:nth-of-type(1) {
    transform: translate(-50%, 0) rotate(-43deg);
    top: 23px;
  }
  .hamBtn.active .border:nth-of-type(2) {
    left: 55%;
    opacity: 0;
    visibility: hidden;
  }
  .hamBtn.active .border:nth-of-type(3) {
    transform: translate(-50%, 0) rotate(43deg);
    top: 23px;
  }
  /* webで申し込み */
  .webLink {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f89829;
    color: #fff;
    font-weight: bold;
    width: 23.47%;
    border-bottom: solid 4px #cc0033;
  }

  .headerLsit {
    max-height: 90vh;
    overflow: auto;
    background-color: #fff;
    box-shadow: 0 3px 6px 0 #666;
  }

  .c-mainList {
    position: relative;
    font-size: 1.6rem;
    font-weight: bold;
    border-bottom: 1px solid #eaeaea;
  }

  .c-mainList:nth-child(1) {
    border-top: 1px solid #eaeaea;
  }

  .c-mainList a {
    padding: 20px 0 20px 40px;
  }

  /* アコーディオン */

  .c-mainList--accordion span {
    display: block;
    padding: 20px 0 20px 40px;
  }

  .js-accoContent {
    opacity: 0;
    visibility: hidden;
    height: 0;
    font-size: 1.4rem;
    transition: all 0.2s;
  }

  .js-accoContent.open {
    opacity: 1;
    visibility: visible;
    height: 560px;
  }

  .js-accoContent li a {
    padding: 10px 0 10px 0;
    margin-left: 50px;
    border-bottom: 1px solid #eaeaea;
  }

  .c-mainList::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 26px;
    right: 24px;
    background: url(../img/Icon-headerListArrow.svg) center no-repeat;
    background-size: contain;
    width: 8px;
    height: 12px;
  }

  .c-mainList--accordion::before {
    transform: rotate(90deg);
  }

  /* SIS */
  .c-mainList--sis {
    background-color: #56a523;
    color: #fff;
  }
  .c-mainList--sis::before {
    background: url(../img/Icon-headerListArrow-f.svg) center no-repeat;
  }
  /* 光 */
  .c-mainList--hikari {
    background-color: #f9be2c;
    color: #fff;
  }
  .c-mainList--hikari::before {
    background: url(../img/Icon-headerListArrow-f.svg) center no-repeat;
  }
  /* ドコモ */
  .c-mainList--docomo {
    background-color: #cf0f31;
    color: #fff;
  }
  .c-mainList--docomo::before {
    background: url(../img/Icon-headerListArrow-f.svg) center no-repeat;
  }

  .c-subList {
    position: relative;
    font-size: 1.4rem;
    font-weight: 500;
    background-color: #eaeaea;
    border-bottom: solid 1px #fff;
  }
  .c-subList::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 17px;
    right: 24px;
    background: url(../img/Icon-headerListArrow.svg) center no-repeat;
    background-size: contain;
    width: 8px;
    height: 12px;
  }
  .c-subList a {
    padding: 10px 0 10px 40px;
  }

  /* アニメーション設定 */

  #js-SPheaderItem {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
  }
  #js-SPheaderItem.active {
    position: relative;
    opacity: 1;
    visibility: visible;
  }
  /*  */
  #js-LogoItem {
    transition: all 0.2s;
  }

  #js-LogoItem.fade {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
  }

  #js-LogoItem.fade.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  /*  */
  #js-webLink {
    transition: all 0.2s;
  }

  #js-webLink.fade {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
  }

  #js-webLink.fade.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
            パンくず
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */

.breadcrumb {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 6px 0 6px 80px;
  z-index: 2;
}
.breadcrumbItem {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  padding-right: 17px;
  margin-right: 8px;
}
.breadcrumbItem::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  display: inline-block;
  background: url(../img/Arrow-breadcrumb.svg) center no-repeat;
  background-size: contain;
  width: 5px;
  height: 8px;
}
.breadcrumbItem:last-child::after {
  display: none;
}

.breadcrumbItem a {
  color: #56a520;
  border-bottom: 1px solid #56a520;
  transition: all 0.2s;
}

.breadcrumbItem a:hover {
  opacity: 0.7;
}
/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
            共通
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */

/* ==== 共通タイトル ==== */

.c-Title {
  position: relative;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 80px;
}

.c-Title img {
  display: block;
  margin: 0 auto;
  margin-bottom: 12px;
}

/* タイトル左右につくIcon */
.c-TitleIcon {
	text-align: center;
}
.c-TitleIcon.u-mini {
	font-size: 1.6rem;
	font-weight: bold;
}
.c-TitleIcon.u-big {
	margin-top: 80px;
	margin-bottom: 48px;
}
.c-TitleIcon.common_mg {
	margin-top: 0;
	margin-bottom: 48px;
}
.c-TitleIcon .TitleIcon-en {
	display: block;
	font-size: 1.6rem;
	font-weight: 700;
	color: #cf0f31;
}
.c-TitleIcon .TitleIcon-en::before {
    content: "";
    display: inline-block;
    margin-right: 16px;
    width: 23px;
    height: 12px;
    background: url(../img/icon-title_left.svg) left center no-repeat;
}
.c-TitleIcon .TitleIcon-en::after {
    content: "";
    display: inline-block;
    margin-left: 16px;
    width: 23px;
    height: 12px;
    background: url(../img/icon-title_right.svg) right center no-repeat;
}
.c-TitleIcon.p-white .TitleIcon-en::before {
	background: url(../img/icon-title_left_white.svg) left center no-repeat;
}
.c-TitleIcon.p-white .TitleIcon-en::after {
	background: url(../img/icon-title_right_white.svg) right center no-repeat;
}
.c-TitleIcon .TitleIcon-ja {
	display: block;
	font-weight: 700;
}
.c-TitleIcon.p-white .TitleIcon-en,
.c-TitleIcon.p-white .TitleIcon-ja {
    color: #fff;
}
.c-TitleIcon.u-mini .TitleIcon-ja {
	font-size: 1.8rem;
}
.c-TitleIcon.u-big .TitleIcon-ja {
	font-size: 3.2rem;
}

/* ===== ボタン ==== */
.c-btn {
  display: block;
}
.c-btn a {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  display: block;
  text-align: center;
  width: 300px;
  padding: 20px 0;
  border-radius: 40px;
  background-color: #56a523;
  box-shadow: 0px 4px #448319;
  transition: all 0.2s;
  margin: 0 auto;
}

.c-btn a span {
  position: relative;
}

.c-btn a::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 28px;
  right: 28px;
  background: url(../img/Arrow-cBtn.svg) center no-repeat;
  background-size: contain;
  width: 6px;
  height: 10px;
  transition: all 0.2s;
}

.c-btn a:hover {
  transform: translateY(4px);
  background-color: #448319;
  box-shadow: none;
}

.c-btn a:hover::before {
  right: 20px;
}

.c-btn--m a {
  width: 488px;
  padding-top: 28px;
  padding-bottom: 28px;
}
.c-btn--m a::before {
  top: 35px;
}

/* (白) */
.c-btn--f a {
  color: #15a369;
  background-color: #fff;
  box-shadow: 0px 4px #15a369;
}
.c-btn--f a:before {
  background: url(../img/Arrow-cBtn-f.svg) center no-repeat;
}

.c-btn--f a:hover {
  color: #fff;
  background-color: #15a369;
}

.c-btn--f a:hover::before {
  background: url(../img/Arrow-cBtn.svg) center no-repeat;
}

/* オプション */
.c-btn--opp a {
  width: 488px;
  color: #56a520;
  background-color: #fff;
  box-shadow: 0px 4px #56a520;
  border: solid 2px #56a520;
  padding-top: 28px;
  padding-bottom: 28px;
}

.c-btn--opp a::before {
  top: 35px;
  background: url(../img/Arrow-cBtn-opp.svg) center no-repeat;
}

.c-btn--opp a:hover {
  color: #fff;
  background-color: #56a520;
}

.c-btn--opp a:hover::before {
  background: url(../img/Arrow-cBtn.svg) center no-repeat;
}

/* (オレンジ) */
.c-btn--o a {
  width: 84%;
  color: #fff;
  background-color: #f89829;
  box-shadow: 0px 4px #c47b26;
}

.c-btn--o a:hover {
  color: #fff;
  background-color: #c47b26;
}

/*  */
.c-btn--uni span {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  display: block;
  text-align: center;
  width: 300px;
  padding: 20px 0;
  border-radius: 40px;
  background-color: #56a523;
  box-shadow: 0px 4px #448319;
  transition: all 0.2s;
  margin: 0 auto;
}

.c-btn--uni span {
  position: relative;
}

.c-btn--uni span::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 28px;
  right: 28px;
  background: url(../img/Arrow-cBtn.svg) center no-repeat;
  background-size: contain;
  width: 6px;
  height: 10px;
  transition: all 0.2s;
}

/* ===== リンクなしバージョン(シャドウなし&hoverなし) ===== */

.c-btn--noH span {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  display: block;
  text-align: center;
  width: 300px;
  padding: 15px 0;
  border-radius: 40px;
  background-color: #56a520;
  /* box-shadow: 0px 4px #448319; */
  transition: all 0.2s;
  margin: 0 auto;
}

.c-btn--noH span {
  position: relative;
}

.c-btn--noH span::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 23px;
  right: 28px;
  background: url(../img/Arrow-cBtn.svg) center no-repeat;
  background-size: contain;
  width: 6px;
  height: 10px;
  transition: all 0.2s;
}

/* ====== リンクなし(シャドウあり) ===== */

.c-btn--uni span {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  display: block;
  text-align: center;
  width: 300px;
  padding: 20px 0;
  border-radius: 40px;
  background-color: #56a523;
  box-shadow: 0px 4px #448319;
  transition: all 0.2s;
  margin: 0 auto;
}

.c-btn--uni span {
  position: relative;
}

.c-btn--uni span::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 23px;
  right: 28px;
  background: url(../img/Arrow-cBtn.svg) center no-repeat;
  background-size: contain;
  width: 6px;
  height: 10px;
  transition: all 0.2s;
}

/* ====== リンクあり(シャドウなし) ===== */

.c-btn--noS a {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  display: block;
  text-align: center;
  width: 300px;
  padding: 16px 0;
  border-radius: 40px;
  background-color: #56a523;
  box-shadow: none;
  transition: all 0.2s;
  margin: 0 auto 22px auto;
}

.c-btn--noS a {
  position: relative;
}

.c-btn--noS a::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 24px;
  right: 28px;
  background: url(../img/Arrow-cBtn.svg) center no-repeat;
  background-size: contain;
  width: 6px;
  height: 10px;
  transition: all 0.2s;
}

.c-btn--noS a:hover {
  transform: translateY(0px);
}

/* ====== リンクあり(シャドウなし)別タブオレンジ ===== */

.c-btn--noO a {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  display: block;
  text-align: center;
  width: 300px;
  padding: 16px 0;
  border-radius: 40px;
  background-color: #56a520;
  box-shadow: none;
  transition: all 0.2s;
  margin: 0 auto 22px auto;
}

.c-btn--noO a {
  position: relative;
}

.c-btn--noO a::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 24px;
  right: 28px;
  background: url(../img/Arrow-cBtn.svg) center no-repeat;
  background-size: contain;
  width: 6px;
  height: 10px;
  transition: all 0.2s;
}

.c-btn--noO a:hover {
  background-color: #448319;
  transform: translateY(0px);
}

/* ======= 別タブボタンの場合 ====== */

.B-tab a::before {
  top: 20px;
  right: 25px;
  background: url(../img/icon_link.svg) center no-repeat;
  width: 16px;
  height: 16px;
}

.B-tab a:hover::before {
  right: 25px;
}

/* ==== SIS光の特徴 ==== */

.c-btn--point span {
  position: relative;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 500;
  color: #333;
  display: block;
  text-align: center;
  width: 80%;
  padding: 8px 0 9px 0;
  border-radius: 40px;
  border: solid 1px #333333;
  transition: all 0.2s;
  margin: 0 auto;
}

.c-btn--point span {
  position: relative;
}

.c-btn--point span::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 12px;
  right: 15px;
  background: url(../img/sec_feature/icon-Arrow.svg) center no-repeat;
  background-size: contain;
  width: 6px;
  height: 10px;
  transition: all 0.2s;
}

/* ===== 事前申告フォームへ ===== */

.c-btn--ad a {
  width: 384px;
  padding: 28px 0;
}

.c-btn--ad a::before {
  top: 35px;
}

/* ===== WEBでお申し込み ===== */
.c-btn--web a {
  width: 384px;
  padding: 28px 0;
  background-color: #f89829;
  box-shadow: 0px 4px #c47b26;
}

.c-btn--web a:hover {
  background-color: #c47b26;
  box-shadow: none;
}

.c-btn--web a::before {
  top: 31px;
  right: 31px;
}

.c-btn--web a:hover::before {
  right: 31px;
}

/* ===== ドコモ光に関するお問い合わせ ===== */
.c-btn--dqa a {
  margin-top: 40px;
  padding: 16px 0;
  background-color: #cf0f31;
  box-shadow: 0px 4px #aa2d0e;
}

.c-btn--dqa a:hover {
  background-color: #aa2d0e;
}

/* ===== トップページへ ===== */
.c-btn--rev {
  margin: 80px auto 0 auto;
}

.c-btn--rev a {
  width: 488px;
  padding: 28px 0;
}
.c-btn--rev a::before {
  background: url(../img/icon-Arrow-rev.svg) center no-repeat;
  top: 37px;
  left: 40px;
}
.c-btn--rev a:hover::before {
  left: 32px;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
            fixedBtn
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */

.fixedBtn {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 120px;
  right: 50px;
  z-index: 10;
  transition: all 0.2s;
}

.fixedInner {
  position: relative;
  width: 160px;
  height: 160px;
  overflow: hidden;
  background-color: #daeed3;
  border-radius: 50%;
  border: solid 4px #56a523;
}

.fixedBtn .fukidashi {
  position: absolute;
  top: -15px;
  left: -15px;
  z-index: 11;
}

.fixedInner::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/fixed-zuumo-icon.svg) center no-repeat;
  background-size: contain;
  width: 152px;
  height: 163px;
  transition: transform 0.2s;
}

.fixedInner:hover::after {
  transform: translateY(-9px);
}

.fixedBtn.fixed {
  opacity: 1;
  visibility: visible;
}

.fixedBtn.none {
  opacity: 0;
  visibility: hidden;
}
/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
            sec_mv
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */

main {
  position: relative;
  transition: linear 0.2s;
  margin-top: 118px;
}

/* スライダー */
.slideInner {
	position: relative;
	display: block;
	content: "";
	background: url(../img/sec_mv/img-mv01.jpg) no-repeat center bottom;
	background-size: cover;
	width: auto;
	height: 520px;
}
.zuumoArea{
	position: absolute;
	bottom: -61px;
	left: 10.6%;
	width: 178px;
	height: 248px;
}

.slideTextArea {
  text-align: center;
  width: 100%;
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media all and (max-width: 1100px) {
  .slideInner{
    height: 640px;
  }
	.slideTextArea {
		top: 45%;
	}
}

@media all and (max-width: 1300px) {
	.zuumoArea{
		left: 3.5%;
	}
  .slideTextArea{
    top: 50%;
  }
}
  @media screen and (min-width: 768px) and (max-width:1100px) {
	  .zuumoArea{
      position: absolute;
      bottom: -35px;
      left: 42.091vw;
      width: 212px;
      height: 166px;
    }
  }

  @media screen and (min-width: 768px) and (max-width:950px) {
	  .slideTextArea{
		  width: 90%;
	  }
  }

.mvTitle img {
  margin: 0 auto 30px auto;
}
@media screen and (max-width:1200px) {
  .mvTitle img{
    width: 50.972vw;
  }
}

/* .slideTitle {
  font-size: 4.4rem;
  font-weight: 900;
  color: #fff;
  background-color: #2ea6c3;
  display: inline-block;
  margin-bottom: 24px;
  padding: 0 10px;
}

.slideTitle span {
  font-size: 2.8rem;
} */

.slideText {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
        sec_news(お知らせ)
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */

.sec_news {
  padding: 32px 0 38px 0;
  background-color: #1d8b5e;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
      sec_wise(光について)
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */

.sec_wise {
  padding: 80px 0 100px 0;
  background: url(../img/sec_wise/img-wiseBG.svg) center repeat;
  background-color: #f4f8f9;
}

.wiseInner {
  width: 100%;
  max-width: 728px;
  margin: 0 auto;
  text-align: center;
}

.wiseTitle {
  margin-bottom: 40px;
}

.wiseText {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 64px;
}

.wiseText span {
  font-size: 2rem;
  font-weight: bold;
  color: #cf0f31;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
      sec_charge(ご利用料金)
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */
.sec_charge {
  padding-top: 87px;
}
.chargeInner {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding-bottom: 130px;
}

.chargeList {
  width: 100%;
  margin-bottom: 35px;
  display: flex;
  justify-content: space-between;
}

.chargeListItem {
  width: 43%;
  text-align: center;
}

.chargeListItem img {
  display: block;
  margin: 0 auto;
  margin-bottom: 23px;
}

.chargeSubTitle {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  background-color: #aaaaaa;
  color: #fff;
  padding: 10px 0;
  margin-bottom: 30px;
}

.chargeText {
  font-size: 1.6rem;
  font-weight: bold;
}

.chargeText span {
  font-size: 5.6rem;
  font-weight: bold;
  color: #cf0f31;
  line-height: 1;
  padding: 0 5px;
}

.chargeAttText {
  font-size: 1.4rem;
  font-weight: 400;
  color: #666666;
  line-height: 1.7;
}

.chargeAttText a {
  font-weight: bold;
  display: inline;
  color: #cf0f31;
  border-bottom: solid 1px #cf0f31;
}

.pointLIstTitle {
  font-size: 2.4rem;
  font-weight: bold;
  color: #f89829;
  display: inline-block;
  margin-bottom: 10px;
}
.pointLIstTitle--green {
  color: #56a520;
}
.pointLIstTitle span {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  display: block;
  text-align: right;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
      sec_detail(料金そのままもっとオトク)
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */

.sec_detail {
  background-color: #f2f4f5;
  padding: 95px 0 120px;
}

.detailTitle {
  text-align: center;
}

.detaiInner {
  width: 100%;
  max-width: 990px;
  margin: 95px auto 0 auto;
}

.dListItem {
  margin-bottom: 120px;
}

.dListItem:last-of-type {
  margin-bottom: 0;
}

.dListTitle {
  position: relative;
  padding-top: 166px;
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.dListTitle::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-size: contain;
  width: 274px;
  height: 142px;
}

.dListItem:nth-of-type(1) .dListTitle::before {
  background: url(../img/sec_detail/icon-dlist01.svg) center no-repeat;
}

.dListItem:nth-of-type(2) .dListTitle::before {
  background: url(../img/sec_detail/icon-dlist02.svg) center no-repeat;
}

.dListItem:nth-of-type(3) .dListTitle::before {
  background: url(../img/sec_detail/icon-dlist03.svg) center no-repeat;
}

.dListText {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}
.dListText span {
  color: #cf0f31;
}

.dListSubText {
  margin-top: 56px;
}

.dLinkWrap {
  display: flex;
  justify-content: space-between;
}

.dLink--01 {
  max-width: 820px;
  margin: 0 auto;
}

.dLink a {
  background-color: #fff;
  padding: 40px 0;
  border-radius: 16px 0 16px 0;
  border: solid 4px #e9e9e9;
  box-shadow: 0 4px #d5d9db;
  transition: all 0.2s;
}

.dLinkTitle {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.dLinkTitle span {
  color: #cf0f31;
}

.dLinkTitle span:nth-of-type(1) {
  font-size: 6.4rem;
}

.dLinkTitle span:nth-of-type(2) {
  font-size: 3.2rem;
}

.dLinkText {
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 32px;
}

/* link02 */

.dLink--02 {
  width: 48.08%;
}

.dLinkTitle--02 {
  position: relative;
  padding-bottom: 126px;
  line-height: 1.75;
}

.dLinkTitle--02::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-size: contain;
  width: 142px;
  height: 116px;
}

.dLinkTitle--s::before {
  background: url(../img/sec_detail/icon-dLink01.svg) center no-repeat;
}

.dLinkTitle--m::before {
  background: url(../img/sec_detail/icon-dLink02.svg) center no-repeat;
}

.dLinkTitle--sp::before {
  background: url(../img/sec_detail/icon-dLink03.svg) center no-repeat;
}

.dLinkTitle--r::before {
  background: url(../img/sec_detail/icon-dLink04.svg) center no-repeat;
}

.dLinkText--02 {
  width: 83.19%;
  margin: 0 auto 32px auto;
  text-align: left;
}

/* ===== ホバーアニメーション ===== */
.dLink a:hover {
  transform: translateY(4px);
  box-shadow: none;
}

.dLink a:hover .c-btn--noH span {
  background-color: #448319;
}
.dLink a:hover .c-btn--noH span::before {
  right: 20px;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
        sec_flow(ご利用までの流れ)
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */
.sec_flow{
  padding-top: 85px;
}

.flowTitle {
  margin-bottom: 40px;
}

/* ===== タブ ===== */

.tabBtnWrap {
  width: 100%;
  max-width: 992px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.tab_btn {
  width: 49.8%;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 2;
  padding: 14px 0;
  font-weight: bold;
  color: #999999;
  background-color: #eaeaea;
}

.tab_btn.selected {
  background-color: #cf0f31;
  color: #fff;
}

.contentArea {
  border-top: solid 4px #cf0f31;
  padding: 40px 0 80px 0;
  background-color: #f4f8f9;
}
.ContentInner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* ====== タブ内 ====== */

.stepListItem {
  margin-bottom: 78px;
}

.stepTitle {
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 14px;
  padding-top: 85px;
}

.stepTitle--pt20 {
  padding-top: 20px;
}

.stepTitle::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-size: contain;
  width: 104px;
  height: 71px;
}

.stepTitle--01::before {
  background: url(../img/sec_flow/icon-step01.svg) center no-repeat;
}
.stepTitle--02::before {
  background: url(../img/sec_flow/icon-step02.svg) center no-repeat;
}

.stepTitle span {
  font-size: 1.4rem;
  vertical-align: super;
}

.stepText {
  font-size: 1.6rem;
  font-weight: 500;
}

.stepText a {
  display: inline;
  color: #56a523;
  border-bottom: 1px solid #56a523;
  transition: opacity 0.2s;
}

.stepText a:hover {
  opacity: 0.7;
}

/* ▼転用番号とは・・・ */

.DNText {
  width: 280px;
  margin: 0 auto;
  position: relative;
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 30px;
}
.DNText::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: -100px;
  background: url(../img/sec_flow/icon-zuumo.svg) center no-repeat;
  background-size: contain;
  width: 88px;
  height: 88px;
}

.DNText span:nth-of-type(1) {
  font-size: 10px;
  vertical-align: super;
}
.DNText span:nth-of-type(2) {
  font-size: 1.6rem;
  font-weight: bold;
}

/* ==== 取得方法 ==== */

.DNmethodTitle {
  font-size: 1.6rem;
  font-weight: bold;
  background-color: #333333;
  color: #fff;
  display: inline-block;
  padding: 6px 13px;
  margin-bottom: 36px;
}

.DNmethod {
  max-width: 556px;
  margin: 0 auto 30px auto;
}

.DNmethod > .textbox {
  position: relative;
  border: solid 1px #333;
  border-radius: 16px;
  padding: 33px 40px 24px 40px;
}

.DNmethodText {
  position: absolute;
  top: -9%;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 1.6rem;
  font-weight: 500;
  width: 400px;
  background-color: #f4f8f9;
}

.DNmethodList {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: left;
}

.stepText span:nth-of-type(1) {
  font-size: 10px;
  vertical-align: super;
  line-height: 1;
}

.stepText span:nth-of-type(2) {
  font-size: 1.6rem;
  font-weight: bold;
}

.stepInfo {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.stepInfoItem {
  width: 50%;
}

.stepInfoItem:nth-of-type(2) {
  border-left: 2px dotted #333333;
}

.stepInfoTitle {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 25px;
}

.stepInfoText {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 14px;
}

.stepInfoText span {
  font-size: 4rem;
  font-weight: bold;
  vertical-align: sub;
}

.stepAttText {
  font-size: 1.4rem;
}

/* ===== 申し込み方法 ===== */

.appArea {
  position: relative;
  padding: 60px 0 50px 0;
  border-radius: 16px;
  border: solid 8px #e9e9e9;
  background-color: #fff;
  margin-top: 40px;
}

.appArea::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 50px;
  right: 40px;
  background: url(../img/sec_flow/icon-zuumo02.svg) center no-repeat;
  background-size: contain;
  width: 258px;
  height: 152px;
}

.appTag {
  position: absolute;
  top: -23px;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  background-color: #333333;
  display: inline-block;
  padding: 6px 45px;
}

.appTitle {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.appTitle:nth-of-type(2) {
  margin-top: 40px;
}

.appText {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 40px;
}
.QRImg {
  width: 100px;
  margin-bottom: 20px;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
      sec_Pro(WEBでのお申込み手順)
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */
.sec_Pro {
  padding: 86px 0 80px 0;
  background: url(../img/sec_pro/img-proBG.svg) center repeat;
  background-color: #333333;
}

.ProTitle {
  color: #fff;
}

.tab_btn--pro {
  color: #999999;
  background-color: #666666;
}
.contentArea--pro {
  padding-top: 60px;
  padding-bottom: 0;
  background: none;
}
/*  ドコモのスマートフォンからお申し込みする場合*/
.stepWebItem:nth-of-type(1) {
  margin-bottom: 100px;
}
.stepWebText {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 40px;
}

.stepWebText span {
  color: #4e9a2c;
  font-weight: bold;
}

.stepWebAtt {
  text-align: left;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 30px;
}
.stepWebAtt span {
  font-size: 1.6rem;
}

.stepWebImg01 {
  width: 404px;
  margin: 0 auto 40px auto;
}
.stepWebImg02 {
  position: relative;
  width: 460px;
  margin: 0 auto;
}
.stepWebImg02::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 60px;
  left: -200px;
  background: url(../img/sec_pro/icon-zuumo.svg) center no-repeat;
  background-size: contain;
  width: 212px;
  height: 284px;
}
/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
      sec_faq(よくあるご質問)
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */
.sex_faq {
  background: url(../img/img-faqBG.svg) center repeat;
  background-size: cover;
  padding: 86px 0 120px 0;
  border-bottom: 1px solid #eaeaea;
}

.faqInner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.faqTitle {
  margin-bottom: 62px;
}

.faqListItem {
  padding-bottom: 20px;
  border-bottom: 1px solid #707070;
  margin-bottom: 40px;
}

.faqListItem:last-of-type {
  border: none;
  margin-bottom: 94px;
}

.Qtext {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  color: #cf0f31;
  margin-bottom: 38px;
  padding-left: 66px;
}

.Qtext::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/sec_faq/img-Qicon.svg) center no-repeat;
  background-size: contain;
  width: 22px;
  height: 30px;
}
.Atext {
  position: relative;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
  padding-left: 66px;
}
.Atext::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 0;
  background: url(../img/sec_faq/img-Aicon.svg) center no-repeat;
  background-size: contain;
  width: 21px;
  height: 23px;
}

.Atext > a {
  color: #1571da;
  display: inline-block;
  /* border-bottom: solid 1px; */
  transition: opacity 0.2s;
}

.Atext > a:hover {
  opacity: 0.8;
}

.Atext li > a {
  color: #1571da;
  display: inline;
  /* border-bottom: solid 1px; */
  transition: opacity 0.2s;
}

.Atext li > a:hover {
  opacity: 0.8;
}
.Atext > .Alsit {
  margin-bottom: 10px;
}
.Atext > li > P {
  font-weight: bold;
}
.Atext > li > P span {
  display: block;
  font-weight: 500;
}

.Alsit .AlistAttText {
  font-weight: 500;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
      sec_matt(注意事項、基本説明事項)
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */
.sec_matt {
  padding: 80px 0;
  background-color: #f4f8f9;
}
.mattInner {
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
}

.mattListWrap {
  margin-bottom: 80px;
}
.mattListWrap:last-of-type {
  margin-bottom: 0;
}

.mattTitle {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 56px;
}

.mattListTitle {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 24px;
}

.mattAtt {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.mattListText {
  position: relative;
  font-size: 1.4rem;
  font-weight: 400;
  padding-left: 32px;
  margin-bottom: 8px;
}

.mattListText:last-of-type {
  margin-bottom: 30px;
}

.mattListText::before {
  position: absolute;
  top: 0;
  left: 0;
}
.mattListText:nth-of-type(1):before {
  content: "1.";
}
.mattListText:nth-of-type(2):before {
  content: "2.";
}
.mattListText:nth-of-type(3):before {
  content: "3.";
}
.mattListText:nth-of-type(4):before {
  content: "4.";
}
.mattListText:nth-of-type(5):before {
  content: "5.";
}
.mattListText:nth-of-type(6):before {
  content: "6.";
}
.mattListText:nth-of-type(7):before {
  content: "7.";
}
.mattListText:nth-of-type(8):before {
  content: "8.";
}
.mattListText:nth-of-type(9):before {
  content: "9.";
}
.mattListText:nth-of-type(10):before {
  content: "10.";
}
.mattListText:nth-of-type(11):before {
  content: "11.";
}
.mattListText:nth-of-type(11) {
  margin-bottom: 0;
}

.mattListText span.att {
  font-size: 1.2rem;
}

.mattListText a {
  position: relative;
  color: #c3002f;
  font-weight: 500;
  border-bottom: solid 1px #c3002f;
  display: inline-block;
  margin-right: 22px;
  transition: opacity 0.2s;
}

.mattListText a::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  right: -20px;
  background: url(../img/sec_matt/icon_link.svg) center no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
}

.mattListText a:hover {
  opacity: 0.7;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
      sec_info02(お申し込みはこちら/ご相談はこちら)
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */

.sec_info {
  padding: 120px 0;
}
.infoInner {
  width: 100%;
  max-width: 995px;
  margin: 0 auto;
}

.infoItemWrap {
  display: flex;
  justify-content: space-between;
}
.infoItem {
  width: 48%;
  padding: 32px 30px;
  background-color: #fafafa;
  border: solid 8px #e9e9e9;
  text-align: center;
  border-radius: 16px;
}

.infoItemTitle {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 35px;
}

.infoItemSubTitle {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.6;
}
.info24 {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: bold;
}
.telnum {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-bottom: 15px;
}
.telnum::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/sec_info/img-telicon.svg) center no-repeat;
  background-size: contain;
  width: 20px;
  height: 30px;
}
.infoText {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 2;
}

.infoItemTitle--01 {
  font-size: 2.4rem;
}

.infoItemTitle--01 span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
}

.infoText--01 {
  margin-bottom: 10px;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
      sec_info01(お申し込みはこちら)
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */
.sec_info--01 {
  padding: 80px 0;
}

.infoItem--01 {
  width: 100%;
  padding: 40px 0 47px 0;
  margin-bottom: 40px;
}

.infoList--01 {
  width: 90%;
  margin: 0 auto;
}

.infoList--02 {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.infoList--02 > li {
  width: 48%;
}

.infoItemSubTitle--01 {
  margin-bottom: 24px;
}
.info24--01 {
  margin-top: 16px;
}

.infoAttText {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 30px;
}

.infoAttText a {
  color: #f89829;
  border-bottom: 1px solid #f89829;
  display: inline;
}
.infoAttText a:hover {
  opacity: 0.8;
  border-bottom: none;
}

.infoItem--ad {
  width: 100%;
  padding: 40px 0 40px 0;
}

.infoItemTitle--ad {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.infoText--ad {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 35px;
}
.infoText--ad span {
  font-weight: bold;
}

.c-btn--o.B-tab a {
  width: 384px;
  margin: 0 auto;
  padding: 28px 0;
}

.c-btn--o.B-tab a::before {
  top: 33px;
}

/* --
下層ページスタイルここから
接頭辞: U(Under)
-- */

/* ====== 共通 ====== */

.UmvInner {
  position: relative;
}

.c-UtitleWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-Utitle {
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  background-color: #ef4218;
  padding: 0 12px;
}

.c-subUtitle {
  font-weight: 900;
  text-align: center;
  font-size: 2rem;
  color: #1d8b5e;
  display: block;
  margin-bottom: 9px;
}

.c-Utitle span {
  width: 180px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translate(-50%, 0);
  display: inline-block;
}

/* ======= 共通リスト ======= */

.c-U-section {
  padding: 86px 0 0 0;
}

.c-U-secInner {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.c-U-secItemWrap {
  margin-bottom: 90px;
}

.c-U-secItem {
  width: 82.61%;
  margin: 0 auto 80px auto;
}

.c-U-Text {
  font-size: 2rem;
  text-align: center;
  font-weight: 500;
  margin-bottom: 40px;
}

/* オプションリスト */
.c-opWrap {
  width: 90%;
  margin: 0 auto;
}

.c-opWrap--mb100 {
  margin-bottom: 100px;
}

.c-opListItemWrap {
  margin-bottom: 85px;
}

.c-opListItemWrap--mb40 {
  margin-bottom: 40px;
}

/* h2 */
.U-Title--h2 {
  position: relative;
  font-size: 3.2rem;
  font-weight: 900;
  background-color: #daeed3;
  border-radius: 16px 16px 0 0;
  padding: 25px 0 24px 96px;
  margin-bottom: 48px;
}

.U-Title--h2::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 16px;
  left: 16px;
  background: url(../img/Option/icon-Title.svg) center no-repeat;
  background-size: contain;
  width: 64px;
  height: 64px;
}
.U-Title--h2::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: -5px;
  right: 40px;
  background: url(../img/Option/icon-zuumo.svg) center no-repeat;
  background-size: contain;
  width: 104px;
  height: 110px;
}

/* h3 */
.U-Title--h3 {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 40px;
  padding-bottom: 4px;
  border-bottom: 4px solid #cf0f31;
}

/* h4 */
.U-Title--h4 {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
  border-bottom: 2px solid #cf0f31;
  padding-bottom: 4px;
  margin-bottom: 25px;
}

/* ▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲
        オリジナル付帯オプションサービス
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲*/

.orginalText {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 48px;
}

.c-exList {
  width: 95.79%;
  margin: 0 auto 48px auto;
}

.c-exListItem {
  position: relative;
  font-size: 1.4rem;
  font-weight: 400;
  padding-left: 20px;
  margin-bottom: 18px;
}

.c-exListItem::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.c-exLink {
  position: relative;
  display: inline-block;
  padding-right: 22px;
  margin-right: 2px;
  transition: opacity 0.2s;
}

.c-exLink span {
  color: #56a520;
  border-bottom: solid 1px #56a520;
  font-weight: 500;
}

.c-exLink::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 1px;
  right: 0;
  background: url(../img/Option/icon-link.svg) center no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}

.c-exLink--pdf::before {
  background: url(../img/Option/icon-pdf.svg) center no-repeat;
}

.c-exListItem--num:nth-of-type(1):before {
  content: "1.";
}
.c-exListItem--num:nth-of-type(2):before {
  content: "2.";
}
.c-exListItem--num:nth-of-type(3):before {
  content: "3.";
}

.c-exListItem--num:nth-of-type(4):before {
  content: "4.";
}
.c-exListItem--num:nth-of-type(5):before {
  content: "5.";
}
.c-exListItem--num:nth-of-type(6):before {
  content: "6.";
}
.c-exListItem--num:nth-of-type(7):before {
  content: "7.";
}
.c-exListItem--num:nth-of-type(8):before {
  content: "8.";
}
/* ※＋数字付き */
.c-exListItem--uni {
  padding-left: 28px;
}
.c-exListItem--uni::before {
  content: "※4";
}

.c-exLink:hover {
  opacity: 0.7;
}

.c-exLink--term::before {
  top: 3px;
}

.c-exListItem:last-of-type {
  margin-bottom: 0;
}

.c-TermsBox {
  width: 95.79%;
  margin: 0 auto;
}

.c-TermsBox--mb48 {
  margin-bottom: 48px;
}

.exdiscuss {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2;
  margin-top: 18px;
}

/* お問い合わせ */

.U-infoItemTitle {
  margin-bottom: 23px;
}
/* メール・ホームページ領域リスト*/

.regionListItem {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  padding-left: 36px;
  border-bottom: 2px solid #44831c;
  margin-bottom: 24px;
}
.regionListItem::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 0;
  background: url(../img/Option/icon-region.svg) center no-repeat;
  background-size: contain;
  width: 24px;
  height: 12px;
}

.regionListItem:last-of-type {
  margin-bottom: 0;
}

/* SISサポートメニュー */

.settList {
  margin-bottom: 48px;
}

.settListTitle {
  display: flex;
  font-size: 2.4rem;
  font-weight: bold;
  border-bottom: solid 2px #56a523;
  padding-bottom: 15px;
  color: #56a523;
}

.settListTitle dt:nth-of-type(1) {
  width: 40%;
}
.settListTitle dt:nth-of-type(2) {
  width: 60%;
}

.SettListText {
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 2px dotted #333333;
}

.SettListText dd:nth-of-type(1) {
  width: 40%;
}
.SettListText dd:nth-of-type(2) {
  width: 60%;
}

/* その他、SIS独自の豊富なオプションサービスもご用意しております。 */
.sec_OppList {
  padding: 80px 0;
  background-color: #f2f4f5;
}
.OppListInner {
  margin: 0 auto;
}
.OppListTitle {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}
.OppListWrap {
  margin: 0 auto 64px;
  display: flex;
  justify-content: center;
}
.OppList {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0 16px;
}

@media screen and (max-width: 1000px) {
main {
  margin-top: 64px;
}

}
@media screen and (max-width: 1024px) {
  .infoInner,
  .featureInner,
  .faqInner,
  .chargeInner,
  .detaiInner,
  .c-U-secInner {
    width: 95%;
  }
  .appArea::before {
    bottom: -80px;
    right: -10px;
    width: 228px;
    height: 132px;
  }
  .detailTitle,
  .stepListItem,
  .stepWebItem,
  .mattListWrap {
    width: 95%;
    margin: 0 auto;
  }
  .stepInfo {
    width: 95%;
    margin: 0 auto;
    display: block;
  }
  .stepInfoItem {
    width: 80%;
    margin: 0 auto;
  }
  .stepInfoTitle {
    margin-bottom: 10px;
    margin-top: 20px;
  }
  .stepInfoItem:nth-of-type(2) {
    border-left: none;
  }
  .info24 {
    margin-bottom: 20px;
  }
  .infoItemSubTitle {
    margin-bottom: 10px;
  }
  .telnum {
    font-size: 3.2rem;
  }
  .telnum::before {
    top: 23px;
  }
  .c-btn--opp a {
    max-width: 488px;
    width: 90%;
  }

  .dLinkWrap {
    display: block;
  }
  .dLink--02 {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
  }
  .dLink--02:last-of-type {
    margin-top: 30px;
  }
  .dLinkText--02 {
    max-width: 400px;
    text-align: center;
  }
}

/*==========
Utility
========== */
/* text-align */
.u-textCenter {
  text-align: center;
}
.u-textleft {
  text-align: left;
}

/* margin-top */
.u-mgt8 {
  margin-top: 8px;
}
.u-mgt16 {
  margin-top: 16px;
}
.u-mgt24 {
  margin-top: 24px;
}
.u-mgt40 {
  margin-top: 40px;
}
.u-mgt80 {
  margin-top: 80px;
}
.u-mgt100 {
  margin-top: 100px;
}
.u-mgt120 {
  margin-top: 120px;
}

/* margin-bottom */
.u-mgb16 {
  margin-bottom: 16px;
}
.u-mgb40 {
  margin-bottom: 40px;
}

/* padding */
.u-pdt120 {
  padding-top: 120px;
}

/* width */
.l-width_nomal {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}
.l-width_min {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
            アンケ掲載
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */

/*==============
メインビジュアル
============== */

/* MV bg */
.QmvWrapper{
  position: relative;
  display: block;
  content: "";
  background: url(../img/Questionnaire/SP/mv_questionnaire_background_SP.png) no-repeat center bottom;
  background-size: cover;
  width: auto;
  height: 690px;
}
.Qwhite{
  background:rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 395px;
  position: absolute;
  bottom: 64px;
}
/*SIS for ドコモ光ロゴ・タイトル*/
.QmvTitle h1{
  padding-top: 64px;
  margin: 0 auto 20px auto;
  text-align: center;
  width: auto;
}
.QmvTitle_img{
  width: 605px;
}
.QmvTitle p{
  font-size: 30px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 32px;
  line-height: 2.5rem;
}
/*MVアイテム*/
.QmvItemArea{
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
.QmvBub{
  width: 18%;
  max-width: 300px;
  position: absolute;
  left: 3%;
  top: -35px;
}
.flw_gr{
  width: 5.5%;
  max-width: 60px;
  position: absolute;
  right: 16%;
  top: 20px;
}
.flw_pk{
  width: 7%;
  max-width: 106px;
  position: absolute;
  right: 8%;
  top: 44px;
}
.QmvLogo{
  width: 52%;
  max-width: 748px;
  position:absolute;
  top: -10px;
  right: 0;
  left: 0;
  margin: auto;
  padding-top: 12px;
}
.QcLeft {
  width: 23%;
  max-width: 350px;
  position: absolute;
  bottom: -420px;
  left: 12%;
}
.QcRight {
  width: 23%;
  max-width: 350px;
  position: absolute;
  bottom: -420px;
  right: 12%;
}
.QmvZuumo {
  width: 220px;
  position: absolute;
  right: 0;
  bottom: -450px;
  left: 0;
  margin: auto;
}
@media screen and (min-width: 768px) and (max-width:1000px) {
  .QmvLogo{
    width: 62%;
    max-width: 520px;
    position: absolute;
    top: 20px;
  }
  .QmvBub{
    width: 100%;
    position: absolute;
    top: -2px;
    left: 0;
  }
  .QcLeft,
  .QcRight{
    min-width: 220px;
  }
}
@media screen and (min-width: 1001px) and (max-width:1200px) {
  .QmvLogo{
    position: absolute;
    top: 8px;
  }
}

/*==============
メインコンテンツ
============== */

/* アンケ実施期間 */
.QtextItem p{
  font-size: 20px;
  margin: 40px auto;
  text-align: center;
  font-weight: 400;
  line-height: 2;
}
/*main*/
.QmainWrapper {
  background-color: #1D8B5E;
  padding-top: 120px;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}
.QmainContent {
  padding: 86px 0;
  background-image: url(../img/Questionnaire/main/maincontents_background.png);
  background-repeat: repeat;
  width: 70%;
  max-width: 1100px;
  height: auto;
  border-radius: 20px;
}
.Qmain_01 {
  margin: 0 auto 120px auto;
}
.Qmain_02{
  margin: 0 auto;
}
.QmainItems {
  width: 90%;
  margin: 0 auto;
}
.c-TitleIcon.u-big .QmainTitle {
	font-size: 2.6rem;
  margin-top: 8px;
}
.c-TitleIcon.Qcommon_mg {
	margin-top: 0;
	margin-bottom: 24px;
}
.Qborder {
  width: 150px;
  border-top: #707070 solid 3px;
  margin: 0 auto;
}
.Qgraph {
  display: block;
  width: 400px;
  margin: 64px auto;
}
.QoriginalText {
  font-size: 20px;
  line-height: 3.2rem;
  font-weight: 300;
  letter-spacing: normal;
}
.QoriginalText.Qtext_01{
  text-align: center;
}
/*ズーモのポイント*/
.QpointArea {
  width: 85%;
  margin: 48px auto 0 auto;
  display: grid;
  grid-template-columns: auto auto 70px 70px;
  grid-template-rows: auto auto 30px ;
}
.QpointTitle {
  color: #CF0F31;
  font-weight: bold;
  grid-column: 2/3;
  grid-row: 1/2;
  align-self: end;
}
.QpointArea img {
  grid-column: 3/5;
  grid-row: 1/4;
  width: 140px;
  z-index: 2;
}
.QoriginalText.Qtext_02{
  grid-column: 1/4;
  grid-row: 2/3;
  background-color: #DAE9A6;
  padding: 24px 64px;
  z-index: 1;
}
/*地域別に見るサービス満足度*/
.Qmap {
  display: block;
  margin: 40px auto 24px auto;
  width: 616px;
}
.mapArea h4 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 18px;
}

/*==============
お客さまの声
============== */
.Qvoice {
  background-color: #CDE8E9;
  width: 100%;
  max-width: 900px;
  padding:56px 0;
  margin: 64px auto 0 auto;
}
.Qvoice h6 {
  text-align: center;
  margin-bottom: 8px;
  font-size: 32px;
}
.Qvoice ul {
  margin: 40px auto 0 auto;
  width: 80%;
}
.Qvoice li{
  margin-bottom: 40px;
}
.Qvoice li:last-child{
  margin-bottom: 0;
}
.customer{
  display: flex;
}
.cus_02,
.cus_03{
  width: 80%;
  margin: 0 auto;
}
.Qred {
  color: #ee1e1e;
}
/*文章*/
.cusText{
  font-size:16px;
  font-weight: 300;
  line-height: 2.5rem;
  padding: 8px;
}
.says.says_01 .cusText{
  font-size:20px;
}
.cusAge{
  font-size: 14px;
  padding-right: 8px;
  text-align: right;
}
.says.says_01 .cusAge{
  font-size: 16px;
}
/*アイコン*/
.cusImg{
  width: 36%;
  height: auto;
}
.cusImg.cusLeft{
  text-align: left;
}
.cusImg.cusRight{
  text-align: right;
}
.cusImg img{
  width: 75%;
  max-width: 155px;
}
.customer.cus_01 .cusImg img{
  width: 75%;
  max-width: 190px;
}
/*PC版のフキダシ*/
.says {
  display: inline-block;
  position: relative; 
  padding: 20px 40px;
  width: 64%;
  max-width: 470px;
  border-radius: 12px;
  background: #fff;
}
.cusRight .says.says_01:after {
  content: "";
  position: absolute;
  top: 50px; 
  right: -50px;
  border: 15px solid transparent;
  border-left: 50px solid #fff;
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
}
.cusLeft .says.says_01:after{
  content: "";
  position: absolute;
  top: 50px; 
  left: -50px;
  border: 15px solid transparent;
  border-left: 50px solid #fff;
  -webkit-transform: rotate(-190deg);
  transform: rotate(-190deg);
}
.cusRight .says.says_02:after,
.cusRight .says.says_03:after{
  content: "";
  position: absolute;
  top: 30px; 
  right: -38px;
  border: 10px solid transparent;
  border-left: 50px solid #fff;
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
}
.cusLeft .says.says_02:after,
.cusLeft .says.says_03:after{
  content: "";
  position: absolute;
  top: 30px; 
  left:-38px;
  border: 10px solid transparent;
  border-left: 50px solid #fff;
  -webkit-transform: rotate(-190deg);
  transform: rotate(-190deg);
}
.says.says_02.cusLeft,
.says.says_01.cusLeft,
.says.says_03.cusLeft{
  margin-left: auto;
}

/*==============
〜最後まで
============== */
.QlastText {
  padding: 86px 0;
  margin: 0 auto;
  color: #fff;
  width: 40%;
  text-align: center;
  font-size: 20px;
  line-height: 50px;
  font-weight: 500;
}
.triangle {
  background-color: #1D8B5E;
  height: 85px;
  width: 390px;
  clip-path: polygon(0 0, 100% 0,50% 100%);
  margin: 0 auto 80px auto;
  position: relative;
  top: -1px;
}