@charset "utf-8";

/* CSS Document */
/* ----------------------------------------------------------------------------------------------------
 * Set
@media screen and (max-width: 1920px) {}
@media screen and (max-width: 1536px) {}
@media screen and (max-width: 1366px) {}
@media screen and (max-width: 1280px) {}
@media print, screen and (max-width: 1024px) {}
@media screen and (max-width: 560px) {}
---------------------------------------------------------------------------------------------------- */
:root {
	--color-default: #212121;

	--color-white: #FFFFFF;
	--color-black: #212121;
	--color-gray: #F5F5F5;
	--color-darkgray: #9E9E9E;
	--color-bluegray: #ECEFF1;

	--color-bg: #FFFFFF;

	--color-red: #F44336;
	--color-yellow: #FFEE58;
	--color-blue: #095BA5;




	--ease-normal: all 0.08s linear;
	--ease-fast: all 0.04s linear;
	--ease-slow: all 0.12s linear;

	--size-normal: 1em;
	--size-large: 1.13em;
	--size-xlarge: 1.27em;
	--size-2xlarge: 1.42em;
	--size-3xlarge: 1.60em;
	--size-4xlarge: 1.80em;
	--size-5xlarge: 2.03em;

	--size-small: 0.89em;
	--size-xsmall: 0.79em;
	--size-2xsmall: 0.70em;
	--size-3xsmall: 0.62em;

	--weight-thin: 400;
	--weight-normal: 500;
	--weight-bold: 700;
	--weight-xbold: 800;

	--line-height-narrow: 1.6;
	--line-height-normal: 1.8;
	--line-height-wide: 2.0;

	--border-radius-narrow: 0.32rem;
	--border-radius-normal: 0.64rem;
	--border-radius-wide: 0.96rem;

	--border-width-thin: 1px;
	--border-width-normal: 2px;
	--border-width-thick: 3px;

	--padding-section-narrow: 6.4em;
	--padding-section-normal: 8em;
	--padding-section-wide: 11.2em;

}

@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {
	:root {

		--padding-section-narrow: 4.8em;
		--padding-section-normal: 6.4em;
		--padding-section-wide: 8.0em;
	}

}

@media screen and (max-width: 560px) {}


/* ----------------------------------------------------------------------------------------------------
 * Common
---------------------------------------------------------------------------------------------------- */
html,
body {
	width: 100%;
	text-align: center;
	color: var(--color-default);
	font-family: "Lato", "Noto Sans JP", sans-serif;
	font-size: 17px;
	font-weight: var(--weight-normal);
	line-height: var(--line-height-normal);
	letter-spacing: 0.02em;
	overflow-wrap: break-word;
	background-color: var(--color-bg);
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	font-family: inherit;
	font-weight: inherit;
}

body.loadAct * {
	transition: none !important;
}

