@charset "utf-8";

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

/* -------------------------------------------------- */
/* WP*/
/* -------------------------------------------------- */
/* 投稿の画像配置 */
.alignright { display: block; margin: 0 0 10px auto; }/* 配置位置 左 */
.alignleft { display: block; margin: 0 auto 10px 0; }/* 配置位置 右 */
.aligncenter { display: block; margin: 0 auto 10px; }/* 配置位置 中央 */
/* .alignright { float: right; padding: 0px 0 10px 10px; } *//* 後続のテキスト左回り込み */
/*.alignleft { float: left; padding: 0px 10px 10px 0; }*//* 後続テキスト右回り込み */

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

/* -------------------------------------------------- */
/* COMMON */
/* -------------------------------------------------- */
html {
	font-size: 62.5%;/* 10px */
}

body {
	background: #FFFFFF;
	color: #333333;
	font-size: 14px;
	font-size: 1.4rem;
	-webkit-text-size-adjust: 100%;
	/* WebKit系 (Safari, Chrome) */
	-webkit-font-smoothing: antialiased;
	/* Firefox (Mac) */
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "palt";
	position: relative;
	font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka,"ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.5;
	overflow-x: hidden;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-feature-settings: "palt";
}


.brSp,
.brTab {
	display: none;
}

.brPc {
	display: inline-block;
}

.on {
	transition: all 0.3s ease-in-out 0s;
}

.on:hover {
	opacity: 0.7;
}

:root {
	--green: #2E7359;
	--dark-green: #143D30;
	--light-green: #EAF2EE;
	--grey: #F5F6F5;
	--dark-grey: #222;
	--line: #DADFDC;
	--minchou: "Zen Old Mincho", serif;;
}

main {
	display: block;
}

.inner {
	width: min(1200px, calc(100% - 80px));
	margin: 0 auto;
}


/* タイトル */
/* -------------------------------------------------- */
.tit1 {
	position: relative;
	padding-top: 22px;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	color: #222;
	font-size: 3.4rem;
	letter-spacing: 0.05em;
}

.tit1::before {
	content: attr(data-en);
	position: absolute;
	top: 0;
	left: 3px;
	font-weight: 600;
	color: #72c762;
	font-family: "Zen Old Mincho", serif;
	font-size: 1.2rem;
	letter-spacing: 0.12em;
}


/* ボタン */
/* -------------------------------------------------- */

.btn1 a {
	max-width: 400px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 20px 54px 20px 20px;
	border: 1px solid #555;
	background: #FFFFFF;
	color: #222;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	border-radius: 5px;
	transition: all 0.3s ease-in-out 0s;
}


.btn2 a {
	max-width: 400px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 20px 54px 20px 20px;
	background: #FFFFFF;
	color: #222;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	border-radius: 5px;
	transition: all 0.3s ease-in-out 0s;
}

.btn1 a::after,
.btn2 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 18px;
	width: 14px;
	height: 15px;
	background-image: url(../img/common/icon_arrow_green.svg);
	transform: translateY(-50%);
}

.btn1 a:hover {
	background: #efefef;
}

.btn2 a:hover {
	background: #d6d6d6;
}

.btn3 a {
	display: block;
	padding: 30px 40px;
	background: #3e3e3e;
	color: #FFFFFF;
	font-size: 1.6rem;
	border-radius: 5px;
	font-weight: 500;
	transition: all 0.3s ease-in-out 0s;
}

.btn3 a:hover {
	opacity: 0.7;
}

/* ヘッダー */
/* -------------------------------------------------- */

#header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	width: 100%;
	color: #FFFFFF;
	transition: background 0.3s ease, box-shadow 0.3s ease;
	height: 80px;
	padding: 0 28px;
	/* background: rgba(0, 0, 0, 0.5); */
}

#header.is-scrolled {
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
	background: #FFFFFF;
}

.header_logo {
	margin-right: auto;
	width: 145px;
}

.header_logo img {
	width: 100%;
	height: auto;
}

.header_nav {
	display: flex;
	align-items: stretch;
	height: 100%;
	gap: clamp(15px,2vw,30px);
}

.header_list {
	display: flex;
	align-items: center;
	gap: clamp(15px,2vw,30px);
}

.header_list a {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	font-weight: 600;
	white-space: nowrap;
	font-size: clamp(1.2rem,1vw,1.5rem);
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
	transition: all 0.3s ease-in-out 0s;
}

