/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */

/* FLOCSS
----------------------------------------------------- */

#page_top {
	bottom: 25px;
	display: none;
	position: fixed;
	right: 20px;
	z-index: 999;
}

#page_top a {
	background: #6b8d31;
	border-radius: 50%;
	color: #fff;
	display: block;
	font-size: 20px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	text-decoration: none;
	width: 60px;
}

#page_top a:focus,
#page_top a:hover {
	opacity: 0.6;
}

.inner {
	margin-inline: auto;
	max-width: 1230px;
	padding-inline: 15px;
}

.page-inner {
	margin-inline: auto;
	max-width: 930px;
	padding-inline: 15px;
}

.top-header__inner,
.header__inner {
	background-color: #fff;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	height: 100px;
}

.top-header-utilities,
.header-utilities {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.top-header-logo-area,
.header-logo-area {
	align-items: center;
	display: flex;
	height: 100px;
	padding-left: 30px;
}

.top-header-logo-area.top,
.header-logo-area.top {
	background-color: transparent;
}

.top-header-logo-area__logo--img,
.header-logo-area__logo--img {
	width: 300px;
}

.top-header-right-area,
.header-right-area {
	display: flex;
	flex: 1;
	justify-content: flex-end;
}

.top-header-right__items,
.header-right__items {
	align-items: flex-end;
	display: flex;
	flex-direction: column;
	height: 100px;
	justify-content: center;
}

.top-header-nav-area,
.header-nav-area {
	align-items: center;
	display: flex;
	justify-content: flex-end;
}

.top-header .menu-item,
.header .menu-item {
	flex-grow: 1;
	text-align: center;
}

.top-header .menu-item a,
.header .menu-item a {
	display: block;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
	transition: 0.25s;
}

.top-header .menu-item a::after,
.header .menu-item a::after {
	background: #6b8d31;
	bottom: -5px;
	content: "";
	height: 1px;
	left: 10%;
	position: absolute;
	transform: scale(0, 1); /*X方向0、Y方向1*/
	transform-origin: center top; /*上部中央基点*/
	transition: all 0.3s;
	width: 80%;
}

.top-header .menu-item a:hover,
.header .menu-item a:hover {
	color: #6b8d31;
}

.top-header .menu-item a:hover::after,
.header .menu-item a:hover::after {
	transform: scale(1, 1);
}

.top-header-nav,
.header-nav {
	align-items: center;
	display: flex;
	gap: 30px;
	justify-content: space-between;
}

.top-header-nav__wrapper,
.header-nav__wrapper {
	display: flex;
}

.top-header-contact-area,
.header-contact-area {
	-webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 20% 100%);
	align-items: center;
	background-color: #6b8d31;
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 20% 100%);
	color: #fff;
	display: flex;
	flex: 0 0 120px;
	flex-direction: column;
	height: 100px;
	justify-content: center;
	margin-left: 20px;
	padding-left: 20px;
	text-transform: uppercase;
	transition: background-color 0.5s;
}

.top-header-contact-area .fa-envelope,
.header-contact-area .fa-envelope {
	color: #fff;
	font-size: 35px;
}

.top-header-contact-area .text,
.header-contact-area .text {
	font-size: 14px;
}

.top-header-contact-area:hover,
.top-header-contact-area:focus,
.header-contact-area:hover,
.header-contact-area:focus {
	background-color: #6b8d31;
}

.top-header {
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 620;
}

.header {
	display: none;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 620;
}

.header.displayBlock {
	display: block;
}

.header.displayNone {
	display: none;
}

.header-nav__link {
	color: #222;
}

/*　上に上がる動き　*/

#header.UpMove {
	animation: UpAnime 0.5s forwards;
}

/*　下に下がる動き　*/

#header.DownMove {
	animation: DownAnime 0.5s forwards;
}

.drawer-icon {
	background: #fff;
	border: none;
	box-shadow: none;
	cursor: pointer;
	display: none;
	padding: 2px 9px 10px;
	position: fixed;
	right: 15px;
	text-align: center;
	top: 20px;
	transition: all 0.5s ease 0s;
	z-index: 1001;
}

.drawer-icon.is-checked {
	transform: translateX(-260px);
}

.drawer-bars {
	display: inline-block;
	height: 20px;
	position: relative;
	vertical-align: bottom;
	width: 22px;
}

.drawer-bar {
	background: #777;
	border-radius: 0;
	display: block;
	height: 4px;
	left: 0;
	position: absolute;
	right: 0;
	transition: all 0.3s linear 0s;
	width: 100%;
}

.drawer-bar:nth-of-type(1) {
	top: 0;
}

.drawer-bar:nth-of-type(2) {
	top: 8px;
}

.drawer-bar:nth-of-type(3) {
	top: 16px;
}

.is-checked .drawer-bar:nth-of-type(1) {
	top: 10px;
	transform: rotate(-45deg);
}

.is-checked .drawer-bar:nth-of-type(2) {
	background: transparent;
}

.is-checked .drawer-bar:nth-of-type(3) {
	top: 10px;
	transform: rotate(45deg);
}

.drawer-background {
	background: #000;
	display: none;
	height: 100%;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: all 0.5s ease 0s;
	width: 100%;
	z-index: 999;
}

.drawer-background.is-checked {
	display: block;
	opacity: 0.8;
}

.drawer-content {
	background: #6b8d31;
	bottom: auto;
	color: #fff;
	height: 100%;
	left: auto;
	max-width: 90%;
	overflow: auto;
	position: fixed;
	right: 0;
	text-align: left;
	top: 0;
	transform: translateX(105%);
	transition: all 0.5s ease 0s;
	width: 260px;
	z-index: 1000;
}