.noselect,
.noselect * {
	-ms-user-select: none;
	-moz-user-select: -moz-none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

h1,
h2,
h3,
h4,
th,
small {
	font-weight: var(--weight-normal);
	font-size: 100%;
}

a,
button {
	outline: none;
	transition: var(--ease-normal);
}

*:focus {
	outline: none;
}

a {
	color: var(--color-default);
}

a:not(.not):hover {
	color: var(--color-red);
}

a:not(.not) .photo,
a:not(.not) .image,
a:not(.not) img {
	transition: var(--ease-normal);
}

a:not(.not):hover .photo,
a:not(.not):hover .image,
a:not(.not):hover img {
	filter: brightness(64%);
}

ol,
ul {
	list-style: none;
}

img,
svg {
	max-width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	vertical-align: middle;
}

header,
footer,
div,
ul,
li,
h1,
h2,
h3,
nav,
button,
blockquote,
dt,
dd,
figure,
section {
	position: relative;
}

p,
a,
span {
	position: relative;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

.clear::after {
	content: '';
	display: block;
	clear: both;
}

.none {
	display: none;
}

p {
	margin-bottom: 1.6em;
}

p:not(.not):last-child,
ul:not(.not):last-child,
ol:not(.not):last-child,
li:not(.not):last-child,
figure:not(.not):last-child,
table:not(.not):last-child,
blockquote:not(.not):last-child {
	margin-bottom: 0 !important;
}

mark {
	background-color: var(--color-yellow);
}

label {
	display: inline-block;
}

sup {
	font-weight: var(--weight-normal);
	font-size: var(--size-2xsmall);
	padding: 0 0.2em;
	vertical-align: middle;
}

strong,
.text-bold {
	font-weight: var(--weight-bold);
}

cite {
	font-style: normal;
}

.text-normal {
	font-weight: var(--weight-normal);
}

.text-underline {
	text-decoration: underline;
}

.text-small {
	font-size: var(--size-small);
}

.text-xsmall {
	font-size: var(--size-xsmall);
}

.text-2xsmall {
	font-size: var(--size-2xsmall);
}

.text-3xsmall {
	font-size: var(--size-3xsmall);
}


.text-large {
	font-size: var(--size-large);
}

.text-xlarge {
	font-size: var(--size-xlarge);
}

.text-2xlarge {
	font-size: var(--size-2xlarge);
}

.text-3xlarge {
	font-size: var(--size-3xlarge);
}

.text-4xlarge {
	font-size: var(--size-4xlarge);
}

.text-5xlarge {
	font-size: var(--size-5xlarge);
}

.text-gray {
	color: var(--color-darkgray);
}

.text-red {
	color: var(--color-red);
}

.text-white {
	color: var(--color-white);
}

.text-vertical {
	writing-mode: vertical-rl;
	text-align: left;
}

.in-center {
	text-align: center !important;
}

.in-right {
	text-align: right !important;
}

.in-left {
	text-align: left !important;
}

.pos-center {
	display: flex;
	justify-content: center;
	align-items: center;
}


.nowrap {
	white-space: nowrap;
}

.block {
	display: block;
}

.inline-block {
	display: inline-block;
}

.inline {
	display: inline;
}

.block-note {
	padding-left: 1em;
	text-indent: -1em;
}

.block-note::before {
	content: '※';
}

.bg-white {
	background-color: var(--color-white);
}

.bg-gray {
	background-color: var(--color-gray);
}

.margin-bt0 {
	margin-bottom: 0 !important;
}

.margin-bt02 {
	margin-bottom: 0.2em !important;
}

.margin-bt04 {
	margin-bottom: 0.4em !important;
}

.margin-bt06 {
	margin-bottom: 0.6em !important;
}

.margin-bt08 {
	margin-bottom: 0.8em !important;
}

.margin-bt10 {
	margin-bottom: 1.0em !important;
}

.margin-bt12 {
	margin-bottom: 1.2em !important;
}

.margin-bt14 {
	margin-bottom: 1.4em !important;
}

.margin-bt16 {
	margin-bottom: 1.6em !important;
}

.margin-bt18 {
	margin-bottom: 1.8em !important;
}

.margin-bt20 {
	margin-bottom: 2.0em !important;
}

.margin-bt22 {
	margin-bottom: 2.2em !important;
}

.margin-bt24 {
	margin-bottom: 2.4em !important;
}

.list-disc {
	list-style: disc;
	margin-left: 1.4em;
	margin-bottom: 1.6em;
}

.list-decimal {
	list-style: decimal;
	margin-left: 1.6em;
	margin-bottom: 1.6em;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
	border: var(--border-width-thin) solid var(--color-default) !important;
	background-color: var(--color-white) !important;
	line-height: var(--line-height-narrow) !important;
	border-radius: var(--border-radius-narrow) !important;
	color: var(--color-default) !important;
	padding-left: 0.6em !important;
	padding-right: 0.6em !important;
	padding-top: 0.4em !important;
	padding-bottom: 0.4em !important;
	max-width: 100% !important;
	transition: var(--ease-normal) !important;
	display: inline-block !important;
	font-size: inherit !important;
}

textarea {
	width: 100% !important;
	height: 12.0em !important;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus {
	box-shadow: inset 0px 0px 4px rgba(0, 0, 0, 0.16);
	background-color: var(--color-gray) !important;
}

select {
	border: var(--border-width-thin) solid var(--color-default) !important;
	background-color: var(--color-white) !important;
	line-height: var(--line-height-narrow) !important;
	border-radius: var(--border-radius-narrow) !important;
	color: var(--color-default) !important;
	padding-left: 0.6em !important;
	padding-right: 0.6em !important;
	padding-top: 0.6em !important;
	padding-bottom: 0.6em !important;
	max-width: 100% !important;
	transition: var(--ease-normal) !important;
	display: inline-block !important;
	font-size: inherit !important;
}

.pd {
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	padding-left: 8rem;
	padding-right: 8rem;
	width: 100%;
	max-width: 88rem;
}

.pd.narrow {
	max-width: 72rem;
}

.pd.wide {
	max-width: 104rem;
}

.pd.full {
	max-width: none;
}

.show-tb,
.show-sp {
	display: none !important;
}

.hide-tb,
.hide-sp {}

@media screen and (max-width: 1920px) {

	html,
	body {
		font-size: 16px;
	}
}

@media screen and (max-width: 1280px) {
	.pd {
		padding-left: 4.8rem;
		padding-right: 4.8rem;
	}
}

@media print,
screen and (max-width: 1024px) {
	.pd {
		padding-left: min(4.8rem, 6.4vw);
		padding-right: min(4.8rem, 6.4vw);
	}

	.show-tb {
		display: inline !important;
	}

	.show-tb.block {
		display: block !important;
	}

	.show-tb.inline-block {
		display: inline-block !important;
	}

	.hide-tb {
		display: none;
	}
}

@media screen and (max-width: 560px) {

	html,
	body {
		font-size: 15px;
	}

	.show-sp {
		display: inline !important;
	}

	.show-sp.block {
		display: block !important;
	}

	.show-sp.inline-block {
		display: inline-block !important;
	}

	.hide-sp {
		display: none;
	}
}

#wrap {
	width: 100%;
	max-width: 100vw;
	overflow: clip;
	display: grid;
	grid-template-rows: auto 1fr auto;
	min-height: 100vh;
	min-height: 100lvh;
}


@media screen and (max-width: 1920px) {}

@media screen and (max-width: 1536px) {}

@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {}

/* ----------------------------------------------------------------------------------------------------
 * Common (add)
---------------------------------------------------------------------------------------------------- */

@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {}


/* ----------------------------------------------------------------------------------------------------
 * Loading
---------------------------------------------------------------------------------------------------- */

#loading {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	height: 100lvh;
	width: 100%;
	z-index: 9000;
	background-color: var(--color-white);
	transition: all 0.4s linear;
	align-items: center;
	justify-content: center;
}

body.load-end #loading {
	opacity: 0;
	visibility: hidden;
}

body#home #loading .inner {
	width: 4.8em;
	max-width: 16vw;
	aspect-ratio: 1;
	border-radius: 100vh;
	background-image: conic-gradient(rgba(21, 21, 21, 0), rgba(21, 21, 21, 1));
	animation: loading 1.6s linear infinite;
}

body#home #loading .inner::before {
	content: '';
	display: block;
	position: absolute;
	aspect-ratio: 1;
	border-radius: 100vh;
	width: 100%;
	background-color: var(--color-white);
	transform: scale(0.88);
}

body#home.load-end #loading .inner {
	display: none;
}


@keyframes loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);

	}
}

@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {}


/* ----------------------------------------------------------------------------------------------------
 * Header
---------------------------------------------------------------------------------------------------- */

header {
	display: grid;
	grid-template-columns: auto 1fr;
	padding-right: 1.4em;
	z-index: 10000;
}

header .logo {
	width: 24em;
	padding-top: 1.4em;
	padding-bottom: 1.3em;
	padding-left: 1.6em;
}

header .logo {
	width: 24em;
}

header .menu {
	display: flex;
	justify-content: flex-end;
	height: 100%;
}

header .menu a {
	display: flex;
	align-items: center;
	height: 100%;
	font-weight: var(--weight-bold);
	text-decoration: none;
	padding: 0 1.4em;
	letter-spacing: 0.03em;
}

@media screen and (min-width: 1281px) {

	body#lab header .menu li.lab a,
	body#festa header .menu li.festa a,
	body#info header .menu li.info a,
	body#news header .menu li.news a {
		background-color: var(--color-blue);
		color: var(--color-white);
	}
}

header .toggle {
	display: none;

}

@media screen and (max-width: 1920px) {}

@media screen and (max-width: 1536px) {}

@media screen and (max-width: 1366px) {
	header .logo {
		width: 22em;
	}

	header .menu a {
		padding: 0 1.2em;
	}

}