.header_list a:hover {
	opacity: 0.7;
}

.header_home img {
	width: 15px;
	margin-top: 4px;
	vertical-align: baseline;
}

.header_home a {
	display: block;
}

#header.is-scrolled .header_home img {
	display: none;
}

#header.is-scrolled .header_home a::before{
	content: "";
	width: 15px;
	height: 16px;
	margin-top: 4px;
	background: url(../img/common/header_nav_home_k.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
}

.header_cv {
	display: flex;
	align-items: center;
	gap: 10px;
}

.header_cv a {
	padding: 5px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	font-weight: 600;
	white-space: nowrap;
	font-size: clamp(1.2rem,1vw,1.4rem);
	border: 1px solid #fff;
	background: rgba(0, 0, 0, 0.2);
}

.header_cv li {
	min-width: 100px;
}

.header_cv li a {
	border: 1px solid #FFFFFF;
	transition: all 0.3s ease-in-out 0s;
}

.header_cv li a:hover {
	background: rgba(0, 0, 0, 0.5);
}

.drawer_btn,
.drawer_overlay,
.drawer_nav {
	display: none;
}


#header.is-scrolled .header_list a {
	color: #333;
	text-shadow: none;
}

#header.is-scrolled .header_cv {
	border-color: #333333;
}

#header.is-scrolled .header_cv li {
	border-color: #333333;
}

#header.is-scrolled .header_cv a {
	color: #333333;
	border: 1px solid #999;
	background: #FFF;
}

#header.is-scrolled .header_cv a:hover {
	background: rgba(0, 0, 0, 0.2);
}


/* CTA */
/* -------------------------------------------------- */

#cta {
	border-top: 1px solid #E1E4E2;
	padding: 62px 0;
}

.cta_inner {
	width: min(1000px, calc(100% - 80px));
	margin: 0 auto;
	text-align: center;
}

.cta_txt {
	margin-bottom: 28px;
	font-size: 1.6rem;
	font-family: var(--minchou);
}

.cta_contact,
.cta_btn {
	display: flex;
	align-items: center;
	justify-content: center;
}

.cta_tel {
	margin-right: 40px;
}

.cta_telnum {
	font-size: 3.8rem;
	line-height: 1;
	font-family: var(--minchou);
}

.cta_telnum .small {
	margin-right: 5px;
	font-size: 2.2rem;
}

.cta_teltime {
	padding-left: 2.4em;
	font-size: 1.4rem;
	line-height: 1.2;
	text-align: left;
}

.cta_teltime .small {
	font-size: 1.2rem;
}

.cta_btn {
	gap: 10px;
	padding-left: 40px;
	border-left: 1px solid #707571;
}

/* Footer */
/* -------------------------------------------------- */

footer {
	background: #FFFFFF;
}

.footer_wrap {
	padding: 85px max(40px, calc((100vw - 1200px) / 2)) 65px;
	color: #FFFFFF;
	background: url(../img/common/footer_bg.jpg) center / cover no-repeat;
}

.footer_top {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 15%;
}

.footer_logo {
	margin-bottom: 25px;
	width: 235px;
}

.footer_logo img {
	width: 100%;
	height: auto;
}

.footer_nav a {
	color: #FFFFFF;
	font-size: 1.6rem;
}

.footer_bottom {
	color: #FFFFFF;
	font-size: 1.6rem;
}

.footer_companyname {
	padding-bottom: 20px;
	color: #FFFFFF;
	font-size: 1.8rem;
	font-family: var(--minchou);
	font-weight: 600;
}

.footer_txt {
	color: #FFFFFF;
	font-size: 1.6rem;
	font-family: var(--minchou);
	font-weight: 600;
}

.footer_navgrid {
	display: flex;
	flex-wrap: wrap;
	font-weight: 500;
	gap: 8%;
}

.footer_navgrid ul {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 20px;
}

.footer_navgrid ul li {
	font-weight: 600;
}

.footer_productnav {
	flex: 1;
}

.footer_productnav > ul {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px 35px;
	font-weight: 500;
}

.footer_productTit {
	margin-bottom: 32px;
	font-weight: 600;
	padding: 10px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.85);
	border-bottom: 1px solid rgba(255, 255, 255, 0.85);
	text-align: center;
	font-size: clamp(1.6rem,1.5vw,2rem);
}

