@charset "UTF-8";
/* ------------------------------------------------
                    共通css
--------------------------------------------------- */
/*---------- header ----------*/
header {
	width: 100%;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	transition: 0.4s ease-in-out;
}
.header-inn {
	width: calc(100% - 100px);
	margin: 0 auto;
}

/* green bar */
.top-bar {
	padding: 15px 0;
	background: var(--color-dark-primary);
}
.top-bar .header-inn {
	align-items: center;
	justify-content: space-between;
}

.header-logo {
	width: 293px;
}

.top-nav-wrap {
	width: calc(100% - 293px - 50px);
}
.top-nav {
	width: 100%;
	justify-content: flex-end;
	align-items: center;
}
.top-nav li {
	margin-left: 20px;
}
.top-nav a {
	padding-left: 15px;
	display: inline-block;
	position: relative;
	color: #fff;
	font-size: 1.2rem;
}
.top-nav a::before {
	content: '';
	width: 7px;
	height: 14px;
	background: url('../../img/common/icon_arrow_w.svg') center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 7px);
	left: 0;
}

/* main navi */
.header-main {
	padding: 6px 0;
	background: #fff;
}
.header-main .header-inn {
	align-items: center;
}

.header-logo-ja a {
	display: block;
	width: 379px;
	margin-right: auto;
	font-family: 'Noto Sans JP', 'Noto Sans CJK JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ ProN W3', 'Yu Gothic', '游ゴシック体', 'Meiryo', 'メイリオ', sans-serif;
	font-feature-settings: 'palt';
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--color-dark-primary);
	letter-spacing: 0;
}

/* gnavi */
.gnav-wrap {
	width: calc(100% - 379px - 138px - 50px);
}
.gnav-wrap ul#gnav {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.gnav-wrap ul#gnav > li {
	height: 40px;
	display: flex;
	align-items: center;
	margin-left: 2vw;
	position: relative;
}
.gnav-wrap ul#gnav > li:first-child {
	margin-left: 0;
}
.gnav-wrap ul#gnav > li > a,
.gnav-wrap ul#gnav > li > .is-trigger > a {
	padding: 0;
	color: #252525;
	display: block;
	font-size: 1.5rem;
	font-weight: 500;
	transition: 0.3s ease-in-out;
	background: none;
	border: none;
	box-sizing: border-box;
	line-height: 1;
}

@media (min-width: 1101px) {
	.gnav-wrap {
		display: block !important;
	}
}

/* dropdown menu */
.dropdown-menu-wrap {
	width: max-content;
	padding: 10px 25px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.header-entry-list-wrap.dropdown-menu-wrap {
	left: auto;
	right: 0;
}
.is-dropdown .is-trigger {
	height: 100%;
	display: flex;
	align-items: center;
	padding-right: 20px !important;
	position: relative;
	cursor: pointer;
}
.is-trigger a {
	pointer-events: none;
}
.is-dropdown .is-trigger::after {
	content: '';
	width: 13px;
	height: 7px;
	background: url('../../img/common/icon_arrow_down_g.svg') center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 3px);
	right: 0;
	transition: 0.3s ease-in-out;
}

.dropdown-menu-ttl {
	border-bottom: 1px solid #ebebeb;
	opacity: 1;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
.dropdown-menu-ttl:last-child {
	border-bottom: none;
}
.dropdown-menu-ttl a {
	display: block;
	padding: 15px 40px 15px 4px;
	font-size: 1.6rem;
	line-height: 1;
	position: relative;
}
.dropdown-menu-ttl a::after {
	content: '';
	width: 20px;
	height: 5px;
	background: url('../../img/common/icon_arrow_right_g.svg') center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 3px);
	right: 7px;
}
@media (min-width: 769px) {
	.dropdown-menu-ttl:hover {
		opacity: 0.7;
		filter: alpha(opacity=70);
		-ms-filter: 'alpha(opacity=70)';
	}
}

/* ENTRY btn */
.header-entry-btn-wrap {
	margin-left: 50px;
	width: 138px;
	height: 40px;
	position: relative;
}
.header-entry-btn {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-red);
	border-radius: 5px;
	color: #fff !important;
	font-weight: 700;
	position: relative;
	cursor: pointer;
}
.header-entry-btn::before {
	content: '';
	width: 13px;
	height: 7px;
	background: url('../../img/common/icon_arrow_down_w.svg') center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 3px);
	right: 22px;
	transition: 0.3s ease-in-out;
}
.header-entry-btn.is-open::before {
	transform: rotate(-180deg);
}

