@charset "utf-8";
/* == base ============================================== */
html {
  font-size: 62.5%;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: #333;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
a,
a:link,
a:visited,
a:active {
  text-decoration: none;
}
a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
main {
  display: block;
}
input,
textarea {
  -webkit-appearance: none;
  appearance: none;
}
.all_wrapper {
  height: 100vh;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.pc_only {
  display: none !important;
}
/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
            header
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */
.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: 83.47%;
  padding-left: 20px;
  border-bottom: solid 4px #56a523;
  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 #56a523;
}

.hamBtn .border {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  display: block;
  height: 2px;
  width: 32px;
  background-color: #333333;
  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 #56a523;
}

.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 {
  margin-top: 64px;
  width: 100%;
  background-color: #e9e9e9;
  padding: 6px 0 6px 20px;
}
.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;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
            共通
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */

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

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

.c-Title-left {
  position: relative;
  font-size: 3.2rem;
  font-weight: bold;
  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;
}

.TitleIcon-en {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #44831c;
}
.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;
}
.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;
}
.TitleIcon-ja {
  display: block;
  font-weight: 700;
}
.c-TitleIcon.u-mini .TitleIcon-ja {
  font-size: 1.8rem;
}
.c-TitleIcon.u-big .TitleIcon-ja {
  font-size: 2.4rem;
}

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

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

/* (グリーン) */
.c-btn-big--g a {
  width: 85%;
  padding: 30px 0;
  color: #fff;
}

/* (レッド) */
.c-btn-big--d a {
  width: 85%;
  padding: 30px 0;
  color: #fff;
  background-color: #cc0033;
  box-shadow: 0px 4px #aa2d0e;
}

/* ===== ボタン ==== */
.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--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--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-01 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-01 a::before {
  top: 30px;
  background: url(../img/Arrow-cBtn-opp.svg) center no-repeat;
}

/* (オレンジ) */
.c-btn--o a {
  width: 84%;
  color: #fff;
  background-color: #f89829;
  box-shadow: 0px 4px #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: 100%;
  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--b a {
  font-size: 1.4rem;
  width: 90%;
  line-height: 1.2;
  margin-top: 20px;
  background-color: #333333;
}
.c-btn--b.u-mbt0 a {
  margin-bottom: 0;
}
.c-btn--b a::before {
  top: 30px;
  right: 25px;
}

/* ======= 別タブボタンの場合 ====== */
.B-tab a::before {
  top: 20px;
  right: 25px;
  background: url(../img/icon_link.svg) center no-repeat;
  width: 16px;
  height: 16px;
}

/* === よくあるご質問一覧アンカーリンクボタン === */
.c-btn--faq {
    width: 100%;
    margin-bottom: 30px;
}
.c-btn--faq:last-of-type {
    margin-bottom: 0;
}
.c-btn--faq a {
    width: 100%;
    padding: 8px 0;
}
.c-btn--faq a::before {
    transform: rotate(90deg);
    top: 17px;
    right: 22px;
}
.c-btn--faq.p-hikari a {
    background-color: #f89829;
    box-shadow: 0px 4px #c47b26;
}
.c-btn--faq.p-hikari a:hover {
    background-color: #c47b26;
}
.c-btn--faq.p-docomo a {
    background-color: #cc0033;
    box-shadow: 0px 4px #aa2d0e;
}
.c-btn--faq.p-docomo a:hover {
    background-color: #aa2d0e;
}

/* ===== トップページへ ===== */
.c-btn--rev {
  margin: 0 auto 80px auto;
}
.c-btn--rev a {
  width: 90%;
  padding: 20px 0;
}
.c-btn--rev a::before {
  background: url(../img/icon-Arrow-rev.svg) center no-repeat;
  top: 29px;
  left: 40px;
}

.c-btn--rev-01 {
  margin: 0 auto 40px auto;
}
.c-btn--rev-01 a {
  width: 90%;
  padding: 20px 0;
}
.c-btn--rev-01 a::after {
  background: url(../img/icon-Arrow-rev.svg) center no-repeat;
  top: 29px;
  left: 40px;
}

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

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

.newsItem {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  background-color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 20px 0;
  text-align: center;
  border: solid 4px #c70e2d;
  border-radius: 36px;
  padding-left: 25px;
  transition: all 0.2s;
}

.newsItem::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 25px;
  right: 30px;
  background: url(../img/img-newsArrow.svg) center no-repeat;
  background-size: contain;
  width: 9px;
  height: 14px;
}