.footer_bottom {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 65px;
	gap: 0;
	background: rgba(0,0,0,0.5);
}

.footer_address {
	padding: 30px 40px;
}

.footer_address + .footer_address {
	border-left: 1px solid rgba(255, 255, 255, 0.85);
}

.footer_copyWrap a {
	color: #333333;
}

.footer_address > p:first-child {
	margin-bottom: 5px;
	font-weight: 600;
}

.footer_address a {
	color: #FFFFFF;
	border: 1px solid #FFF;
	font-size: 1rem;
	padding: 0 3px;
	margin-left: 3px;
}

.footer_badge {
	padding: 80px 40px;
}

.badgeList {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 25px;
	max-width: 1200px;
	margin: 0 auto;
}

.badgeList_img {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 82px;
}

.badgeList_img img {
	max-width: 105px;
	max-height: 76px;
	width: auto;
	height: auto;
}

.badgeList_txt {
	margin-top: 12px;
	line-height: 1.6;
	text-align: center;
	color: #333333;
	font-size: 1.2rem;
}

.footer_copyWrap {
	display: flex;
	justify-content: space-between;
	padding: 25px 35px;
	background: #f9f9f9;
	font-size: 1.4rem;
	color: #333333;
}

#pagetop {
	position: fixed;
	right: 35px;
	bottom: 85px;
	z-index: 100;
	width: 70px;
}

#pagetop img {
	width: 100%;
	height: auto;
}

/* -------------------------------------------------- */
/* TAB/SP */
/* -------------------------------------------------- */

@media screen and (max-width: 1024px) {
	.brTab {
		display: inline-block;
	}

	.brPc {
		display: none;
	}

	.inner {
		width: calc(100% - 50px);
	}

	#header {
		height: 64px;
		padding: 0 20px;
	}

	#header > .header_nav {
		display: none;
	}

	.drawer_btn {
		position: relative;
		z-index: 1003;
		display: block;
		width: 42px;
		height: 42px;
		margin-left: auto;
		border: 0;
		background: transparent;
		cursor: pointer;
	}

	.drawer_btn span {
		position: absolute;
		left: 8px;
		width: 26px;
		height: 2px;
		background: #FFFFFF;
		transition: top 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
	}

	.is-scrolled .drawer_btn span,
	.drawer_btn.is-open span {
		background: #333;
	}

	.drawer_btn span:nth-child(1) {
		top: 12px;
	}

	.drawer_btn span:nth-child(2) {
		top: 20px;
	}

	.drawer_btn span:nth-child(3) {
		top: 28px;
	}

	.drawer_btn.is-open span:nth-child(1) {
		top: 20px; transform: rotate(45deg);
	}

	.drawer_btn.is-open span:nth-child(2) {
		opacity: 0;
	}

	.drawer_btn.is-open span:nth-child(3) {
		top: 20px; transform: rotate(-45deg);
	}

	.drawer_overlay {
		position: fixed;
		inset: 0;
		z-index: 1001;
		display: block;
		background: rgba(0, 0, 0, 0.58);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.3s ease, visibility 0.3s ease;
	}

	.drawer_overlay.is-open {
		opacity: 1;
		visibility: visible;
	}

	.drawer_nav {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 1002;
		display: block;
		width: min(420px, 86vw);
		height: 100svh;
		padding: 88px 30px 35px;
		overflow-y: auto;
		background: #FFFFFF;
		transform: translateX(100%);
		transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
	}

	.drawer_nav.is-open {
		transform: translateX(0);
	}

	.drawer_nav .header_list,
	.drawer_nav .header_cv {
		display: block;
		height: auto;
	}

	.drawer_nav .header_list li {
		border-bottom: 1px solid #E2E6E4;
	}

	.drawer_nav .header_list a,
	.drawer_nav .header_cv a {
		justify-content: flex-start;
		height: auto;
		padding: 18px 5px;
		color: #333;
		font-size: 1.4rem;
	}

	.drawer_nav .header_home {
		display: none;
	}

	.drawer_nav .header_cv {
		margin-top: 28px;
	}

	.drawer_nav .header_cv li {
		margin-bottom: 10px;
	}

	.drawer_nav .header_cv a {
		justify-content: center;
		color: #333;
		border: 1px solid #999;
	}

	body.is-drawer-open #header {
		z-index: 1004;
		background: transparent;
		box-shadow: none;
		pointer-events: none;
	}

	body.is-drawer-open .header_logo {
		visibility: hidden;
	}

	body.is-drawer-open .drawer_btn {
		pointer-events: auto;
	}

	.footer_top {
		grid-template-columns: 260px 1fr;
		gap: 45px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	#header {
		height: 68px;
	}

	.footer_top {
		grid-template-columns: 225px minmax(0, 1fr);
		gap: 30px;
	}

	.footer_navgrid {
		grid-template-columns: minmax(150px, 0.7fr) minmax(0, 1.3fr);
		gap: 25px;
	}

	.footer_nav a,
	.footer_productTit {
		font-size: 1.4rem;
		white-space: nowrap;
	}

	.footer_txt {
		color: #FFFFFF;
		font-size: 1.3rem;
		font-family: var(--minchou);
		font-weight: 600;
	}

	.footer_productnav {
		gap: 3px 18px;
	}

	.footer_address {
		padding: 20px;
	}

	.footer_bottom {
		font-size: 1.4rem;
	}

	.badgeList {
		padding-bottom: 80px;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 25px;
		max-width: 1200px;
		margin: 0 auto;
	}
}

