@font-face {
	font-family: "NotoSansJP";
	font-weight: 400;
	src: url("../font/NotoSansJP-Regular.ttf") format("truetype")
}
@font-face {
	font-family: "NotoSansJP";
	font-weight: 500;
	src: url("../font/NotoSansJP-Medium.ttf") format("truetype")
}
@font-face {
	font-family: "NotoSansJP";
	font-weight: 600;
	src: url("../font/NotoSansJP-SemiBold.ttf") format("truetype")
}
@font-face {
	font-family: "NotoSansJP";
	font-weight: 700;
	src: url("../font/NotoSansJP-Bold.ttf") format("truetype")
}
@font-face {
	font-family: "NotoSerifJP";
	font-weight: 400;
	src: url("../font/NotoSerifJP-Regular.otf") format("opentype")
}
@font-face {
	font-family: "NotoSerifJP";
	font-weight: 500;
	src: url("../font/NotoSerifJP-Medium.otf") format("opentype")
}
@font-face {
	font-family: "NotoSerifJP";
	font-weight: 600;
	src: url("../font/NotoSerifJP-SemiBold.otf") format("opentype")
}
@font-face {
	font-family: "NotoSerifJP";
	font-weight: 700;
	src: url("../font/NotoSerifJP-Bold.otf") format("opentype")
}

body {
	margin: 0;
	padding: 0;
	font-family: "NotoSansJP";
	font-size: 16px;
	color: #333;
	line-height: 1.6;
}
h1, h2, h3, h4, h5, h6, p, figure, ul, ol, li, header, footer, nav, dl, dt, dd, section, article {
	margin: 0;
	padding: 0;
}
article, section, header, footer, nav, figure, figcaption {
	display: block;
}
a {
	text-decoration: none;
}
li {
	list-style: none;
}
img {
	vertical-align: bottom;
}

.l-main {
	max-width: 1000px;
	margin: 100px auto 0;
}

.btn-orange {
	display: block;
	position: relative;
	width: 250px;
	height: 40px;
	padding: 0 25px;
	box-sizing: border-box;
	border-radius: 1px;
	background-color: #f07026;
	font-size: 14px;
	font-weight: 700;
	color: #fff!important;
	line-height: 40px;
	transition: 0.5s;
}
.btn-orange::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	width: 9px;
	height: 16px;
	background-image: url("../img/arrow_right_white.png");
}
.btn-orange:hover {
	background-color: #585956;
	transition: 0.5s;
}
@media (min-width: 768px){
	.btn-orange {
		width: 350px;
		height: 60px;
		font-size: 18px;
		line-height: 60px;
	}
	.btn-orange::after {
		right: 20px;
	}
}

.top-banner {
    max-width: 900px;
    margin: 0 auto 25px;
	padding: 0 20px;
}

.top-banner img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.top-banner img.pc {
	display: none;
}
@media (min-width: 768px){
	.top-banner img.pc {
		display: block;
	}
	
	.top-banner img.sp {
		display: none;
	}
}

.top-section01 {
	display: flex;
	position: relative;
	min-height: 500px;
	margin-bottom: 40px;
	padding: 0 20px;
	background-image: url("../img/01-sp.jpg");
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: bottom;
}
@media (min-width: 768px){
	.top-section01 {
		align-items: center;
		min-height: 620px;
		background-image: url("../img/01.jpg");
		background-size: cover;
		background-position: right center;
	}
}

.top-section01 > div {
	width: 100%;
	max-width: 900px;
	height: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}
@media (min-width: 768px){
	.top-section01 > div {
		background-color: transparent;
	}
}

.top-section01 > div h2 {
	margin-bottom: 20px;
	font-family: "NotoSerifJP";
	font-size: 22px;
	font-weight: 500;
	text-align: center;
	line-height: 1.6;
}
@media (min-width: 768px){
	.top-section01 > div h2 {
		margin-bottom: 50px;
		font-size: 38px;
		text-align: left;
	}
}

.top-section01 > div p {
	margin-bottom: 20px;
	font-family: "NotoSerifJP";
	font-size: 14px;
	font-weight: 500;
	text-align: center;
}
@media (min-width: 768px){
	.top-section01 > div p {
		margin-bottom: 50px;
		text-align: left;
	}
}

.top-section01 > div span {
	display: block;
	margin-bottom: 10px;
	font-size: 12px;
	font-weight: 500;
	text-align: center;
}
@media (min-width: 768px){
	.top-section01 > div span {
		text-align: left;
	}
}

.top-section01 > div a {
	margin: 0 auto;
}
@media (min-width: 768px){
	.top-section01 > div a {
		margin: 0;
	}
}

.top-section02 {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 40px;
	padding: 0 20px;
}
@media (min-width: 768px){
	.top-section02 {
		justify-content: space-between;
	}
}

