@charset "utf-8";
/* == base ============================================== */
html {
	font-size: 62.5%;
}
body {
	font-family: "Noto Sans JP", Helvetica, Arial, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, 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;
}

.breadcrumbItem a:hover {
	opacity: 0.7;
}

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

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

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

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

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

.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-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 {
	display: block;
}
.c-btn a {
	position: relative;
	font-size: 1.6rem;
	font-weight: bold;
	color: #fff;
	display: block;
	text-align: center;
	width: 100%;
	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 {
	padding: 16px 0;
}
.c-btn--m a::before {
	top: 25px;
}

/* (白) */
.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: 90%;
	color: #56a520;
	background-color: #fff;
	box-shadow: 0px 4px #56a520;
	border: solid 2px #56a520;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-bottom: 80px;
}

.c-btn--opp a::before {
	top: 26px;
	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--r a {
	width: 100%;
	padding: 18px 0;
	font-size: 1.4rem;
	font-weight: 500;
	background-color: #ef4218;
	box-shadow: 0px 4px #aa2d0e;
}

.c-btn--r a::before {
	top: 24px;
	width: 6px;
	height: 10px;
}

.c-btn--g a {
	width: 100%;
	padding: 18px 0;
	font-size: 1.4rem;
	font-weight: 500;
	color: #56a520;
	background-color: #fff;
	border: solid 2px #56a520;
	box-shadow: 0px 4px #56a520;
}

.c-btn--g a::before {
	top: 24px;
	width: 6px;
	height: 10px;
}

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

/* ===== リンクなしバージョン(シャドウなし&hoverなし) ===== */
.c-btn--noH span {
	position: relative;
	font-size: 1.4rem;
	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: 21px;
	right: 28px;
	background: url(../img/Arrow-cBtn.svg) center no-repeat;
	background-size: contain;
	width: 6px;
	height: 10px;
	transition: all 0.2s;
}

/* ==== 運営会社はこちら ==== */

.c-btn--oc a {
	width: 100%;
	margin: 0 0 0 auto;
	background-color: #fff;
	color: #333;
	font-size: 1.4rem;
	padding: 18px 0;
	font-weight: bold;
	box-shadow: 0px 4px #dddddd;
}

.c-btn--oc a::before {
	display: none;
}

.c-btn--oc a > span {
	position: relative;
	padding-right: 28px;
}

.c-btn--oc a > span::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: -1px;
	right: 0;
	background: url(../img/icon-Tab.svg) center no-repeat;
	background-size: contain;
	width: 18px;
	height: 18px;
}

/*  */
.box {
	position: absolute;
	bottom: -2px;
	width: 100%;
	height: 20px;
	background-color: #1d8b5e;
	z-index: 2;
}
.sec_mv {
	position: relative;
	background: url(../img/sec_mv/mvBG.jpg) center no-repeat;
	background-size: cover;
	overflow: hidden;
}
.mvInner {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding-bottom: 140px;
}

/* ======= 雲 ======== */
.cloudLoop {
	position: absolute;
	top: 100px;
	left: 0;
	display: flex;
}
.cloudLoop img:first-child {
	width: auto;
	animation: slide1 50s -20s linear infinite;
}
.cloudLoop img:last-child {
	animation: slide2 50s linear infinite;
}

/* ======= 鳥 ======== */
.bird {
	position: absolute;
	width: 30%;
    max-width: 120px;
	top: 32vw;
	right: 3%;
}

/* ======= 山 ======== */
.mountain {
	width: 100%;
	position: absolute;
	bottom: -2.694vw;
}
.mountain img {
	width: 100%;
}

/* ======= 町 ======== */
.cityWrap {
	width: 100%;
	position: absolute;
	bottom: 0px;
}
.city01 {
	width: 100%;
	position: absolute;
	bottom: -9vw;
	z-index: 3;
}
.city02 {
	width: 100%;
	position: absolute;
	bottom: -13.067vw;
	z-index: 2;
}
.city03 {
	width: 100%;
	position: absolute;
	bottom: -12.333vw;
	z-index: 1;
}
@keyframes slide1 {
	0% {
		transform: translateX(100%);
	}
	to {
		transform: translateX(-100%);
	}
}
@keyframes slide2 {
	0% {
		transform: translateX(0);
	}
	to {
		transform: translateX(-200%);
	}
}

/*  */
.mainItem {
	position: relative;
	width: 100%;
	padding-top: 80px;
	text-align: center;
}
.mvLogo {
    max-width: 324px;
	width: 45.07vw;
}
.mainTitle {
	width: 87.47%;
	margin: 0 auto;
	margin-bottom: 16px;
}
.mianText {
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
	margin-top: 16px;
}
.mianText span {
	color: #56a523;
}

