@charset "utf-8";

@font-face {
	font-family: 'DIN';
	src: url('./font/DINAlternate-Bold.ttf');
}

tbody {
	-webkit-text-size-adjust: 100%;
}

/* -------------------------------------------------- */
/* RESET*/
/* -------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

li {
	list-style-type: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
	content: none;
}

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

img {
	vertical-align: bottom;
}

textarea, select, option {
	font: inherit;
}

/* -------------------------------------------------- */
/* LINK */
/* -------------------------------------------------- */
a:link,
a:visited {
	text-decoration: none;
	color: #333333;
}

a:hover {
	text-decoration: none;
	/* color: #B98E31; */
}

a:active {
	text-decoration: none;
	/* color: #B98E31; */
}

/* -------------------------------------------------- */
/* フェードインアニメーション */
/* -------------------------------------------------- */
#container {
	opacity: 0;
}

.fadeInTrigger {
	opacity: 0;
}

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

@keyframes fadeInAnime {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* -------------------------------------------------- */
/* スクロールアニメーション */
/* -------------------------------------------------- */
.fadeUpTrigger {
	opacity: 0;
}

.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	opacity: 0;
}

@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(50px);
	}

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

/* -------------------------------------------------- */
/* COMMON */
/* -------------------------------------------------- */
html {
	font-size: 62.5%;
	/* 10px */
	-webkit-text-size-adjust: 100%;
}

body {
	background: #FFFFFF;
	color: #333333;
	font-size: 14px;
	font-size: 1.4rem;
}

#container {
	position: relative;
	font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.5;
	width:100%;
	overflow:hidden;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

img {
	display: block;
	max-width: 100%;
}

/* レイアウト */
/* -------------------------------------------------- */
.section {
	position: relative;
}

.sectionWrap {
	width: calc(100% - 300px);
	margin-left: 300px;
}

.inner {
	width: 1120px;
	max-width: 100%;
	margin: auto;
	padding: 0 7%;
}

.flexbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.imgBox img {
	width: 100%;
}

/* フォント */
/* -------------------------------------------------- */
.en, .num {
	font-family: "DIN", sans-serif;
	font-weight: bold;
}

.telLink {
	display: inline-block;
	font-family: "DIN", sans-serif;
	font-weight: bold;
	letter-spacing: .05em;
}

.sectionTtl {
	margin-bottom: 45px;
	font-size: 1.8rem;
	letter-spacing: .05em;
}

.sectionTtl.colorChange {
	color: #FFFFFF;
}

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

.sectionTtl .en {
	display: block;
	font-size: 6.5rem;
	letter-spacing: .15em;
	line-height: 1.17;
}

.sectionLead {
	font-size: 1.4rem;
	line-height: 1.65;
}

/* ボタン */
.gradationBtn {
	display: inline-block;
	position: relative;
	z-index: 0;
}

.gradationBtn::before,
.gradationBtn::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.gradationBtn::before {
	background: linear-gradient(73deg, #FDCC3A 0%, #F7B40C 100%);
	z-index: -1;
	transition: 0.5s;
}

.gradationBtn:after {
	background: linear-gradient(73deg, #F7B40C 0%, #FDCC3A 100%);
	z-index: -2;
}

.gradationBtn:hover:before {
	opacity: 0;
}

.gradationBtn a {
	color: #000000;
}

/* -------------------------------------------------- */
/* PC*/
/* -------------------------------------------------- */
.sptb {
	display: none;
}

.sp {
	display: none;
}

/* ヘッダー */
/* -------------------------------------------------- */
header {
	width: 300px;
	max-width: 100%;
	height: 100vh;
	/* height: 719px; */
	/* background: #F8F8F8; */
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
}

#headerInner {
	padding: 25px 28px;
}

#headerLogo {
	margin-bottom: 33px;
	transition: all .3s;
}

#headerLogo:hover,
#headerLogo:active {
	opacity: .8;
}

#gnavList {
	margin-bottom: 56px;
}

#gnavList::after {
	content: "";
	display: block;
	width: 48px;
	max-width: 100%;
	height: 1px;
	background: #000000;
}

.gnavItem {
	margin-bottom: 25px;
}

.gnavItem:last-child {
	margin-bottom: 34px;
}

