@charset "utf-8";

/*=====================================
layout.css
=====================================*/

/*-------------------------------------
 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	max-width: 100%;
	line-height: 0;
	vertical-align: bottom;
}
iframe {
	vertical-align: bottom;
	border: 0;
}
table th,
table td {
	vertical-align: top;
}
input,
select,
textarea,
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
}
input[type="date"],
input[type="time"] {
  -webkit-appearance: auto;
	-moz-appearance: auto;
  appearance: auto;
}
select::-ms-expand {
	display: none;
}
*, :after, :before {
	box-sizing: border-box;
}

/*-------------------------------------
 root
-------------------------------------*/
:root {

--font-montserrat: "Montserrat", sans-serif;
--font-kurenaido: "Zen Kurenaido", sans-serif;

--color-main: #00349f;
--color-black: #000;
--bg-gray: #eff1f6;
--border-gray: #dadde4;

--height-textA: 2.1;
--height-textB: 2;
--spacing-textA: 0.06em;
--spacing-textB: 0.02em;

}


/*-------------------------------------
 setting
-------------------------------------*/
body {
	position: relative;
	color: var(--color-black);
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: clamp(16px, 13.708px + 0.298vw, 18px);
	font-weight: 500;
	line-height: 1.5;
	word-break: normal;
	background: #fff;
	-webkit-text-size-adjust: 100%;
}
body.is-nav {
	overflow: hidden;
}
a {
	color: var(--color-black);
	text-decoration: none;
}
a:hover{
	text-decoration: underline;
}
strong {
	font-weight: bold;
}
em {
	font-style: normal;
}


/*-------------------------------------
 layout
-------------------------------------*/
#wrapper {
	position: relative;
	overflow: clip;
}
.inner {
	position: relative;
	max-width: 1236px;
	margin: 0 auto;
	padding: 0 18px;
}


/*-------------------------------------
 header
-------------------------------------*/
.header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10;
	display: grid;
	grid-template-columns: 280px 1fr;
	align-items: center;
	gap: 15px;
	padding: 30px clamp(15px, -45.000px + 5.556vw, 35px) 0;
}
.headerLogo a {
	color: #fff;
	font-size: clamp(22px, 15.978px + 0.557vw, 24px);
	text-decoration: none;
}
.headerGroup {
	display: grid;
	grid-template-columns: 1fr 180px clamp(210px, -6.667px + 18.519vw, 260px);
	align-items: center;
	gap: 15px;
}
.headerNav {
	width: 100%;
	max-width: 600px;
	margin-left: auto;
	padding-right: 30px;
}
.headerNav ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	font-size: clamp(14px, 4.967px + 0.836vw, 17px);
	letter-spacing: var(--spacing-textA);
	flex-grow: 1;
}
.headerNav ul li a {
	position: relative;
	color: #fff;
}
.headerNav ul li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 2px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 0.3s ease;
}
.headerNav ul li a:hover,
.headerNav ul li a.is-active {
	text-decoration: none;
}
.headerNav ul li a:hover::after,
.headerNav ul li a.is-active::after {
	transform: scaleX(1);
}
.headerTel {
	order: 2;
	color: #fff;
	font-size: 16px;
	letter-spacing: var(--spacing-textA);
	line-height: 1.2;
	text-align: center;
}
.headerTel em {
	display: block;
	font-family: var(--font-montserrat);
	font-size: 22px;
	font-weight: 600;
}
.headerTel em a {
	color: #fff;
	text-decoration: none;
}
.headerContact {
	order: 3;
}
.headerContact a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	position: relative;
	width: 100%;
	min-height: 65px;
	color: var(--color-main);
	font-size: 17px;
	font-weight: 700;
	letter-spacing: var(--spacing-textA);
	text-decoration: none;
	border-radius: 50px;
	border: 2px solid var(--color-main);
	background: #fff;
}
.headerContact a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 18px;
	display: block;
	width: 28px;
	height: 28px;
	margin-top: -14px;
	border-radius: 50%;
	background: url(../images/icn_arrow01.webp) no-repeat center center / 9px auto var(--color-main);
}
.headerBtn {
	display: none;
}

/* fixed header (shown after the main visual) */
.header.is-fixed {
	position: fixed;
	padding-top: 14px;
	padding-bottom: 14px;
	background: #fff;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	animation: headerSlideDown 0.4s ease;
}
@keyframes headerSlideDown {
	from { transform: translateY(-100%); }
	to { transform: translateY(0); }
}
.header.is-fixed .headerLogo a {
	color: var(--color-main);
}
.header.is-fixed .headerNav ul li a {
	color: var(--color-black);
}
.header.is-fixed .headerTel {
	color: var(--color-black);
}
.header.is-fixed .headerTel em a {
	color: var(--color-main);
}
.header.is-fixed .headerBtn span {
	background: var(--color-black);
}
/* keep logo/menu readable while the SP menu overlay is open */
body.is-nav .header.is-fixed {
	background: transparent;
	box-shadow: none;
}
body.is-nav .header.is-fixed .headerLogo a {
	color: #fff;
}
body.is-nav .header.is-fixed .headerBtn span {
	background: #fff;
}
body.is-nav .header.is-fixed .headerNav ul li a,
body.is-nav .header.is-fixed .headerTel,
body.is-nav .header.is-fixed .headerTel em a {
	color: #fff;
}


/*-------------------------------------
 breadcrumb
-------------------------------------*/
.breadcrumbList {
	display: flex;
	flex-wrap: wrap;
	padding-block: 45px;
	color: #a9a9a9;
}
.breadcrumbList li + li::before {
	content: "/";
	display: inline-block;
	margin-inline: 15px;
	color: #000;
}


