@charset "UTF-8";


/*========================================

  indexページ

========================================*/
/* hero */
#hero h1 {
	display: none;
}

.slide {
	padding-top: 30px;
}

.slide .sp-slide img {
	border-radius: 10px;
}

@media screen and (max-width: 767px) {
	.slide {
		padding-top: 0;
	}

	.slide .sp-slide img {
		border-radius: 0;
	}
}

#news {
	text-align: left;
	margin-top: 50px;
}

#news .sec_innr {
	width: 900px;
	background-color: #e3f5fd;
	box-sizing: border-box;
	padding: 40px;
	padding-bottom: 35px;
	border-radius: 10px;
}

#news .boxL {
	width: 20%;
}

#news .boxL h2 {
	font-size: 28px;
	letter-spacing: 2px;
	font-weight: bold;
	color: #004ea2;
	margin-top: 0;
	line-height: 1em;
}

#news .boxR {
	width: 80%;
}

#news ul {
	list-style: none;
	padding-left: 0;
}

#news ul li {
	font-size: 16px;
	margin-bottom: .6em;
}



#news ul li a {
	position: relative;
	border-radius: 8px;
	display: flex;
	font-weight: bold;
	background-color: rgba(255, 255, 255, .7);
	padding: 1em 1.5em;
	padding-right: 30px;
	transition: .3s;
}

#news ul li a:hover {
	background-color: rgba(255, 255, 255, 1);
	color: #333;
}

#news ul li a::after {
	position: absolute;
	top: 17px;
	right: 20px;
	margin: auto 0;
	content: "\f061";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
}

#news ul li span {
	font-weight: normal;
	width: 6em;
}



@media screen and (max-width: 767px) {
	#news {
		margin-top: 7vw;
	}

	#news .sec_innr {
		width: 88%;
		padding: 5vw;
		padding-bottom: 4vw;
	}

	#news .boxL {
		width: 100%;
	}

	#news .boxL h2 {
		font-size: 5vw;
	}

	#news .boxR {
		width: 100%;
		margin-top: 4vw;
	}

	#news ul li {
		font-size: 4vw;
		margin-bottom: .5em;
	}

	#news ul li a {
		display: block;
		padding: .7em 1em;
	}

	#news ul li a::after {
		display: none;
	}

	#news ul li span {
		font-size: 3.4vw;
		display: block;
		margin-right: 0;
	}
}


/* #sec001 */
#sec001 {
	padding-bottom: 100px;
}

#sec001 .box1 {
	display: flex;
	justify-content: center;
	gap: 0 20px;
	margin-top: 60px;
}

#sec001 .box1 .item {
	position: relative;
	width: 285px;
	display: flex;
	justify-content: space-between;
	border-radius: 10px;
	border: 2px solid #004ea2;
	box-sizing: border-box;
	padding: 20px 20px 20px 30px;
}

#sec001 .box1 .item::after {
	position: absolute;
	content: "";
	bottom: 20px;
	left: 30px;
	display: block;
	width: 45px;
	height: 20px;
	background-image: url(../img/index/icon_arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
}

#sec001 .box1 .item .txt a {
	display: block;
	color: #004ea2;
	font-size: 20px;
	font-weight: bold;
	text-align: left;
	margin-top: 20px;
}

#sec001 .box1 .item.dbl .txt a {
	margin-top: 10px;
	line-height: 1.3em;
}

#sec001 .box1 .item .photo img {
	width: 100px;
}

#sec001 .com_h2.index {
	margin-top: 60px;
}

#sec001 .com_h2.index h2 strong {
	font-size: 60px;
	font-weight: bold;
}

#sec001 .box2 {
	margin-top: 150px;
}

#sec001 .box2 .item {
	position: relative;
	width: 270px;
}

#sec001 .box2 .item::before {
	position: absolute;
	content: "";
	bottom: 140px;
	left: 0;
	right: 0;
	margin: 0 auto;
	display: block;
	width: 195px;
	height: 195px;
	background-size: contain;
	background-repeat: no-repeat;
}

#sec001 .box2 .item:first-child::before {
	background-image: url(../img/index/ill_05.svg);
}

#sec001 .box2 .item:nth-child(2)::before {
	background-image: url(../img/index/ill_06.svg);
}

#sec001 .box2 .item:nth-child(3)::before {
	background-image: url(../img/index/ill_07.svg);
}

#sec001 .box2 .item:nth-child(4)::before {
	background-image: url(../img/index/ill_08.svg);
}

#sec001 .box2 .item dl {
	position: relative;
	margin: 0;
	padding: 0;
}

#sec001 .box2 .item dl dt {
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 1px;
}

#sec001 .box2 .item dl dd {
	font-size: 15px;
	line-height: 1.7em;
	text-align: justify;
	text-justify: inter-ideograph;
	margin-top: 1.5em;
}

#sec001 .box2 .item dl dd small {
	font-size: 13px;
}