.gnavItem a {
	display: block;
	font-size: 1.7rem;
	font-weight: bold;
	letter-spacing: .05em;
	line-height: 1;
	transition: all .3s;
}

.gnavItem a:hover,
.gnavItem a:active {
	color: #10801D;
}

#headerTelBox {
	margin-bottom: 24px;
	text-align: center;
}

#headerTel .telLink {
	font-size: 3rem;
	line-height: 1;
}

#headerTel .telLink::before {
	display: inline-block;
	content: url(./img/icon_tel.svg);
	margin-right: 9px;
	vertical-align: middle;
}

#headerTel span {
	font-size: 1.5rem;
}

#headerTel .num {
	font-size: 1.7rem;
	letter-spacing: .1em;
}

#headerContact a {
	display: block;
	padding: 23px 48px 22px;
	text-align: center;
	font-size: 1.7rem;
	font-weight: bold;
	letter-spacing: .05em;
}

#headerContact a::before {
	display: inline-block;
	content: url(./img/icon_mail.svg);
	margin-right: 11px;
	vertical-align: middle;
}

/* メインビジュアル */
/* -------------------------------------------------- */
#mv {
	background: #F8F8F8;
}

#mvSectionWrap {
	height: 100vh;
	/* height: 719px; */
	border-bottom-left-radius: 50px;
	background: url(./img/mv.jpg) no-repeat center center / cover;
	position: relative;
}

#mvSectionWrap::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background: url(./img/mv_txt_bg.svg) no-repeat top right / 56% 100%;
	position: absolute;
	top: 0;
	right: 0;
}

#mvInner {
	max-width: 90%;
	margin: auto;
	/* padding-top: 63px; */
	padding-top: 8.8%;
}

#mvTtl {
	width: fit-content;
	margin-left: auto;
	color: #FFFFFF;
	/* font-size: 5.3rem; */
	font-size: 3.732vw;
	font-weight: 500;
	letter-spacing: .01em;
	text-align: justify;
	text-align-last: justify;
	position: relative;
	z-index: 5;
}

#mvTtl .small {
	/* font-size: 3.6rem; */
	font-size: 2.535vw;
}

#mvTtl .en {
	display: block;
	padding-right: 1.5em;
	/* font-size: 1.4rem; */
	font-size: 0.986vw;
	font-weight: bold;
	letter-spacing: .84em;
}

/* サービス */
/* -------------------------------------------------- */
#service {
	padding-top: 177px;
	padding-bottom: 26.7%;
	background: #F8F8F8;
}

#service::after {
	display: block;
	content: "";
	width: 100%;
	height: 0;
	padding-bottom: 26.7%;
	background: url(./img/csr_bg_bottom.svg) no-repeat bottom left / 100%;
	position: absolute;
	bottom: -1px;
	left: 0;
}

#serviceLead {
	margin-bottom: 57px;
}

#serviceList {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	column-gap: 1.5%;
	row-gap: 27px;
}

.serviceItem {
	width: 48.5%;
	background: #FFFFFF;
	box-shadow: 0px 5px 10px #0000000B;
}

.serviceImgBox {
	position: relative;
}

.serviceImgNum {
	color: #FFFFFF;
	font-size: 7.7rem;
	letter-spacing: .01em;
	line-height: 1;
	position: absolute;
	bottom: -12px;
	right: 12px;
}

.serviceTxtBox {
	padding: 30px 22px 30px 25px;
}

.serviceItemTtl {
	margin-bottom: 20px;
	font-size: 1.6vw;
	font-weight: bold;
	letter-spacing: .05em;
	text-align: center;
}

.serviceItemTtl::after {
	display: block;
	content: "";
	width: 104px;
	max-width: 100%;
	height: 3px;
	margin: 9px auto 0;
	background-image: linear-gradient(to right, #72B33F, #72B33F 10px, transparent 10px, transparent 18px);
	background-size: 18px 3px;
	background-position: left bottom;
	background-repeat: repeat-x;
}

.serviceItemTxt {
	font-size: 1.4rem;
}

/* 運営サイト */
/* -------------------------------------------------- */
#site {
	padding-bottom: 108px;
}

#siteBannerList {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	column-gap: 1.5%;
	row-gap: 27px;
}

.siteBannerItem {
	width: 48.5%;
}