@media screen and (max-width: 1280px) {
	header nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		height: 100lvh;
		background-color: var(--color-white);
		opacity: 0;
		visibility: hidden;
		transition: all 0.4s ease;
	}

	body.show-menu header nav {
		opacity: 1;
		visibility: visible;
	}

	body.show-menu {
		overflow: hidden;
	}


	header .menu {
		justify-content: center;
		flex-direction: column;
		font-size: var(--size-large);
	}

	header .menu li a {
		justify-content: center;
		width: 24em;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
		padding: 1.2em 0;
	}


	header .toggle {
		display: block;
		width: 3.6em;
		aspect-ratio: 1;
		background-color: var(--color-black);
		position: fixed;
		top: 0.8em;
		right: 0.8em;
		border-radius: var(--border-radius-narrow);
		cursor: pointer;

	}

	header .toggle>span {
		display: block;
		position: absolute;
		left: 24%;
		right: 24%;
		background-color: var(--color-white);
		height: var(--border-width-normal);
		transition: all 0.4s ease;

	}

	header .toggle>span.line01 {
		top: 32%;
	}

	header .toggle>span.line02 {
		top: 50%;
		transform: translate(0, -50%);
	}

	header .toggle>span.line03 {
		bottom: 32%;
	}

	body.show-menu header .toggle>span.line01 {
		top: 50%;
		transform: translate(0, -50%) rotate(225deg);

	}

	body.show-menu header .toggle>span.line02 {
		left: 50%;
		right: 50%;
	}

	body.show-menu header .toggle>span.line03 {
		bottom: 50%;
		transform: translate(0, 50%) rotate(-225deg);
	}



}

@media print,
screen and (max-width: 1024px) {
	header .logo {
		width: 20em;
		padding-top: 1.2em;
		padding-bottom: 1.1em;
		padding-left: 1.2em;
	}

	header .toggle {
		width: 3.2em;
		top: 0.65em;
		right: 0.65em;

	}


}

@media screen and (max-width: 560px) {
	header .logo {
		width: 18em;
		padding-top: 1.0em;
		padding-bottom: 1.0em;
		padding-left: 1.0em;
	}

	header .menu {
		font-size: var(--size-normal);
	}


	header .toggle {
		width: 3.0em;
		top: 0.50em;
		right: 0.50em;

	}


}

/* ----------------------------------------------------------------------------------------------------
 * Footer
---------------------------------------------------------------------------------------------------- */

footer small {
	display: block;
	background-color: var(--color-blue);
	color: var(--color-white);
	text-align: center;
	font-size: var(--size-small);
	padding: 0.8em;
	font-weight: var(--weight-thin);
}

@media screen and (max-width: 1920px) {}

@media screen and (max-width: 1536px) {}

@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {
	footer small {
		font-size: var(--size-xsmall);
	}

}

/* ----------------------------------------------------------------------------------------------------
 * Page (Common)
---------------------------------------------------------------------------------------------------- */

.list-news {
	display: grid;
	grid-template-columns: auto 1fr;
	line-height: var(--line-height-narrow);
	gap: 1.2em 1.2em;
}

.list-info {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3.2em;
	line-height: var(--line-height-narrow);
}

.list-info a {
	display: block;
	line-height: var(--line-height-narrow);
	text-decoration: none
}

.list-info a .image {
	margin-bottom: 0.8em;
}

.list-info a .image img {
	width: 100%;
	aspect-ratio: 3/ 2;
	border-radius: var(--border-radius-normal);
	object-fit: cover;
}

.list-info a .date {
	font-size: var(--size-small);
	margin-bottom: 0.2em;
}

.list-info a .title {
	font-weight: var(--weight-bold);
}


.list-more {
	display: grid;
	grid-template-columns: auto 1fr;
	border-top: var(--border-width-thin) solid var(--color-black);
}

.list-more dt,
.list-more dd {
	border-bottom: var(--border-width-thin) solid var(--color-black);
	padding: 1.2em 1.6em;
}

.list-more dt {
	background-color: var(--color-gray);
	font-weight: var(--weight-bold);
}

.list-more ul {
	display: grid;
	gap: 0.2em;
}


.icon-link {
	display: block;
	width: 4.4em;
	border: var(--border-width-normal) solid var(--color-black);
	border-radius: 100vh;
	padding: 0.2em;
	background-color: var(--color-white);
	transition: var(--ease-normal);
}

.icon-link:hover,
a:hover .icon-link {
	background-color: var(--color-black);
}

.icon-link:hover img,
a:hover .icon-link img {
	filter: brightness(0) invert(1) !important;
}





.icon-link img {
	width: 100%;

}


.link-entry {
	font-size: var(--size-small);
	display: inline-block;
	background-color: var(--color-black);
	border-radius: 100vh;
	color: var(--color-white) !important;
	text-decoration: none;
	padding: 0.4em 2.4em 0.5em 1.2em;
	background-image: url(../images/icon-arrow-white.svg);
	background-size: 1.6em auto;
	background-position: right 0.6em center;
}

.link-entry:hover {
	background-color: var(--color-red);
}


@media screen and (max-width: 1280px) {
	.list-info {
		gap: 3.2em 2.4em;
	}

}

@media print,
screen and (max-width: 1024px) {

	.list-info {
		gap: 3.2em 1.6em;
	}


	.icon-link {
		width: 3.2em;
	}

}

@media screen and (max-width: 560px) {
	.list-info {
		grid-template-columns: repeat(2, 1fr);
	}

}


/* ----------------------------------------------------------------------------------------------------
 * Home
---------------------------------------------------------------------------------------------------- */

.block-home-main {
	background-image: url(../images/home-main-photo.jpg);
	background-position: bottom center;
	padding-top: 12em;
	padding-bottom: 12em;
	font-size: var(--size-large);
}

.block-home-main::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/home-main-bg.png);
	background-size: auto 100%;
}


.block-home-main .copy {
	width: 52em;
	margin-bottom: 2.4em;
}

.block-home-main .text {
	font-weight: var(--weight-bold);
	color: var(--color-white);
	font-size: var(--size-2xlarge);
	text-align: center;
	display: inline-block;
	line-height: var(--line-height-wide);
	letter-spacing: 0.03em;
	padding-left: 4.8em;
	text-shadow: 0 0 12px rgba(0, 0, 0, 0.08);

}


@media screen and (max-width: 1920px) {
	.block-home-main {
		padding-top: 9.6em;
		padding-bottom: 9.6em;
		font-size: var(--size-normal);
	}

}

@media screen and (max-width: 1536px) {
	.block-home-main {
		padding-top: 8.0em;
		padding-bottom: 8.0em;
		font-size: var(--size-normal);
	}

}

@media screen and (max-width: 1366px) {
	.block-home-main {
		font-size: var(--size-small);
	}

}

@media screen and (max-width: 1280px) {
	.block-home-main {
		padding-top: 6.4em;
		padding-bottom: 6.4em;
	}

}