.top-section02 > div {
	width: calc(50% - 50px);
	margin-bottom: 20px;
	text-align: center;
}
@media (min-width: 768px){
	.top-section02 > div {
		width: calc(25% - 15px);
	}
}

.top-section02 > div img {
	width: 80%;
	margin-bottom: 5px;
}
@media (min-width: 768px){
	.top-section02 > div img {
		width: auto;
	}
}

.top-section02 > div p {
	font-size: 12px;
	color: #2c3e50;
}

.top-section02 > div p span {
	display: block;
	font-size: 14px;
	font-weight: 500;
}
@media (min-width: 768px){
	.top-section02 > div p span {
		font-size: 18px;
	}
}

.top-section03 {
	margin-bottom: 40px;
	padding: 20px;
	box-sizing: border-box;
	background-image: url("../img/02.jpg");
	background-size: cover;
	background-position: center center;
}
@media (min-width: 768px){
	.top-section03 {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 80px;
		padding: 50px 100px;
	}
}

.top-section03 .text-left {
	font-family: "NotoSerifJP";
	padding: 20px;
	background-color: rgba(255,255,255,0.50);
}
@media (min-width: 768px){
	.top-section03 .text-left {
		padding: 0;
		background-color: transparent;
	}
}

.top-section03 .text-left h2 {
	margin-bottom: 20px;
	font-size: 20px;
	font-weight: 400;
}
@media (min-width: 768px){
	.top-section03 .text-left h2 {
		margin-bottom: 40px;
		font-size: 24px;
	}
}

.top-section03 .text-left p {
	font-size: 16px;
}

.top-section03 .text-left p:first-of-type {
	margin-bottom: 1em;
}

.top-section03 .text-right {
	font-family: "NotoSerifJP";
	padding: 20px;
	background-color: rgba(255,255,255,0.50);
}
@media (min-width: 768px){
	.top-section03 .text-right {
		padding: 0;
		background-color: transparent;
	}
}

.top-section03 .text-right p {
	margin-bottom: 20px;
	font-size: 16px;
}
@media (min-width: 768px){
	.top-section03 .text-right p {
		font-size: 18px;
	}
}

.top-section03 .text-right ul {
	padding-left: 2em;
}

.top-section03 .text-right ul li {
	position: relative;
	margin-bottom: 20px;
	font-size: 16px;
}
@media (min-width: 768px){
	.top-section03 .text-right ul li {
		font-size: 18px;
	}
}

.top-section03 .text-right ul li::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: -2em;
	transform: translateY(-50%);
	width: 17px;
	height: 18px;
	background-image: url("../img/check.png");
}

.top-section04 {
	margin-bottom: 40px;
}
@media (min-width: 768px){
	.top-section04 {
		display: flex;
		justify-content: space-between;
		margin-bottom: 80px;
	}
}

.top-section04 > div {
	width: 100%;
	margin-bottom: 20px;
	padding: 20px;
	box-sizing: border-box;
	background-size: cover;
}
@media (min-width: 768px){
	.top-section04 > div {
		width: calc((100% - 70px) / 3);
		margin-bottom: 0;
	}
}

.top-section04 > div:first-of-type {
	background-image: url("../img/03_01.jpg");
	background-position: right bottom;
}

.top-section04 > div:nth-of-type(2) {
	background-image: url("../img/03_02.jpg");
	background-position: right bottom;
}

.top-section04 > div:last-of-type {
	background-image: url("../img/03_03.jpg");
	background-position: right center;
}

.top-section04 > div h2 {
	margin-bottom: 10px;
	font-size: 16px;
	line-height: 2;
}

.top-section04 > div h2 span {
	color: #f07026;
}

.top-section04 > div p {
	font-family: "NotoSerifJP";
	font-size: 14px;
}

.top-section05 {
	display: flex;
	align-items: center;
	min-height: 416px;
	margin-bottom: 40px;
	padding: 20px;
	box-sizing: border-box;
	background-image: url("../img/04.jpg");
	background-size: cover;
}
@media (min-width: 768px){
	.top-section05 {
		margin-bottom: 80px;
		padding: 50px 100px;
	}
}

.top-section05 > div {
	width: 100%;
	padding: 20px;
	box-sizing: border-box;
	background-color: rgba(255,255,255,0.50);
}
@media (min-width: 768px){
	.top-section05 > div {
		max-width: 400px;
		margin-left: auto;
		padding: 0;
		background-color: transparent;
	}
}

.top-section05 > div h2 {
	margin-bottom: 20px;
	font-family: "NotoSerifJP";
	font-size: 22px;
	font-weight: 500;
}
@media (min-width: 768px){
	.top-section05 > div h2 {
		margin-bottom: 40px;
		font-size: 30px;
	}
}