.newsText {
  width: 52%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.date {
  position: relative;
  padding-right: 10px;
  padding-left: 28px;
  margin-right: 10px;
  border-right: 4px double #666666;
}
.date::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 1px;
  left: 0;
  background: url(../img/icon-att.svg) center no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
.service {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 4px double #666666;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
          sec_supp(サポート)
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */

.sec_supp {
  padding: 80px 0;
}

.suppInner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

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

.suppTitle {
  margin-bottom: 40px;
}

.suppText {
  position: relative;
  max-width: 990px;
  margin: 0 auto 80px auto;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}

.suppText::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 33px;
  right: 38px;
  background: url(../img/sec_support/icon-zuumo.svg) center no-repeat;
  background-size: contain;
  width: 80px;
  height: 120px;
  z-index: 1;
}

.suppList {
  position: relative;
  margin-bottom: 72px;
  z-index: 2;
}

.suppListItem {
  width: 90%;
  margin: 0 auto;
  background-color: #fafafa;
  border: solid 8px #e9e9e9;
  border-radius: 16px;
  box-shadow: 0px 4px #ccc;
  transition: all 0.2s;
  margin-bottom: 24px;
}

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

.suppListItem a {
  padding: 30px 20px;
}

.suppListTitle {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 30px;
}
.suppListTitle--01 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 30px;
}
.suppListTitle--01 a {
  display: inline;
  color: #065FD4;
  text-decoration: underline;

}

.suppListText {
  text-align: center;
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 16px;
  margin-bottom: 40px;
}

.suppListImg {
  display: block;
  margin: 0 auto 30px auto;
}

.suppListItem a > .c-btn--noH span {
  padding: 20px 0;
}

.suppListItem a > .c-btn--noH span::before {
  top: 27px;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
        sec_sa(serviceabout)
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */
.sec_sa {
  background-color: #1d8b5e;
  padding: 80px 0;
}

.saInner {
  width: 90%;
  margin: 0 auto;
}

.saItem {
  width: 100%;
  background-color: #fff;
  border-radius: 16px 0px 16px 0px;
  box-shadow: 0px 4px #dddddd;
  transition: all 0.2s;
  margin-bottom: 24px;
}
.saItem:last-of-type {
  margin-bottom: 0;
}

.saItem a {
  padding: 40px 40px 30px 40px;
}

.saTextArea {
  text-align: center;
  position: relative;
  margin-bottom: 28px;
}

.saTitle {
  font-size: 2.4rem;
  font-weight: 900;
  color: #56a520;
  margin-bottom: 16px;
}

.saText {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.07em;
}


/*
-----------  ▼ここから下層エリア ------------
*/

/* 共通タイトル */

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

.UmvInner {
  position: relative;
}

.c-UtitleWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-Utitle {
  display: inline-block;
  font-size: 3.6rem;
  font-weight: 900;
  color: #fff;
  background-color: #1d8b5e;
  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;
}

/* h3 */
.U-Title--h3 {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
  padding: 8px 0 8px 10px;
  margin-top: 80px;
  margin-bottom: 40px;
}

.U-Title--h3-02 {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: bold;
  padding: 10px 0;
  margin-top: 7px;
}

.U-Title--h3-03 {
  font-size: 2.3rem;
  line-height: 1.2;
  font-weight: bold;
  padding: 10px 0;
  margin-top: 48px;
  margin-bottom: 7px;
  letter-spacing: 0.01rem;
}

/* 緑 */
.U-Title--h3-green {
  background-color: rgba(86, 165, 32, 0.1);
  border-left: 6px solid #1d8b5e;
}

/* border-bottom */
.U-Title--h3--bb {
  border-bottom: solid 4px #1d8b5e;
}

/* h4 */
.U-Title--h4 {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: bold;
  padding-bottom: 4px;
  margin-top: 48px;
  margin-bottom: 24px;
}

/* 緑 */
.U-Title--h4-green {
  border-bottom: 4px solid #1d8b5e;
}

/* h5 */
.U-Title--h5--point {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: solid 2px #44831c;
  padding-left: 100px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.U-Title--h5--point::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 9px;
  left: 0;
  background-size: contain;
  width: 88px;
  height: 12px;
}
.U-Title--h5--point-01::before {
  background: url(../img/Option/icon-point01.svg) center no-repeat;
}
.U-Title--h5--point-02::before {
  background: url(../img/Option/icon-point02.svg) center no-repeat;
}
.U-Title--h5--point-03::before {
  background: url(../img/Option/icon-point03.svg) center no-repeat;
}

/* h5(グレー色) */
.U-Title--h5--gray {
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 2px solid #cccccc;
  margin-top: 24px;
  margin-bottom: 16px;
}

/* 共通テキスト */
.c-eachText {
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 24px;
  line-height: 1.75;
}

.c-eachText--01 {
  line-height: 2;
}
/*  =-=-=-=-=-=-=-=-=-=- ▼よくあるご質問一覧 =-=-=-=-=-=-=-=-=-=- */

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
      sec_faq(よくあるご質問一覧)
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */

.sec_faq {
  padding: 80px 0 0 0;
}

.c-SupportText {
  width: 90%;
  max-width: 990px;
  margin: 0 auto 40px;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
}
.c-SupportText--sp {
  width: 90%;
  max-width: 990px;
  margin: 0 auto 40px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}

.faqTitle {
  margin-bottom: 36px;
}

.faqText {
  position: relative;
}

.faqText::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -40px;
  left: 80px;
  background: url(../img/FAQ/icon-zuumo.svg) center no-repeat;
  background-size: contain;
  width: 118px;
  height: 168px;
  z-index: 1;
}