@media print,
screen and (max-width: 1024px) {
	.block-home-main {
		padding-top: 12em;
		padding-bottom: 12em;
		background-position: right 30% bottom;
	}

	.block-home-main::before {
		background-position: right 10% bottom;
	}


	.block-home-main .copy {
		width: 100%;
		margin-bottom: 3.2em;
	}

	.block-home-main .text {
		font-size: min(1.27em, 3.2vw);
		padding-left: 0;

	}


}

@media screen and (max-width: 560px) {

	.block-home-main {
		padding-top: 10em;
		padding-bottom: 10em;
	}

	.block-home-main::before {}

}


.title-home {
	margin-bottom: 4.8em;
}

.title-home .en {
	font-size: 5.85em;
	font-weight: var(--weight-thin);
	line-height: 1.0;
	background: linear-gradient(90deg, #095BA5 0%, #088DA6 100%);
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-fill-color: transparent;
	display: inline-block;


}

.title-home .ja {
	font-size: var(--size-large);
	font-weight: var(--weight-bold);
	display: block;
	line-height: var(--line-height-wide);
}


.block-home-bg {
	background-image: url(../images/home-bg.png);
	background-size: 24px auto;
	background-repeat: repeat;
	background-position: top center;
}


@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {
	.title-home .en {
		font-size: 4.62em;


	}

	.title-home .ja {
		font-size: var(--size-small);
	}

	.block-home-bg {
		background-size: 20px auto;
	}


}

@media screen and (max-width: 560px) {
	.title-home .en {
		font-size: 3.65em;


	}

	.title-home .ja {
		font-size: var(--size-xsmall);
	}

}


.wrap-home-news {
	display: grid;
	grid-template-columns: auto 1fr auto;
	padding-top: var(--padding-section-normal);
	padding-bottom: var(--padding-section-normal);
	gap: 4.8em;
}

.wrap-home-news .title-home {
	margin-bottom: 0;
}

.wrap-home-news>.link {
	display: flex;
	align-items: end;
}

@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {
	.wrap-home-news {
		grid-template-columns: 1fr auto;
		gap: 1.6em 2.4em;
	}

	.wrap-home-news h2 {
		grid-column: 1/ 3;
	}

}

@media screen and (max-width: 560px) {
	.wrap-home-news {
		grid-template-columns: 1fr;
	}

	.wrap-home-news h2 {
		grid-column: auto;
	}

	.wrap-home-news .icon-link {
		margin-left: auto;
	}


}




.wrap-home-concept {
	padding-top: var(--padding-section-normal);
	padding-bottom: var(--padding-section-normal);
}

.wrap-home-concept>* {
	z-index: 1;
}

.wrap-home-concept::before,
.wrap-home-concept::after {
	content: '';
	position: absolute;
	display: block;
}

.wrap-home-concept::before {
	top: 0;
	left: -10vw;
	right: -10vw;
	bottom: 0;
	background: linear-gradient(45deg, #095BA5 0%, #088EA6 100%);
	transform: rotate(-2deg);

}

.wrap-home-concept::after {
	left: -100vw;
	right: 54%;
	top: 3.2em;
	bottom: 2.4em;

	background-image: url(../images/home-concept-bg.png);
	background-size: contain;
	background-position: right center;
	opacity: 0.32;
	mix-blend-mode: soft-light;

}



.block-home-concept {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 4.8em;
}

.block-home-concept h2 {
	font-size: 2.89em;
	line-height: var(--line-height-narrow);
	color: var(--color-yellow);
	padding-top: 0.8em;
	font-weight: var(--weight-bold);

}

.block-home-concept>.text {
	color: var(--color-white);
}

.block-home-concept-point {
	border: var(--border-width-normal) dashed var(--color-white);
	border-radius: var(--border-radius-wide);
	padding: 2.8em 2.4em 2.0em;
	margin-top: 4.0em;
}

.block-home-concept-point h3 {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	background-color: var(--color-white);
	color: var(--color-blue);
	font-weight: var(--weight-bold);
	border-radius: 100vh;
	padding: 0.3em 1.0em 0.2em;
	transform: translate(-1.0em, -50%);
}

.block-home-concept-point .check {
	display: grid;
	gap: 0.2em;
	margin-bottom: 2.0em;
}

.block-home-concept-point .check li {
	background-image: url(../images/icon-check.svg);
	background-size: 1em auto;
	background-position: left top 0.4em;
	padding-left: 1.3em;
}

.block-home-concept-point .circle {
	display: flex;
	justify-content: center;
	gap: 1.2em;
	flex-wrap: wrap;
}

.block-home-concept-point .circle li {
	border: var(--border-width-normal) solid var(--color-white);
	border-radius: 100vh;
	font-size: var(--size-small);
	line-height: var(--line-height-narrow);
	width: 8.8em;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

@media screen and (max-width: 1536px) {
	.block-home-concept h2 {
		font-size: 2.57em;

	}

}

@media screen and (max-width: 1536px) {
	.block-home-concept h2 {
		font-size: var(--size-5xlarge);

	}
}


@media screen and (max-width: 1280px) {
	.wrap-home-concept {}

	.wrap-home-concept::after {
		left: 0;
		right: 0;
		background-position: center;

	}


	.block-home-concept {
		grid-template-columns: 1fr;
		gap: 2.4em;
	}

	.block-home-concept h2 br {
		display: none;
	}

}

@media print,
screen and (max-width: 1024px) {
	.block-home-concept h2 {
		font-size: var(--size-4xlarge);

	}

}

@media screen and (max-width: 560px) {

	.block-home-concept h2 {
		font-size: var(--size-3xlarge);

	}

	.block-home-concept-point {
		padding: 2.4em 2.0em 1.6em;
	}

	.block-home-concept-point .circle {
		gap: 0.8em;
	}

}


.wrap-home-program {
	padding-top: var(--padding-section-wide);
	padding-bottom: var(--padding-section-wide);
}

.list-home-program {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 5.6em;
	margin-bottom: var(--padding-section-normal);
}

.list-home-program li a {
	display: block;
	margin-bottom: 1.6em;
}

.list-home-program li .bg {
	padding-left: 2.4em;
}

.list-home-program li .title {
	padding-right: 8.0em;
	margin-top: -9%;
	display: n;
}

.list-home-program li .title img {
	width: 28em;
	display: n;
}

.list-home-program li .link {
	position: absolute;
	right: 0;
	bottom: 0;
}

.title-home-info {
	font-weight: var(--weight-bold);
	font-size: 2.28em;
}

.title-home-info::before {
	content: '';
	display: block;
	width: 2.0em;
	aspect-ratio: 84 / 69;
	background-size: contain;
	right: calc(100% - 0.6em);
	bottom: calc(100% - 0.6em);
	background-image: url(../images/line-orange01.svg);
	position: absolute;
}

.title-home-info+p {
	font-weight: var(--weight-bold);
	margin-bottom: 2.4em;
}

.block-home-info {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 2.4em;
}

.wrap-home-program .list-info li:nth-child(4) {
	display: none;
}

@media screen and (max-width: 1280px) {
	.list-home-program {
		gap: 4.8em;
	}

}

@media print,
screen and (max-width: 1024px) {
	.list-home-program {
		gap: 3.2em;
	}

	.title-home-info {
		font-size: var(--size-4xlarge);
	}

	.block-home-info {
		grid-template-columns: 1fr;
		gap: 1.2em;
	}

	.block-home-info .link .icon-link {
		margin-left: auto;
	}

}

@media screen and (max-width: 560px) {
	.title-home-info {
		font-size: var(--size-2xlarge);
	}

	.list-home-program {
		grid-template-columns: repeat(1, 1fr);
		gap: 4.8em;
	}

	.wrap-home-program .list-info li:nth-child(4) {
		display: block;
	}

	.block-home-info {
		gap: 0;
	}

	.block-home-info .link .icon-link {
		position: absolute;
		right: 0;
		bottom: 0;
	}


}


.wrap-home-theme {
	padding-top: var(--padding-section-wide);
	padding-bottom: var(--padding-section-normal);
	color: var(--color-white);
}

.wrap-home-theme>* {
	z-index: 1;
}

.wrap-home-theme::before,
.wrap-home-theme::after {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: -10vw;
	right: -10vw;
	bottom: 0;
	transform: rotate(-2deg);

}

.wrap-home-theme::before {
	background: linear-gradient(45deg, #095BA5 0%, #088EA6 100%);

}

.wrap-home-theme::after {
	background-image: url(../images/home-theme-bg.jpg);
	opacity: 0.64;
	mix-blend-mode: soft-light;

}

.wrap-home-theme h2 {
	margin-bottom: 4.0em;
}

.wrap-home-theme h2 img {
	width: 52em;
	max-width: 64%;
}

.wrap-home-theme .copy {
	font-size: var(--size-3xlarge);
	position: absolute;
	right: 4.8em;
	top: -0.8em;
	background-image: url(../images/home-theme-line.png);
	background-size: contain;
	background-position: bottom center;
	text-align: center;
	padding: 0 2.0em 2.0em;
	transform: rotate(16deg);
}

.block-home-theme {
	display: grid;
	grid-template-columns: repeat(2, 1fr);

}

.block-home-theme h3 {
	font-weight: var(--weight-bold);
	margin-bottom: 0.4em;
	font-size: var(--size-4xlarge);
	line-height: var(--line-height-narrow);
}


.block-home-theme>.item:first-child {
	border-right: var(--border-width-thin) solid var(--color-white);
	padding-right: 3.2em;
}

.block-home-theme>.item:last-child {
	padding-left: 3.2em;
}

@media screen and (max-width: 1536px) {}

@media screen and (max-width: 1366px) {
	.wrap-home-theme .copy {
		font-size: var(--size-2xlarge);
	}
}

@media screen and (max-width: 1280px) {
	.wrap-home-theme .copy {
		right: 3.2em;
	}

}

@media print,
screen and (max-width: 1024px) {
	.wrap-home-theme h2 {
		margin-bottom: 4.0em;
	}

	.wrap-home-theme h2 img {
		width: 52em;
		max-width: 80%;
	}

	.wrap-home-theme .copy {
		font-size: var(--size-normal);
		right: 1.6em;
		top: -4.0em;
	}

	.block-home-theme {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 3.2em;

	}

	.block-home-theme h3 {
		font-size: var(--size-2xlarge);
	}


	.block-home-theme>.item:first-child {
		border-right: none;
		padding-right: 0;
	}

	.block-home-theme>.item:last-child {
		padding-left: 0;
	}


}

@media screen and (max-width: 560px) {

	.wrap-home-theme h2 {
		margin-bottom: 2.4em;
	}

	.wrap-home-theme h2 img {
		max-width: 90%;
	}

	.wrap-home-theme .copy {
		font-size: var(--size-2xsmall);
		top: -6.4em;
	}

	.block-home-theme h3 {
		font-size: var(--size-xlarge);
	}


}


.wrap-home-about {
	padding-top: var(--padding-section-wide);
}

.wrap-home-about .title-home {
	margin-bottom: 0;
}

.block-home-about {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 4.8em;
	align-items: end;
}

.block-home-about>.image {
	grid-row: 1 / 3;
	grid-column: 2 / 3;
}

.block-home-about h3 {
	font-weight: var(--weight-bold);
	margin-bottom: 1.2em;
	font-size: var(--size-4xlarge);
	line-height: var(--line-height-narrow);
}

.block-home-about h3::before {
	content: '';
	position: absolute;
	aspect-ratio: 523 / 58;
	background-size: contain;
	width: 16em;
	max-width: 100%;
	top: 56%;
	left: -0.8em;
	background-image: url(../images/line-orange02.svg);
}

.block-home-about .block-note {
	font-size: var(--size-small);
}


@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {
	.block-home-about {
		grid-template-columns: repeat(1, 1fr);
		gap: 3.2em;
	}

	.block-home-about>.image {
		grid-row: auto;
		grid-column: auto;
		transform: translate(0, -0.8em);
		text-align: center;
	}

	.block-home-about>.image img {
		width: 32em;
	}


}

@media screen and (max-width: 560px) {}



@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {

	.block-home-about h3 {
		font-size: var(--size-2xlarge);
	}

}

@media screen and (max-width: 560px) {
	.block-home-about h3 {
		font-size: var(--size-xlarge);
	}

}


.wrap-home-message {
	padding-top: var(--padding-section-wide);
	padding-bottom: var(--padding-section-wide);

}

.block-home-message {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	padding: 2.0em 3.2em 3.2em;
	gap: 2.0em 4.2em;

}

.block-home-message h2 {
	grid-column: 1 / 3;
	font-size: var(--size-5xlarge);
	font-weight: var(--weight-bold);
	padding-top: 1.2em;
	line-height: var(--line-height-narrow);


}


.block-home-message h2::before {
	content: '';
	position: absolute;
	aspect-ratio: 674 / 120;
	background-size: contain;
	top: 0;
	left: -0.8em;
	width: 20em;
	max-width: 100%;
	background-image: url(../images/line-yellow01.svg);
}



.block-home-message>* {
	z-index: 1;
}

.block-home-message::before,
.block-home-message::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-white);
	border-radius: var(--border-radius-narrow);
}

.block-home-message::before {
	background-color: var(--color-gray);
	transform: rotate(0.6deg);

}

.block-home-message::after {
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
	transform: rotate(-0.2deg);
}


.block-home-message .image {
	width: 14em;
	float: right;
	margin-left: 1.2em;
	margin-bottom: 0.6em;
}

.block-home-message .image img {
	border-radius: 100vh;
}

.block-home-message p {
	margin-bottom: 1.2em;
}

.block-home-message .profile p {
	margin: 0;
	font-size: var(--size-xsmall);
	line-height: var(--line-height-narrow);
}

.block-home-message .profile p.name {
	font-size: var(--size-2xlarge);
	font-weight: var(--weight-bold);
	padding: 0.08em 0;
}

@media screen and (max-width: 1536px) {}

@media screen and (max-width: 1366px) {
	.block-home-message {
		display: grid;
		gap: 2.4em 3.2em;

	}

	.block-home-message .image img {
		width: 12em;
	}

}

@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {

	.block-home-message {
		grid-template-columns: repeat(1, 1fr);
		padding: 1.6em 2.4em 2.4em;
		gap: 0;

	}

	.block-home-message>.item:nth-child(2) {
		padding-top: 1.2em;
		border-bottom: var(--border-width-thin) dashed var(--color-black);
		padding-bottom: 1.8em;
		margin-bottom: 1.8em;
	}


	.block-home-message h2 {
		grid-column: auto;
		font-size: var(--size-3xlarge);


	}


	.block-home-message .profile p.name {
		font-size: var(--size-xlarge);
	}

}

@media screen and (max-width: 560px) {

	.block-home-message {
		padding: 1.6em 1.6em 1.6em;

	}

	.block-home-message h2 {
		font-size: var(--size-xlarge);


	}

	.block-home-message>.item {
		display: block;
		grid-template-columns: 1fr;
	}



	.block-home-message .image {
		width: 100%;
		text-align: center;
		margin-left: 0;
		margin-bottom: 0.8em;
		float: none;
	}



	.block-home-message .profile p.name {
		font-size: var(--size-large);
	}

}

/* ----------------------------------------------------------------------------------------------------
 * Page
---------------------------------------------------------------------------------------------------- */


.block-page-title {
	padding-top: 8em;
	padding-bottom: 7.2em;
	font-weight: var(--weight-bold);
}

body#lab .block-page-title {
	background-image: url(../images/lab-bg.png);
}

body#festa .block-page-title {
	background-image: url(../images/festa-bg.png);
}

