@charset "utf-8";
/* CSS Document */
.main-wrap{
	overflow: hidden;
}

.cate_wrap .cate1 .contents{
	justify-content: space-between;
	align-items: flex-start;
}
.cate_wrap .cate1 .contents .txtbox {
	width: 60%;
}
.cate_wrap .cate1 .contents .txtbox h2{
	padding: 30px 0 20px;
}
.cate_wrap .cate1 .contents .imgbox {
	width: 30%;
	position: relative;
	z-index: 3;
}
.cate_wrap .cate1 .txtbox .namebox{
	padding: 20px 0;
	gap: 10px 30px;
	position: relative;
	margin-bottom: 30px;
}
.cate_wrap .cate1 .txtbox .namebox p{
	position: relative;
	z-index: 2;
}
.cate_wrap .cate1 .txtbox .namebox::after{
	content: "";
	position: absolute;
	width: 200vw;
	left: -100%;
	top: 0;
	height: 100%;
	background-color: #7D828A;
	opacity: 0.4;
}
.cate_wrap .cate2{
	background-color: #F2F2F2;
}
.cate_wrap .cate2 .boxwrap .box{
	justify-content: flex-start;
	align-items: stretch;
}
.cate_wrap .cate2 .boxwrap .box h3,.cate_wrap .cate2 .boxwrap .box > div{
	justify-content: flex-start;
	align-items: flex-start;
	padding: 30px 10px;
}
.cate_wrap .cate2 .boxwrap .box h3,.cate_wrap .cate2 .boxwrap .box > div p{
	font-weight: 400;
	line-height: 1.6;
}
.cate_wrap .cate2 .boxwrap .box h3{
	width: 30%;
	border-bottom: 1px solid #ADAAAA;
}
.cate_wrap .cate2 .boxwrap .box > div{
	width: 70%;
	border-bottom: 1px solid #ADAAAA;
}
.cate_wrap .cate2 .map{
	position: relative;
	overflow: hidden;
	width: 100%;
	min-height: 350px;
	aspect-ratio: 2.5 / 1;
}
.cate_wrap .cate2 .map iframe{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: calc(100% + 5px);
	height: calc(100% + 5px);
}

.cate_wrap .cate3 .contents .boxwrap{
	position: relative;
	padding: 20px 0;
}
.cate_wrap .cate3 .contents .boxwrap::after{
	content: "";
	position: absolute;
	left: 6px;
	top: 0;
	transform: translateX(-50%);
	width: 1px;
	height: 100%;
	background-color: #CCCCCC;
}
.cate_wrap .cate3 .contents .boxwrap .box{
	position: relative;
	z-index: 2;
	padding-left: 32px;
	display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    justify-content: flex-start;
    align-items: center;
	flex-direction: row;
}
.cate_wrap .cate3 .contents .boxwrap .box:not(:last-of-type){
	margin-bottom: 40px;
}
.cate_wrap .cate3 .contents .boxwrap .box::after{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
	aspect-ratio: 1 / 1;
	background-color: #373B3E;
	border-radius: 50%;
}
.cate_wrap .cate3 .contents .boxwrap .box .year{
	width: 100px;
	font-size: clamp(15px,1.6vw,18px);
	font-family: "Zen Old Mincho", "游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
	line-height: 1;
}
.cate_wrap .cate3 .contents .boxwrap .box h3{
	width: calc(100% - 100px);
	font-size: clamp(14px,1.4vw,16px);
}

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.cate_wrap .cate1 .contents .txtbox {
		width: 65%;
	}
	.cate_wrap .cate3 .contents .boxwrap .box .year{
		width: 80px;
	}
	.cate_wrap .cate3 .contents .boxwrap .box h3{
		width: calc(100% - 80px);
	}
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.cate_wrap .cate2 .boxwrap .box h3,.cate_wrap .cate2 .boxwrap .box > div{
		padding: 15px 5px 12px ;
	}
	.cate_wrap .cate2 .boxwrap .box h3{
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0.1);
		padding-bottom: 3px;
		margin-bottom: 5px;
	}
	.cate_wrap .cate2 .boxwrap .box > div{
		padding-top: 0;
		width: 100%;
		border-bottom: 1px solid #979797;
	}
	.cate_wrap .cate1 .contents{
		justify-content: center;
	}
	.cate_wrap .cate1 .contents .txtbox {
		width: 100%;
	}
	.cate_wrap .cate1 .contents .txtbox h2{
		padding: 30px 0 20px;
	}
	.cate_wrap .cate1 .contents .imgbox {
		width: 60%;
		margin-bottom: 20px;
	}
	.cate_wrap .cate1 .txtbox .namebox{
		gap: 10px 20px;
	}
	.cate_wrap .cate2 .boxwrap .box h3{
		width: 100%;
		padding: 20px 0 5px;
		margin-bottom: 5px;
		border-bottom-color: rgba(255,255,255,0.20);
	}
	.cate_wrap .cate3 .contents .boxwrap{
		padding: 15px 0;
	}
	.cate_wrap .cate3 .contents .boxwrap::after{
		left: 5px;
	}
	.cate_wrap .cate3 .contents .boxwrap .box{
		padding-left: 20px;
	}
	.cate_wrap .cate3 .contents .boxwrap .box:not(:last-of-type){
		margin-bottom: 30px;
	}
	.cate_wrap .cate3 .contents .boxwrap .box::after{
		width: 10px;
	}
	.cate_wrap .cate3 .contents .boxwrap .box .year{
		width: 70px;
	}
	.cate_wrap .cate3 .contents .boxwrap .box h3{
		width: calc(100% - 70px);
	}
}

/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

