@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

/* ==============================
   RESET
   based on destyle.css / normalize.css (簡易版)
   ============================== */

html {
	box-sizing: border-box;
	font-size: 62.5%; /* 1rem = 10px */
}
*, *::before, *::after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}
body {
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.6;
	font-size: 1.6rem;
	color: #222;
	background-color: #fff;
	-webkit-text-size-adjust: 100%;
}
img, video {
	max-width: 100%;
	height: auto;
	display: block;
}
ul, ol {
	padding: 0;
	list-style: none;
}
button, input, select, textarea {
	font-family: inherit;
	font-size: 1em;
	color: inherit;
	border: none;
	background: transparent;
	outline: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
strong {
	font-weight: 600;
}


/* ==============================
   BASE
   ============================== */

html {
	scroll-behavior: smooth;
	scroll-padding-top: 50px;
}
body {
	font-family: "Jost", "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-optical-sizing: auto;
	color: #4C4948;
	background-color: #fff;
	line-height: 1.75;
}
main {
	display: block;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	line-height: 1.4;
}
img,svg {
	vertical-align: middle;
}
a {
	display: inline-block;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s ease,transform 0.3s ease;
}
a:hover {
	color: inherit;
/*	opacity: 0.8;*/
	transform: scale(1.05);
}
p {
	text-align: justify;
}
section {
	overflow: hidden;
}
.inner {
	margin: 0 auto;
	width: 100%;
	max-width: 440px;
	padding: 0 20px;
}
.inner--normal {
	margin: 0 auto;
	width: 100%;
	max-width: 440px;
	padding: 0 20px;
}
.inner--full {
	margin: 0 auto;
	width: 100%;
	max-width: 440px;
	padding: 0 20px;
}
@media screen and (min-width:768px){
	.inner {
		max-width: 480px;
		padding: 0 40px;
	}
	.inner--normal {
		max-width: 480px;
		padding: 0 40px;
	}
	.inner--full {
		max-width: 480px;
		padding: 0 40px;
	}
}
@media screen and (min-width:1024px){
	.inner {
		max-width: 1120px;
		padding: 0 60px;
	}
	.inner--normal {
		max-width: 800px;
	}
	.inner--full {
		max-width: none;
		padding: 0 60px;
	}
}
@media screen and (min-width:1440px){
	.inner--normal {
		max-width: 1100px;
		padding: 0 50px;
	}
	.inner--full {
		padding: 0 90px;
	}
}


/* ==============================
   HEADER
   ============================== */

body {
	margin-top: 50px;
}
.header {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	width: 100%;
	height: 50px;
	padding: 0 10px;
	background-color: #fff;
	box-shadow: 0 2px 6px -2px rgba(0,0,0,0.1);
	z-index: 1000;
}
.header__logo {
	position: relative;
	width: 250px;
	line-height: 1;
	z-index: 101;
}
.header__logo-link {
	display: block;
}
.header__nav {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	padding: 80px 30px 30px;
	background: #fff;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .4s ease, visibility .4s ease;
	will-change: opacity;
	overflow-y: scroll;
	scrollbar-width: none;
}
.header__nav::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Edge */
}
.header__nav.is-show {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.header__nav.is-show::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background: #fff;
	z-index: 1;
}
.header__menu {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}
.header__menu-item {
}
.header__menu-link,
.header__sub-menu-link {
	position: relative;
	display: block;
	width: 100%;
	padding: 24px 42px 24px 0;
	font-size: 1.5rem;
	font-weight: 500;
	text-align: left;
	border-bottom: 1px solid #D3D3D3;
}
.header__sub-menu-link {
	padding: 20px 42px 20px 0;
}
button.header__menu-link {
	background: none;
	appearance: none;
	cursor: pointer;
}
.header__menu-link::after,
.header__sub-menu-link::after {
	content: '';
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.header__menu-link::after,
.header__sub-menu-link::after {
	background-image: url("../img/common/arrow-orange.svg");
}
.header__menu-item--has-sub .header__menu-link::after {
	background-image: url("../img/common/icon-plus.svg");
}
.header__menu-item--has-sub.is-open .header__menu-link::after {
	background-image: url("../img/common/icon-minus.svg");
}
.header__menu-link.link-external::after,
.header__sub-menu-link.link-external::after {
	background-image: url("../img/common/icon-external.svg");
	width: 10px;
}
.header__menu-item--has-sub {
	position: relative;
}
.header__sub-menu {
	display: none;
	padding: 15px;
}
.header__sub-menu-item {
}
@media screen and (min-width:1024px){
	body {
		margin-top: 49px;
	}
	.header {
		height: auto;
		padding: 0 20px;
	}
	.header__logo {
		width: 260px;
	}
	.header__nav {
		flex-direction: row;
		justify-content: flex-end;
		align-items: center;
		position: relative;
		width: auto;
		height: auto;
		padding: 0;
		background: #fff;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		overflow: visible;
	}
	.header__nav.is-show::after {
		content: none;
	}
	.header__menu {
		display: flex;
		justify-content: flex-end;
		align-items: center;
		gap: 20px;
		max-width: none;
		margin: 0;
	}
	.header__menu-link,
	.header__sub-menu-link {
		display: inline-block;
		width: auto;
		padding: 14px 0 12px;
		font-size: 1.2rem;
		border-bottom: none;
	}
	.header__menu-link {
		border-top: 1px solid transparent;
		border-bottom: 1px solid transparent;
	}
	.header__menu-item--has-sub.is-open .header__menu-link {
		border-bottom: 1px solid #EF8125;
	}
	.header__menu-link::after,
	.header__sub-menu-link::after {
		content: none;
		right: 0;
		width: 9px;
		height: 9px;
	}
	.header__menu-item--has-sub .header__menu-link,
	.header__menu-item--has-sub.is-open .header__menu-link,
	.header__menu-link.link-external,
	.header__sub-menu-link.link-external {
		padding-right: 13px;
	}
	.header__menu-item--has-sub .header__menu-link::after,
	.header__menu-item--has-sub.is-open .header__menu-link::after,
	.header__menu-link.link-external::after,
	.header__sub-menu-link.link-external::after {
		content: '';
	}
	.header__menu-item--has-sub .header__menu-link::after {
		background-image: url("../img/common/icon-plus.svg");
	}
	.header__menu-item--has-sub.is-open .header__menu-link::after {
		background-image: url("../img/common/icon-minus.svg");
	}
	.header__menu-link.link-external::after,
	.header__sub-menu-link.link-external::after {
		background-image: url("../img/common/icon-external.svg");
	}
	.header__sub-menu {
		padding: 15px;
		position: absolute;
		top: 100%;
		left: -15px;
		z-index: 102;
		background: #fff;
		box-shadow: 0 2px 6px -2px rgba(0,0,0,0.1);
	}
	.header__sub-menu-item {
		margin-bottom: 10px;
	}
	.header__sub-menu-item:last-child {
		margin-bottom: 0;
	}
	.header__sub-menu-link {
		padding: 0;
		white-space: nowrap;
	}
	
}

@media screen and (min-width:1200px){
	body {
		margin-top: 52px;
	}
	.header__logo {
		width: 281px;
	}
	.header__menu {
		gap: 30px;
	}
	.header__menu-link,
	.header__sub-menu-link {
		font-size: 1.3rem;
	}
}

/* --- ハンバーガー --- */
.hamburger {
	position: relative;
	width: 40px;
	height: 34px;
	background: url("../img/common/hamburger-bg.svg") no-repeat center center / contain;
	cursor: pointer;
	z-index: 101;
	user-select: none;
	caret-color: transparent;
}
.hamburger__line {
	display: block;
	position: absolute;
	left: 14px;
	width: 12px;
	height: 1px;
	background: #fff;
	transition: all 0.4s ease;
}
.hamburger__line:nth-child(1) { top: 14px; }
.hamburger__line:nth-child(2) { bottom: 14px; }

/* --- 開いた状態 --- */
.hamburger.is-open {
}
.hamburger.is-open .hamburger__line {
	width: 18px;
	height: 1px;
}
.hamburger.is-open .hamburger__line:nth-child(1) {
	transform: translate(-3px,2.5px) rotate(25deg);
}
.hamburger.is-open .hamburger__line:nth-child(2) {
	transform: translate(-3px,-2.5px) rotate(-25deg);
}

/* ==============================
   PC表示
   ============================== */
@media (min-width: 1024px) {
	.hamburger {
		display: none;
	}
}


/* ==============================
   FOOTER
   ============================== */

.footer {
	position: relative;
	background-color: #F5F5F5;
	padding: 20px;
}
.footer__nav {
	padding: 0;
}
.footer__menu {
	margin-bottom: 20px;
}
.footer__menu-item {
}
.footer__menu-link,
.footer__sub-menu-link {
	position: relative;
	display: block;
	width: 100%;
	padding: 24px 42px 24px 0;
	font-size: 1.5rem;
	font-weight: 500;
	text-align: left;
	border-bottom: 1px solid #D3D3D3;
}
.footer__sub-menu-link {
	padding: 20px 42px 20px 0;
}
button.footer__menu-link {
	background: none;
	appearance: none;
	cursor: pointer;
}
.footer__menu-link::after,
.footer__sub-menu-link::after {
	content: '';
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.footer__menu-link::after,
.footer__sub-menu-link::after {
	background-image: url("../img/common/arrow-orange.svg");
}
.footer__menu-item--has-sub .footer__menu-link::after {
	background-image: url("../img/common/icon-plus.svg");
}
.footer__menu-item--has-sub.is-open .footer__menu-link::after {
	background-image: url("../img/common/icon-minus.svg");
}
.footer__menu-link.link-external::after,
.footer__sub-menu-link.link-external::after {
	background-image: url("../img/common/icon-external.svg");
	width: 10px;
}
.footer__menu-item--has-sub {
	position: relative;
}
.footer__sub-menu {
	display: none;
	padding: 15px;
}
.footer__sub-menu-item {
}
/* ---------- Utility Links ---------- */

.footer__utility {
	margin-bottom: 30px;
}

.footer__utility-item {
	margin-bottom: 6px;
}

.footer__utility-link {
	position: relative;
	display: inline-block;
	font-size: 1.2rem;
	font-weight: 500;
	text-align: left;
}
.footer__utility-link::after {
	content: '';
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
	height: 12px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.footer__utility-link.link-external {
	padding-right: 20px;
}
.footer__utility-link.link-external::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	background-image: url("../img/common/icon-external.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

/* ---------- Banner ---------- */

.footer__banner {
	margin-bottom: 40px;
}

.footer__banner-link {
}

.footer__banner-img {
}

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

.footer__logo {
	margin-bottom: 30px;
}

.footer__logo-link {
}

.footer__logo-img {
	width: 130px;
}

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

.footer__info {
	margin-bottom: 30px;
}

.footer__address {
	margin-bottom: 10px;
	font-size: 1.2rem;
}

.footer__tel {
	font-size: 1.1rem;
}

/* ---------- Copyright ---------- */

.footer__copyright {
	font-size: 1.1rem;
}

.footer__menu-pc {
	display: none;
}

@media screen and (min-width:1024px){
	.footer {
		padding: 80px 0 0;
	}
	.footer__inner {
		position: relative;
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
		gap: 40px;
		padding-bottom: 220px;
	}
	.footer__nav {
		display: flex;
		justify-content: space-around;
		align-items: flex-start;
		gap: 30px;
		width: calc(100% - 260px);
	}
	.footer__menu {
		margin-bottom: 0;
	}
	.footer__menu-item {
		margin-bottom: 6px;
	}
	.footer__menu-item--has-sub {
		display: none;
	}
	.footer__menu-link,
	.footer__sub-menu-link {
		position: relative;
		display: inline-block;
		width: auto;
		padding: 0;
		font-size: 1.2rem;
		font-weight: 500;
		text-align: left;
		border-bottom: none;
	}
	.footer__menu-link:not(.link-external)::after,
	.footer__sub-menu-link::after {
		content: none;
	}
	.footer__utility {
		margin-bottom: 0;
	}
	.footer__menu-link.link-external,
	.footer__utility-link.link-external {
		padding-right: 16px;
	}
	.footer__menu-link::after,
	.footer__utility-link.link-external::after {
		right: 0;
		width: 9px;
		height: 9px;
	}
	.footer__left-pc {
		display: flex;
		flex-direction: column;
		max-width: 240px;
	}
	.footer__banner {
		order: 2;
	}
	.footer__copyright {
		position: absolute;
		bottom: 25px;
		right: 60px;
	}
	.footer__menu-pc {
		display: block;
	}
	.footer__menu-heading {
		display: inline-block;
		margin-bottom: 6px;
		font-size: 1.2rem;
		font-weight: 700;
		text-align: left;
	}
}
@media screen and (min-width:1440px){
	.footer__inner {
		gap: 80px;
	}
	.footer__nav {
		gap: 60px;
	}
	.footer__left-pc {
		max-width: 260px;
	}
	.footer__copyright {
		right: 90px;
	}
}


.breadcrumb {
	margin: 0;
	padding: 0;
}

.breadcrumb__inner {
}

.breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2px 12px;
	margin: 0;
	padding: 6px 0;
}

.breadcrumb__item {
	position: relative;
	line-height: 1.5;
}
.breadcrumb__item:not(:first-child) {
	padding-left: 18px;
}
.breadcrumb__item:not(:first-child)::after {
	content: url(../img/common/arrow-breadcrumb.svg);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(calc(-50% + 1px));
}

.breadcrumb__link {
	color: #EF8125;
	font-size: 1.2rem;
}

.breadcrumb__link.is-current {
	pointer-events: none;
	color: #9F9D9D;
}


.page-heading {
	padding: 40px 20px;
}
.page-heading__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.page-heading__title-en {
	margin-bottom: 5px;
	color: #EF8125;
	font-size: 1.2rem;
	font-weight: 500;
	text-align: center;
	letter-spacing: .05rem;
}
.page-heading__title-jp {
	margin-bottom: 0;
	font-size: 2.4rem;
	font-weight: 500;
	text-align: center;
	letter-spacing: .1rem;
}
@media screen and (min-width:1024px){
	.page-heading {
		padding: 120px 40px;
	}
	.page-heading__inner {
	}
	.page-heading__title-en {
		margin-bottom: 10px;
	}
	.page-heading__title-jp {
		font-size: 3.2rem;
		letter-spacing: .2rem;
	}
}

