.block-page-title h1 {
	margin-bottom: 4.0em;
}

.block-page-title h1 img {
	width: 100%;
}

.block-page-title .copy {
	font-size: 2.57em;
	margin-bottom: 0.4em;
	line-height: var(--line-height-narrow);
}

.block-page-title .more {
	font-size: var(--size-4xlarge);
}



@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {
	.block-page-title .copy {
		font-size: min(2.03em, 6.4vw)
	}

	.block-page-title .more {
		font-size: var(--size-xlarge);
	}


}

@media screen and (max-width: 560px) {
	.block-page-title {
		padding-top: 6.4em;
		padding-bottom: 4.8em;
		font-weight: var(--weight-bold);
	}

	.block-page-title .more {
		font-size: var(--size-large);
	}

}


.wrap-page-lead {
	padding-top: var(--padding-section-normal);
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 4.8em;
	z-index: 1;
	align-items: center;
}

.wrap-page-lead>.photo img {
	transform: rotate(-2deg);
}

.wrap-page-lead>.text {
	font-weight: var(--weight-bold);
	padding-bottom: 4.8em;
	font-size: var(--size-large);
}



.wrap-page-info {
	padding-top: var(--padding-section-narrow);
	padding-bottom: var(--padding-section-narrow);
}

.wrap-page-info::before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	top: -4.8em;
	bottom: 0;
	background-image: url(../images/home-bg.png);
	background-size: 24px auto;
	background-repeat: repeat;
	background-position: top center;
	border-top: var(--border-width-thin) solid #EEEEEE;
	border-bottom: var(--border-width-thin) solid #EEEEEE;

}