/* カウントアップ */
.CountUp {
	position: relative;
	display: inline-block;
	z-index: 10;
}
.countText {
	position: relative;
	color: #448319;
	font-size: 3.2rem;
	font-weight: 900;
}
.countText::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 7px;
	left: -41px;
	background: url(../img/sec_mv/icon-mbps-l.svg) center no-repeat;
	background-size: contain;
	width: 30px;
	height: 30px;
}
.countText::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 7px;
	right: 55px;
	background: url(../img/sec_mv/icon-mbps-r.svg) center no-repeat;
	background-size: contain;
	width: 30px;
	height: 30px;
}
.count-up {
	font-size: 8rem;
	font-weight: 900;
}

/* zuumo */
.mvzuumo {
	width: 180px;
	height: 133px;
	display: block;
	position: absolute;
	bottom: 24px;
	left: 35%;
	z-index: 10;
}

/* news */
.MVnewsList {
	position: relative;
	width: 90%;
	margin: 20px auto 27px;
	background-color: rgba(255, 255, 255, 0.6);
	padding: 8px 16px;
	text-align: center;
	border: solid 2px #c70e2d;
	border-radius: 20px;
	z-index: 3;
}
.MVnewsItem {
	text-align: left;
}
.MVnewsItem a {
	position: relative;
    padding: 2px 12px 2px 28px;
    font-size: 1.4rem;
    font-weight: 500;
}
.MVnewsItem:not(:first-of-type){
    border-top: solid 1px #666;
    margin-top: 6px;
    padding-top: 6px;
}
.MVnewsItem a::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: url(../img/img-newsArrow.svg) center / contain no-repeat;
	width: 8px;
	height: 14px;
}
.MVnewsItem a::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url(../img/icon-att.svg) center / contain no-repeat;
	width: 20px;
	height: 20px;
}
.MVnewsItem .Text {
	display: block;
}
.MVnewsItem .service {
	padding-left: 10px;
	margin-left: 10px;
	border-left: 4px double #666666;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
    sec_door(SIS、SIS光、SISドコモ光)
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */

.sec_door {
	margin-top: -45px;
	background-color: #1d8b5e;
}

.doorInner {
	position: relative;
	width: 90%;
	margin: 0 auto;
	padding-bottom: 40px;
	z-index: 11;
}

.doorListItem {
	position: relative;
	margin-bottom: 15px;
	text-align: center;
	border-radius: 16px;
}

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

.doorListText {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.9;
    margin-top: 16px;
}

/* ======= 共通 ======= */
.c-Item {
	position: relative;
	padding: 16px 12px 48px;
	height: 100%;
	border-radius: 16px;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 3;
    background-color: #fff;
}
.c-Item::before {
	content: "";
	display: inline-block;
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translate(0, -50%);
	background: url(../img/sec_door/img-IconArrow.svg) center no-repeat;
	background-size: contain;
	width: 8px;
	height: 14px;
}
/* SIS */
.Item-SIS {
	border: 4px solid #61b229;
}
.SISText span {
	color: #56a523;
}
/* hikari */
.Item-hikari {
	border: 4px solid #f5ab52;
}
.hikariText span {
	color: #f89829;
}
/* docomo */
.Item-docomo {
	border: 4px solid #e00b41;
}
.docomoText span {
	color: #cf0f31;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
        sec_contact
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */

.sec_contact {
	overflow: hidden;
	padding: 0 0 120px 0;
	background-color: #1d8b5e;
}

.contactInner {
	position: relative;
	width: 95%;
	max-width: 990px;
	margin: 0 auto;
	background-color: #fff;
	border-radius: 60px 0px 60px 0px;
	z-index: 3;
	padding-bottom: 107px;
}

.contactInner::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 200%;
	height: 100%;
	border-top: solid 16px #81d04b;
	border-left: solid 16px #81d04b;
	border-radius: 60px 0px 0px 0px;
	z-index: -1;
}

.contactInner::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	width: 200%;
	height: 100%;
	border-bottom: solid 16px #81d04b;
	border-right: solid 16px #81d04b;
	border-radius: 0px 0px 60px 0;
	z-index: -1;
}

.contactInner > .textbox {
	width: 87.88%;
	margin: 0 auto;
}

