body {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 17px;
	line-height: 1.7;
	margin: 0;
	padding: 0;
	color: #000;
}
.fade-body {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.fade-body.fade-in {
  opacity: 1;
}

.no-select {
	user-select: none;
	pointer-events: none;
}
a[target="_blank"]::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-left: 6px;
	margin-right: 3px;
	background-image: url('../img/common_externallink.svg');
	background-size: contain;
	background-repeat: no-repeat;
}
a img {
	transition: opacity 0.3s ease;
}
a img:hover {
	opacity: 0.5;
}
.triangle-list {
	list-style: none;
	padding-left: 0;
	margin: 0;
}
.triangle-list li {
	position: relative;
	padding-left: 1.2em;
	margin-bottom: 6px;
}
.triangle-list li::before {
	content: "▶";
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 0.8em;
	color: #2885d6;
}
.lead {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 10px;
}
.txt-blue {
	color: #005197;
}
ol {
	 padding-left: 20px;
	 margin-bottom: 20px;
}
a {
	color: #2885d6;
	text-decoration: underline;
}
@media (max-width: 425px) {
	.lead {
		font-size: 26px;
	}
}
.txt-red {
	color: #eb1515;
	font-weight: 500;
}
/*---------------------------------------*/
header {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
	height: 80px;
}
.logo {
	margin-left: 28px;
}
nav {
	margin-right: 20px;
	font-weight: 500;
}
nav ul {
	list-style: none;
	display: flex;
	gap: 40px;
	margin: 0;
	padding: 0;
}
nav a {
	text-decoration: none;
	color: #000;
	transition: color 0.3s ease;
}
nav a:hover {
	color: #005197;
}
.button-blue {
	background-color: #005197;
	color: #fff;
	padding: 10px 20px;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}
.button-blue:hover {
	background-color: #fff;
	color: #005197;
	border: 1px solid #005197;
}
.message-type ,
.contact-type {
	width: 350px;
	padding-top: 20px;
	padding-bottom: 20px;
	margin: 0 auto;
	display: block;
	text-decoration: none;
	font-size: 17px;
	text-align: center;
}
@media (max-width: 425px) {
	.logo img {
		width: 80%;
	}
	.contact-type,
	.message-type {
		width: 85%;
		padding-top: 10px;
		padding-bottom: 10px;
		
	}
	.message-type a {
		width: 98%;
		padding-top: 10px;
		padding-bottom: 10px;
	}
}
/*---------------------------------------*/
.cta-section {
	background-color: #232d3c;
	color: #fff;
	padding: 80px 0 100px;
}
.cta-section h2 {
	font-size: 40px;
	margin: 0;
	text-align: center;
}
.cta-section .copy {
	font-size: 20px;
	margin-bottom: 50px;
	text-align: center;
}
.cta-boxes {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}
.cta-boxes a {
	max-width: 100%;
	width: 760px;
	height:340px;
}
.cta-box-link {
	display: block;
	background-size: cover;
	background-position: center;
	width: 240px;
	height: 200px;
	position: relative;
	color: #000;
	text-decoration: none;
	transition: filter 0.3s ease;
}
.cta-box-link:hover {
	filter: brightness(1.2);
}
.cta-labels {
	position: relative;
	padding-top: 40px;
	padding-left: 50px;
}
.cta-labels h3 {
	margin: 0;
	font-size: 40px;
}
.cta-labels .cta-en {
	margin: 0;
	margin-left: 4px;
	font-size: 20px;
}
.cta-button {
	display: inline-flex;
	align-items: center;
	position: relative;
	top: 50px;
	left: 485px;
	font-size: 20px;
}
.cta-button > .circle-arrow {
	width: 80px;
	height: 80px;
	border: 2px solid #000;
	margin: 20px;
	border-radius: 50%;
	text-align: center;
	line-height: 79px;
	font-size: 1.1rem;
}
@media (max-width: 1440px) {
	.cta-section {
		padding-left: 30px;
		padding-right: 30px;
	}
	.cta-boxes {
		margin: 0 auto;
	}
	.cta-button {
		top: 20px;
		left: 50px;
	}
}
@media (max-width: 425px) {
	.cta-section {
		padding: 40px 26px;
	}
	.cta-section h2 {
		font-size: 24px;
	}
	.cta-section .copy {
		font-weight: 300;
		font-size: 18px;
		margin-bottom: 30px;
	}
	.cta-labels {
		padding-top: 30px;
		padding-left: 40px;
	}
	.cta-button {
		left: 40px;
	}
}
/*---------------------------------------*/
.site-footer {
	background-color: #1c1c1c;
	color: #fff;
	font-size: 14px;
	padding: 60px 150px;
}
.footer-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	max-width: 1260px;
	margin: 0 auto;
}
.copyright {
	margin-top: 40px;
}
.address {
	flex: 2;
}
.sitemap {
	flex: 1;
}
.footer-block h4 a {
	font-size: 18px;
	color: #fff;
	text-decoration: none;
}
.footer-block img {
	margin-bottom: 16px;
}
.footer-block ul {
	list-style: none;
	padding: 0;
}
.footer-block ul li {
 margin-bottom: 15px;
}
.footer-block ul li a {
	color: #fff;
	font-size: 14px;
	color: #bbbbbb;
	text-decoration: none;
}
@media (max-width: 1024px) {
	.site-footer {
		padding: 60px 30px;
	}
	.footer-container {
		display: block;
	}
	.footer-block	{
		text-align: center;
	}
	.address {
		padding-bottom: 20px;
		border-bottom: 1px solid #fff;
	}
	.sitemap {
		border-bottom: 1px solid #fff;
	}
	.sitemap:last-child {
		border-bottom: none;
	}
	.footer-block h4 {
		margin-top: 30px;
	}
	.footer-block ul li {
		margin-bottom: 30px;
	}
	.copyright {
		text-align: center;
		font-weight: 300;
		letter-spacing: 2px;
		margin-bottom: 0;
	}
}
/*---------------------------------------*/
.pc {
	display: block;
}
.tab {
	display: none;
}
.sp {
	display: none;
}
@media (max-width: 1441px) {
	.pc {
		display: none;
	}
}
@media (max-width: 1024px) {
	.tab {
	display: block;
	}
}
@media (max-width: 425px) {
	.sp {
	display: block;
	}
}
@media (max-width: 1024px) {
	nav ul {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		background-color: #000000e9;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(-10px);
		transition: all 0.4s ease;
		z-index: 1000;
	}
	nav ul li {
		margin: 10px 0;
		font-size: 1.5rem;
	}
	nav ul li a {
		color: #fff;
	}
	nav ul li a.button-blue {
		font-size: 1.3rem;
		padding: 20px 30px;
	}
	nav ul.open {
		opacity: 1;
		transform: translateY(0);
		visibility: visible;
		pointer-events: auto;
	}
	.hamburger {
		position: absolute;
		top: 24px;
		right: 24px;
		cursor: pointer;
		z-index: 1001;
	}
	.hamburger span {
		display: block;
		width: 25px;
		height: 3px;
		margin: 5px;
		background-color: #000;
		transition: all 0.3s ease;
	}
	.hamburger.active span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
		background-color: #fff;
	}
	.hamburger.active span:nth-child(2) {
		opacity: 0;
		background-color: #fff;
	}
	.hamburger.active span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
		background-color: #fff;
	}
}