.header-entry-list-wrap {
	width: 215px;
	padding: 0 10px;
}
.header-entry-list-wrap li {
	width: 100%;
	margin: 0 auto;
	padding: 14px 0;
}
.header-entry-list-wrap li:last-child {
	max-width: 165px;
	border-top: 1px solid #ebebeb;
}
.header-entry-list-wrap li:last-child img {
	max-width: 97px;
	margin: 0 auto;
}

.btn-menu-wrap {
	display: none;
}

@media (max-width: 1270px) {
	.gnav-wrap {
		width: calc(100% - 138px - 50px);
	}
	.gnav-wrap ul#gnav {
		justify-content: space-between;
	}
}

@media (max-width: 1100px) {
	.header-inn {
		width: 96%;
		margin: 0 auto;
	}
}

@media (min-width: 769px) {
	.dropdown-menu-wrap {
		display: block !important;
		transition: 0.3s ease-in-out;
	}

	.is-trigger.is-open::after,
	.is-dropdown:focus-within .is-trigger::after {
		transform: rotate(-180deg);
	}
	.dropdown-menu-wrap.is-show,
	.is-open .dropdown-menu-wrap,
	.is-dropdown:focus-within .dropdown-menu-wrap,
	.dropdown-menu-wrap:focus-within {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
}

@media (max-width: 768px) {
	header {
		height: 10.66vw;
	}
	.header-inn {
		width: 100%;
		height: 10.66vw;
		max-width: initial;
		margin: 0 auto;
		padding: 0;
		position: relative;
	}

	/* green bar */
	.top-bar {
		padding: 0;
		background: #fff;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
		position: relative;
		z-index: 999;
	}
	.top-bar .header-inn {
		align-items: center;
		justify-content: space-between;
	}

	.header-logo {
		width: 45.33vw;
		max-width: 340px;
		margin-left: 5%;
	}

	/* main navi */
	.header-main {
		padding: 0;
		background: none;
	}
	.header-main .header-inn {
		align-items: center;
	}

	/* 開閉ボタン */
	.btn-menu-wrap {
		width: 10.66vw;
		height: 10.66vw;
		display: block;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		z-index: 2001;
		background: var(--color-dark-primary);
		border: none;
	}
	.sp-menu-trigger {
		width: 45%;
		height: 100%;
		margin: 0 auto;
		padding: 0;
		display: block;
		position: relative;
		background: none;
		border: none;
	}
	.sp-menu-trigger span {
		display: block;
		height: 1px;
		background: #fff;
		position: absolute;
		width: 100%;
		left: 0;
		transition: 0.5s ease-in-out;
	}
	.sp-menu-trigger span:nth-child(1) {
		top: calc(50% - 20%);
	}
	.sp-menu-trigger span:nth-child(2) {
		top: calc(50%);
	}
	.sp-menu-trigger span:nth-child(3) {
		top: calc(50% + 20%);
	}

	/*開閉ボタンopen時*/
	.is-open.sp-menu-trigger span:nth-child(1) {
		top: 50%;
		transform: rotate(45deg);
	}
	.is-open.sp-menu-trigger span:nth-child(2) {
		opacity: 0;
	}
	.is-open.sp-menu-trigger span:nth-child(3) {
		top: 50%;
		transform: rotate(-45deg);
	}

	/* gnavi */
	.gnav-wrap {
		width: 100%;
		height: calc(100vh - 10.66vw);
		display: none;
		padding: 0 0 3vw;
		background: var(--color-light-gray);
		position: fixed;
		top: 10.66vw;
		left: 0;
		z-index: 998;
		overflow: auto;
	}
	.gnav-wrap ul#gnav {
		width: 100%;
		margin: 0 auto;
		padding: 0;
		display: block;
		position: relative;
		z-index: 999;
	}
	.gnav-wrap ul#gnav > li {
		width: 100%;
		height: auto;
		margin: 0;
		padding: 0;
		display: block;
	}
	.gnav-wrap ul#gnav > li > a,
	.gnav-wrap ul#gnav > li > .is-trigger > a {
		width: 90%;
		margin: 0 auto;
		padding: 4vw 1vw;
		display: block;
		text-align: left;
		font-size: var(--fs-sp-16);
		position: relative;
		border-bottom: 1px solid #ebebeb;
	}
	.gnav-wrap ul#gnav > li > .is-trigger.is-open > a {
		border-bottom: 1px solid transparent;
	}
	.gnav-wrap ul#gnav > li > a::after {
		content: '';
		width: 4vw;
		height: 1vw;
		background: url('../../img/common/icon_arrow_right_g.svg') center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 0.5vw);
		right: 2.4vw;
	}

	/* dropdown menu */
	.dropdown-menu-wrap {
		width: 100%;
		display: none;
		padding: 0;
		border-radius: 0;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		position: relative;
		top: auto;
		left: auto;
	}

	.is-dropdown .is-trigger {
		width: 100%;
		height: auto;
		display: block;
		padding-right: 0 !important;
		position: relative;
		cursor: pointer;
	}
	.is-dropdown .is-trigger::after {
		content: '';
		width: 3vw;
		height: 2vw;
		background: url('../../img/common/icon_arrow_down_g.svg') center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 1vw);
		right: 8vw;
		transition: 0.3s ease-in-out;
	}

	.dropdown-menu-ttl {
		width: 90%;
		margin: 0 auto;
		border-bottom: 1px solid #ebebeb;
	}
	.dropdown-menu-ttl:last-child {
		border-bottom: none;
	}
	.dropdown-menu-ttl a {
		display: block;
		width: 100%;
		margin: 0 auto;
		padding: 4vw 1vw;
		font-size: var(--fs-sp-16);
		line-height: 1;
		position: relative;
	}
	.dropdown-menu-ttl a::after {
		content: '';
		width: 4vw;
		height: 1vw;
		background: url('../../img/common/icon_arrow_right_g.svg') center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 0.5vw);
		right: 2.4vw;
	}

	/* ENTRY btn */
	.entry-btn-sp {
		padding: 2vw 1vw;
	}
	.header-entry-btn {
		height: auto;
		padding: 3vw 1vw;
		border-radius: 2vw;
		text-align: center;
		position: relative;
		cursor: pointer;
		display: block;
		font-size: var(--fs-sp-16);
	}
	.header-entry-btn::before {
		content: none;
	}
	a.header-entry-btn::after {
		content: '';
		background: url('../../img/common/icon_link.svg') center center no-repeat;
		background-size: 100%;
		width: 4.5vw;
		height: 4.5vw;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		right: 4vw;
	}
	.dropdown-menu-ttl:has(.header-entry-btn) a {
		line-height: 1.4;
	}
	.header-entry-btn.is-open::before {
		transform: rotate(-180deg);
	}
	.dropdown-menu-ttl .header-entry-btn {
		background: var(--color-primary);
	}

	.header-entry-list-wrap {
		width: 215px;
		padding: 0 10px;
	}
	.header-entry-list-wrap li {
		width: 100%;
		margin: 0 auto;
		padding: 14px 0;
	}
	.header-entry-list-wrap li:last-child {
		max-width: 165px;
		border-top: 1px solid #ebebeb;
	}
	.header-entry-list-wrap li:last-child img {
		max-width: 97px;
		margin: 0 auto;
	}
}

