@charset "utf-8";
/* CSS Document */

.page_links2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, auto)); 
    gap: 12px 20px;
    width: 100%;
	justify-content: center;
}
.page_links2 .tab-wrap {
    display: block;
	cursor: pointer;
}
.page_links2 .jp{
    background-color: #BFBFBF;
    color: #fff;
    line-height: 1;
    padding: 10px 12px;
    display: block;
    text-align: center;
}
.page_links2 .tab-wrap:hover .jp,.page_links2 .tab-wrap.on .jp{
    background-color: #033791;
}
.page_links2 .tab-wrap:hover,.page_links2 .tab-wrap.on{
    opacity: 1;
}



.title-style2{
	position: relative;
	justify-content: space-between;
}
.title-style2 h3{
	font-size: 24px;
	padding-bottom: 15px;
}
.title-style2 h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #0070D4;
}
.title-style2 h3::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 30px;
    width: calc(100% - 30px);
    height: 2px;
    background-color: #DBDBDB;
}



/* ---------- cate1 ---------- */
.cate .imgbox{
	max-width: 800px;
	margin: 0 auto;
}
.cate .imgbox img{
	border-radius: 10px;
}

.cate_wrap .cate .toggle_box{
	border-radius: 5px;
	overflow: hidden;
}
.cate_wrap .cate .toggle_box:not(:last-of-type){
	margin-bottom: 30px;
}
.cate_wrap .cate .toggle_box .toggle_title{
	position: relative;
	cursor: pointer;
}
.cate_wrap .cate .toggle_box .toggle_title .toggle_icon{
	position: absolute;
	top: 50%;
	right:0px;
	transform: translateY(-50%);
	width: 30px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
}
.cate_wrap .cate .toggle_box .toggle_title .toggle_icon::before,.cate_wrap .cate .toggle_box .toggle_title .toggle_icon::after{
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #222222;
	transition: ease 0.3s;
	width: 14px;
	height: 2px;
	border-radius: 2px;
	transform: translate(-50%,-50%);
}
.cate_wrap .cate .toggle_box .toggle_title .toggle_icon::before{
	transform: translate(-50%,-50%) rotate(90deg);
}
.cate_wrap .cate .toggle_box .toggle_title.active .toggle_icon::before{
	transform: translate(-50%,-50%) rotate(0deg);
}
.cate_wrap .cate .toggle_box .toggle_area{
	padding: 5%;
	background-color: #fff;
}
body.on .cate_wrap .cate .toggle_box .toggle_area{
	display: none;
}


.iframe-box {
    position: relative;
    width: 100%;
    max-width: 800px; 
    aspect-ratio: 16 / 9;
    flex-shrink: 0; 
}

.iframe-box iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border: 0;
}




/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
	
	.page_links2 {
		gap: 10px;
	}
	.page_links2 .jp {
		font-size: 14px;
	}
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
.title-style2 h3{
	font-size: 18px;
	padding-bottom: 8px;
}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

