@charset "UTF-8";

/**
 * オリジナルcss
 */

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 62.5%;
}


body {
	margin: 0;
	overflow-x: hidden;
	font-family: "Noto Sans JP", 'メイリオ', 'Meiryo', 'ＭＳ ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
	font-weight: normal;
	font-size: 1.6rem;
	line-height: 1.8;
	color: var(--c1);
}

section {
	scroll-margin-top: 100px;

}

p,
a,
dt,
dd,
li,
dt,
dd,
dl,
th,
td,
caption {
	letter-spacing: 0.05em;
	margin: 0;
}

img {
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}

a,
a:hover,
a:link,
a:visited {
	color: var(--c1);
}

a:hover {
	opacity: 0.8;
}

dd {
	margin-inline-start: 0;
}

.inner {
	width: 100%;
	max-width: 1550px;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
}

.inner_800 {
	max-width: 830px;
}

.inner_1000 {
	max-width: 1110px;
}

.inner_1200 {
	max-width: 1230px;
}

.text_border_w {
	text-shadow: 0px 0px 2px #fff;
}

.view_pc {
	display: block;
}

.view_sp {
	display: none;
}

.br_sp {
	display: none;
}

.br_pc {
	display: inline;
}

.alignleft {
	text-align: left;
}

.aligncenter {
	text-align: center;
}

.alignright {
	text-align: right;
}

.clamprows_3 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

/* link button */

.link_button {

	a {
		display: block;
		width: fit-content;
		color: var(--c1);
		border: 1px solid var(--c1);
		background-color: #fff;
		padding: 0.75em 48px;
		text-decoration: none;
		font-size: 1.8rem;
		line-height: 1;
		position: relative;
		overflow: hidden;
		z-index: 1;
		transition: color 0.3s ease;
	}

	a:hover {
		color: #fff;
		opacity: 1;
	}

	a::before {
		display: block;
		content: "";
		position: absolute;
		inset: 0;
		background: var(--c1);
		transition: transform 0.3s ease;
		transform: scaleX(0);
		transform-origin: right;
		z-index: -1;
	}

	a:hover::before {
		transform: scaleX(1);
		transform-origin: left;
	}

	a::after {
		content: "＞";
		padding-left: 1em;
	}
}

.link_button_wh {
	a {
		color: #fff;
		border: 1px solid #fff;
		background-color: transparent;
	}

	a:hover {
		color: var(--c1);
	}

	a::before {
		background: #fff;
	}

}

.link_button_nb {

	a,
	span {
		background: none;
		color: var(--c1);
		padding: 0;
	}
}

.link_button_c {
	text-align: center;

	a,
	span {
		margin-left: auto;
		margin-right: auto;
	}
}

.link_button_r {
	text-align: right;

	a,
	span {
		margin-left: auto;
		margin-right: 0;
	}
}

/* wide button */
a.wide_button {
	display: block;
	width: 100%;
	margin: auto;
	margin-top: 100px;
	color: #fff;
	background-color: var(--c2);
	padding: 20px 30px;
	font-size: 2.4rem;
	line-height: 1;
	text-decoration: none;

	span {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 24px;
		width: 100%;
		border: 1px solid #fff;
		padding: 16px;
	}

	span::before {
		content: "";
		display: inline-block;
		width: 83px;
		aspect-ratio: 1;
		background-repeat: no-repeat;
		background-size: contain;
		background-position: center;
	}
}





/* ----- JavaScriptフェードイン ----- */
.js-fade {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s, visibility 0.8s, transform 0.8s;
	transform: translateY(20px);
}

.js-fade.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

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

	.top_content_header {

		.top_title_en {
			font-size: 1.4rem;
		}

		.top_title {
			font-size: 2.4rem;
			font-weight: normal;
			gap: 8px;

			&::before {
				width: 48px;
			}
		}

		p {
			font-size: 1.6rem;
		}
	}
}

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

	body {
		font-size: 1.4rem;
	}

	.inner {
		max-width: 560px;
	}

	.top_content_header {
		.top_title_en {
			font-size: 1rem;
		}

		.top_title {
			font-size: 2rem;
			margin-bottom: 24px;

			&::before {
				width: 32px;
			}
		}

		p {
			font-size: 1.2rem;
			font-weight: normal;
		}
	}

	.br_sp {
		display: inline;
	}

	.br_pc {
		display: none;
	}

	.view_pc {
		display: none;
	}

	.view_sp {
		display: block;
	}

	.link_button {
		margin-top: 24px;

		a {
			padding: 12px 32px;
			font-size: 1.4rem;
		}
	}

	/* wide button */
	a.wide_button {
		max-width: 480px;
		margin-top: 40px;
		padding: 16px 8px;
		font-size: 1.6rem;

		span {
			flex-direction: column;
			gap: 0;
			padding: 8px 0 24px;
		}

		span::before {
			width: 72px;
		}
	}
}

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