/*---------- footer ----------*/
.sp-floating-btn {
	display: none;
}

footer {
	width: 100%;
	padding: 70px 0 0;
	background: var(--color-light-gray);
	position: relative;
	z-index: 990;
}

.footer-logo {
	width: 293px;
	display: block;
}

/* footer links */
.footer-links-wrap {
	width: 100%;
	margin: 30px auto 70px;
	padding-top: 40px;
	align-items: flex-start;
	justify-content: flex-start;
	border-top: 1px solid #d3d3d3;
	gap: 60px;
}
.footer-links {
	width: max-content;
}
.footer-links li.footer-link-parent {
	margin-bottom: 30px;
}
.footer-links li.footer-link-children {
	margin-bottom: 25px;
}
.footer-links li:last-child {
	margin-bottom: 0;
}

.footer-links li a {
	color: var(--color-black);
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1;
}
.footer-links li.footer-link-parent a {
	font-weight: 700;
}

.footer-bottom-links-wrap {
	width: 100%;
	padding: 10px 0;
	background: var(--color-dark-primary);
}
.footer-bottom-links {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	align-items: center;
	justify-content: flex-start;
}
.footer-bottom-links li {
	margin-right: 40px;
}
.footer-bottom-links li a {
	color: #fff;
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 1;
}