.drawer-content.is-checked {
	box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
	transform: translateX(0);
}

.drawer-content ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.drawer-content ul li {
	border-bottom: 1px dotted #fff;
	color: #fff;
}

.drawer-content ul li a {
	display: block;
	padding: 16px 30px 14px 20px;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
}

.drawer-tel {
	border: 1px solid #fff;
	border-radius: 10px;
	display: inline-block;
	margin-left: 20px;
	margin-top: 20px;
	padding: 5px 20px;
}

.footer {
	background: #f1face;
}

.footer__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1230px;
	padding-left: 15px;
	padding-right: 15px;
}

.footer__inner-wrapper {
	display: flex;
	justify-content: space-between;
	padding-bottom: 40px;
	padding-top: 50px;
}

.footer__company-area {
	flex: 1;
}

.footer .address-area__box {
	align-items: flex-end;
	display: flex;
	margin-block: 10px;
}

.footer .address-area__box .location {
	color: #eccc28;
	font-size: 25px;
	margin-bottom: -3px;
	margin-left: 10px;
	transition: color 0.3s;
}

.footer .address-area__box .location:focus,
.footer .address-area__box .location:hover {
	color: #bada55;
}

.footer .address-area__address {
	font-size: 14px;
}

.footer .address-area .tel {
	font-size: 14px;
}

.footer .address-area .mail {
	display: block;
	font-size: 15px;
	margin-bottom: 5px;
	transition: 0.3s;
}

.footer .address-area .mail:focus,
.footer .address-area .mail:hover {
	opacity: 0.6;
}

.footer__nav-area {
	align-items: flex-end;
	display: flex;
	flex: 0 1 60%;
	flex-direction: column;
	justify-content: space-between;
}

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

.footer-nav__item {
	align-items: center;
	display: flex;
	flex-grow: 0;
	margin: 0 auto;
	position: relative;
	text-align: center;
}

.footer-nav__item:first-child::before {
	background-color: #999;
	content: "";
	height: 17px;
	left: 0;
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	width: 1px;
}

.footer-nav__item::after {
	background-color: #999;
	content: "";
	height: 17px;
	position: absolute;
	right: 0;
	top: 40%;
	transform: translateY(-50%);
	width: 1px;
}

.footer-nav__item--active {
	background-color: #bada55;
	color: #fff;
}

.footer-nav__link {
	display: inline-block;
	padding: 0 15px 10px;
	text-decoration: none;
	text-transform: uppercase;
	transition: 0.25s;
}

.footer-nav__link:focus,
.footer-nav__link:hover {
	opacity: 0.6;
}

.footer-nav__link--last-child {
	padding-right: 0;
}

.footer .copyright {
	font-size: 14px;
	margin-top: 10px;
}

.scroll {
	bottom: 0%;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	z-index: 90;
}

.scroll p {
	color: #fff;
	font-size: 20px;
	letter-spacing: 0.1em;
	margin-top: -150px;
}

.scroll div {
	background-color: #fff;
	bottom: 0%;
	height: 110px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 1px;
}

.top-mv__inner {
	position: relative;
}