@media screen and (max-width: 767px) {
	#sec001 {
		padding-bottom: 15vw;
	}

	#sec001 .box1 {
		flex-wrap: wrap;
		margin-top: 8vw;
		gap: 0;
	}

	#sec001 .box1 .item {
		flex-direction: column-reverse;
		justify-content: flex-end;
		width: 30%;
		margin: 0 auto;
		border-radius: 3vw;
		padding: 3vw 0vw 9vw 3vw;
		margin-top: 0;
	}

	#sec001 .box1 .item::after {
		position: absolute;
		content: "";
		bottom: 3vw;
		left: auto;
		right: 3vw;
		display: block;
		width: calc(45vw * .15);
		height: calc(20vw * .15);
		background-image: url(../img/index/icon_arrow.svg);
		background-size: contain;
		background-repeat: no-repeat;
	}

	#sec001 .box1 .item .txt a {
		font-size: 3.2vw;
		margin-top: 3vw;
		margin-bottom: 0;
	}

	#sec001 .box1 .item.dbl .txt a {
		margin-top: 3vw;
		line-height: 1.3em;
	}


	#sec001 .box1 .item .photo img {
		width: 16vw;
	}

	#sec001 .com_h2.index {
		margin-top: 10vw;
		padding-bottom: 0;
	}

	#sec001 .com_h2.index h2 strong {
		font-size: 8vw;
	}

	#sec001 .box2 {
		margin-top: 0;
	}

	#sec001 .box2 .item {
		width: 90%;
		margin: 0 auto;
		margin-top: 35vw;
	}

	#sec001 .box2 .item::before {
		position: absolute;
		content: "";
		bottom: auto;
		top: -27vw;
		left: 0;
		right: 0;
		margin: 0 auto;
		display: block;
		width: 35vw;
		height: 35vw;
		background-size: contain;
		background-repeat: no-repeat;
	}

	#sec001 .box2 .item dl dt {
		font-size: 5vw;
	}

	#sec001 .box2 .item dl dd {
		font-size: 3.6vw;
		line-height: 1.6em;
		margin-top: 1em;
	}

	#sec001 .box2 .item dl dd small {
		font-size: 3.4vw;
	}
}



/* #sec002 */
#sec002 {
	padding-top: 100px;
	padding-bottom: 70px;
}

#sec002 .box1 {
	margin-top: 10px;
}

#sec002 .box1 .item {
	position: relative;
	width: 260px;
}

#sec002 .box1 .item::after {
	position: absolute;
	top: 65px;
	right: -35px;
	content: "\f054";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: #0051a4;
	font-size: 30px;
}

#sec002 .box1 .item:last-child::after {
	display: none;
}

#sec002 .box1 .item span img {
	border-radius: 8px;
}

#sec002 .box1 .item dl {
	margin: 0;
	padding: 0;
	margin-top: 30px;
}

#sec002 .box1 .item dl dt {
	font-size: 20px;
	font-weight: bold;
}

#sec002 .box1 .item dl dd {
	font-size: 15px;
	line-height: 1.7em;
	text-align: justify;
	text-justify: inter-ideograph;
	margin-top: 1em;
}

@media screen and (max-width: 767px) {
	#sec002 {
		padding-top: 15vw;
		padding-bottom: 15vw;
	}

	#sec002 .box1 {
		margin-top: 0;
	}

	#sec002 .box1 .item {
		width: 90%;
		margin: 0 auto;
		margin-top: 10vw;
	}

	#sec002 .box1 .item.fst {
		margin-top: 5vw;
	}

	#sec002 .box1 .item span {
		display: block;
		margin-top: 4vw;
	}

	#sec002 .box1 .item::after {
		position: absolute;
		top: auto;
		bottom: -10vw;
		right: 0;
		left: 0;
		margin: auto 0;
		content: "\f078";
		font-size: 7vw;
	}

	#sec002 .box1 .item span img {
		width: 60vw;
		border-radius: 3vw;
	}

	#sec002 .box1 .item dl {
		margin: 0;
		margin-left: 5vw;
		margin-right: 5vw;
		padding: 0;
		margin-top: 3vw;
	}

	#sec002 .box1 .item dl dt {
		font-size: 4.6vw;
	}

	#sec002 .box1 .item dl dd {
		font-size: 3.6vw;
		line-height: 1.6em;
		margin-top: .5em;
	}
}



/* #sec003 */
#sec003 {
	padding-top: 100px;
	padding-bottom: 220px;
}

#sec003 .com_h2.index {
	position: relative;
	display: inline-block;
	padding-bottom: 70px;
}

#sec003 .com_h2.index .ill {
	position: absolute;
	bottom: 0;
	right: -260px;
}

@media screen and (max-width: 767px) {
	#sec003 {
		padding-top: 15vw;
		padding-bottom: 20vw;
	}

	#sec003 .com_h2.index {
		padding-bottom: 5vw;
	}

	#sec003 .com_h2.index .ill {
		display: none;
	}
}