.siteBannerItem a {
	display: block;
	transition: all .3s;
}

.siteBannerItem a:hover,
.siteBannerItem a:active {
	opacity: .8;
}

/* 取り組み */
/* -------------------------------------------------- */
#csr {
	padding-top: 24%;
	padding-bottom: 26.7%;
	background: linear-gradient(165deg, #97DB62 0%, #10801D 100%);
}

#csr::before {
	display: block;
	content: "";
	width: 100%;
	height: 0;
	padding-top: 24%;
	background: url(./img/csr_bg_top.svg) no-repeat top left / 100%;
	position: absolute;
	top: -1px;
	left: 0;
}

#csr::after {
	display: block;
	content: "";
	width: 100%;
	height: 0;
	padding-bottom: 26.7%;
	background: url(./img/csr_bg_bottom.svg) no-repeat bottom left / 100%;
	position: absolute;
	bottom: -1px;
	left: 0;
}

.csrItem {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	row-gap: 35px;
	/* column-gap: 33px; */
	background: #FFFFFF;
	padding: 40px 30px 40px;
}

#csrSdgsBox {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 78px 68px 64px;
}

.csrItem:not(:last-child) {
	margin-bottom: 35px;
}

.csrItem::before {
	display: block;
	content: "";
	width: 1px;
	height: auto;
	background-image: linear-gradient(to bottom, #AEAEAE, #AEAEAE 8px, transparent 8px, transparent 12px);
	background-size: 1px 12px;
	background-repeat: repeat-y;
	order: 2;
}

#csrSdgsBox::before {
	width: 100%;
	height: 1px;
	background-image: linear-gradient(to right, #AEAEAE, #AEAEAE 8px, transparent 8px, transparent 12px);
	background-size: 12px 1px;
	background-repeat: repeat-x;
}

.csrItemImg {
	order: 1;
	width: 100%;
}

#csrSdgsPoster img {
	width: 100%;
	margin: auto;
}

.csrItemIcon {
	width: 26.2%;
	padding-right: 25px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.csrItemIcon img {
	width: 100%;
	margin-bottom: 1em;
}

.csrItemIcon figcaption {
	font-size: 1.4vw;
	font-weight: bold;
	letter-spacing: .05em;
	color: #13A44A;
	text-align: center;
}

.csrItemIcon figcaption .en {
	font-size: 2.8rem;
	letter-spacing: .1em;
}

.csrItemTxt {
	/* width: calc(73.8% - (33px * 2)); */
	width: 73.8%;
	padding: 33px 0 33px 35px;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.75;
	order: 3;
}

#csrSdgsBox .csrItemTxt {
	width: 100%;
	padding: 0;
	text-align: center;
	font-size: 1.6rem;
	line-height: 2.35;
}

#csr5rList {
	margin-top: 20px;
}

.csr5rItem {
	font-size: 1.4rem;
}

.csr5rItem:not(:last-child) {
	margin-bottom: 4px;
}

.csr5rItem .en {
	display: inline-block;
	width: 100px;
	margin-right: 20px;
	padding: 0 12px;
	border-right: 1px solid #125B6B;
	background: #125B6B;
	color: #FFFFFF;
	font-size: 1.4rem;
	letter-spacing: .15em;
	line-height: 26px;
	position: relative;
}

.csr5rItem .en::after {
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 13px 0 13px 10px;
	border-color: transparent transparent transparent #125B6B;
	position: absolute;
	top: 0;
	right: -11px;
}

/* ご挨拶 */
/* -------------------------------------------------- */
#greetingTxtBox {
	padding: 0 1em;
	font-weight: 500;
}

.greetingTxt {
	font-size: 1.6rem;
	letter-spacing: -.02em;
}

.greetingTxt~.greetingTxt {
	margin-top: 1em;
}

#greetingName {
	margin-top: 35px;
	text-align: right;
	font-size: 1.6rem;
	letter-spacing: .1em;
}

/* 会社概要 */
/* -------------------------------------------------- */
#company {
	padding-top: 101.27%;
	background: url(./img/company_bg.png) no-repeat top left / 100% auto;
}

#companyWrap {
	margin-top: -50%;
}

#companyTtl {
	width: 664px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	white-space: nowrap;
}

.commonTable {
	width: 664px;
	max-width: 100%;
	margin: auto;
}