.top-mv__slide {
	height: 100vh;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.top-mv__image {
	animation: slider-1 24s linear infinite;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	filter: brightness(65%);
	height: 100%;
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.top-mv__image:nth-child(1) {
	animation-delay: -2s;
	background-image: url(/wp-content/themes/hc/img/common/main1.webp);
}

.top-mv__image:nth-child(2) {
	animation-delay: 6s;
	background-image: url(/wp-content/themes/hc/img/common/main2.webp);
}

.top-mv__image:nth-child(3) {
	animation-delay: 14s;
	background-image: url(/wp-content/themes/hc/img/common/main3.webp);
}

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

.top-mv__title {
	color: #fff;
	font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-size: 2.8871391076vw;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1.5;
	text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15), -2px 2px 3px rgba(0, 0, 0, 0.15);
}

.top-mv__title .xl {
	font-size: 3.3070866142vw;
}

.mv {
	margin-top: 100px;
	position: relative;
}

.mv-jumbotron {
	background-image: url(../img/common/common-mv.webp);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	filter: brightness(90%);
	height: 250px;
	left: 0;
	top: 0;
	width: 100%;
}

.mv__inner {
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}

.mv__box {
	margin-inline: auto;
	max-width: calc(900px + 30px);
	padding-inline: 15px;
}

.mv .mv-h2 {
	color: #fff;
	font-size: 40px;
	font-weight: 600;
	position: relative;
}

.mv .mv-h2::after {
	background-color: #fff;
	bottom: -15px;
	content: "";
	height: 5px;
	left: 0;
	position: absolute;
	width: 80px;
}

.heading2 {
	border-bottom: 7px solid #dddddd;
	font-size: 38px;
	font-weight: 600;
	padding-bottom: 18px;
	position: relative;
	text-align: center;
}

.heading2 span {
	color: #6b8d31;
	display: block;
	font-family: "Montserrat", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
	font-size: 18px;
}

.heading2::after {
	background-color: #bada55;
	bottom: -7px;
	content: "";
	height: 7px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 100px;
}

.heading2._company::after {
	background-color: #6b8d31;
}

.heading3 {
	border-bottom: 2px solid #6b8d31;
	display: block;
}

.heading3._right {
	text-align: right;
}

.heading3__title {
	color: #6b8d31;
	display: block;
	font-size: 27px;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 5px;
	padding-bottom: 5px;
}

.heading3__title._company {
	color: #bada55;
}

.btn {
	background-color: #6b8d31;
	color: #fff;
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
	height: 55px;
	line-height: 55px;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	transition: 0.25s;
}

.btn:focus,
.btn:hover {
	background-color: #bada55;
}

.btn::after {
	border-bottom: 2px solid #000;
	border-right: 3px solid #000;
	content: "";
	height: 10px;
	position: absolute;
	right: -25px;
	top: 35%;
	transform: translateY(-50%);
	transform: skew(55deg);
	transition: width 0.3s;
	width: 50px;
}

.btn:hover::after {
	width: 30px;
}

.btn.google {
	width: 220px;
}

.btn._top {
	width: 200px;
}

.btn._works {
	width: 280px;
}

.btn._top-contact {
	background-color: transparent;
	border: 2px solid #fff;
	width: 200px;
}

.btn._top-contact:focus,
.btn._top-contact:hover {
	background-color: #bada55;
}

.btn._top-contact::after {
	border-bottom: 2px solid #fff;
	border-right: 3px solid #fff;
}

.tel-btn {
	background: #bada55;
	border-radius: 25px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
	color: #fff;
	display: inline-block;
	font-family: "Montserrat", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
	font-size: 20px;
	font-weight: 500;
	height: 50px;
	letter-spacing: 0.05em;
	line-height: 50px;
	padding-inline: 24px;
}

.tel-btn .fa-phone-alt {
	font-size: 20px;
}

.tel-btn._footer {
	box-shadow: unset;
}

.tel-btn .call {
	cursor: default;
}

.contact-btn {
	background: #6b8d31;
	border-radius: 23px;
	color: #fff;
	display: inline-block;
	height: 45px;
	line-height: 45px;
	text-align: center;
	transition: 0.25s;
	width: 200px;
}

.contact-btn._arrow-right {
	position: relative;
}

.contact-btn._arrow-right::after {
	content: "\f054";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	right: 0.83em;
	top: 50%;
	transform: translateY(-50%);
}

.contact-btn:focus,
.contact-btn:hover {
	background-color: #bada55;
}

.sii-btn {
	border: 2px solid #aaa;
	border-radius: 35px;
	display: inline-block;
	padding: 10px 30px;
}

.sii-btn img {
	transition: 0.3s opacity;
}

.sii-btn img:hover {
	opacity: 0.6;
}

.top-works {
	overflow: hidden;
	padding-block: 100px;
	position: relative;
}

.top-works::before {
	background: #bada55;
	border-radius: 50%/0 0 100% 100%;
	content: "";
	display: inline-block;
	height: 26.2467191601vw;
	left: -31.4960629921vw;
	position: absolute;
	top: 0;
	width: 62.9921259843vw;
	z-index: -1;
}

.top-works__line {
	background-color: #6b8d31;
	height: 50px;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: 1px;
	z-index: 100;
}

.top-works__boxes {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.top-works__box {
	align-items: center;
	display: flex;
	gap: 50px;
	margin-top: 40px;
}

.top-works__box._reverse {
	flex-direction: row-reverse;
}

.top-works__image {
	flex: 1;
}

.top-works__body {
	flex: 0 0 48%;
}

.top-works__text {
	font-size: 18px;
	line-height: 200%;
	margin-top: 30px;
	text-align: justify;
}

.top-works__button {
	margin-top: 30px;
}

.maker {
	border-top: 30px solid #bada55;
}

.maker__outer {
	background-color: #f1face;
	border-top: 15px solid #999;
	padding-bottom: 100px;
	padding-top: 80px;
}

.maker__inner {
	background-color: #fff;
	margin-top: 40px;
	padding: 70px 100px;
}

.maker__items {
	display: grid;
	gap: 20px 80px;
	grid-template-columns: 1fr 1fr;
	margin-inline: auto;
	max-width: 760px;
}

.maker__item {
	text-align: center;
}

.top-privacy__outer {
	background-color: #fff;
	border-top: 15px solid #999;
	padding-bottom: 100px;
	padding-top: 85px;
}

.top-privacy__inner {
	background-color: #f1face;
	margin-top: 40px;
	padding: 70px 100px;
}

.top-privacy__lists {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 30px;
}

.top-privacy__list span {
	display: inline-block;
}

.top-privacy__list-title {
	font-weight: bold;
	padding-left: 32px;
	text-indent: -32px;
}

.top-privacy__list-text {
	margin-left: 32px;
}

.top-privacy__list-indent {
	padding-left: 32px;
	text-indent: -32px;
}

.company__outer {
	background: transparent url(../img/common/company-bg.webp) no-repeat center center/cover;
	padding-block: 100px;
}

.company__inner {
	background-color: #fff;
	margin-top: 40px;
	padding: 70px 100px;
}

.company .horizontal-table__inner {
	background-color: #fff;
	width: 100%;
}

.company .horizontal-table__header {
	background-color: #f1face;
	border-bottom: 1px solid #6b8d31;
	font-weight: 600;
	padding: 15px;
	vertical-align: middle;
	width: 25%;
}

.company .horizontal-table__header:last-child {
	border-right-width: 0;
}

.company .horizontal-table__header:first-child {
	border-top: 1px solid #6b8d31;
}

.company .horizontal-table__text {
	border-bottom: 1px solid #ccc;
	padding: 15px;
	vertical-align: middle;
}

.company .horizontal-table__text:first-of-type {
	border-top: 1px solid #ccc;
}

.company .horizontal-table__text .list {
	display: block;
	padding-left: 20px;
	text-indent: -20px;
}

.access {
	background-color: #f1face;
	padding-block: 80px;
}

.access .access-map {
	aspect-ratio: 4/1;
	position: relative;
}

.access .access-map iframe {
	height: 400px;
	width: 100%;
}

.access .btn-wrap {
	text-align: center;
}

.achievements {
	overflow: hidden;
	padding-block: 100px;
	position: relative;
}

.achievements::before {
	background: #bada55;
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 6.2992125984vw;
	left: 3%;
	position: absolute;
	top: 2.624671916vw;
	width: 6.2992125984vw;
	z-index: 1;
}

.achievements::after {
	background: #bada55;
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 3.1496062992vw;
	left: 8%;
	position: absolute;
	top: 8.3989501312vw;
	width: 3.1496062992vw;
	z-index: -1;
}

.construction {
	color: #999;
	font-size: 70px;
	font-weight: 700;
	margin-top: 20px;
	text-align: center;
}

.construction-en {
	color: #dfa7a7;
	font-family: "Montserrat", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", sans-serif;
	font-size: 80px;
	line-height: 110%;
	margin-top: 40px;
	text-align: center;
}

.compliance {
	border-top: 10px solid #999;
}

.compliance__outer {
	background-color: #f1face;
	padding-bottom: 100px;
	padding-top: 80px;
}

.compliance__inner {
	background-color: #fff;
	margin-top: 40px;
	padding: 70px 100px;
}

.compliance__heading {
	color: rgb(14, 101, 14);
	font-size: 19px;
	letter-spacing: 0.05em;
	margin-inline: auto;
	margin-top: 40px;
	max-width: 980px;
}

.compliance__title {
	color: rgb(14, 101, 14);
	font-size: 19px;
	font-weight: 500;
	padding-left: 19px;
	text-indent: -19px;
}

.compliance__text {
	margin-top: 15px;
}

.compliance__item {
	border-bottom: 2px solid #ccc;
	padding-bottom: 30px;
}

.compliance__item + .compliance__item {
	margin-top: 40px;
}

.top-contact {
	overflow: hidden;
	padding-block: 100px;
	position: relative;
}

.top-contact::before {
	background: #bada55;
	border-radius: 50%/0 0 100% 100%;
	content: "";
	display: inline-block;
	height: 26.2467191601vw;
	position: absolute;
	right: -31.4960629921vw;
	top: 0;
	width: 62.9921259843vw;
	z-index: 1;
}

.top-contact__inner {
	position: relative;
	z-index: 1;
}

.top-contact__items {
	display: grid;
	gap: 50px;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	margin-top: 50px;
}

.intro {
	background-color: #f1face;
	overflow: hidden;
	padding-block: 50px;
	position: relative;
}

.intro__text {
	display: inline-block;
	font-size: 21px;
	font-weight: 500;
	text-decoration: underline;
	text-decoration-color: #b8ecb0;
	text-decoration-thickness: 10px;
	text-underline-offset: -3px;
}

.solar {
	padding-bottom: 100px;
	padding-top: 50px;
}

.solar__btn-wrap {
	margin-top: 60px;
}

.solar__items {
	display: flex;
	flex-direction: column;
	margin-top: 30px;
}

.solar__item {
	padding: 30px;
}

.solar__item:nth-child(2n+1) {
	background-color: #f1face;
}

.solar__item-title {
	border-left: 8px solid rgb(14, 101, 14);
	color: rgb(14, 101, 14);
	font-size: 20px;
	font-weight: 500;
	line-height: 110%;
	padding-left: 10px;
}

.solar__item-text {
	margin-top: 20px;
}

.solar__box {
	margin-top: 60px;
}

.solar__image {
	margin-inline: auto;
	margin-top: 50px;
	width: 608px;
}

.solar__image._eco {
	width: 463px;
}

.solar__images {
	align-items: flex-end;
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr 1fr;
	margin-inline: auto;
	margin-top: 40px;
	max-width: 600px;
}

.solar__text {
	margin-top: 40px;
}

.solar__text._eco {
	margin-top: 20px;
}

.solar__text .strong {
	color: rgb(14, 101, 14);
	display: block;
	font-weight: 500;
	margin-bottom: 10px;
}

.solar__catch {
	display: inline-block;
	font-size: 18px;
	font-weight: 500;
	margin-top: 40px;
	text-decoration: underline;
	text-decoration-color: #b8ecb0;
	text-decoration-thickness: 10px;
	text-underline-offset: -3px;
}

.catch {
	font-size: 18px;
	line-height: 200%;
	text-align: justify;
}

.faq > *:last-child {
	margin-bottom: 0;
}

.faq__row {
	align-items: flex-start;
	box-sizing: content-box;
	display: flex;
	min-height: 45px;
	padding-left: 60px;
	position: relative;
}

.faq__row--question {
	color: rgb(14, 101, 14);
	font-size: 19px;
	font-weight: 500;
	margin-bottom: 15px;
}

.faq__row--answer {
	border-bottom: 1px solid #ccc;
	font-size: 19px;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.faq__question-text {
	padding-top: 5px;
}

.faq__icon {
	border-radius: 50%;
	font-weight: normal;
	height: 40px;
	left: 0;
	line-height: 40px;
	position: absolute;
	text-align: center;
	top: 0;
	width: 40px;
}

.faq__icon--question {
	background-color: #6b8d31;
	color: #fff;
}

.faq__icon--answer {
	background: #efefef;
	color: rgb(14, 101, 14);
}

.faq__answer-body {
	padding-top: 6px;
}

.faq__answer-body > *:last-child {
	margin-bottom: 0;
}

.faq__answer-text {
	font-size: 16px;
	margin-bottom: 20px;
}

.callcenter {
	padding-bottom: 100px;
}

.callcenter__map {
	margin-top: 100px;
}

.callcenter__map .access-map {
	aspect-ratio: 16/9;
	height: 350px;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	position: relative;
	width: 100vw;
}

.callcenter__map .access-map iframe {
	height: 100%;
	width: 100%;
}

.callcenter__text {
	font-size: 18px;
	line-height: 2;
	margin-top: 30px;
	text-align: center;
}

.callcenter__items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-inline: auto;
	margin-top: 60px;
	max-width: 980px;
}

.callcenter__item {
	position: relative;
}

.callcenter__body {
	background-color: rgba(255, 255, 255, 0.8);
	bottom: 0;
	left: 0;
	padding: 20px;
	position: absolute;
	width: 85%;
}

.callcenter__title {
	color: rgb(14, 101, 14);
	font-size: 27px;
	font-weight: 600;
}

.callcenter .normal {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	max-width: 1230px;
	padding-left: 15px;
	padding-right: 15px;
}

.callcenter .normal._reverse {
	flex-direction: row-reverse;
}

.callcenter .column {
	margin-right: -3%;
	position: relative;
	width: 51%;
	z-index: 2;
}

.callcenter .column._reverse {
	margin-left: -3%;
	margin-right: unset;
}

.callcenter .column-outside-right {
	flex: 1;
	margin-left: -3%;
	margin-right: calc(50% - 50vw);
}

.callcenter .column-outside-left {
	flex: 1;
	margin-left: calc(50% - 50vw);
	margin-right: -3%;
	text-align: right;
}

.callcenter .column .text-box {
	background-color: rgba(255, 255, 255, 0.7);
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	padding: 40px;
}

.text-center {
	text-align: center;
}

.text-green {
	color: rgb(14, 101, 14);
}

.p-numberList {
	counter-reset: custom-counter;
	font-size: 16px;
	list-style: none;
	margin-top: 15px;
}

.p-numberList__item {
	padding-left: 20px;
	text-indent: -20px;
}

.p-numberList__item + .p-numberList__item {
	margin-top: 5px;
}

.p-numberList__item:before {
	content: counter(custom-counter) "." " ";
	counter-increment: custom-counter;
	padding-right: 2px;
}

#works,
#company,
#achievements,
#contact,
#privacy,
#compliance {
	margin-top: -100px;
	padding-top: 100px;
}

/*========= 流れるテキスト ===============*/

/*全共通*/

.slide-in {
	display: inline-block;
	overflow: hidden;
}

.slide-in_inner {
	display: inline-block;
}

/*左右のアニメーション*/

.leftAnime {
	opacity: 0; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
	animation-duration: 2s;
	animation-fill-mode: forwards;
	animation-name: slideTextX100;
	opacity: 0;
}

.slideAnimeRightLeft {
	animation-duration: 2s;
	animation-fill-mode: forwards;
	animation-name: slideTextX-100;
	opacity: 0;
}

.entry-404 {
	padding-block: 85px;
	text-align: center;
}

.entry-404-head {
	color: #f0cdd0;
	font-size: 80px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 36px;
}

.entry-404-head span::after {
	content: " ";
}

.entry-404-lead {
	color: #808080;
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 24px;
}

.entry-404-content {
	color: #808080;
}

.entry-404-btn {
	margin-top: 58px;
}

.entry-404-btn .btn {
	background: #ebebeb;
	color: #8d8d8d;
}

.entry-404-btn .btn:hover {
	background: #ccc;
	opacity: 1;
}

/* FLOCSS
----------------------------------------------------- */

/* FLOCSS
----------------------------------------------------- */

/*! destyle.css v2.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */

/* Reset box-model and set borders */

/* ============================================ */

*,
::before,
::after {
	border-style: solid;
	border-width: 0;
	box-sizing: border-box;
}

/* Document */

/* ============================================ */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */

html {
	-webkit-text-size-adjust: 100%; /* 2 */
	-webkit-tap-highlight-color: transparent; /* 3*/
	line-height: 1.15; /* 1 */
}

/* Sections */

/* ============================================ */

/**
 * Remove the margin in all browsers.
 */

body {
	margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

main {
	display: block;
}

/* Vertical rhythm */

/* ============================================ */

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
	margin: 0;
}

/* Headings */

/* ============================================ */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	margin: 0;
}