.faqAnchor {
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 80px;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
      sec_faq(よくあるご質問)
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */

.c-faqTitle {
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  padding-top: 71px;
  margin-bottom: 48px;
}
.c-faqTitle::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: url(../img/FAQ/sis_logo.svg) center no-repeat;
  background-size: contain;
  width: 118px;
  height: 59px;
}

/* 光 */
.c-faqTitle--hikari {
  padding-top: 74px;
}

.c-faqTitle--hikari::before {
  background: url(../img/FAQ/sishikari_logo.svg) center no-repeat;
  width: 128px;
  height: 62px;
}

/* ドコモ */

.c-faqTitle--docomo {
  padding-top: 80px;
}

.c-faqTitle--docomo::before {
  background: url(../img/FAQ/sisdocomo_logo.svg) center no-repeat;
  width: 354px;
  height: 48px;
}

.c-faqLink {
  text-align: center;
  margin-bottom: 65px;
}

.c-faqLink a {
  position: relative;
  display: inline-block;
  padding-right: 28px;
  transition: opacity 0.2s;
}
.c-faqLink a::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 4px;
  right: 0;
  background: url(../img/FAQ/icon-link.svg) center no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}

.c-faqLink span {
  font-size: 1.6rem;
  font-weight: bold;
  color: #56a520;
  border-bottom: 1px solid #56a520;
}

.c-secFAQ {
  padding-bottom: 80px;
}

.secFAQInner {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.faqListItem {
  border-bottom: 1px solid #707070;
}

.faqListItem:first-of-type {
  border-top: 1px solid #707070;
}

.Qtext {
  padding: 30px 0 30px 50px;
  position: relative;
  font-size: 1.4rem;
  font-weight: bold;
  color: #44831c;
}

.Qtext::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 27px;
  left: 0;
  background: url(../img/FAQ/icon-Q.svg) center no-repeat;
  background-size: contain;
  width: 22px;
  height: 30px;
}

/* 光 */

.Qtext--h {
  color: #f89829;
}

.Qtext--h:before {
  background: url(../img/FAQ/icon-Q-h.svg) center no-repeat;
}

/* ドコモ */

.Qtext--d {
  color: #cf0f31;
}

.Qtext--d:before {
  background: url(../img/FAQ/icon-Q-d.svg) center no-repeat;
}

.Atext {
  display: none;
  position: relative;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 500;
  padding-left: 66px;
  padding-bottom: 30px;
}

.Atext::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 0;
  background: url(../img/FAQ/icon-A.svg) center no-repeat;
  background-size: contain;
  width: 21px;
  height: 23px;
}

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

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

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

.pricepage {
  display: inline;
  color: #1571da;
  border-bottom: 1px solid #1571da;
  transition: all 0.2s;
}

/* アコーディオンのコンテンツ */
.js-accordion {
  cursor: pointer;
}
.Qtext .icon {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.Qtext .icon::before,
.Qtext .icon::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    background-color: #44831c;
    width: 10px;
    height: 2px;
    transition: all 0.3s;
}
/* 光 */
.Qtext--h .icon::before,
.Qtext--h .icon::after {
  background-color: #f89829;
}
/* ドコモ */
.Qtext--d .icon::before,
.Qtext--d .icon::after {
  background-color: #cf0f31;
}
.Qtext .icon::after {
  transform: rotate(90deg);
}