.commonTable tr {
	border-top: 1px solid #CCCCCC;
}

.commonTable tr:last-child {
	border-bottom: 1px solid #CCCCCC;
}

.commonTable th,
.commonTable td {
	padding: 15px;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: left;
}

.commonTable th {
	width: 182px;
	max-width: 100%;
}

/* お知らせ */
/* -------------------------------------------------- */
#news {
	/* padding-top: 252px;
	padding-bottom: 300px;
	background: url(./img/news_bg.svg) no-repeat top right / 95.3% 100%; */
	padding-top: 30.4%;
	padding-bottom: 31%;
	background: linear-gradient(150deg, #97DB62 0%, #34833D 100%);
}

#news::before {
	display: block;
	content: "";
	width: 100%;
	height: 0;
	padding-top: 30.4%;
	background: url(./img/news_bg_top.svg) no-repeat top left / 100%;
	position: absolute;
	top: -1px;
	left: 0;
}

#news::after {
	display: block;
	content: "";
	width: 100%;
	height: 0;
	padding-bottom: 31%;
	background: url(./img/news_bg_bottom.svg) no-repeat bottom left / 100%;
	position: absolute;
	bottom: -1px;
	left: 0;
}

#newsSectionWrap {
	margin-top: -15%;
}

/* #newsList {
	min-height: 250px;
} */

.newsItem {
	padding: 40px;
	background: #FFFFFF;
}

.newsItem:not(:last-child) {
	margin-bottom: 20px;
}

.newsTtlBox {
	position: relative;
	cursor: pointer;
}

.newsTtlBox::after {
	display: block;
	content: "";
	width: 15px;
	height: 15px;
	border-bottom: 3px solid #707070;
	border-right: 3px solid #707070;
	position: absolute;
	top: -10%;
	right: 30px;
	transform: rotate(45deg);
}

.newsTtlBox.close::after {
	transform: rotate(-135deg);
	top: 10%;
}

.newsTtlBox time {
	display: inline-block;
	margin-right: 16px;
	color: #707070;
	font-size: 1.4rem;
	letter-spacing: .1em;
	vertical-align: middle;
}

.newsItemTtl {
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 500;
	vertical-align: middle;
}

.newsContentBox {
	margin-top: 10px;
	padding-top: 10px;
	font-size: 1.4rem;
	font-weight: 500;
	border-top: 1px solid #ccc;
}

/* お問い合わせ */
/* -------------------------------------------------- */
#contact {
	/* margin-top: -10%; */
	z-index: 5;
}

#contactLead {
	width: 664px;
	max-width: 100%;
	margin-bottom: 40px;
	padding-bottom: 31px;
	border-bottom: 1px solid #CCCCCC;
	font-size: 1.4rem;
}

#contactLead a, #contactTxt a {
	text-decoration: underline;
	transition: all .3s;
}

#contactLead a:hover,
#contactLead a:active {
	color: #13A44A;
}

#contactformWrap {
	width: 664px;
	max-width: 100%;
}

#contactStepList {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	height: 66px;
	margin-bottom: 50px;
	border: 1px solid #707070;
}

.contactStepItem {
	/* width: calc(100% / 3); */
	width: 35%;
	background: #FFFFFF;
	color: #707070;
	text-align: center;
	font-size: 1.6rem;
	letter-spacing: .05em;
	line-height: 66px;
	vertical-align: middle;
	position: relative;
}

.contactStepItem:first-child {
	width: 30%;
}

.contactStepItem.complete {
	background: #FFC312;
	color: #000000;
}

.contactStepItem::after {
	display: block;
	content: "";
	width: 39px;
	height: 39px;
	border-top: 1px solid #707070;
	border-right: 1px solid #707070;
	transform: rotate(45deg) skew(8deg, 8deg);
	position: absolute;
	top: 12px;
	left: -19px;
	z-index: 10;
}

.contactStepItem::before {
	display: block;
	content: "";
	border-top: solid 33px transparent;
	border-bottom: solid 33px transparent;
	border-left: solid 25px #FFFFFF;
	position: absolute;
	top: 0;
	right: -25px;
	z-index: 10;
}

.contactStepItem.complete::before {
	border-left: solid 25px #FFC312;
}