/* Lists (enumeration) */

/* ============================================ */

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Lists (definition) */

/* ============================================ */

dt {
	font-weight: bold;
}

dd {
	margin-left: 0;
}

/* Grouping content */

/* ============================================ */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
	border-top-width: 1px;
	box-sizing: content-box; /* 1 */
	clear: both;
	color: inherit;
	height: 0; /* 1 */
	margin: 0;
	overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
	font-family: monospace, monospace; /* 1 */
	font-size: inherit; /* 2 */
}

address {
	font-style: inherit;
}

/* Text-level semantics */

/* ============================================ */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
	background-color: transparent;
	color: inherit;
	text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
	-webkit-text-decoration: underline dotted;
	text-decoration: underline; /* 2 */
	text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
	font-family: monospace, monospace; /* 1 */
	font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content */

/* ============================================ */

/**
 * Prevent vertical alignment issues.
 */

img,
embed,
object,
iframe {
	vertical-align: bottom;
}

img {
	max-width: 100%;
}

/* Forms */

/* ============================================ */

/**
 * Reset form fields to make them styleable
 */

button,
input,
optgroup,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border-radius: 0;
	color: inherit;
	font: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	text-align: inherit;
	vertical-align: middle;
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */

[type=checkbox] {
	-webkit-appearance: checkbox;
	-moz-appearance: checkbox;
	appearance: checkbox;
}