.block-page-info {
	border: var(--border-width-thick) dashed var(--color-black);
	border-radius: var(--border-radius-wide);
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	background-color: var(--color-white);

}

.block-page-info>.item {
	padding: 2.4em;
}

.block-page-info>.item:first-child {
	border-right: var(--border-width-thick) dashed var(--color-black);
}

.block-page-info h2 {
	font-weight: var(--weight-bold);
	font-size: var(--size-3xlarge);
	line-height: var(--line-height-narrow);
	margin-bottom: 1.3em;
}

.block-page-info h2::before {
	content: '';
	display: block;
	aspect-ratio: 460 / 57;
	background-size: contain;
	width: 14em;
	background-image: url(../images/line-yellow02.svg);
	position: absolute;
	left: -0.4em;
	top: 52%;
	max-width: 100%;
}

.block-page-info ul {
	display: grid;
	gap: 0.6em 1.6em;
}

.block-page-info ul.column2 {
	grid-template-columns: repeat(2, 1fr);
}

.block-page-info ul li {
	background-image: url(../images/icon-check-yellow.svg);
	background-size: 1.4em auto;
	background-position: left top;
	font-size: var(--size-large);
	padding-left: 1.8em;
	font-weight: var(--weight-bold);
	line-height: var(--line-height-narrow);
}

@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {
	.wrap-page-lead {
		grid-template-columns: 1fr;
		gap: 3.2em;
	}

	.wrap-page-info::before {
		top: 0;
		background-size: 20px auto;

	}

	.wrap-page-lead>.text {
		padding-bottom: 4.8em;
		font-size: var(--size-normal);
	}

	.block-page-info {
		grid-template-columns: repeat(1, 1fr);

	}



	.block-page-info>.item {
		padding: 2.0em;
	}

	.block-page-info>.item:first-child {
		border-right: none;
		border-bottom: var(--border-width-thick) dashed var(--color-black);
	}

	.block-page-info h2 {
		font-size: var(--size-2xlarge);
	}



	.block-page-info ul li {
		font-size: var(--size-normal);
	}



}

@media screen and (max-width: 560px) {

	.block-page-info>.item {
		padding: 1.6em;
	}


	.block-page-info h2 {
		font-size: var(--size-xlarge);
	}



	.block-page-info ul.column2 {
		grid-template-columns: repeat(1, 1fr);
	}




}