.contactStepItem:last-child::before,
.contactStepItem:first-child:after {
	display: none !important;
}

.contactStepItem .num {
	font-size: 2.1rem;
	letter-spacing: .1em;
	vertical-align: middle;
}

.contactStepItem .num::after {
	display: inline-block;
	content: "ー";
}

#contactList dt {
	margin-bottom: 8px;
	font-size: 1.6rem;
	display: flex;
	align-items: center;
}

#contactList dt span {
	display: inline-block;
	margin-left: 10px;
	padding: 1px 10px 0px;
	background: #FEC312;
	color: #000000;
	line-height: 18px;
	font-size: 1.0rem;
	letter-spacing: .05em;
	vertical-align: middle;
}

#contactList dd {
	margin-bottom: 23px;
	font-size: 1.4rem;
}

#contactList dd input {
	width: 100%;
	padding: 15px;
	border: 1px solid #CCCCCC;
}

#contactList dd textarea {
	width: 100%;
	height: 204px;
	padding: 15px;
	border: 1px solid #CCCCCC;
	overflow-y: scroll;
}

.errForm {
	background-color: #F3BCBF !important;
}

.errorMessage {
	color: rgb(155, 0, 0);
}

#ppWrap {
	height: 197px;
	margin-top: 58px;
	/* margin-bottom: 86px; */
	padding: 27px 28px 18px;
	border: 1px solid #CCCCCC;
	background: #FFFFFF;
	font-size: 1.4rem;
	line-height: 1.69;
}

#pp {
	height: 100%;
	overflow-y: scroll;
}

#pp dt {
	font-size: 1.4rem;
	padding-bottom: 5px;
	font-weight: bold;
}

#pp dd {
	margin-bottom: 2em;
	font-weight: normal;
	font-size: 1.2rem;
	word-wrap: break-word;
}

#formBtnWrap {
	padding-top: 86px;
	text-align: center;
}

#formBtnCheckBox {
	margin-bottom: 45px;
}

#formBtnCheckBox label {
	font-size: 1.5rem;
	color: #FFFFFF;
}

#formContactBtn {
	display: inline-block;
	width: 271px;
	max-width: 100%;
	border: none;
	background: none;
	color: #000000;
	font-size: 1.7rem;
	letter-spacing: .05em;
	line-height: 63px;
	position: relative;
	cursor: pointer;
}

#formContactBtn::before {
	display: block;
	content: "";
	width: 26px;
	height: 4px;
	border-bottom: 1px solid #FFFFFF;
	position: absolute;
	top: 27px;
	right: 0;
}

#formContactBtn::after {
	display: block;
	content: "";
	width: 26px;
	height: 4px;
	border-bottom: 1px solid #F7B610;
	border-right: 1px solid #F7B610;
	position: absolute;
	top: 27px;
	right: -24px;
	transform: skew(45deg);
	transition: all .3s;
}

#formContactBtn:hover::after,
#formContactBtn:active::after {
	width: 30px;
	right: -29px;
}

/* 下層 */
.contactSection {
	padding-top: 50px;
	z-index: 5;
}

#contactConfirm #contactList dd {
	padding-bottom: 15px;
	border-bottom: 1px solid #707070;
}

#contactCaution {
	margin-bottom: 20px;
	font-size: 2rem;
	font-weight: bold;
	color: #10801D;
}

.contactTxt {
	font-size: 1.4rem;
}

#contactConfirm .contactTxt {
	margin-bottom: 60px;
}

.contactTxt span {
	display: block;
	padding-bottom: 5px;
	font-size: 1.6rem;
	color: #ff0000;
}

.contactBackBtn {
	padding-top: 20px;
	text-align: center;
}

.contactBackBtn::before {
	content: "\0ab";
	margin-right: 5px;
}

.contactBackBtn a:hover,
.contactBackBtn a:active {
	text-decoration: underline;
}

/* フッター */
/* -------------------------------------------------- */
footer {
	margin-top: -96px;
	padding-top: 23.4%;
	padding-bottom: 46px;
	background: #F8F8F8;
	text-align: center;
	position: relative;
}

footer::before {
	display: block;
	content: "";
	width: 100%;
	height: 0;
	padding-top: 23.4%;
	background: url(./img/footer_bg_top.svg) no-repeat top left / 100%;
	position: absolute;
	top: -1px;
	left: 0;
}