[type=radio] {
	-webkit-appearance: radio;
	-moz-appearance: radio;
	appearance: radio;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input { /* 1 */
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type=button],
[type=reset],
[type=submit] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
	cursor: default;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Remove arrow in IE10 & IE11
 */

select::-ms-expand {
	display: none;
}

/**
 * Remove padding
 */

option {
	padding: 0;
}

/**
 * Reset to invisible
 */

fieldset {
	margin: 0;
	min-width: 0;
	padding: 0;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
	color: inherit; /* 2 */
	display: table; /* 1 */
	max-width: 100%; /* 1 */
	padding: 0; /* 3 */
	white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
	overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */

[type=search] {
	outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}

/**
 * Clickable labels
 */

label[for] {
	cursor: pointer;
}

/* Interactive */

/* ============================================ */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
	display: list-item;
}

/*
 * Remove outline for editable content.
 */

[contenteditable] {
	outline: none;
}

/* Table */

/* ============================================ */

table {
	border-collapse: collapse;
	border-spacing: 0;
}

caption {
	text-align: left;
}

td,
th {
	padding: 0;
	vertical-align: top;
}

th {
	font-weight: bold;
	text-align: left;
}

/* Misc */

/* ============================================ */

/**
 * Add the correct display in IE 10+.
 */

template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */

[hidden] {
	display: none;
}

main {
	overflow: hidden; /*横スクロールの発生を防止*/
}

body {
	color: #1a1a1a;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
}

a {
	transition: 0.25s;
}

a:hover {
	text-decoration: none;
}

img {
	height: auto;
}

/* FLOCSS
----------------------------------------------------- */

.l-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1200px;
	padding-bottom: 50px;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 50px;
}

