@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;
}

main {
	position: relative;
}

.header_top {
    margin-top: 64px;

}

/* ▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲
            header
▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲▼▲ */


.headerSP {
	display: none !important;
}

header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	transition: linear 0.2s;
	z-index: 10;
	background-color: #fff;
}

#js-header.active {
	box-shadow: 0 2px 8px #00000045;
}

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

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

	#js-header.active {
		box-shadow: none;
		background: none;
	}

	.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: #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 #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: 70px;
	width: 100%;
	background-color: #e9e9e9;
	padding: 6px 0 6px 80px;
}
.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-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: 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: 300px;
	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--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--r a {
	width: 100%;
	padding: 24px 0;
	font-size: 2rem;
	font-weight: 500;
	background-color: #ef4218;
	box-shadow: 0px 4px #aa2d0e;
}

.c-btn--r a::before {
	top: 34px;
	width: 8px;
	height: 13px;
}

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

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

.c-btn--g a::before {
	top: 34px;
	width: 8px;
	height: 13px;
}

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

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

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

.c-btn--oc a {
	width: 400px;
	margin: 0 0 0 auto;
	background-color: #fff;
	color: #333;
	font-size: 2rem;
	padding: 26px 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: 5px;
	right: 0;
	background: url(../img/icon-Tab.svg) center no-repeat;
	background-size: contain;
	width: 22px;
	height: 22px;
}

.c-btn--oc a:hover {
	color: #333;
	background-color: #fff;
}

/* ===== リンクなしバージョン(シャドウなし&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--rev {
	margin: 0 auto 120px 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;
	background: url(../img/icon-Arrow-rev-h.svg) center no-repeat;
}

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

.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;
}

/* ======= リンクなし ======= */
.B-tab span::before {
	top: 20px;
	right: 25px;
	background: url(../img/icon_link.svg) center no-repeat;
	background-size: contain;
	width: 20px;
	height: 20px;
}

.B-tab span:hover::before {
	right: 25px;
}
.box {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 20px;
	background-color: #1d8b5e;
	z-index: 10;
}

.test {
	height: 2000px;
	background-color: #1d8b5e;
}

.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;
}
@media all and (max-width: 900px) {
    .mvInner {
        padding-bottom: 100px;
    }
}

/* ======= 雲 ======== */
.cloudLoop {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
}

.cloudLoop img:first-child {
	width: auto;
	height: 100%;
	animation: slide1 100s -70s linear infinite;
}

.cloudLoop img:last-child {
	animation: slide2 100s linear infinite;
}

/* ======= 鳥 ======== */
.bird {
	position: absolute;
	top: 0;
	left: 30%;
	width: 140px;
}

/* ======= 山 ======== */
.mountain {
	width: 100%;
	position: absolute;
	bottom: 10px;
}
.mountain img {
	width: 100%;
}

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

/*  */
.mainItem {
	width: 100%;
	max-width: 1000px;
	position: relative;
    margin: 80px auto 64px;
	text-align: center;
	z-index: 10;
}
.mainTitleWrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 10;
	margin-bottom: 16px;
}
.mainTitle {
	margin-bottom: 16px;
}
.mianText {
	text-align: left;
	font-size: 2rem;
	font-weight: bold;
}
.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: 136px;
	height: 231px;
	display: block;
	position: absolute;
	bottom: 24px;
	left: 8%;
	z-index: 9;
}
@media all and (max-width: 1240px) {
	.mvzuumo{
		left: 2%;
	}
}
@media all and (max-width: 1020px) {
	.mvzuumo{
		left: 8px;
	}
}
@media all and (max-width: 980px) {
	.mvzuumo{
        width: 100px;
        height: 187px;
	}
}

@media all and (max-width: 1101px) {
	.sec_door {
		position: relative;
		margin-top: -44px;
		background-color: #1d8b5e;
	}
}
@media all and (min-width: 768px) and (max-width: 900px) {
	.mvzuumo {
		width: 180px;
		height: 133px;
		left: 36%;
		z-index: 3;
	}
}