#footerInner {
	margin: auto;
}

#footerLogo {
	width: 365px;
	margin: 0 auto 10px;
}

#footerLogo img {
	margin: auto;
}

.footerTxt {
	margin-bottom: 15px;
	font-size: 1.5rem;
	line-height: 1.9;
}

#footerTel {
	margin-bottom: 63px;
}

#footerTel .telLink {
	font-size: 3.9rem;
	font-weight: bold;
	letter-spacing: .1em;
	line-height: 1;
}

#footerTel .telLink::before {
	display: inline-block;
	content: url(./img/icon_footer_tel.svg);
	margin-right: 11px;
	vertical-align: middle;
}

#footerTel span {
	font-size: 1.5rem;
}

#footerTel .num {
	font-size: 1.7rem;
	letter-spacing: .1em;
}

#copyright {
	font-size: 1.2rem;
}

/* -------------------------------------------------- */
/* IE対応 */
/* -------------------------------------------------- */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	#mvTtl {
		width: 50%;
	}

	.csrItemIcon img {
		height: auto;
	}
}

/* -------------------------------------------------- */
/* TAB&SP */
/* -------------------------------------------------- */
@media screen and (max-width: 1024px) {
	.pc {
		display: none;
	}

	.sptb {
		display: block;
	}

	/* レイアウト */
	/* -------------------------------------------------- */
	.sectionWrap {
		width: 100%;
		margin: auto;
		padding-bottom: 50px;
		padding-top: 50px;
	}

	.sectionTtl {
		margin-bottom: 20px;
		font-size: 2.3rem;
		letter-spacing: .05em;
	}

	/* フォント */
	/* -------------------------------------------------- */
	.sectionTtl .en {
		font-size: 5.8rem;
	}

	/* ヘッダー */
	/* -------------------------------------------------- */
	header {
		width: 100%;
		height: auto;
		background: #FFFFFF;
		box-shadow: 0 0 5px 1px #ededed;
		position: sticky;
		top: 0;
	}

	#headerInner {
		padding: 10px 5%;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

	#headerLogo {
		max-width: 250px;
		margin-bottom: 0;
	}

	#headerLogo img {
		max-height: 80px;
	}

	#spHeader {
		display: flex;
		align-items: center;
		column-gap: 30px;
	}

	.spHeaderIcon {
		width: 25px;
	}

	/* ハンバーガーメニュー */
	#hamburger {
		width: 30px;
		height: 23px;
		z-index: 200;
		position: relative;
		cursor: pointer;
	    margin-left: 4px;
	}

	#hamburger span {
		display: inline-block;
		transition: all .3s;
		position: absolute;
		left: 0;
		height: 2px;
		border-radius: 2px;
		background: #000000;
		width: 100%;
	}

	#hamburger span:nth-of-type(1) {
		top: 0;
	}

	#hamburger span:nth-of-type(2) {
		top: calc(50% - 1px);
	}

	#hamburger span:nth-of-type(3) {
		bottom: 0;
	}

	#hamburger.active span {
		background: #FFFFFF;
	}

	#hamburger.active span:nth-of-type(1) {
		top: 18%;
		transform: translateY(6px) rotate(-45deg);
	}

	#hamburger.active span:nth-of-type(2) {
		opacity: 0;
	}

	#hamburger.active span:nth-of-type(3) {
		bottom: 18%;
		transform: translateY(-6px) rotate(45deg);
	}

	#headerTel .telLink a {
		color: #fff;
	}

	#headerTel .telLink::before {
		width: 26px;
		content: url(./img/icon_menutel_sp.svg);
	}

	#headerTel span {
		color: #fff;
	}

	/* スマホ用ナビゲーション */
	#headerContents {
		width: 70%;
		position: fixed;
		z-index: 100;
		right: -120%;
		top: 0;
		height: 100vh;
		transition: all 0.6s;
	}

	#headerContents.panelactive {
		right: 0;
	}

	#headerContents::before {
		content: "";
		transition: all 0.6s;
		background: none;
	}

	#headerContents.panelactive::before {
		display: block;
		content: "";
		width: 100%;
		height: 100vh;
		background: rgba(0, 0, 0, .8);
		position: fixed;
		top: 0;
		left: 0;
		z-index: -1;
	}

	#headerContentWrap {
		width: 100%;
		height: 100%;
		background: #72B33F;
		position: relative;
	}

	#headerContentInner {
		position: absolute;
		z-index: 100;
		top: 45%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	#gnavList {
		margin-bottom: 30px;
	}

	#gnavList::after {
		margin: auto;
	}

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

	.gnavItem:last-child {
		margin-bottom: 20px;
	}

	.gnavItem a {
		display: block;
		padding: 10px;
		font-size: 1.6rem;
		font-weight: bold;
		color: #FFFFFF;
		text-transform: uppercase;
		letter-spacing: 0.1em;
		white-space: nowrap;
	}

	#headerContact {
		display: block;
		width: fit-content;
		margin: auto;
	}

	#headerTel {
		white-space: nowrap;
	}

	/* メインビジュアル */
	/* -------------------------------------------------- */
	#mvInner {
		max-width: 95%;
		padding-top: 20%;
	}

	#mvSectionWrap {
		height: calc(100vh - 102px);
		background-position: bottom center;
	}

	#mvSectionWrap::after {
		background-size: 70% 100%;
	}

	#mvTtl {
		font-size: 6vw;
	}

	#mvTtl .small {
		font-size: 4vw;
	}

	#mvTtl .en {
		font-size: 1.4vw;
	}

	/* サービス */
	/* -------------------------------------------------- */
	#serviceLead {
		margin-bottom: 30px;
	}

	#service {
		padding-top: 0;
	}

	.serviceItem {
		width: 100%;
	}

	/* 取り組み */
	/* -------------------------------------------------- */
	#csrSdgsBox,
	.csrItem {
		padding: 30px 25px;
	}

	.csrItem {
		row-gap: 20px;
		/* height: auto;
		justify-content: center; */
	}

	.csrItemIcon figcaption {
		font-size: 1.6rem;
	}

	.csrItemIcon figcaption .en {
		font-size: 1.8rem;
	}

	/* 運営サイト */
	/* -------------------------------------------------- */
	#site {
		padding-bottom: 0;
	}

	.siteBannerItem {
		width: 100%;
	}

	/* 取り組み */
	/* -------------------------------------------------- */
	#csrSdgsBox .csrItemTxt {
		text-align: left;
	}

	/* 会社概要 */
	/* -------------------------------------------------- */
	#companyWrap {
		margin-top: -40%;
		padding-bottom: 20px;
	}

	#companyInner {
		width: fit-content;
	}

	/* お知らせ */
	/* -------------------------------------------------- */
	/* #news {
		padding-top: 150px;
		background-size: auto 100%;
		background-position: center;
	} */

	/* お問い合わせ */
	/* -------------------------------------------------- */
	#contactInner {
		width: fit-content;
	}

	#ppWrap {
		margin-top: 20px;
		padding: 15px;
	}

	#formBtnWrap {
		padding-top: 30px;
	}

	/* 下層 */
	.contactSection {
		padding-top: 0;
	}

	/* フッター */
	/* -------------------------------------------------- */
	footer {
		margin-top: 0;
	}
}