.wrap-page-more {
	padding-top: var(--padding-section-normal);
	padding-bottom: var(--padding-section-normal);
	display: grid;
	gap: var(--padding-section-narrow);
}

.block-page-more {}

.block-page-more h2 {
	font-size: var(--size-5xlarge);
	font-weight: var(--weight-bold);
	line-height: var(--line-height-narrow);
	margin-bottom: 1.4em;
}

.block-page-more h2>.inner {
	display: inline-block;
	border-bottom: var(--border-width-thick) solid black;
	padding-bottom: 0.1em;
}

.block-page-more>.inner {
	padding-left: 2.4em;
}


@media screen and (max-width: 1536px) {}

@media screen and (max-width: 1366px) {}

@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {
	.block-page-more h2 {
		font-size: var(--size-4xlarge);
	}

}

@media screen and (max-width: 560px) {
	.block-page-more h2 {
		font-size: var(--size-3xlarge);
	}

	.block-page-more>.inner {
		padding-left: 0;
	}


}

.wrap-page-photo {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.wrap-page-photo img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;

}

@media screen and (max-width: 1536px) {
	.wrap-page-photo {
		grid-template-columns: repeat(2, 1fr);
	}

	.wrap-page-photo img:nth-child(3) {
		display: none;
	}

}


@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {}


.list-timeline {
	display: grid;
	grid-template-columns: auto 1fr;
	line-height: var(--line-height-narrow);
	gap: 1.2em 1.2em;
	align-items: start;
	font-size: var(--size-large);
	position: relative;
}

.list-timeline::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 0.35em;
	bottom: 0;
	width: var(--border-width-thick);
	background-color: rgba(0, 0, 0, 0.10);
}

.list-timeline dt,
.list-timeline dd {}

.list-timeline dt::before {
	content: '';
	display: block;
	width: 0.8em;
	aspect-ratio: 1;
	border: var(--border-width-thick) solid var(--color-blue);
	color: white;
	border-radius: 100vh;
	position: absolute;
	left: 0;
	top: 0.4em;
	background-color: var(--color-white);
}


.list-timeline dt {
	font-weight: bold;
	padding-left: 1.3em;
}


@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {}

@media screen and (max-width: 560px) {
	.list-timeline {
		font-size: var(--size-normal);
	}


}




.block-page-more h3 {
	font-weight: var(--weight-bold);
	line-height: var(--line-height-narrow);
	margin-bottom: 0.6em;
}

.block-page-more h3::before {
	content: '';
	display: block;
	aspect-ratio: 135 / 106;
	background-image: url(../images/line-yellow03.svg);
	background-size: contain;
	position: absolute;
	left: -1.6em;
	top: -1.0em;
	width: 8em;
}

.block-page-more h3 .main {
	display: block;
	font-size: var(--size-4xlarge);
	margin-bottom: 0.1em;
}

.block-page-more h3 .sub {
	display: block;
	font-size: var(--size-xlarge);
}

.block-page-more .block-page-profile+h3 {
	margin-top: 4.8em;
}

.block-page-profile {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 3.2em;
	align-items: center;
}


.block-page-profile .photo img {
	width: 22em;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: var(--border-radius-normal);
}

.block-page-profile p {
	font-size: var(--size-small);

}

.block-page-profile-name {
	font-weight: var(--weight-bold);
	line-height: var(--line-height-narrow);
	margin-bottom: 1.2em;
}

.block-page-profile-name .position {
	font-size: var(--size-small);
}


.block-page-profile-name .name {
	font-size: var(--size-4xlarge);
	padding-top: 0.1em;
}

.block-page-profile-name .name .honor {
	font-size: 1rem;
	padding-left: 0.2em;
}

@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {
	.block-page-more h3 .main {
		font-size: var(--size-3xlarge);
	}

	.block-page-more h3 .sub {
		font-size: var(--size-large);
	}

	.block-page-more h3::before {
		width: 6.4em;
	}

	.block-page-profile {
		grid-template-columns: 1fr;
		gap: 2.0em;
	}

	.block-page-profile-name .name {
		font-size: var(--size-3xlarge);
	}


	.block-page-profile .photo {
		margin-top: 0.8em;
	}

	.block-page-profile .photo img {
		width: 20em;
		max-width: 80%;
	}



}

@media screen and (max-width: 560px) {

	.block-page-more h3::before {
		width: 4.8em;
		left: -1.2em;
	}


	.block-page-more h3 .main {
		font-size: var(--size-2xlarge);
	}

	.block-page-more h3 .sub {
		font-size: var(--size-normal);
	}


}


.block-page-coming {
	padding-top: var(--padding-section-normal);
	padding-bottom: var(--padding-section-normal);
	text-align: center;
}

.block-page-coming h2 {
	font-weight: var(--weight-xbold);
	font-size: 2.89em;
	margin-bottom: 1.0em;
}

.block-page-coming h2::before {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	width: 12em;
	aspect-ratio: 460 / 57;
	background-image: url(../images/line-yellow02.svg);
	background-size: contain;
	transform: translate(-50%, 0);
	top: 1em;
	max-width: 100%;

}

.block-page-coming p {
	text-align: center;
	font-weight: var(--weight-bold);
	font-size: var(--size-xlarge);
}

@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {
	.block-page-coming h2 {
		font-size: 2.57em;
	}

	.block-page-coming p {
		font-size: var(--size-large);
	}


}

@media screen and (max-width: 560px) {
	.block-page-coming h2 {
		font-size: 2.28em;
	}

	.block-page-coming p {
		font-size: var(--size-normal);
	}

}


.block-info-title {
	background: linear-gradient(45deg, #095BA5 0%, #088EA6 100%);
	padding-top: 4.8em;
	padding-bottom: 4.8em;
	color: var(--color-white);
	line-height: var(--line-height-narrow);
}

.block-info-title::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/info-title-bg.jpg);
	opacity: 0.2;
	mix-blend-mode: soft-light;
}



.block-info-title-inner {
	font-weight: var(--weight-bold);
	text-align: center;
}

.block-info-title-inner>.sub {
	display: inline-block;
	background-color: var(--color-white);
	color: var(--color-blue);
	padding: 0.4em 1.2em 0.3em;
	border-radius: 100vh;
	margin-bottom: 0.6em;
}

.block-info-title-inner>.main {
	font-size: 2.57em;
	display: block;
}

.block-info-title .more {
	border: var(--border-width-normal) dashed var(--color-white);
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	border-radius: var(--border-radius-wide);
	margin-top: 2.0em;


}

.block-info-title .more .title {
	padding: 1.4em;
	line-height: var(--line-height-narrow);
	font-size: var(--size-3xlarge);
}