/*-------------------------------------
 footer
-------------------------------------*/
.footer .inner {
	display: flex;
	justify-content: space-between;
	gap: 20px 50px;
	padding-block: 85px;
}
.footerLogo a {
	font-size: 22px;
	text-decoration: none;
}
.footerAddress {
	padding-top: 10px;
}
.footerMenu {
	max-width: 650px;
	flex-grow: 1;
}
.footerNav {
	display: flex;
	justify-content: space-between;
	gap: clamp(20px, -2.921px + 2.981vw, 40px);
	width: 100%;
	font-size: 17px;
}
.footerCopyright {
	padding-top: 25px;
	font-family: var(--font-montserrat);
	font-size: 12px;
	text-align: right;
}


/*-------------------------------------------------------------------
 Media Queries
-------------------------------------------------------------------*/


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

.headerPanel {
	grid-template-columns: 1fr 180px 180px;
}
.headerNav {
	padding-right: 0;
}
.headerContact a::after {
	position: relative;
	top: auto;
	right: auto;
	margin-top: 0;
}

}


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


/*-------------------------------------
 header
-------------------------------------*/
.header {
	padding: 0 18px;
	min-height: 50px;
}
.headerLogo {
	position: relative;
	z-index: 2;
}
.headerLogo a {
	font-size: 18px;
}
.headerPanel {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1;
}
.headerGroup {
	display: block;
	min-height: inherit;
	height: 100dvh;
	margin: 0;
	padding-top: 90px;
	padding-bottom: 35px;
	background: var(--color-main);
	overflow-x: hidden;
	overflow-y: auto;
}
.headerNav {
	max-width: inherit;
	margin-bottom: 45px;
}
.headerNav ul {
	gap: 40px;
	flex-direction: column;
	font-size: 16px;
}
.headerBtn {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	display: block;
	width: 50px;
	height: 50px;
}
.headerBtn span {
	position: absolute;
	left: 12px;
	display: block;
	width: 26px;
	height: 2px;
	background: #fff;
	transition: .2s;
}
.headerBtn span:nth-child(1) {
	top: 18px;
}
.headerBtn span:nth-child(2) {
	top: 28px;
}
.headerBtn.is-open span {
	top: 24px;
}
.headerBtn.is-open span:nth-child(1) {
	transform: rotate(210deg);
}
.headerBtn.is-open span:nth-child(2) {
	transform: rotate(-210deg);
}
.headerTel em::before {
	content: "";
	display: inline-block;
	width: 15px;
	height: 19px;
	margin-top: 3px;
	margin-right: 5px;
	vertical-align: top;
	background: url(../images/icn_tel01.svg) no-repeat 0 0 / 100% auto;
}
.headerContact {
	width: 80%;
	max-width: 264px;
	margin: 0 auto 35px;
}
.headerContact a {
	min-height: 55px;
	font-size: 15px;
}
.headerContact a::after {
	position: absolute;
	top: 50%;
	right: 18px;
	display: block;
	width: 24px;
	height: 24px;
	margin-top: -12px;
}

/*-------------------------------------
 footer
-------------------------------------*/
.footer .inner {
	flex-direction: column;
	
}
.footerMenu {
	margin-left: auto;
}

}


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

.forPC { display: none !important; }
.forSP { display: block; }
img.forSP, br.forSP, span.forSP { display: inline-block }


/*-------------------------------------
 root
-------------------------------------*/
:root {

	--height-textA: 1.7;
	--height-textB: 1.7;

}


/*-------------------------------------
 setting
-------------------------------------*/
body {
	font-size: clamp(14px, 11.708px + 0.298vw, 16px);
}


/*-------------------------------------
 breadcrumb
-------------------------------------*/
.breadcrumbList {
	padding-block: 25px;
}
.breadcrumbList li + li::before {
	margin-inline: 10px;
}


/*-------------------------------------
 footer
-------------------------------------*/
.footer .inner {
	flex-direction: column;
	gap: 30px;
	padding-top: 50px;
	padding-bottom: 35px;
	font-size: 14px;
}
.footerLogo {
	font-size: 18px;
	text-align: center;
}
.footerAddress {
	padding-top: 10px;
	text-align: center;
}
.footerMenu {
	max-width: inherit;
	margin: 0;
}
.footerNav {
	flex-wrap: wrap;
	gap: 0;
	width: auto;
	margin-inline: -18px;
	font-size: 13px;
	border-bottom: 1px solid var(--border-gray);
}
.footerNav li {
	width: 50%;
	flex-shrink: 0;
	border-top: 1px solid var(--border-gray);
}
.footerNav li:nth-child(even) {
	border-left: 1px solid var(--border-gray);
}
.footerNav li a {
	display: block;
	padding: 16px 5px;
	text-align: center;
}

.footerCopyright {
	padding-top: 30px;
	font-size: 10px;
	text-align: center;
}


}


/* PC layout
-------------------------------------------------------------------*/


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

.forPC { display: block; }
.forSP { display: none !important; }
img.forPC, br.forPC, span.forPC { display: inline-block }



/*-------------------------------------
 hover
-------------------------------------*/
.headerLogo a,
.headerTel em a,
.headerContact a::after {
	text-decoration: none;
	transition: all 0.2s linear;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	backface-visibility: hidden;
}
.headerLogo a:hover,
.headerTel em a:hover {
	opacity: 0.7;
}
.headerContact a:hover::after {
	transform: translateX(4px);
}



}