/* news */
.MVnewsList {
	position: relative;
	width: 100%;
	max-width: 720px;
	margin: 24px auto 0;
	background-color: rgba(255, 255, 255, 0.6);
	padding: 16px;
	text-align: center;
	border: solid 2px #c70e2d;
	border-radius: 20px;
	box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.16);
	/* Note: currently only Safari supports backdrop-filter */
	backdrop-filter: blur(7.808800220489502px);
	--webkit-backdrop-filter: blur(7.808800220489502px);
	background-color: rgba(255, 255, 255, 0.1);
	/* (plus shape's fill blended on top as a separate layer with 28.04% opacity) */
}
.MVnewsItem {
	text-align: left;
	transition: all 0.15s;
}
.MVnewsItem:not(:first-of-type){
    border-top: solid 1px #666;
    margin-top: 12px;
    padding-top: 12px;
}
.MVnewsItem a {
	position: relative;
    padding: 2px 16px 2px 28px;
    font-size: 1.4rem;
    font-weight: 500;
}
.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 .date {
	position: relative;
	padding-right: 10px;
	margin-right: 10px;
	border-right: 4px double #666666;
}
.MVnewsItem .Text {
	vertical-align: bottom;
}
.MVnewsItem .service {
	padding-right: 10px;
	margin-right: 10px;
	border-right: 4px double #666666;
}
.MVnewsItem:hover {
	opacity: 0.6;
}
.c-newsTag {
    margin-bottom: 16px;
}

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

.sec_door {
	position: relative;
	margin-top: -44px;
	background-color: #1d8b5e;
}
.doorInner {
	position: relative;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	z-index: 11;
}
.doorList {
	display: flex;
	justify-content: space-between;
}
.doorListItem {
	position: relative;
	width: 32%;
	text-align: center;
	border-radius: 16px;
}

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

/* ======= 共通 ======= */
.c-Item {
	position: relative;
	padding: 20px 12px 64px;
	height: 100%;
	border-radius: 16px;
	transition: all 0.15s;
	overflow: hidden;
	box-sizing: border-box;
	z-index: 3;
}
.c-Item::before {
	content: "";
	display: inline-block;
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translate(0, -50%);
	background: url(../img/sec_door/img-IconArrow.svg) center no-repeat;
	background-size: contain;
	width: 9px;
	height: 14px;
}
.c-Item::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 97%;
	height: 96%;
	background-color: #fff;
	border-radius: 13px;
	transition: all 0.2s;
	z-index: -1;
}
.doorListItem:hover .c-Item {
	transform: translateY(4px);
	box-shadow: none;
}
.doorListItem:hover .c-Item::after {
	width: 95%;
	height: 94%;
	border-radius: 12px;
}
/* SIS */
.Item-SIS {
	background-color: #61b229;
	box-shadow: 0px 3px #44831c;
}
.SISText span {
	color: #56a523;
}
/* hikari */
.Item-hikari {
	background-color: #f5ab52;
	box-shadow: 0px 3px #c48f17;
}
.hikariText span {
	color: #f89829;
}
/* docomo */
.Item-docomo {
	background-color: #e00b41;
	box-shadow: 0px 4px #aa2d0e;
}
.docomoText span {
	color: #cf0f31;
}

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

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

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

.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;
	top: 135px;
	right: -35px;
	background: url(../img/sec_contact/img-zuumo.svg) center no-repeat;
	background-size: contain;
	width: 172px;
	height: 245px;
}
.contactItem {
	margin-bottom: 60px;
}

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

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

.optionItemWrap {
	display: flex;
	justify-content: space-around;
}

.optionItem {
	width: 41.38%;
}

.optionItem > .flexbox {
	min-height: 216px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.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 124px 0;
}

.msInner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

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

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