.block-info-title .more .text {
	padding: 2.0em;
	border-left: var(--border-width-normal) dashed var(--color-white);
}


.wrap-info-entry {
	padding-top: var(--padding-section-narrow);
	padding-bottom: var(--padding-section-narrow);
}


@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {

	.block-info-title-inner>.sub {}

	.block-info-title-inner>.main {
		font-size: var(--size-5xlarge);
	}



	.block-info-title .more {
		grid-template-columns: 1fr;


	}

	.block-info-title .more .title {
		padding: 0.8em;
		font-size: var(--size-2xlarge);
		text-align: center;
	}

	.block-info-title .more .text {
		border-left: none;
		border-top: var(--border-width-normal) dashed var(--color-white);
	}

	.wrap-info-entry .list-info {
		grid-template-columns: repeat(2, 1fr);
	}




}

@media screen and (max-width: 560px) {

	.block-info-title {
		padding-top: 3.2em;
		padding-bottom: 3.2em;
	}


	.block-info-title-inner>.sub {
		font-size: var(--size-small);
	}

	.block-info-title-inner>.main {
		font-size: var(--size-3xlarge);
	}

	.block-info-title .more .title {
		font-size: var(--size-xlarge);
		text-align: center;
	}

	.block-info-title .more .text {
		padding: 1.6em;
	}

	.wrap-info-entry .list-info {
		grid-template-columns: repeat(1, 1fr);
	}


}









.block-news-title {
	background: linear-gradient(45deg, #095BA5 0%, #088EA6 100%);
	padding-top: 4.8em;
	padding-bottom: 4.8em;
	color: var(--color-white);
	line-height: var(--line-height-narrow);
}

.block-news-title::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/news-title-bg.jpg);
	opacity: 0.2;
	mix-blend-mode: soft-light;
}



.block-news-title-inner {
	font-weight: var(--weight-bold);
	text-align: center;
	font-size: 2.57em;
	display: block;
}


.wrap-news-entry {
	padding-top: var(--padding-section-narrow);
	padding-bottom: var(--padding-section-narrow);
}


@media screen and (max-width: 1280px) {}

@media print,
screen and (max-width: 1024px) {


	.block-news-title-inner {
		font-size: var(--size-5xlarge);
	}






}

@media screen and (max-width: 560px) {

	.block-news-title {
		padding-top: 3.2em;
		padding-bottom: 3.2em;
	}



	.block-news-title-inner {
		font-size: var(--size-3xlarge);
	}



}


.wrap-entry {
	padding-top: var(--padding-section-narrow);
	padding-bottom: var(--padding-section-normal);
}

.wrap-entry .block-entry-date {}

.wrap-entry h1 {
	line-height: var(--line-height-narrow);
	font-size: var(--size-5xlarge);
	font-weight: var(--weight-bold);
	margin-bottom: 0.8em;
}

.wrap-entry .block-entry-eyecatch {
	margin-bottom: 3.2em;
	margin-left: -3.2rem;
	margin-right: -3.2rem;
}

.wrap-entry .block-entry-eyecatch img {
	width: 100%;
	border-radius: var(--border-radius-normal);
}



.wrap-entry h2 {
	line-height: var(--line-height-narrow);
	font-size: var(--size-3xlarge);
	font-weight: var(--weight-bold);
	margin-bottom: 0.8em;
	margin-top: 2.0em;
	border-bottom: var(--border-width-normal) dotted var(--color-black);
	padding-bottom: 0.2em;
}

.wrap-entry h3 {
	line-height: var(--line-height-narrow);
	font-size: var(--size-xlarge);
	font-weight: var(--weight-bold);
	margin-bottom: 0.4em;
	margin-top: 2.0em;
}

.wrap-entry ul {
	list-style: disc;
	margin-left: 1.4em;
	margin-bottom: 1.6em;
}

.wrap-entry ol {
	list-style: decimal;
	margin-left: 1.6em;
	margin-bottom: 1.6em;
}

.wrap-entry .wp-block-image {
	margin-top: 2.4em;
	margin-bottom: 2.4em;
	text-align: center;
}

.wrap-entry .wp-block-image img {
	max-width: 80%;
}

.wrap-entry .wp-block-image figcaption {
	font-size: var(--size-small);
	line-height: var(--line-height-narrow);
	padding-top: 0.4em;
}


.wrap-entry .wp-block-embed-youtube {
	margin-top: 2.4em;
	margin-bottom: 2.4em;
	text-align: center;
}

.wrap-entry .wp-block-embed-youtube iframe {
	width: 100%;
	max-width: 80%;
	height: auto;
	aspect-ratio: 16 / 9;
}


.wrap-entry blockquote {
	background-color: var(--color-gray);
	padding: 2.0em;
	margin-top: 2.4em;
	margin-bottom: 2.4em;
}

.wrap-entry blockquote cite {
	font-size: var(--size-small);
	text-align: right;
	line-height: var(--line-height-narrow);
	font-style: italic;
}

.wp-pagenavi {
	margin-top: 4.8em;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	font-size: var(--size-small);
	line-height: 1;
	gap: 4px;
}

.wp-pagenavi>* {
	border: var(--border-width-thin) solid var(--color-black) !important;
	padding: 0.6em 0.6em !important;
	margin: 0 !important;
	text-decoration: none !important;
	text-align: center !important;

}

.wp-pagenavi>.current {
	font-weight: var(--weight-normal) !important;
	color: var(--color-white) !important;
	background-color: var(--color-black);
}


@media screen and (max-width: 1280px) {
	.wrap-entry .block-entry-eyecatch {
		margin-left: -2.4rem;
		margin-right: -2.4rem;
	}

}

@media print,
screen and (max-width: 1024px) {
	.wrap-entry .block-entry-eyecatch {
		margin-left: -6.4vw;
		margin-right: -6.4vw;
	}

	.wrap-entry .block-entry-eyecatch img {
		border-radius: 0;
	}

	.wrap-entry h1 {
		font-size: var(--size-4xlarge);
	}

	.wrap-entry h2 {
		font-size: var(--size-2xlarge);
	}

	.wrap-entry h3 {
		font-size: var(--size-large);
	}

	.wrap-entry blockquote {
		padding: 1.6em;
	}


}

@media screen and (max-width: 560px) {
	.wrap-entry h1 {
		font-size: var(--size-3xlarge);
	}

	.wrap-entry .wp-block-image img {
		max-width: 100%;
	}

	.wrap-entry .wp-block-embed-youtube iframe {
		max-width: 100%;
	}



}


.wrap-page-404 {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}