.line1 {
	position: absolute;
	bottom: 16px;
	left: 0;
	width: 16px;
	height: 60%;
	background: linear-gradient(#81d04b 0%, #8bf542 100%);
}

.line2 {
	position: absolute;
	top: 16px;
	right: 0;
	width: 16px;
	height: 60%;
	background: linear-gradient(#8bf542 0%, #81d04b 100%);
}

.zuumo {
	position: absolute;
	bottom: -80px;
	right: 35px;
	background: url(../img/sec_contact/img-zuumoSP.svg) center no-repeat;
	background-size: contain;
	width: 120px;
	height: 180px;
}

.contactItem {
	margin-bottom: 60px;
}

.contactTitle {
	padding-top: 80px;
	margin-bottom: 24px;
}

.contactText {
	font-weight: 500;
	font-size: 1.6rem;
	letter-spacing: 0.08em;
	line-height: 32px;
	text-align: center;
	padding-bottom: 40px;
	border-bottom: 2px dotted #1d8b5e;
	margin-bottom: 37px;
}

.optionItemWrap {
	width: 95%;
	margin: 0 auto;
}

.optionItem {
	width: 100%;
	margin-bottom: 56px;
}

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

.optionTitle {
	font-weight: bold;
	font-size: 2.4rem;
	letter-spacing: 0.08em;
	line-height: 32px;
	text-align: center;
	color: #56a520;
	margin-bottom: 16px;
}

.optionText {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.75;
	margin-bottom: 24px;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
    sec_ms(mypage&support)
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */

.sec_ms {
	background-color: #1d8b5e;
	padding: 0 0 80px 0;
}

.msInner {
	width: 87%;
	margin: 0 auto;
}

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

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

.msItem a {
	padding: 24px 20px 30px 20px;
}

.msTextArea {
	text-align: center;
	position: relative;
	padding-top: 120px;
	margin-bottom: 28px;
}

.msTextArea::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 108px;
	height: 98px;
}

/* マイページアイコン */
.msTextArea--m::before {
	background: url(../img/sec_ms/icon-ms01.svg) center no-repeat;
	background-size: contain;
}

/* 各種サポートアイコン */
.msTextArea--s::before {
	background: url(../img/sec_ms/icon-ms02.svg) center no-repeat;
	background-size: contain;
}

.msTitle {
	font-size: 2.4rem;
	font-weight: 900;
	color: #56a520;
}

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

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
      sec_news(新着情報)
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */
.sec_news {
	background: url(../img/sec_news/img-newsBG.svg) center repeat;
	background-size: cover;
	padding: 80px 0;
	border-bottom: 1px solid #eaeaea;
}

.newsInner {
	width: 87%;
	margin: 0 auto;
}

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

.newsListItem > .ListItemInner {
	position: relative;
	padding: 16px 40px 16px 20px;
}

.ListItemInner::before {
	content: "";
	display: inline-flex;
	position: absolute;
	top: 50%;
	right: 18px;
	transform: translate(0, -50%);
	background: url(../img/sec_news/icon-newsArrow.svg) center no-repeat;
	background-size: contain;
	width: 9px;
	height: 13px;
	transition: right 0.2s;
}

.ListItemInner > .date {
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 2;
	margin-right: 10px;
}

.ListItemInner > .service {
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 2;
	color: #56a520;
	padding: 3px 8px;
	border-left: 4px double #56a520;
	border-right: 4px double #56a520;
}

.ListItemInner > .service.dcm {
	color: #cc0033;
	border-left: 4px double #cc0033;
	border-right: 4px double #cc0033;
}

.ListItemInner > .service.hikari {
	color: #f9be00;
	border-left: 4px double #f9be00;
	border-right: 4px double #f9be00;
}

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

.newsListItem:last-of-type {
	margin-bottom: 56px;
}

.newsListText {
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.75;
	text-align: left;
	padding-top: 7px;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
      sec_op(運営会社)
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼ */

.sec_oc {
	background: url(../img/sec_oc/img-ocBg.jpg) center no-repeat;
	background-size: cover;
	padding: 40px 0 120px 0;
}

.ocInner {
	position: relative;
	width: 87%;
	margin: 0 auto;
}

.ocInner::before {
	content: "";
	display: inline-block;
	position: absolute;
	bottom: -140px;
	left: 50%;
	transform: translate(-50%, 0);
	background: url(../img/sec_oc/img-zumo.svg) center no-repeat;
	background-size: contain;
	width: 80px;
	height: 115px;
}

.ocTitle {
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	color: #fff;
	line-height: 1.7;
	margin-bottom: 10px;
}
.ocText {
	font-size: 1.4rem;
	line-height: 2;
	color: #fff;
	text-align: center;
	margin-bottom: 40px;
}

/* ===== 新着情報一覧  ===== */

/* === アンカーリンクボタン === */
.c-btn--anchor {
	width: 90%;
	margin: 0 auto 30px auto;
}

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

.c-btn--anchor a {
	width: 100%;
	padding: 8px 0;
}

.c-btn--anchor a::before {
	transform: rotate(90deg);
	top: 17px;
	right: 22px;
}

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

/*
-------- 下層
*/

/* ========== 新着情報一覧 ========== */

.nArchiveListText {
	font-size: 1.6rem;
	font-weight: 500;
	padding: 30px 40px 30px 20px;
	border-top: 1px solid #707070;
}

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

.nArchiveList .js-contents {
	display: none;
}

.nArchiveListText span {
	font-size: 1.4rem;
	font-weight: 500;
}

.nArchiveListText .date {
	margin-right: 10px;
	border-right: none;
}

.nArchiveListText .service {
	color: #56a520;
	padding: 0 55px;
	border-left: 3px double #56a520;
	border-right: 3px double #56a520;
}

.nArchiveListText .service.dcm {
	color: #cc0033;
	padding: 0 15px;
	border-left: 3px double #cc0033;
	border-right: 3px double #cc0033;
}

.nArchiveListText .service.hikari {
	color: #f9be00;
	padding: 0 15px;
	border-left: 3px double #f9be00;
	border-right: 3px double #f9be00;
}

.nArchiveSubTtile {
	font-size: 1.6rem;
	font-weight: bold;
	border-bottom: 2px solid #aaaaaa;
}

.nArchiveLink {
	display: inline;
	color: #56a523;
	border-bottom: solid 1px #56a523;
}
.c-newsTag {
    margin-bottom: 16px;
}

/* メンテナンス情報 */
.maintedate {
	display: flex;
	font-size: 1.6rem;
	font-weight: 400;
}

/* (+)アイコン */
.js-accordion {
	position: relative;
	cursor: pointer;
}

.js-accordion .icon {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	right: 25px;
}

.js-accordion .icon::before,
.js-accordion .icon::after {
	content: "";
	position: absolute;
	top: 0;
	margin: auto 0;
	background-color: #44831c;
	width: 10px;
	height: 2px;
	transition: all 0.3s;
}

.js-accordion .icon::after {
	transform: rotate(90deg);
}

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

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

/* ======= 会社概要 ======= */
.aboutTable {
	display: flex;
	font-size: 1.4rem;
	margin-bottom: 1px;
}

.aboutTable dt {
	width: 18%;
	text-align: center;
	padding: 16px 2px;
	background-color: #eef6e9;
	border: solid 1px #eef6e9;
}
.aboutTable dd {
	width: 82%;
	padding: 16px 8px;
	border: solid 1px #eef6e9;
}

/* ▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼
    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;
	padding: 10px 0;
}

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

.infoItemSubTitle {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 1.6;
	margin-top: 40px;
}

.infoItemSubTitle .suppName {
	color: #56a520;
}
.info24 {
	display: inline-block;
	font-size: 1.6rem;
	font-weight: bold;
	padding: 5px 7px;
	border: solid 1px #333;
	margin: 24px 0 50px 0;
}
.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/FAQ/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_info--01 {
	padding: 80px 0;
}

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

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

.infoItemSubTitle--01 {
	margin-bottom: 40px;
}

.info24--01 {
	width: 50%;
	margin: 20px auto 0 auto;
	display: block;
}

.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: 3px;
	left: 0;
	background: url(../img/icon-tel-f.svg) center no-repeat;
	background-size: contain;
	width: 15px;
	height: 22px;
}

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

.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: 24px;
}

/* 緑 */
.U-Title--h3-green {
	background-color: rgba(86, 165, 32, 0.1);
	border-left: 6px solid #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;
}

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

/* margin */

.u-mgt0 {
	margin-top: 0;
}
.u-mgt8 {
	margin-top: 8px;
}
.u-mgt16 {
	margin-top: 16px;
}
.u-mgt24 {
	margin-top: 24px;
}
.u-mgt28 {
	margin-top: 28px;
}
.u-mgt40 {
	margin-top: 40px;
}
.u-mgt80 {
	margin-top: 80px;
}
.u-mgt90 {
	margin-top: 90px;
}
.u-mgt120 {
	margin-top: 120px;
}

/* margin-bottom */
.u-mbt80 {
	margin-bottom: 80px;
}
.u-mgb120{
	margin-bottom: 120px;
}

/* padding-top */
.u-pdt30 {
	padding-top: 30px;
}
.u-pdt120 {
	padding-top: 120px;
}
.u-pdt80 {
	padding-top: 80px;
}

/* padding-bottom */
.u-pdb28 {
	padding-bottom: 28px;
}

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

/* 横スクロール */
.aboutListWrap {
	overflow: auto;
}
.aboutList {
	overflow: auto;
}