/* アコーディオン展開時の(-)アイコン */
.js-accordion.open .icon::before {
  transform: rotate(180deg);
}

.js-accordion.open .icon::after {
  transform: rotate(180deg);
  opacity: 0;
}

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

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

.infoItemWrap {
  display: flex;
  justify-content: space-between;
}
.infoItem {
  width: 100%;
  margin: 0 auto;
  max-width: 990px;
  padding: 32px 30px;
  background-color: #fafafa;
  border: solid 8px #e9e9e9;
  text-align: center;
  border-radius: 16px;
  margin-top: 80px;
}

/* タブ内 */
.infoItem--tab {
  background: none;
  border: none;
  margin-top: 0;
  padding: 0;
}

.infoItem--tab > .infoList li {
  width: 90%;
  margin: 0 auto;
}

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

.infoItemSubTitle {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1.6;
}
.infoItemSubTitle--02 {
  margin-top: 40px;
}
.infoItemSubTitle .suppName {
  color: #56a520;
}
.info24 {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: bold;
  margin: 24px 0 50px 0;
}
.telnum {
  position: relative;
  display: inline-block;
  padding-left: 30px;
}
.telnum::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/FAQ/img-telicon.svg) center no-repeat;
  background-size: contain;
  width: 20px;
  height: 30px;
}
.infoText {
  font-size: 1.4rem;
  font-weight: bold;
}
.infoText_mini {
	font-size: 1.4rem;
    font-weight: 500;
}
.infoText_big {
	font-size: 1.8rem;
	font-weight: bold;
}
.infoItemTitle--01 {
    font-size: 2.4rem;
}
.infoList li:not(:first-of-type){
    margin-top: 16px;
}
.infoList li:not(:first-of-type)::before {
    content: "";
    background-color: #999;
    height: 1px;
    width: 32px;
    display: block;
    margin-bottom: 16px;
    margin-left: auto;
    margin-right: auto;
}
.infoItemTitle--01 {
  font-size: 2rem;
}

.infoItemTitle--01 span {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
}
.sec_info--01 {
  padding: 80px 0;
}

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

.infoItem--02 {
  text-align:start
}


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

.c-telBtn {
  padding-bottom: 6px;
  text-align: center;
  width: 84%;
  margin: 0 auto;
  line-height: 1.2;
  font-size: 2.4rem;
  background-color: #ef4218;
  border-radius: 40px;
  color: #fff;
  font-weight: bold;
  box-shadow: 0 4px #cf0f31;
  margin-top: 12px;
  margin-bottom: 16px;
}
.c-telBtn .text {
  font-size: 1.4rem;
}
.c-telBtn .tel {
  position: relative;
  padding-left: 21px;
}
.c-telBtn .tel::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 8px;
  left: 0;
  background: url(../img/icon-tel-f.svg) center no-repeat;
  background-size: contain;
  width: 15px;
  height: 22px;
}

/*  =-=-=-=-=-=-=-=-=-=- ▼お問い合わせ一覧 =-=-=-=-=-=-=-=-=-=- */

.sec_contact {
  padding-top: 80px;
}

.contactTitle {
  margin-bottom: 24px;
}

.c-ContactTitle {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.75;
  text-align: center;
  margin-bottom: 24px;
}

.toprev {
  margin-top: 80px;
}

/* sec_ec(各サービスの申し込み・解約・手続き) */

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