/* copyright */
.copyright-txt {
	padding: 20px 0;
	text-align: center;
	font-size: 1.2rem;
	font-weight: 500;
}
@media (max-width: 1170px) {
	.footer-links li a {
		font-size: 1.4rem;
	}
	.footer-links-wrap {
		gap: 40px;
	}
	.footer-links li.footer-link-parent {
		margin-bottom: 20px;
	}
	.footer-links li.footer-link-children {
		margin-bottom: 20px;
	}
}
@media (max-width: 768px) {
	.sp-floating-btn {
		width: 100%;
		height: 18vw;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #fff;
		box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.08);
		position: fixed;
		bottom: 0;
		left: 0;
		z-index: 997;
	}
	.sp-floating-btn .header-entry-btn {
		width: 86%;
		margin: 0 auto;
		padding: 3vw 1vw;
		color: #fff;
		position: relative;
	}
	.sp-floating-btn .header-entry-btn::after {
		content: '';
		width: 4vw;
		height: 1vw;
		background: url('../../img/common/icon_arrow_right_w.svg') center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 0.5vw);
		right: 4vw;
	}

	footer {
		width: 100%;
		padding: 12vw 0 0;
	}

	.footer-logo {
		width: 45.33vw;
		max-width: 340px;
	}

	/* footer links */
	.footer-links-wrap {
		width: 100%;
		height: 130vw;
		margin: 5vw auto 6vw;
		padding-top: 5vw;
		flex-direction: column;
		justify-content: flex-start;
		gap: 0;
	}
	.footer-links {
		width: 50%;
		margin-bottom: 5vw;
	}
	.footer-links li {
		margin-right: 0;
	}
	.footer-links li.footer-link-parent {
		margin-bottom: 3vw;
	}
	.footer-links li.footer-link-children {
		margin-bottom: 3vw;
		padding-left: 4vw;
	}

	.footer-links li a {
		font-size: var(--fs-sp-13);
	}

	.footer-bottom-links-wrap {
		width: 100%;
		padding: 2vw 0;
	}
	.footer-bottom-links {
		width: 90%;
		max-width: initial;
		margin: 0 auto;
		align-items: center;
		justify-content: flex-start;
	}
	.footer-bottom-links li {
		margin-right: 6vw;
	}
	.footer-bottom-links li a {
		font-size: 2.8vw;
	}

	/* copyright */
	.copyright-txt {
		padding: 4vw 0;
		font-size: 2.8vw;
	}
}

/*---------- コンテンツ レイアウト ----------*/
.main {
	padding-top: 109px;
}
.cont-inn {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}
.cont-inn-s {
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
}

.flex-box {
	display: flex;
	flex-wrap: wrap;
}
@media (max-width: 1270px) {
	.main {
		padding-top: 136px;
	}
}
@media (max-width: 768px) {
	.main {
		padding-top: 10.66vw;
	}
	.cont-inn,
	.cont-inn-s {
		width: 90%;
		max-width: initial;
		margin: 0 auto;
		position: relative;
	}
}

/*---------- font ----------*/
.txt-green {
	color: var(--color-primary);
}
.txt-jost {
	font-family: 'Jost', sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}
.txt-serif {
	font-family: 'Noto Serif JP', serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}

/*---------- テキスト ----------*/
.txt-indent {
	text-indent: -1em;
	padding-left: 1em;
	display: block;
}
.txt-small {
	font-size: 1.4rem;
}

@media (max-width: 768px) {
	.txt-small {
		font-size: var(--fs-sp-12);
	}
}

/*---------- ボタン、リンク ----------*/
.link-green {
	display: inline-block;
	padding: 0 42px 0 0;
	color: var(--color-primary);
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
	position: relative;
}
.link-green::after {
	content: '';
	width: 20px;
	height: 5px;
	background: url('../../img/common/icon_arrow_right_g.svg') center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 3px);
	right: 0;
}

/* green */
.btn-green {
	width: 80%;
	max-width: 215px;
	height: 50px;
	margin: 0 auto;
	padding: 0 42px 0 24px;
	display: flex;
	align-items: center;
	border-radius: 5px;
	text-align: left;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
	position: relative;
	color: #fff;
	background: var(--color-primary);
	transition: 0.3s ease-in-out;
}
a.btn-green {
	color: #fff;
}
.btn-green::after {
	content: '';
	width: 20px;
	height: 5px;
	background: url('../../img/common/icon_arrow_right_w.svg') center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 3px);
	right: 22px;
}