.l-inner--has-column {
	display: grid;
	gap: 40px;
	grid-template-columns: 3fr minmax(260px, 1fr);
}

/* FLOCSS
----------------------------------------------------- */

.c-btn {
	background-color: #e25c00;
	border: 2px solid transparent;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	color: #fff;
	display: inline-block;
	font-size: 17px;
	max-width: 100%;
	padding: 20px 10px;
	text-align: center;
	text-decoration: none;
	transition: 0.25s;
	width: 300px;
}

.c-btn:focus,
.c-btn:hover {
	background-color: #fff;
	border-color: currentColor;
	color: #e25c00;
}

.c-btn--arrow-right {
	padding-left: 13.8px;
	padding-right: 20px;
	position: relative;
}

.c-btn--arrow-right::after {
	content: "\f061";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	right: 8.3px;
	top: 50%;
	transform: translateY(-50%);
}

.c-btn--icon {
	padding-left: 13.8px;
	padding-right: 20px;
	position: relative;
}

.c-btn--icon::after {
	background: transparent url(/images/nav_07.png) no-repeat center center/contain;
	content: "";
	height: 60px;
	left: 20px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
}

.c-btn--large {
	font-size: 20px;
	padding-bottom: 25px;
	padding-top: 25px;
	width: 340px;
}

.c-btn--warning {
	background-color: #f1de00;
	color: #222;
}

.c-btn--warning:focus,
.c-btn--warning:hover {
	border-color: #f1de00;
	color: #222;
}

.c-rounded-btn {
	background-color: #e25c00;
	border: 2px solid transparent;
	border-bottom-color: #d40152;
	border-radius: 10px;
	color: #fff;
	display: inline-block;
	font-size: 17px;
	max-width: 100%;
	padding: 15px 10px;
	text-align: center;
	text-decoration: none;
	transition: 0.25s;
	width: 236px;
}

.c-rounded-btn:focus,
.c-rounded-btn:hover {
	background-color: #fff;
	border-color: currentColor;
	color: #e25c00;
}

.c-before-icon-btn {
	border: 1px solid currentColor;
	color: #e25c00;
	display: inline-block;
	padding: 0.2em 0.3em;
	position: relative;
	text-decoration: none;
	transition: 0.25s;
}

.c-before-icon-btn:focus,
.c-before-icon-btn:hover {
	background-color: #e25c00;
	color: #fff;
}

.c-before-icon-btn::before {
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 0.5em;
}

.c-before-icon-btn--download::before {
	content: "\f019";
}

.c-before-icon-btn--zoom::before {
	content: "\f00e";
	transform: translateY(-6%);
}

/* FLOCSS
----------------------------------------------------- */

.p-breadcrumb {
	display: flex;
	list-style: none;
	margin: 10px 20px;
	padding: 0;
}

.p-breadcrumb li {
	list-style: none;
}

.p-breadcrumb li:after {
	content: ">";
	padding: 0 5px;
}

.p-breadcrumb li:last-child:after {
	content: "";
}

.p-breadcrumb li a {
	text-decoration: none;
}

.p-breadcrumb li a:hover {
	text-decoration: underline;
}

.p-breadcrumb .u-current {
	color: #bada55;
}

/* FLOCSS
----------------------------------------------------- */

.mb-1 {
	margin-bottom: 10px;
}

.mb-2 {
	margin-bottom: 20px;
}

.mb-3 {
	margin-bottom: 30px;
}

.mb-4 {
	margin-bottom: 40px;
}

.mb-5 {
	margin-bottom: 50px;
}

.mb-6 {
	margin-bottom: 60px;
}

.mb-7 {
	margin-bottom: 70px;
}

.mb-8 {
	margin-bottom: 80px;
}

.mb-9 {
	margin-bottom: 90px;
}

.mb-10 {
	margin-bottom: 100px;
}

@media screen and (min-width: 768px) {

.sp-only {
	display: none;
}

}

@media screen and (min-width: 1024px) {

.lg-only {
	display: none;
}

}