.tabWrap:nth-of-type(2) {
  margin-bottom: 0;
}
.tabBtnWrap {
  width: 100%;
  max-width: 992px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

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

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

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

.contentArea {
  border-top: solid 4px #cf0f31;
  padding: 40px 0;
  background-color: #f4f8f9;
}
.contentArea.active {
  border-top: solid 4px #448319;
}

.ContentInner {
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

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

.ContentItem {
  margin-bottom: 56px;
}

.ContentItem-01 {
  margin-bottom: 35px;
}

.ContetTitle {
  font-size: 2rem;
  font-weight: bold;
  color: #56a523;
  margin-bottom: 24px;
  white-space: pre-wrap;
  word-break: keep-all;
}

.ContetTitle-01 {
  font-size: 2.25rem;
  font-weight: bold;
  color: #56a523;
  margin-bottom: 15px;
  letter-spacing: 2px;
  white-space: pre-wrap;
  word-break: keep-all;
}

/* よくあるご質問一覧TOP3 */
.faqTop3 {
  padding: 13px;
  border: 2px solid #cf0f31;
  border-radius: 16px;
  background-color: #ffffff;
}
.faqTop3 p {
  text-align: center;
  font-weight: bold;
  padding-bottom: 10px;

}
.faqTop3 ol {
  text-align: left;
  margin-left: 30px;
  font-weight:500;
  text-decoration: underline;
}
.faqTop3 li {
  list-style-type: decimal;
  padding: 3.5px;
}
.faqTop3 li::marker {
  list-style-type: decimal;
  color: #cf0f31;
  font-weight: bold;
}

/* こんな内容のときに */

.example {
  position: relative;
  border: solid 1px #333333;
  border-radius: 16px;
  margin-bottom: 24px;
}

.exampleText {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  font-size: 1.6rem;
  font-weight: bold;
  background-color: #f4f8f9;
  padding: 0 30px;
}

.exampleListWrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 24px 20px 16px 30px;
}

.exampleList {
  text-align: left;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
}
.exampleList li {
  list-style: disc;
}

/* sec_opabout(オプションサービスに関するお問い合わせ) */

.sec_opabout {
  padding: 80px 0;
}

.opaboutInner {
  width: 90%;
  margin: 0 auto;
}

.ContactBox {
  width: 100%;
  text-align: center;
  border: solid 8px #e9e9e9;
  padding: 40px 0;
  border-radius: 16px;
  margin-bottom: 24px;
}

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

.ContactBox > .c-btn--b a {
  width: 90%;
}

.ContactBox > .c-btn--b:nth-of-type(n+2) a {
  margin-top: 0;
}

/*  =-=-=-=-=-=-=-=-=-=- ▼IPv6とは =-=-=-=-=-=-=-=-=-=- */
.sec_ipvMv {
  padding: 64px 0 40px 0;
}
.ipv6Inner {
  width: 90%;
  margin: 0 auto;
}

.ipv6Title {
  margin-bottom: 40px;
}
.ipv6Title span {
  font-size: 2rem;
}

.ipv6SubTitle {
  position: relative;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 120px;
  margin-bottom: 16px;
}

.ipv6SubTitle::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: url(../img/IPv6/icon-zuumo.svg) center no-repeat;
  background-size: contain;
  width: 178px;
  height: 120px;
}

.ipv6SubTitle span {
  font-size: 2.8rem;
  font-weight: 900;
  color: #44831c;
}

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

.ipvText {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}

.ipvText span {
  font-weight: bold;
}

.ipv6PointItem {
  position: relative;
  padding: 100px 0 30px 0;
  width: 302px;
  height: 302px;
  margin: 0 auto;
  text-align: center;
  border: solid 4px #1d8b5e;
  /* background-color: #f4f8f9; */
  background-color: #1d8b5e;
  border-radius: 50%;
  overflow: hidden;
  margin-top: 24px;
}
.ipv6PointItem:first-of-type {
  margin-top: 0;
}

.ipv6PointItem::before {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #f4f8f9;
  width: 100%;
  height: 205px;
  z-index: 1;
}
.ipv6PointItem::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translate(-50%, 0);
  background: url(../img/IPv6/ipv6poin01.svg) center no-repeat;
  background-size: contain;
  width: 104px;
  height: 42px;
  z-index: 1;
}

.ipv6PointItem:nth-of-type(2)::after {
  background: url(../img/IPv6/ipv6poin02.svg) center no-repeat;
}

.ipv6PointItem:nth-of-type(3)::after {
  background: url(../img/IPv6/ipv6poin03.svg) center no-repeat;
}

.ipv6PointTitle {
  position: relative;
  font-size: 2.4rem;
  color: #1d8b5e;
  margin-bottom: 17px;
  z-index: 2;
}

.ipv6PointText {
  position: relative;
  font-size: 1.4rem;
  font-weight: 500;
  z-index: 2;
}

/* ======== 教えてズーモくん ======= */
.sec_zuumo {
  padding: 60px 0;
  background-color: #1d8b5e;
}

.zuumoInner {
  width: 90%;
  margin: 0 auto;
}

.zuumoTitle {
  text-align: center;
  margin-bottom: 55px;
}

.zuumoQAItem {
  margin-bottom: 24px;
}

.zuumoQAItem .QText {
  position: relative;
  padding-left: 110px;
  margin-bottom: 30px;
}

