@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

@view-transition {
	navigation: auto;
}

/* common */
/* #region */
:root {
	--font-barl: "Barlow Condensed", sans-serif;
	--font-noto: "Noto Sans JP", sans-serif;
	--font-jost: "Jost", sans-serif;
	--font-rbik: "Rubik", sans-serif;
	--link-color: #0076FF;
	--corp-color: rgba(0, 59, 126, 1);
	/* --corp-color-hover: #459dff; */
	--corp-color-hover: #1558a5;
}

* {
	margin: 0;
	padding: 0;
	/* outline: 1px solid rgba(128, 128, 128, 0.1); */
}

html {
	font-size: 14px;
	font-family: sans-serif;
}

body {
	position: relative;

	min-width: 1200px;
	width: 100%;

	letter-spacing: normal;
}

section {
	min-width: 1400px;
}

.brakepoint {
	display: none;
}

@media (pointer: coarse) and (orientation: portrait),
(max-width: 900px) and (pointer: fine) {
	section {
		min-width: unset;
	}

	.brakepoint {
		display: unset;
	}

	.brakepoint_sp {
		display: none;
	}
}

.footernav {
	padding: 0 60px;
	margin: 0 auto;
	margin-top: 3rem;
	margin-bottom: 1rem;
	width: calc(100% - 100px);
	max-width: 1300px;
	font-weight: 600;
}

.footernav a {
	color: #000;
	font-family: var(--font-noto);
}

@media (pointer: coarse) and (orientation: portrait),
(max-width: 900px) and (pointer: fine) {
	html {
		text-size-adjust: none;
		font-size: 4vw;

		width: 100%;
		overflow-x: hidden;

		scroll-padding-top: 6vw;
		/* pagelinks.js */
	}

	body {
		min-width: unset;
	}

	.footernav {
		font-family: sans-serif;
		font-size: 0.8em;
		letter-spacing: 0.5vw;
		padding: 0;
		margin-top: 15vw;
		margin-bottom: 4vw;
		width: calc(100% - 2rem);
	}
}

/* #endregion */
/* -------------------- */

/* main */
/* #region */
.post_content.head {
	margin-top: 5rem;
	margin-bottom: 150px;
	text-align: center;
	font-family: var(--font-noto);
	text-align: center;
	width: 100%;
	position: relative;
}

.post_content.head div:first-child {
	color: #e3e3e3;
	font-size: 200px;
	font-weight: 600;
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
	position: absolute;
	left: 50%;
	transform: translate(-50%, -10px);
	z-index: -1;
}

.post_content.head div:first-child::after {
	content: '';
	margin-right: -0.08em;
}

.post_content.head div:last-child {
	font-size: 32px;
	font-weight: 500;
	letter-spacing: 0.45em;
}

.post_content.head div:last-child::after {
	content: '';
	margin-right: -0.45em;
}

.link_large a {
	display: block;
	background: var(--corp-color);
	font-size: 1.7rem;
	color: #fff !important;
	width: fit-content;
	min-width: 480px;
	border-radius: 999px;
	margin: 0 auto;
	margin-top: 50px;
	padding: 2.5rem;
	transition: background-color 0.3s ease;
}

.link_large a:hover {
	background: var(--corp-color-hover)
}

@media (pointer: coarse) and (orientation: portrait),
(max-width: 900px) and (pointer: fine) {
	.post_content.head {
		margin-top: 20vw;
		margin-bottom: unset;
		text-align: center;
		font-family: var(--font-noto);
		text-align: center;
		width: 100vw;
		height: 32vw;
		overflow: hidden;

		position: relative;
	}

	.post_content.head div:first-child {
		font-size: 5rem;
		letter-spacing: 0.08em;
		transform: translate(-50%, 100%);
	}

	.post_content.head div:first-child::after {
		content: '';
		margin-right: -0.08em;
	}

	.post_content.head div:last-child {
		font-size: 1.2rem;
		font-weight: 500;
		letter-spacing: 0.45em;
		transform: translate(0px, 120%);
	}

	.post_content.head div:last-child::after {
		content: '';
		margin-right: -0.45em;
	}

}

/* #endregion */
/* -------------------- */

/* content */
/* #region */
a {
	color: #000;
	text-decoration: none;
}

.post_content {
	width: 100%;
	height: auto;
	font-family: var(--font-noto);
	line-height: 1.7em;
}

.post_content a {
	font-family: var(--font-noto);
	text-decoration: none;
	color: var(--link-color);
}

.hoverpop {
	color: #fff !important;
	background: #000;
	transition: background-color 0.3s ease;
}

.hoverpop:hover {
	background: var(--corp-color-hover) !important;
}

@media (pointer: coarse) and (orientation: portrait),
(max-width: 900px) and (pointer: fine) {}

/* #endregion */
/* -------------------- */