/* -------------------------------------------------- */
/* SP */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {
	.inner,
	.cta_inner {
		width: calc(100% - 40px);
	}

	.tit1 {
		font-size: 2.8rem;
	}

	.header_logo {
		width: 108px;
	}

	#cta {
		padding: 45px 0;
	}

	.cta_contact,
	.cta_btn {
		align-items: stretch;
		flex-direction: column;
	}

	.cta_tel {
		margin: 0 0 25px;
	}

	.btn3 a {
		width: 100%;
	}

	.footer_wrap {
		padding: 65px 20px 45px;
		padding-top: 55px;
		background: url(../img/common/footer_bg_sp.jpg) center / cover no-repeat;
	}

	.footer_top,
	.footer_navgrid,
	.footer_bottom {
		grid-template-columns: 1fr;
	}

	.footer_top {
		gap: 45px;
	}

	.footer_navgrid {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		gap: 28px;
	}

	.footer_bottom {
		gap: 0;
		margin-top: 45px;
		padding: 0;
		border-bottom: 0;
		font-size: 1.4rem;
	}

	.footer_badge {
		padding: 42px 20px;
	}

	.badgeList {
		grid-template-columns: repeat(3, 1fr);
		gap: 30px 12px;
	}

	.footer_copyWrap {
		flex-direction: column;
		gap: 7px;
		align-items: flex-start;
		text-align: left;
	}

	#header {
		height: 64px;
		padding: 0 18px;
	}

	.tit1::before {
		font-size: 1.1rem;
	}

	.cta_btn {
		padding-top: 24px;
		padding-left: 0;
		border-top: 1px solid #707571;
		border-left: 0;
	}

	.footer_logo {
		width: 180px;
	}

	.footer_navgrid ul {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 10px 35px;
		font-weight: 500;
	}

	.footer_productTit {
		text-align: center;
	}

	.footer_productTit {
		font-size: 1.5rem;
	}

	.footer_nav a {
		font-size: 1.3rem;
	}

	.footer_address {
		padding: 10px 10px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.85);
		text-align: left;
	}

	.footer_address + .footer_address {
		border-left: 0;
	}

	.badgeList_txt {
		font-size: 0.85rem;
	}
}



/* -------------------------------------------------- */
/* レスポンシブ共通 */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {
	.brSp {
		display: inline-block;
	}

	.brTab {
		display: none;
	}

	.brTab.brSp {
		display: inline-block;
	}

	.brPc {
		display: none;
	}

	.btn1 a {
		max-width: 400px;
		position: relative;
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: auto;
		padding: 15px 54px 15px 15px;
		font-size: 1.4rem;
	}

	.btn3 a {
		display: block;
		padding: 15px 40px;
		background: #3e3e3e;
		color: #FFFFFF;
		font-size: 1.6rem;
		border-radius: 5px;
		font-weight: 500;
		transition: all 0.3s ease-in-out 0s;
	}

	.cta_teltime {
		padding: 2.4em 0 0 0;
		font-size: 1.4rem;
		text-align: center;
	}

	#pagetop {
		position: fixed;
		right: 5%;
		bottom: 25px;
		z-index: 100;
		width: 50px;
	}
}

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