@media screen and (max-width: 1199px) {

.top-header__inner,
.header__inner {
	background-color: #bada55;
	height: 80px;
}

.top-header-logo-area,
.header-logo-area {
	height: 80px;
}

.top-header-logo-area__logo--img,
.header-logo-area__logo--img {
	width: 240px;
}

.top-header-right__items,
.header-right__items {
	display: none;
}

.top-header-contact-area,
.header-contact-area {
	display: none;
}

.drawer-icon {
	display: block;
}

.drawer-content ul li .no-border {
	border-bottom-width: 0 !important;
}

.drawer-content ul li .border-top {
	border-top: 1px dotted #fff;
}

.footer__inner-wrapper {
	display: block;
}

.scroll p {
	font-size: 16px;
	margin-top: -70px;
}

.scroll div {
	height: 40px;
}

.top-mv {
	margin-top: 80px;
}

.top-mv__slide {
	height: calc(100vh - 80px);
}

.top-mv__title {
	font-size: 34px;
}

.top-mv__title .xl {
	font-size: 40px;
}

.mv {
	margin-top: 80px;
}

.heading2 {
	font-size: 3.0859049208vw;
}

.heading3__title {
	font-size: 25px;
}

.top-works__text {
	font-size: 16px;
	line-height: normal;
}

.maker__inner {
	padding: 50px;
}

.top-privacy__inner {
	padding: 50px;
}

.top-privacy__list span {
	display: inline;
}

.company__inner {
	padding: 50px;
}

.compliance__inner {
	padding: 50px;
}

.callcenter__text {
	text-align: justify;
}

}

@media screen and (max-width: 1199px) and (max-width: 767px) {

.top-header__inner,
.header__inner {
	padding-left: 10px;
	padding-right: 15px;
}

.top-header-logo-area,
.header-logo-area {
	padding: 0;
	width: 250px;
}

.top-mv__slide {
	-o-object-fit: cover;
	height: 350px;
	object-fit: cover;
}

.top-mv__title {
	font-size: 18px;
	line-height: 1.5;
}

.top-mv__title .xl {
	font-size: 23px;
	line-height: 1.5;
}

.heading2 {
	border-bottom-width: 5px;
	font-size: 22px;
	padding-bottom: 10px;
}

.heading3__title {
	font-size: 20px;
	letter-spacing: 0;
}

.maker__inner {
	padding: 30px 15px;
}

.top-privacy__inner {
	padding: 30px 15px;
}

.company__inner {
	padding: 30px 15px;
}

.compliance__inner {
	padding: 30px 15px;
}

}

@media screen and (max-width: 1199px) and (max-width: 1023px) {

.footer__inner-wrapper {
	padding-bottom: 30px;
	padding-top: 40px;
}

}

@media screen and (max-width: 1023px) {

.header.displayBlock {
	display: none;
}

.footer__company-area {
	margin-bottom: 10px;
	text-align: center;
}

.footer .address-area__box {
	align-items: center;
	flex-direction: column;
	font-size: 14px;
	justify-content: center;
}

.footer .address-area__box .location {
	margin-bottom: 0px;
	margin-left: 0px;
	text-align: center;
}

.footer .address-area__address {
	text-align: center;
}

.footer__nav-area {
	align-items: center;
}

.footer-nav {
	display: block;
	width: 100%;
}

.footer-nav__item {
	flex-direction: column;
	text-align: center;
}

.footer-nav__item:first-child::before {
	display: none;
}

.footer-nav__item::after {
	display: none;
}

.footer-nav__link {
	font-size: 14px;
	letter-spacing: 0;
	padding: 0 10px 10px;
}

.footer .copyright {
	margin-top: 20px;
}

.top-works::before {
	height: 41.7014178482vw;
	left: -50.0417014178vw;
	width: 100.0834028357vw;
}

.achievements::before {
	height: 10.0083402836vw;
	width: 10.0083402836vw;
}

.achievements::after {
	height: 5.0041701418vw;
	left: 10%;
	top: 13.3444537114vw;
	width: 5.0041701418vw;
}

.top-contact::before {
	height: 41.7014178482vw;
	right: -50.0417014178vw;
	width: 100.0834028357vw;
}

.callcenter .normal {
	flex-direction: column-reverse;
	padding-inline: 0px;
}

.callcenter .normal._reverse {
	flex-direction: column-reverse;
	padding-inline: 0px;
}

.callcenter .column {
	width: 100%;
}

.slide-in_inner span {
	display: inline-block;
}

}

@media screen and (max-width: 1023px) and (max-width: 767px) {

.achievements::after {
	left: 9%;
	top: 13.037809648vw;
}

}

@media screen and (max-width: 767px) {

#page_top {
	width: 50px;
}

.top-mv__image:nth-child(1) {
	background-image: url(/wp-content/themes/hc/img/common/main1-sp.webp);
}

.top-mv__image:nth-child(2) {
	background-image: url(/wp-content/themes/hc/img/common/main2-sp.webp);
}

.top-mv__image:nth-child(3) {
	background-image: url(/wp-content/themes/hc/img/common/main3-sp.webp);
}

.mv-jumbotron {
	height: 160px;
}

.mv .mv-h2 {
	font-size: 22px;
	width: 100%;
}

.heading2 span {
	font-size: 14px;
}

.heading2::after {
	bottom: -5px;
	height: 5px;
}

.btn {
	font-size: 16px;
}

.btn._works {
	font-size: 14px;
	width: 220px;
}

.contact-btn {
	font-size: 14px;
	width: 170px;
}

.top-works {
	padding-block: 50px;
}

.top-works__line {
	height: 25px;
}

.top-works__boxes {
	gap: 30px;
}