.top-section05 > div h2 span {
	display: block;
	margin-bottom: 20px;
	font-size: 16px;
}
@media (min-width: 768px){
	.top-section05 > div h2 span {
		margin-bottom: 40px;
		font-size: 22px;
	}
}

.top-section05 > div p {
	margin-bottom: 20px;
	font-family: "NotoSerifJP";
	font-size: 14px;
}
@media (min-width: 768px){
	.top-section05 > div p {
		font-size: 16px;
	}
}

.top-section06 {
	margin-bottom: 40px;
}
@media (min-width: 768px){
	.top-section06 {
		margin-bottom: 80px;
	}
}

.top-section06 h2 {
	margin-bottom: 20px;
	font-size: 16px;
	text-align: center;
}
@media (min-width: 768px){
	.top-section06 h2 {
		margin-bottom: 40px;
		font-size: 20px;
	}
}

.top-section06 h2 span {
	display: block;
	font-size: 18px;
	color: #f07026;
}
@media (min-width: 768px){
	.top-section06 h2 span {
		font-size: 24px;
	}
}

.top-section06 .top-section06-slider {
	position: relative;
}

.top-section06 .top-section06-slider .slick-track {
	display: flex;
	gap: 5px;
}

.top-section06 .top-section06-slider .slide-arrow {
	position: absolute;
	top: calc(50% - 2em);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	z-index: 2;
}

.top-section06 .top-section06-slider .prev-arrow {
	left: 10px;
	background-image: url("../img/slide-prev.png");
}

.top-section06 .top-section06-slider .next-arrow {
	right: 10px;
	background-image: url("../img/slide-next.png");
}

.top-section06 .top-section06-slider figure a {
	color: #333;
	transition: 0.5s;
}

.top-section06 .top-section06-slider figure a:hover {
	opacity: 0.5;
	transition: 0.5s;
}

.top-section06 .top-section06-slider figure a img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	object-position: center center;
}

.top-section07 {
	margin-bottom: 40px;
	padding: 0 20px;
}
@media (min-width: 768px){
	.top-section07 {
		margin-bottom: 80px;
	}
}

.top-section07 h2 {
	margin-bottom: 20px;
	font-size: 16px;
	text-align: center;
}
@media (min-width: 768px){
	.top-section07 h2 {
		margin-bottom: 40px;
		font-size: 20px;
	}
}

.top-section07 h2 span {
	display: block;
	font-size: 18px;
	color: #f07026;
}
@media (min-width: 768px){
	.top-section07 h2 span {
		font-size: 24px;
	}
}

.top-section07 ul {
	height: 360px;
	overflow-y: scroll;
}

.top-section07 ul li {
	padding: 30px 0;
	border-bottom: 1px solid #ccc;
	font-size: 16px;
	color: #333;
}
@media (min-width: 768px){
	.top-section07 ul li {
		font-size: 18px;
	}
}

.top-section07 ul li:first-child {
	border-top: 1px solid #ccc;
}

.top-section07 ul li a {
	color: #333;
}

.top-section07 ul li time {
	display: block;
	color: #f07026;
}

.top-section08 {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 40px;
	padding: 0 20px;
}
@media (min-width: 768px){
	.top-section08 {
		margin-bottom: 80px;
	}
}

.top-section08 > div {
	width: calc(50% - 10px);
	margin-bottom: 20px;
}
@media (min-width: 768px){
	.top-section08 > div {
		width: calc(50% - 5px);
		margin-bottom: 30px;
	}
}

.top-section08 > div a img {
	width: 100%;
	aspect-ratio: 8 / 5;
	margin-bottom: 5px;
	object-fit: cover;
	object-position: center center;
}
@media (min-width: 768px){
	.top-section08 > div a img {
		aspect-ratio: 99 / 40;
	}
}

.top-section08 > div a p {
	font-size: 14px;
	font-weight: 500;
	color: #2c3e50;
}
@media (min-width: 768px){
	.top-section08 > div a p {
		font-size: 20px;
	}
}

.top-section09 {
	margin-bottom: 40px;
	padding: 0 20px;
}
@media (min-width: 768px){
	.top-section09 {
		margin-bottom: 80px;
	}
}

.top-section09 h2 {
	margin-bottom: 20px;
	font-size: 16px;
	text-align: center;
}
@media (min-width: 768px){
	.top-section09 h2 {
		margin-bottom: 40px;
		font-size: 20px;
	}
}

.top-section09 h2 span {
	display: block;
	font-size: 18px;
	color: #f07026;
}
@media (min-width: 768px){
	.top-section09 h2 span {
		font-size: 24px;
	}
}