.msTextArea {
	position: relative;
	padding-left: 135px;
	margin-bottom: 28px;
}

.msTextArea::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 25px;
	left: 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;
}

.msItem:hover {
	transform: translateY(4px);
	box-shadow: none;
}

.msItem:hover .c-btn--noH span {
	background-color: #448319;
}

.msItem:hover .c-btn--noH span::before {
	right: 20px;
}
.msItem:hover .B-tab span::before {
	right: 25px;
}

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

.msText {
	font-size: 1.8rem;
	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: 86px 0 120px 0;
	border-bottom: 1px solid #eaeaea;
}

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

.newsTitle {
	margin-bottom: 62px;
}

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

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

.ListItemInner::before {
	content: "";
	display: inline-flex;
	position: absolute;
	top: 50%;
	right: 35px;
	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 > .ListItemInner:hover::before {
	right: 28px;
}

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

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

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

.ocInner {
	position: relative;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding-bottom: 97px;
}

.ocInner::before {
	content: "";
	display: inline-block;
	position: absolute;
	bottom: -30px;
	left: 0;
	background: url(../img/sec_oc/img-zumo.svg) center no-repeat;
	background-size: contain;
	width: 135px;
	height: 195px;
}
.ocTitle {
	text-align: right;
	font-size: 2rem;
	font-weight: bold;
	color: #fff;
	line-height: 1.7;
	margin-bottom: 10px;
}
.ocText {
	font-size: 1.6rem;
	line-height: 2;
	color: #fff;
	text-align: right;
	margin-bottom: 56px;
}

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

/* === アンカーリンクボタン === */
.c-Anchor {
	max-width: 940px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 24px;
}
.c-btn--anchor {
	width: 31.49%;
}
.anchor-mrl24 {
	margin: 0 24px;
}
.anchor-mr12 {
	margin-right: 12px;
}
.anchor-ml12 {
	margin-left: 12px;
}
.anchor-mb24 {
	margin-bottom: 24px;
}
.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.8rem;
	font-weight: 500;
	padding: 30px 0 30px 20px;
	border-top: 1px solid #707070;
	position: relative;
}

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

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

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

.date::before{
	display: none;
}
.nArchiveListText .date {
	margin-right: 10px;
	padding-left: 0;
	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-block;
	color: #56a523;
	border-bottom: solid 1px #56a523;
}
/* メンテナンス情報 */
.maintedate {
	display: flex;
	font-size: 1.6rem;
	font-weight: 400;
}

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

.js-accordion .icon {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.js-accordion .icon::before,
.js-accordion .icon::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 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: 33.33%;
	text-align: center;
	padding: 20px 0;
	background-color: #eef6e9;
	border: solid 1px #eef6e9;
}
.aboutTable dd {
	width: 66.67%;
	padding: 18px 33px 18px 40px;
	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: 50%;
	padding: 10px 0;
}

.infoItem--tab > .infoList li:nth-of-type(2) {
	border-left: 1px dotted #333;
}

.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;
}

.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: 100%;
	padding: 40px 0 47px 0;
	margin-bottom: 40px;
}

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

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

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

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

.info24--01 {
	margin: 0 0 0 5px;
}

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

.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: 2.8rem;
	line-height: 1.2;
	font-weight: bold;
	padding: 8px 0 8px 10px;
	margin-top: 120px;
	margin-bottom: 48px;
}

/* 緑 */
.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;
}

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

/* 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;
}

.l-width_l {
	max-width: 760px;
	margin-right: auto;
	margin-left: auto;
}

.l-width_ll {
	max-width: 900px;
	margin-right: auto;
	margin-left: auto;
}
@media screen and (max-width: 1100px) {
    .mainItem{
		width: 95%;
	}
}
@media screen and (max-width: 1024px) {
	.msInner,
	.contactInner,
	.doorInner,
	.infoItem--01,
	.l-width_ll {
		width: 95%;
	}
}