.top-works__box {
	flex-direction: column-reverse;
	gap: 20px;
}

.top-works__box._reverse {
	flex-direction: column-reverse;
	gap: 30px;
}

.maker {
	border-top-width: 15px;
}

.maker__outer {
	border-top: 8px solid #999;
	padding-bottom: 50px;
	padding-top: 40px;
}

.maker__items {
	gap: 20px;
	grid-template-columns: 1fr;
}

.top-privacy__outer {
	border-top: 8px solid #999;
	padding-bottom: 50px;
	padding-top: 40px;
}

.company__outer {
	padding-block: 50px;
}

.company .horizontal-table__header {
	background-color: #ccc;
	border: 1px solid #ccc;
	padding: 10px;
	width: 100%;
}

.company .horizontal-table__header:first-child {
	border-top-width: 0;
}

.company .horizontal-table__text {
	border-bottom: 1px solid #ccc;
	width: 100%;
}

.company .horizontal-table__text:first-of-type {
	border-top-width: 0;
}

.company .horizontal-table__row {
	display: flex;
	flex-direction: column;
}

.access {
	padding-block: 40px;
}

.access .access-map iframe {
	height: 270px;
}

.access .btn-wrap {
	text-align: left;
}

.achievements {
	padding-block: 50px;
}

.construction {
	font-size: 35px;
}

.construction-en {
	font-size: 38px;
}

.compliance__outer {
	padding-bottom: 50px;
	padding-top: 40px;
}

.compliance__heading {
	font-size: 17px;
	margin-top: 20px;
}

.compliance__title {
	font-size: 16px;
	padding-left: 16px;
	text-indent: -16px;
}

.top-contact {
	padding-block: 50px;
}

.top-contact__items {
	grid-template-columns: 1fr;
}

.top-contact__images {
	order: 2;
}

.top-contact__body {
	font-size: 16px;
	order: 3;
}

.intro {
	padding-block: 25px;
}

.intro__text {
	font-size: 18px;
}

.solar {
	padding-bottom: 50px;
	padding-top: 25px;
}

.solar__btn-wrap {
	margin-top: 30px;
}

.solar__item {
	padding: 20px 15px;
}

.solar__item-title {
	font-size: 18px;
	line-height: normal;
}

.solar__box {
	margin-top: 40px;
}

.solar__image {
	margin-top: 30px;
	width: 100% !important;
}

.solar__images {
	gap: 15px;
}

.solar__text {
	margin-top: 20px;
}

.solar__catch {
	font-size: 16px;
	margin-top: 20px;
}

.catch {
	font-size: 16px;
}

.faq__row--question {
	font-size: 16px;
}

.faq__row--answer {
	font-size: 16px;
}

.callcenter {
	padding-bottom: 50px;
}

.callcenter__map {
	margin-top: 50px;
}

.callcenter__items {
	grid-template-columns: 1fr;
	margin-top: 40px;
}

.callcenter__body {
	padding: 10px;
}

.callcenter__body-text {
	line-height: 1.4;
}

.callcenter__title {
	font-size: 19px;
}

.callcenter .column-outside-right {
	margin-left: 0;
	margin-right: 0;
}

.callcenter .column-outside-left {
	margin-left: 0;
	margin-right: 0;
}

.callcenter .column .text-box {
	padding: 15px;
}

.leftAnime {
	opacity: unset;
}

.slideAnimeLeftRight {
	animation-duration: unset;
	animation-fill-mode: unset;
	animation-name: unset;
	opacity: unset;
}

.slideAnimeRightLeft {
	animation-duration: unset;
	animation-fill-mode: unset;
	animation-name: unset;
	opacity: unset;
}

.entry-404 {
	padding-block: 50px;
	padding-inline: 15px;
}

.entry-404-head {
	font-size: 40px;
}

.entry-404-lead {
	font-size: 22px;
}

.l-inner--has-column {
	grid-template-columns: 1fr;
}

.p-breadcrumb {
	font-size: 14px;
}

.pc-only {
	display: none;
}

.mb-2 {
	margin-bottom: 10px;
}

.mb-3 {
	margin-bottom: 15px;
}

.mb-4 {
	margin-bottom: 20px;
}

.mb-5 {
	margin-bottom: 25px;
}

.mb-6 {
	margin-bottom: 30px;
}

.mb-7 {
	margin-bottom: 35px;
}

.mb-8 {
	margin-bottom: 40px;
}

.mb-9 {
	margin-bottom: 45px;
}

.mb-10 {
	margin-bottom: 50px;
}

}

@keyframes UpAnime {

from {
	opacity: 1;
	transform: translateY(0);
}

to {
	opacity: 0;
	transform: translateY(-100px);
}

}

@keyframes DownAnime {

from {
	opacity: 0;
	transform: translateY(-100px);
}

to {
	opacity: 1;
	transform: translateY(0);
}

}

@keyframes slider-1 {

0% {
	opacity: 0;
	transform: scale(1);
}

4.16% {
	opacity: 1;
}

33.33% {
	opacity: 1;
}

41.66% {
	opacity: 0;
	transform: scale(1.2);
}

100% {
	opacity: 0;
}

}

@keyframes slideTextX100 {

from {
	opacity: 0;
	transform: translateX(-100%); /*要素を左の枠外に移動*/
}

to {
	opacity: 1;
	transform: translateX(0); /*要素を元の位置に移動*/
}

}

@keyframes slideTextX-100 {

from {
	opacity: 0;
	transform: translateX(100%); /*要素を右の枠外に移動*/
}

to {
	opacity: 1;
	transform: translateX(0); /*要素を元の位置に移動*/
}

}