@media (min-width: 768px){
	.top-section09 .flex {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
}

.top-section09 .flex > div {
	width: 100%;
	height: 60px;
	margin-bottom: 12px;
	border: 1px solid #ccc;
	box-sizing: border-box;
}
@media (min-width: 768px){
	.top-section09 .flex > div {
		width: calc((100% - 24px) / 3);
		height: 80px;
	}
}

.top-section09 .flex > div a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 16px;
	font-weight: 700;
	color: #333;
	transition: 0.5s;
}
@media (min-width: 768px){
	.top-section09 .flex > div a {
		font-size: 18px;
	}
}

.top-section09 .flex > div a:hover {
	background-color: #f7f7f7;
	transition: 0.5s;
}

.top-section10 {
	margin-bottom: 40px;
}
@media (min-width: 768px){
	.top-section10 {
		margin-bottom: 80px;
	}
}

.top-section10 h2 {
	margin-bottom: 20px;
	font-size: 16px;
	text-align: center;
}
@media (min-width: 768px){
	.top-section10 h2 {
		margin-bottom: 40px;
		font-size: 20px;
	}
}

.top-section10 h2 span {
	display: block;
	font-size: 18px;
	color: #f07026;
}
@media (min-width: 768px){
	.top-section10 h2 span {
		font-size: 24px;
	}
}

@media (min-width: 768px){
	.top-section10 .flex {
		display: flex;
		justify-content: space-between;
	}
}

.top-section10 .flex > div {
	width: 100%;
	height: 180px;
	margin-bottom: 10px;
	background-color: #585956;
	transition: 0.5s;
}
@media (min-width: 768px){
	.top-section10 .flex > div {
		width: calc(50% - 5px);
		margin-bottom: 0;
	}
}

.top-section10 .flex > div a {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	height: 100%;
	padding-top: 25px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
}
@media (min-width: 768px){
	.top-section10 .flex > div a {
		margin-top: 25px;
		font-size: 18px;
	}
}

.top-section10 .flex > div:hover {
	opacity: 0.5;
	transition: 0.5s;
}

.top-section10 .flex > div a::before {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
}

.top-section10 .flex > div:first-child a::before {
	top: 65px;
	width: 35px;
	height: 38px;
	background-image: url("../img/icon05.png");
}
@media (min-width: 768px){
	.top-section10 .flex > div:first-child a::before {
		top: 52px;
	}
}

.top-section10 .flex > div:last-child a::before {
	top: 65px;
	width: 49px;
	height: 39px;
	background-image: url("../img/icon06.png");
}
@media (min-width: 768px){
	.top-section10 .flex > div:last-child a::before {
		top: 50px;
	}
}



.l-footer {
	padding: 80px 20px;
	background-color: #f7f7f7;
}

.l-footer nav {
	max-width: 1000px;
	margin: 0 auto;
}

.l-footer nav ul {
	margin-bottom: 40px;
}
@media (min-width: 768px){
	.l-footer nav ul {
		display: flex;
		justify-content: center;
		margin-bottom: 50px;
	}
}

.l-footer nav ul:first-of-type {
	margin-bottom: 20px;
}

.l-footer nav ul li {
	margin: 0 0 20px;
}
@media (min-width: 768px){
	.l-footer nav ul li {
		margin: 0 2em;
	}
}

.l-footer nav ul li a {
	font-size: 16px;
	font-weight: 500;
	color: #333;
}

.l-footer nav .footer_banner {
	margin-bottom: 40px;
}
@media (min-width: 768px){
	.l-footer nav .footer_banner {
		display: flex;
		justify-content: space-between;
		margin-bottom: 50px;
	}
}

.l-footer nav .footer_banner a {
	display: block;
	width: 100%;
	margin-bottom: 10px;
	transition: 0.5s;
}
@media (min-width: 768px){
	.l-footer nav .footer_banner a {
		width: calc(50% - 5px);
		margin-bottom: 0;
	}
}

.l-footer nav .footer_banner a:hover {
	opacity: 0.5;
	transition: 0.5s;
}

.l-footer nav .footer_banner a img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

.l-footer nav .footer_sns {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}
@media (min-width: 768px){
	.l-footer nav .footer_sns {
		margin-bottom: 50px;
	}
}

.l-footer nav .footer_sns a {
	margin: 0 5px;
	transition: 0.5s;
}

.l-footer nav .footer_sns a:hover {
	opacity: 0.5;
	transition: 0.5s;
}

.l-footer nav .footer_logo {
	margin-bottom: 50px;
	text-align: center;
}
@media (min-width: 768px){
	.l-footer nav .footer_logo {
		margin-bottom: 70px;
	}
}

.l-footer nav .footer_logo a img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

.l-footer nav .copyright {
	text-align: center;
}

.l-footer nav .copyright img {
	max-width: 100%;
	height: auto;
	margin-bottom: 8px;
}

.l-footer nav .copyright p {
	font-size: 14px;
	font-weight: 700;
	color: #ccc;
}