/* -------------------------------------------------- */
/* TAB(調整) */
/* -------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1024px) {}

/* -------------------------------------------------- */
/* SP(調整) */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {
	.sp {
		display: block;
	}

	/* フォント */
	/* -------------------------------------------------- */
	.sectionTtl {
		font-size: 1.6rem;
	}

	.sectionTtl .en {
		font-size: 2.7rem;
	}

	/* ヘッダー */
	/* -------------------------------------------------- */
	#headerInner {
		height: 60px;
		padding: 5px 5%;
	}

	#headerLogo {
		max-width: 150px;
	}

	#headerLogo a {
		display: block;
		width: 110px;
	}

	#headerLogo img {
		max-height: 50px;
	}

	#spHeader {
		column-gap: 20px;
	}

	#headerContents {
		width: 100%;
	}

	/* メインビジュアル */
	/* -------------------------------------------------- */
	#mvSectionWrap {
		/* height: calc(100vh - 60px); */
		height: 300px;
		padding: 0;
	}

	#mvInner {
		padding-top: 10%;
	}

	#mvSectionWrap::after {
		background-size: 80% 100%;
	}

	/* サービス */
	/* -------------------------------------------------- */
	.serviceTxtBox {
		padding: 25px;
	}

	.serviceItemTtl {
		margin-bottom: 20px;
		font-size: 1.8rem;
	}

	.serviceItemTxt {
		font-size: 1.4rem;
	}

	/* 取り組み */
	/* -------------------------------------------------- */
	#csr .sectionWrap {
		padding-bottom: 50px;
	}

	.csrItemIcon img {
		margin-bottom: 0;
	}

	#csrSdgsBox, .csrItem {
		padding: 30px 25px 50px;

	}

	.csrItem {
		flex-direction: column;
		margin-bottom: 0 !important;
		padding: 20px 31px 20px !important;
	    justify-content: center;

	}
	#csrSdgsPoster {
		display: none;
	}

	.csrItem::before {
		width: 100%;
		height: 1px;
		background-image: linear-gradient(to right, #AEAEAE, #AEAEAE 8px, transparent 8px, transparent 12px);
		background-size: 12px 1px;
		background-repeat: repeat-x;
	}

	.csrItemIcon {
		width: 100%;
		flex-direction: row;
	}

	.csrItemIcon img {
		width: 35%;
	}

	.csrItemIcon figcaption {
		/* width: 65%; */
		font-size: 1.8rem;
		text-align: left;
	}

	.csrItemIcon figcaption .en {
		font-size: 2rem;
	}

	#csrSdgsBox .csrItemTxt {
		font-size: 1.4rem;
		line-height: 1.5;
	}

	.csrItemTxt {
		width: 100%;
		padding: 0;
		font-size: 1.4rem;
		line-height: 1.5;
	}

	.csr5rItem {
		font-size: 1.3rem;
	}

	.csr5rItem .en {
		display: block;
		width: 85px;
		padding: 0 8px;
		font-size: 1.1rem;
		line-height: 16px;
	}

	.csr5rItem .en::after {
		border-width: 8px 0 8px 10px;
	}

	.sp-image-container {
		width: 100% !important;
		max-height: 200px !important;
	}
	.sp-image-container img {
		width: 100% !important;
		height: auto !important;
	}

	/* ご挨拶 */
	/* -------------------------------------------------- */
	.greetingTxt {
		font-size: 1.4rem;
	}

	/* 運営サイト */
	/* -------------------------------------------------- */
	#siteBanner {
		column-gap: 10px;
		/* flex-direction: column;
		row-gap: 30px; */
	}

	#siteBannerLogo {
		width: 30%;
	}

	#siteBannerTxt {
		font-size: 1.3%;
	}

	#siteBannerTxt .big {
		font-size: 3rem;
	}

	/* 会社概要 */
	/* -------------------------------------------------- */
	.commonTable {
		width: 100%;
	}

	.commonTable tr {
		display: block;
		padding: 10px 0 8px;
	}

	.commonTable th,
	.commonTable td {
		display: block;
		width: 100%;
		padding: 0;
		font-size: 1.4rem;
	}

	.commonTable th {
		font-weight: bold;
	}

	/* お知らせ */
	/* -------------------------------------------------- */
	/* #news {
		padding-top: 50px;
		padding-bottom: 150px;
	} */

	.newsItem {
		padding: 20px;
	}

	.newsItemTtl {
		display: block;
	}

	.newsTtlBox::after {
		width: 10px;
		height: 10px;
		top: 35%;
		right: 5px;
	}

	.newsTtlBox.close::after {
		top: 45%;
	}

	/* お問い合わせ */
	/* -------------------------------------------------- */
	.contactStepItem .num {
		display: block;
	}

	.contactStepItem .num::after {
		display: none;
	}

	.contactStepItem {
		padding: 14px 0 10px 15px;
		font-size: 1.4rem;
		line-height: 1;
	}

	/* 下層 */
	.contactSection .sectionWrap {
		padding-top: 30px;
	}

	/* フッター */
	/* -------------------------------------------------- */
	footer {
		margin-top: 0;
	}

	#footerLogo {
		width: 250px;
	}

	.footerTxt {
		font-size: 1.4rem;
	}

	#footerTel .telLink {
		font-size: 3rem;
	}
}

@media screen and (max-width: 374px) {
	html {
		font-size: 2.667vw;
	}
}