/* white */
.btn-white {
	width: 80%;
	max-width: 215px;
	height: 50px;
	margin: 0 auto;
	padding: 0 42px 0 24px;
	display: flex;
	align-items: center;
	border-radius: 5px;
	text-align: left;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
	position: relative;
	color: var(--color-primary);
	background: #fff;
	transition: 0.3s ease-in-out;
}
a.btn-white {
	color: var(--color-primary);
}
.btn-white::after {
	content: '';
	width: 20px;
	height: 5px;
	background: url('../../img/common/icon_arrow_right_g.svg') center center no-repeat;
	background-size: 100%;
	position: absolute;
	top: calc(50% - 3px);
	right: 22px;
}
/* green arrow */
.arrow-g {
	display: block;
	position: absolute;
	width: 50px;
	height: 50px;
	background: var(--color-primary);
	border-radius: 15px 0 15px 0;
	position: absolute;
	bottom: 0;
	right: 0;
}
.arrow-g::after {
	content: '';
	width: 50px;
	height: 50px;
	background: url('../../img/common/icon_arrow_right_w.svg') center center no-repeat;
	background-size: 20px;
	position: absolute;
	bottom: 0;
	right: 0;
}

@media (max-width: 768px) {
	.link-green {
		display: inline-block;
		padding: 0 8vw 0 0;
		font-size: var(--fs-sp-14);
	}
	.link-green::after {
		content: '';
		width: 4vw;
		height: 1vw;
		top: calc(50% - 0.5vw);
		right: 0;
	}

	/* green */
	.btn-green {
		width: 59vw;
		max-width: initial;
		height: auto;
		margin: 0 auto;
		padding: 5vw 9vw 5vw 6vw;
		border-radius: 1vw;
		font-size: var(--fs-sp-14);
	}
	.btn-green::after {
		content: '';
		width: 5vw;
		height: 2vw;
		top: calc(50% - 1vw);
		right: 5vw;
	}

	/* white */
	.btn-white {
		width: 59vw;
		max-width: initial;
		height: auto;
		margin: 0 auto;
		padding: 5vw 9vw 5vw 6vw;
		border-radius: 1vw;
		font-size: var(--fs-sp-14);
	}
	.btn-white::after {
		content: '';
		width: 5vw;
		height: 2vw;
		top: calc(50% - 1vw);
		right: 5vw;
	}
	/* green arrow */
	.arrow-g {
		width: 10vw;
		height: 10vw;
		border-radius: 3vw 0 3vw 0;
	}
	.arrow-g::after {
		width: 10vw;
		height: 10vw;
		background-size: 4vw;
	}
}

/* モーダル
---------------------------------------------------------------------------- */
.modaal-inner-wrapper {
	padding: 80px 80px;
}

.modaal-wrapper .modaal-close {
	border: none;
	background: none;
	padding: 0;
	-webkit-appearance: none;
}

.modaal-close {
	position: absolute;
	right: -33px;
	top: -33px;
	color: #fff;
	cursor: pointer;
	opacity: 1;
	width: 22px;
	height: 22px;
	background: #fff;
	border-radius: 0;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.modaal-close:focus,
.modaal-close:hover {
	outline: 0;
	opacity: 0.7;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
	background: #fff;
}

.modaal-close span {
	position: absolute !important;
	clip: rect(1px 1px 1px 1px);
	clip: rect(1px, 1px, 1px, 1px);
	padding: 0 !important;
	border: 0 !important;
	height: 1px !important;
	width: 1px !important;
	overflow: hidden;
}

.modaal-close:after,
.modaal-close:before {
	display: block;
	content: ' ';
	position: absolute;
	top: 0;
	left: 11px;
	width: 2px;
	height: 25px;
	border-radius: 0;
	background: #fff;
	-webkit-transition: background 0.2s ease-in-out;
	transition: background 0.2s ease-in-out;
}

.modaal-container {
	background: transparent;
}

.modaal-content-container {
	padding: 0;
}

@media screen and (max-width: 767px) {
	.modaal-inner-wrapper {
		padding: 80px 25px;
	}
	.modaal-close {
		right: 0;
	}
}