.zuumoQAItem .QText::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 35px;
  left: 100px;
  background: url(../img/IPv6/icon-triangle.svg) center no-repeat;
  background-size: contain;
  width: 11px;
  height: 16px;
}

.zuumoQAItem .QText::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: -6px;
  left: 0px;
  background-size: contain;
  width: 88px;
  height: 88px;
}

.zuumoQAItem .QText--01::after {
  background: url(../img/IPv6/icon-QA01.svg) center no-repeat;
}
.zuumoQAItem .QText--02::after {
  background: url(../img/IPv6/icon-QA02.svg) center no-repeat;
}
.zuumoQAItem .QText--03::after {
  background: url(../img/IPv6/icon-QA03.svg) center no-repeat;
}
.zuumoQAItem .QText--04::after {
  background: url(../img/IPv6/icon-QA04.svg) center no-repeat;
}

.zuumoQAItem .QText span {
  display: block;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: bold;
  padding: 24px 36px 24px 24px;
  background-color: #cce4bc;
  border-radius: 16px;
}

.zuumoQAItem .AText {
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  padding-right: 110px;
  margin-bottom: 24px;
}

.zuumoQAItem .AText::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 25px;
  right: 100px;
  background: url(../img/IPv6/icon-triangle-f.svg) center no-repeat;
  background-size: contain;
  width: 11px;
  height: 16px;
}

.zuumoQAItem .AText::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: -10px;
  right: 0px;
  background: url(../img/IPv6/icon-QA-zuumo.svg) center no-repeat;
  background-size: contain;
  width: 88px;
  height: 88px;
}

.zuumoQAItem .AText .AtextInner {
  display: block;
  border-radius: 16px;
  background-color: #fff;
  padding: 24px;
}
.zuumoQAItem .AText .AtextInner span {
  color: #44831c;
}

.c-attText {
  font-size: 1.2rem;
  color: #fff;
  margin-top: 32px;
}

.stampZuumo {
  text-align: right;
}

/* ====== 注意事項 ====== */

.sec_att {
  padding: 80px 0;
}

.attInner {
  width: 90%;
  margin: 0 auto;
}

.attList {
  width: 88.89%;
  margin: 0 auto;
}

/* 共通リスト */
.c-eachListItem {
  position: relative;
  padding-left: 20px;
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 16px;
}

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

/* 共通リンク */
.c-link {
  position: relative;
  display: inline;
  margin-right: 2px;
  transition: opacity 0.2s;
}

.c-link span::after {
  content: "";
  display: inline-block;
  background: url(../img/icon-link.svg) center no-repeat;
  background-size: contain;
  transform: translateY(3px);
  width: 20px;
  height: 20px;
}

.c-link--brank::before {
  background: url(../img/icon-brank.svg) center no-repeat;
}

.c-link--pdf::before {
  top: 6px;
  background: url(../img/icon-pdf.svg) center no-repeat;
}

.c-link span {
  display: inline;
  color: #56a520;
  font-weight: bold;
  border-bottom: 1px solid #56a520;
}

.c-link--font18 span {
  font-size: 1.8rem;
  font-weight: 500;
}

/* =======================
ユニバーサルサービス制度について
======================== */

.c-TitleIcon.c-TitleIcon--system {
  margin-top: 0;
}
/* =======================
        利用規約
======================== */
.termList {
  padding-bottom: 80px;
}

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

/* margintop */
.u-mgt1em {
  margin-top: 1em;
}
.u-mgt0 {
  margin-top: 0;
}
.u-mgt8 {
  margin-top: 8px;
}
.u-mgt16 {
  margin-top: 16px;
}
.u-mgt24 {
  margin-top: 24px;
}
.u-mgt40 {
  margin-top: 40px;
}
.u-mgt64 {
  margin-top: 64px;
}
.u-mgt80 {
  margin-top: 80px;
}

/* marginbottom */
.u-mbt0 {
  margin-bottom: 0;
}
.u-mbt24 {
  margin-bottom: 24px;
}
.u-mbt48 {
  margin-bottom: 48px;
}
.u-mbt80 {
  margin-bottom: 80px;
}
.u-mbt100 {
  margin-bottom: 100px;
}

/* padding */
.u-pt80 {
  padding-top: 80px;
}
.u-pt120 {
  padding-top: 120px;
}

/* width */
.l-width_nomal {
  max-width: 90%;
  margin-right: auto;
  margin-left: auto;
}
.l-width_min {
  max-width: 90%;
  margin-right: auto;
  margin-left: auto;
}
