@charset "UTF-8";

*{
	min-width: 0;
	min-height: 0;
}

#wrapper{ /* 全体を囲う */
	margin: auto;
	width: 100%;
	font-size: 1em;
	color: #333333;
	position: relative;
	display: none;
}

.icon-pdf::after{
	margin-left: 10px;
	content: "";
	width: 1.5em;
	height: 1.5em;
 	display: inline-block;
	background-image: url(../images/all-menu/icon-pdf.png);
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align: middle;
	transform: translateY(-3px);
}

.title-deco{
	position: relative;
}

.title-deco::before{
	content: "";
	position: absolute;
	background-color: #EEEEEE;
	left: 0;
	bottom: -7px;
	height: 3px;
	width: 100%;
}

.title-deco::after{
	content: "";
	position: absolute;
	background-color: #3D63CC;
	left: 0;
	bottom: -7px;
	height: 3px;
	width: 30%;
}

.komejirushi::before{
	content: "※";
}

/*===============================================================
 ヘッダー 
=================================================================*/
header{
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 100;
}

.header-a{
	width: 100%;
	background: #FFFFFF;
	z-index: 100;
	height: 50px;
}

.header-a-container{
	display: flex;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	margin: auto;
}

.header-a h1{
	max-width: 50%;
	display: flex;
	align-items: center;
}

.header-a h1 img{
	width: 100%;
	height: auto;
	max-height: 50px;
	padding: 5px;
	margin-bottom: 5px;
}

.header-a-box{
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.menu-container{
  	width: 100%;
	height: 100%;
	position: fixed;
	overflow-y: scroll;
	top: 0;
	left: 0;
	transform: translateX(100%);
	transition: transform .3s;
	z-index: 2;
	margin-top: 50px;
}

.menu-nav{
	opacity: 0.95;
	width: 100%;
	background: #333333;
	color: #FFFFFF;
	z-index: 2;
	position: absolute;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	padding-bottom: 150px;
}

.menu-nav a{
	transition: .3s;
}

.menu-plus{
	position: relative;
}

.menu-plus::before{
	position: absolute;
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: #FFFFFF;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%);
}

.menu-plus::after{
	position: absolute;
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: #FFFFFF;
    right: 15px;
    top: 50%;
    transform: translate(0, -50%) rotate(90deg);
    transition: .3s;
}

.menu-plus.active::after{
	opacity: 0;
}

.menu-list-title{
	height: 60px;
  	font-size: 1.3em;
  	display: flex;
    align-items: center;
    justify-content: center;
    background: #333333;
    cursor: pointer;
    border-bottom: solid 1px #FFFFFF;
    
}

.menu-list-title a{
	width: 100%;
	height: 100%;
	display: flex;
    align-items: center;
    justify-content: center;
}

.sub-title{
	font-size: 1em;
	background: #555555;
}

.menu-list ul{
	display: none;
}

.series-list{
	height: 50px;
	font-size: 1.5em;
	border-bottom: 1px solid #FFFFFF;
	background: linear-gradient(45deg, #CCCCCC, #333333);
	display: flex;
	justify-content: center;
	text-shadow: 0 0 0.3em #333333;
}

.menu-list a{
	display: flex;
	width: 100vw;
	height: 100%;
	align-items: center;
    font-size: 0.8em;
    overflow: hidden;
}

.series-a{
	justify-content: space-between;
}

.menu-series-title{
	display: flex;
	justify-content: center;
	font-size: 0.8em;
}

.menu-bg{
	width: 20px;
	height: 100%;
}

/* 各シリーズの背景色指定 */
.sa-b-bg{
	background: #617287;
}

.se-bg{
	background: #ec7b48;
}

.sa-bg{
	background: #81c04f;
}

.sb-bg{
	background: #3d45d2;
}

.zm-bg{
	background: #329234;
}

.sgrgp-bg{
	background: #872abd;
}

.ak-bg{
	background: #EB312F;
}

.rw-bg{
	background: #556AFB;
}

.rwt-bg{
	background: #27CED4;
}

.rs-bg{
	background: #535B28;
}

.option-bg{
	background: #342E59;
}

.font-red{
	color: #FF5050;
}

.series-list img{
	width: 30vw;
	height: auto;
}

.menu-container.active {
	transform: translateX(0);
}

.menu-button{
	width: 50px;
	height: 50px;
	background: #FFFFFF;
	z-index: 10;
	position: relative;
}

.menu-button-line{
	display: block;
	position: absolute;
	width: 35px;
	height: 4px;
	background: #333333;
	border-radius: 3px;
	top: 18px;
	right: 8px;
	transition: .2s;
}

.menu-button-line::before, .menu-button-line::after{
	content: "";
	position: absolute;
	width: 35px;
	height: 4px;
	background: #333333;
	border-radius: 3px;
	right: 0px;
	transition: .3s;
}

.menu-button-line::before{
	transform: translateY(-10px);
}

.menu-button-line::after{
	transform: translateY(10px);
}

.menu-button-text{
	font-size: 0.7em;
	position: absolute;
	bottom: 3px;
	left: 0;
	right: 0;
	margin: auto;
	transition: .3s;
	font-weight: bold;
	text-align: center;
}

.menu-button-line.active, .menu-button-text.active{
	background: transparent;
	color: transparent;
}

.menu-button-line.active::before{
	transform: translateY(6px) rotate(45deg);
}

.menu-button-line.active::after{
	transform: translateY(6px) rotate(-45deg);
}

.header-a-pc, .header-b{
	display: none;
}

.menu-nav a:hover{
	background: #415A80;
}

.menu-plus:hover{
	background: #415A80;
}

.series-a:hover{
	background: #666666;
}

/*===================
横幅768px以上でのレイアウト　ヘッダー
===================*/
@media screen and (min-width: 768px) {
    .header-a{
		height: 65px;
	}
    .header-a h1 img{
		max-height: 65px;
		padding: 10px;
	}
    .menu-container{
		margin-top: 65px;
	}
    .menu-button{
		width: 65px;
		height: 65px;
	}
    .menu-button-line{
		width: 45px;
		height: 5.2px;
		border-radius: 3px;
		top: 23.4px;
		right: 10.4px;
	}
    .menu-button-line::before, .menu-button-line::after{
		width: 45px;
		height: 5.2px;
		border-radius: 3px;
		right: 0px;
	}
    .menu-button-line::before{
		transform: translateY(-13px);
	}
    .menu-button-line::after{
		transform: translateY(13px);
	}
    .menu-button-text{
		font-size: 94.3%;
		bottom: 3px;
		left: 0;
		right: 0;
		margin: auto;
		transition: .3s;
	}
    .menu-button-line.active::before{
		transform: translateY(9.6px) rotate(45deg);
	}
    .menu-button-line.active::after{
		transform: translateY(9.6px) rotate(-45deg);
	}
    .menu-list-title{
		height: 50px;
		font-size: 1.1em;
	}
    .series-list{
		height: 50px;
		font-size: 1.3em;
	}
    .series-list img{
		width: 20vw;
	}
    .menu-series-title{
		font-size: 1em;
	}
}

/*===================
横幅1025px以上でのレイアウト　ヘッダー
===================*/
@media screen and (min-width: 1025px) {
    .menu-button{
		display: none;
	}
    .menu-container{
		display: none;
	}
    .header-a-box{
		width: 70%;
	}
    .header-a-pc{
		display: flex;
		justify-content: flex-end;
		align-items: center;
		margin-right: 20px;
	}
    .header-a-contact{
		width: 200px;
		height: 32px;
		background: #3D63CC;
		display: flex;
		justify-content: center;
		align-items: center;
		color: #FFFFFF;
		border: 1px solid #3D63CC;
		transition: .3s;
	}
    .header-a-contact:hover{
		background: #EEEEEE;
		color: #3D63CC;
	}
    /* pc header-b =========================*/
	.header-b{
		display: flex;
		width: 100%;
		height: 40px;
		background: #555555;
		border-bottom: 1px solid #EEEEEE;
		justify-content: center;
		position: relative;
	}
    .header-b-container{
		width: 100%;
		max-width: 1300px;
		height: 100%;
		color: #FFFFFF;
		display: flex;
		justify-content: center;
		align-items: center;
	}
    .header-b-title{
		font-size: 0.8em;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		border-left: 1px solid #EEEEEE;
		cursor: pointer;
		transition: .3s;
	}
    .header-b-title:last-of-type{
		border-right: 1px solid #EEEEEE;
	}
    .header-b-link{
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}
    .header-b-arrow{
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
		transform: translateX(-5px);
	}
    .header-b-arrow::before, .header-b-arrow::after{
		content: "";
		position: absolute;
		right: 25px;
		top: -5px;
		bottom: 0;
		margin: auto;
		width: 6px;
		height: 6px;
		border-radius: 2px;
		border-left: 2px solid #FFFFFF;
		border-bottom: 2px solid #FFFFFF;
		transform: rotate(-45deg);
		box-sizing: content-box;
	}
    .header-b-title:hover{
		background: #3D63CC;
	}
    .header-b-slide{
		position: absolute;
		background: rgba(34, 45, 69, 0.9);
		font-size: 1em;
		top: 25px;
		left: 0;
		z-index: -1;
		transition: .3s;
		padding: 25px 2vw 15px 2vw;
		width: 100%;
		transform: translateY(-600px);
		display: flex;
		justify-content: center;
	}
    .header-b-slide ul{
		width: 1300px;
		max-width: 1300px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
    .header-b-slide li{
		margin: 8px 0;
		display: flex;
		justify-content: center;
		flex-direction: column;
		height: 140px;
	}
    .header-b-slide a, .header-b-slide p{
		color: #333333;
		width: 100%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		font-size: 1.2em;
		color: #3D63CC;
		background: #F7F7F7;
		transition: .3s;
		position: relative;
		overflow: hidden;
		border-radius: 15px;
	}
    .header-b-series-a{
		color: #FFFFFF;
		background: linear-gradient(45deg, #FFFFFF, #CCCCCC);
	}
    .header-b-series-name-box{
		z-index: 2;
		width: 100%;
		padding-left: 11%;
		position: absolute;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
    .header-b-series-name{
		font-size: 1.2em;
		font-weight: bold;
		text-shadow: 0 0 0.4em #000000;
		display: flex;
		flex-direction: column;
	}
    .header-b-series-name-type{
		font-size: 0.8em;
		padding-top: 10px;
	}
    .header-b-slide svg{
		width: 50px;
		height: 50px;
		margin-bottom: 10px;
		fill: #3D63CC;
	}
    .yamanari-svg svg{
		width: 80px;
		height: 50px;
		margin-bottom: 10px;
		fill: #3D63CC;
	}
    .header-b-slide img{
		position: absolute;
		top: 0;
		right: 0;
		width: 60%;
		height: 100%;
		object-fit: cover;
		object-position: center bottom;
		transition: .3s;
	}
    .header-b-hajimeni li{
		width: 23%;
	}
    .header-b-item-type{
		color: #FFFFFF;
		padding-bottom: 7px;
		font-size: 0.9em;
	}
    .header-b-item-type span{
		display: inline-block;
	}
    .header-b-item-container{
		height: 140px;
	}
    .header-b-series li{
		width: 19.2%;
		height: 100px;
	}
    .header-b-support li{
		width: 23%;
	}
    .header-b-slide a:hover{
		background: #E2E5EE;
	}
    .header-b-slide.open{
		transform: translateY(0);
	}
    .header-b-series ul::before{
		content: "";
		display: block;
		width: 19%;
		order: 1;
	}
    .header-b-series ul::after{
		content: "";
		display: block;
		width: 19%;
	}
}

/*===============================================================
 メイン
=================================================================*/
.container{
	display: flex;
	flex-direction: column;
	margin-top: 30px;
}

.main-contents{
	background: #111111;
}

.main{
	width: 100%;
	background: #222222;
}

/* === splide === */
.splide{
	max-width: 100%;
	margin: auto;
}

.splide__slide img{
	width: 100%;
	height: auto;
	object-fit: cover;
}

.splide__slide img{
	margin-top: 20px;
	width: 100%;
	height: auto;
	object-fit: cover;
	object-position: 0 0;
}

/*===================
横幅768px以上でのレイアウト　メイン
===================*/
@media screen and (min-width: 768px) {
    .container{
		margin-top: 47px;
	}
    .splide__slide img{
		height: 400px;
	}
}

/*===================
横幅1025px以上でのレイアウト　メイン
===================*/
@media screen and (min-width: 1025px) {
    .container{
		flex-direction: row;
		margin-top: 86px;
		position: relative;
	}
    .main-contents{
		display:flex;
		flex-direction: column;
		width: 100%;
		position: absolute;
		top: 0;
		right: 0;
	}
    .splide__slide img{
		height: 500px;
	}
    .splide{
		width: 100%;
		max-width: 1200px;
	}
}

/*===============================================================
 はじめに
=================================================================*/
.first-info{
	color: #FFFFFF;
	font-size: 0.8em;
	font-weight: bold;
	display: flex;
	padding: 0px 4vw 0 4vw; /* info-important あり:top20px, 無し:top50px */
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
}

.first-info-bg-white{
	background: #FFFFFF;
	margin-bottom: 20px;
	width: 100%;
	display: flex;
}

.first-info a{
	background: linear-gradient(45deg, #222222, #555555);
	padding: 10px 0 10px 30px;
	border: 1px solid #FFFFFF;
	transition: .3s;
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	border-radius: 4px;
    justify-content: flex-start;
    padding-left: 40px ;
}

.first-info a::before, .info-impotrant-text::before{
	content: "";
	position: absolute;
	left: 5px;
	top: 0;
	bottom: 0;
	margin: auto;
    width: 20px;
    height: 20px;
    border: 2px solid red;
    border-radius: 50%;
}

.first-info a::after, .info-impotrant-text::after{
	content: "";
	position: absolute;
	left: 8px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 7px;
	height: 7px;
	border-radius: 2px;
	border-top: 3px solid red;
	border-right: 3px solid red;
	transform: rotate(45deg);
	box-sizing: content-box;
}

.info-impotrant-text::before, .info-impotrant-text::after{
	border-color:#FF5050;
}

.first-info a:hover{
	opacity: 0.8;
}

.info-impotrant{
	color: #FF5050;
	font-size: 0.8em;
	font-weight: bold;
	display: flex;
	padding: 30px 4vw 0 4vw;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
}

.info-impotrant-text{
	border-bottom: 1px solid #FF5050;
	padding: 5px 10px 3px 30px;
	transition: .3s;
	position: relative;
	display: flex;
	align-items: center;
}

.info-impotrant-text:hover{
	background: #444444;
}

/*===================
横幅768px以上でのレイアウト　はじめに
===================*/
@media screen and (min-width: 768px) {
    .first-info{
		font-size: 0.9em;
	}
    .first-info-bg-white{
		width: 32%;
	}
    .first-info a{
		padding: 16px 0 16px 30px;
	}
    .info-impotrant{
		font-size: 1em;
	}
}

/*===================
横幅1400px以上でのレイアウト　はじめに
===================*/
@media screen and (min-width: 1400px) {
    .first-info{
		padding-left: 50px;
		padding-right: 50px;
	}
    .info-impotrant{
		padding: 50px 50px 0 50px;
	}
}

/*===============================================================
 webカタログ
=================================================================*/
.web-catalog{
    width: 300px;
    height: 100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
	font-size: 1.3em;
    background-color: #ffffff;
    border-radius: 13px;
    color: #000000;
}

.web-catalog-icon{
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    transform: translateX(-20px);
	color:#ea4141;
}

/*===============================================================
 製品一覧
=================================================================*/

#item-list{
	width: 100%;
	padding: 50px 0;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
}

.item-list-title{
	width: 100%;
	font-size: 1.7em;
	font-weight: bold;
	color: #FFFFFF;
	text-align: center;
	padding: 5px 0 0 5px;
	margin-bottom: 10px;
}

.item-list-container{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0 4vw;
}

.item-list-type-box{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 40px;
}

.item-list-type-title{
	width: 100%;
	background: #888888;
	color: #FFFFFF;
	font-size: 1.2em;
	font-weight: bold;
	display: inline-block;
	padding: 3px 5px;
}

.item-container{
	font-size: 1em;
	font-style: italic;
	width: 100%;
	margin-top: 30px;
}

.item-type{
	color: #FFFFFF;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	font-weight: bold;
}

.item-type-series{
	display: flex;
	align-items: baseline;
}

.item-type-series-option p{
	font-size: min(5vw, 25px);
}

.item-type-series img{
	width: auto;
	height: min(4vw, 20px);
}

.item-type-series-span{
	font-size: min(3vw, 25px);
	font-weight: normal;
}

.item-type-material{
	font-size: min(3.2vw, 18px);
}

.item{
	height: 50vw;
	max-height: 600px;
	width: 100%;
	overflow: hidden;
	margin-top: 3px;
	position: relative;
}

.item a{
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.item-a-black{
	border: 4px solid;
	border-image: linear-gradient(60deg, #FFE300 40%, #3E3955 70%) 1;
}

.item-a-sa-b{
	border: 4px solid #617287;
}

.item-a-sa{
	border: 4px solid #81C04F;
}

.item-a-zm{
	border: 4px solid #329234;
}

.item-a-se{
	border: 4px solid #EC7B48;
}

.item-a-sb{
	border: 4px solid #3d45d2;
}

.item-a-sgrgp{
	border: 4px solid #872ABD;
}

.item-a-rs{
	border: 4px solid #535B28;
}

.item-a-ak{
	border: 4px solid #EB312F;
}

.item-a-rw{
	border: 4px solid #556AFB;
}

.item-a-rwt{
	border: 4px solid #27CED4;
}

.item-a-option{
	border: 4px solid #342E59;
}

.item-img-text{
	position: absolute;
	padding: 0 4vw;
	bottom: 8px;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.item-img-text-feature{
	font-size: min(5.5vw, 40px);
	font-weight: bold;
}

.item-img-text-weight{
	line-height: 1.6;
	text-align: center;
	font-size: min(3vw, 18px);
}

.item-img-text-whitebg{
	background: rgba(255,255,255,0.5);
}

.item-text-explanation{
	color: #FFFFFF;
	margin-top: 10px;
}

.item-text-explanation-sentence{
	font-size: 0.8em;
	line-height: 1.6;
	font-weight: bold;
}

.item-text-leg-box{
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 7px;
	font-size: 0.8em;
}

.item-text-leg{
	font-size: 1.4em;
	background: #3D63CF;
	border-radius: 100px;
	padding: 5px 15px;
	font-weight: bold;
}

.item-text-leg-small{
	font-size: 0.8em;
	font-weight: normal;
}

.item-text-leg-padding-a{
	padding-left: 0.2em;
}

.item-text-leg-padding-b{
	padding-left: 1em;
}

.side-bg-header-b{
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	width: 8%;
	height: 100%;
}

.item-box{
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
}

.item-box-new{
	font-weight: bold;
	display: flex;
	position: relative;
}

.item-box-new p{
	background: #FF5050;
	color: #FFFFFF;
	padding: 8px 12px 4px 8px;
	z-index: 4;
	height: auto;
	position: absolute;
}

.item-img-box{
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: relative;
	background: linear-gradient(45deg, #FFFFFF, #CCCCCC);
}

.item-img-box-black{
	background: linear-gradient(45deg, #EFEFEF 10%, #DDDDDD 30%, #444444 100%);
}

.item-img-box img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center bottom;
	display: block;
	transition: .3s;
}

.item-img-box-right img{
	object-position: right bottom;
}

/*===================
横幅768px以上でのレイアウト　製品一覧
===================*/
@media screen and (min-width: 768px) {
    .item-list-title{
		font-size: 1.7em;
	}
    .item-container{
		width: 48%;
	}
    .item-container-special{
		width: 100%;
	}
    .item-container-margin{
		margin-left: 4%;
	}
    .item-list-type-box{
		justify-content: flex-start;
		justify-content: center;
		padding: 0;
	}
    .item-list-type-box::after{
		content:"";
		display: block;
		width: 52%;
	}
    .item-type{
		font-size: 1em;
	}
    .item{
		height: 25vw;
	}

	.item-img-box{
		width: 100%;
		height: 100%;
	}
    .item-img-box img{
		width: 100%;
	}
    .item-type-series-span{
		font-size: min(1.5vw, 18px);
		font-weight: normal;
	}
    .item-type-material{
		font-size: min(1.6vw, 20px);
	}
    .item-img-text{
		padding: 0 1.4vw;
	}
    .item-img-text-feature{
		font-size: min(2.6vw, 32px);
	}
    .item-img-text-weight{
		line-height: 1.6;
		text-align: center;
		font-size: min(1.6vw, 18px);
	}
}

/*===================
横幅1025px以上でのレイアウト　製品一覧
===================*/
@media screen and (min-width: 1025px) {
    .item-container{
		margin-top: 50px;
	}
    .item-type{
		font-size: 1.2em;
	}
    .item{
		height: 25vw;
		max-height: 320px;
	}
    .item-text-explanation-sentence{
		font-size: 0.9em;
	}
    .item-a-black{
		border: 6px solid;
		border-image: linear-gradient(60deg, #FFE300 40%, #3E3955 70%) 1;
	}
    .item-a-sa-b{
		border: 6px solid #617287;
	}
    .item-a-sa{
		border: 6px solid #81C04F;
	}
    .item-a-zm{
		border: 6px solid #329234;
	}
    .item-a-se{
		border: 6px solid #EC7B48;
	}
    .item-a-sb{
		border: 6px solid #3d45d2;
	}
    .item-a-sgrgp{
		border: 6px solid #872ABD;
	}
    .item-a-rs{
		border: 6px solid #535B28;
	}
    .item-a-ak{
		border: 6px solid #EB312F;
	}
    .item-a-rw{
		border: 6px solid #556AFB;
	}
    .item-a-rwt{
		border: 6px solid #27CED4;
	}
    .item-a-option{
		border: 6px solid #342E59;
	}
    .item-img-box{
		width: 100%;
	}
    .item-text-leg-box{
		font-size: 1em;
	}
    .item-type-series img{
		width: auto;
		height: min(2vw, 26px);
	}
}

/*===================
横幅1400px以上でのレイアウト　製品一覧
===================*/
@media screen and (min-width: 1400px) {
    .item-list-container{
		padding: 0 50px;
	}
    .item-img-text{
		padding: 0 20px;
	}
}

/*===============================================================
解説部分
=================================================================*/
.explanation{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
}

.explanation-container{
	padding: 20px 4vw 0 4vw;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 20px;
}

.relief-title, .found-title{
	color: #FFFFFF;
	font-weight: bold;
	font-size: 1.7em;
	width: 100%;
	padding: 2px 10px;
	display: flex;
	justify-content: center;
	white-space: normal;
}
.relief-title p {
    text-align: center;
}

.sp-only {
    display: none;
}

/* スマホサイズ（例: 767px以下）の時だけ改行を表示する */
@media screen and (max-width: 767px) {
    .sp-only {
        display: inline;
    }
}

.found-title{
	font-size: 5vw;
}

/* カード型レイアウト */
.relief-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    margin: 20px auto;
    width: 100%;
    max-width: 1300px;
    padding: 0 4vw;
}

.relief-card {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    padding: 30px;
    flex: 1 1 300px;
	text-align: left;
}

.point-head {
    color: #FF5050;
    font-weight: bold;
    font-size: 1.3em;
}

.point-desc {
    font-size: 1.1em;
    font-weight: bold;
    line-height: 1.5;
}

.point-note {
    font-size: 0.85em;
    color: #d1d1d1;
    line-height: 1.5;
    margin-bottom: 6px;
}

.point-links {
    margin-top: auto;
    text-align: left;
}

/* 赤いボタンのスタイル */
.btn-red {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(45deg, #E60000, #FF4D00);
    color: #fff;
    padding: 12px 20px;
    border-radius: 2px;
    text-decoration: none;
    font-size: 0.95em;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%; 
    max-width: 240px; 
    box-sizing: border-box;
}

.btn-red:hover {
	filter: brightness(1.3);
}

.btn-arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* ホバー時に矢印が少し右に動く演出 */
.btn-red:hover .btn-arrow {
    transform: translateX(3px) rotate(45deg);
}

.close-button{
	position: absolute;
	top: -10%;
	right: -2%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 5px;
	font-weight: bold;
	background: #EEEEEE;
	color: #666666;
	font-size: 18px;
	z-index: 103;
	cursor: pointer;
	text-indent: 0;
	padding-left: 0;
}

.variation{
	padding:20px 4vw 50px 4vw;
	color: #FFFFFF;
	position: relative;
	display: flex;
	width: 100%;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.variation-main-text{
	font-size: 1em;
	padding-top: 8px;
}

.variation-img{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.variation-img-container{
	display: flex;
	width: 100%;
	flex-wrap: wrap;
}

.variation-img-left{
	justify-content: flex-start;
}

.variation-img-right{
	justify-content: flex-end;
}

.variation-box-arrow{
	width: 90%;
}

.variation-box-container{
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 16px;
}

.variation-box-container li{
	width: 24%;
	color: #FFFFFF;
	margin: 0 1vw;
}

.variation-box-container-left{
	justify-content: flex-start;
}

.variation-box-container-right{
	justify-content: flex-end;
}

.variation-box-se{
	background: #EC7B48;
	border: 2px solid #FCC7AE;
}

.variation-box-sa{
	background: #81C048;
	border: 2px solid #D2F2B6;
}

.variation-box-sa-b{
	background: #617287;
	border: 2px solid #B4C2D4;
}

.variation-box-rs{
	background: #535B28;
	border: 2px solid #CBD68D;
}

.variation-box-zm{
	background: #329234;
	border: 2px solid #85DE87;
}

.variation-box-sb{
	background: #3D45D2;
	border: 2px solid #AEB1E8;
}

.variation-box-ak{
	background: #EB312F;
	border: 2px solid #f7a7a6;
}

.variation-box-sgr{
	background: #872ABD;
	border: 2px solid #B993CF;
}

.variation-text-material{
	font-weight: bold;
	font-size: min(3vw, 14px);
}

.variation-text-hoshou{
	margin-top: 5px;
	font-weight: bold;
	font-size: min(4vw, 16px);
}

.variation-text-material span{
	display: inline-block;
}

.variation-box img{
	margin-top: 5px;
	width: min(8vw, 50px);
	height: auto;
}

.variation-box-sa-b img{
	width: min(14vw, 75px);
}

.variation-box-sgr img{
	width: min(12vw, 75px);
}

.variation-box a{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 8px 0;
	text-align: center;
}

.variation-kome{
	width: 100%;
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.variation-kome-text-box{
	font-size: 0.8em;
	line-height: 1.6;
}

.variation-kome-text span{
	font-weight: bold;
}

.variation-arrow{
	width: 100%;
	overflow-x: hidden;
}

.variation-arrow-text{
	width: 100%;
	color: #FFFFFF;
	font-size: 1em;
	font-size: min(5vw, 16px);
	font-weight: bold;
	margin: 15px 0;
}

.variation-arrow-text-a{
	width: 100%;
	display: flex;
}

.variation-arrow-text-b{
	margin-top: 20px;
	width: 100%;
	display: flex;
	justify-content: flex-end;
}

.variation-arrow-text-a p, .variation-arrow-text-b p{
	min-width: 200px;
	width: 60vw;
	position: relative;
	padding: 5px 0;
}

.variation-arrow-text-a p{
	transform: translateX(10vw);
	padding-left: 7vw;
	background: linear-gradient(90deg, #E60000 3%, #F39800 35%, #F2EB6B 65%, #009944);
}

.variation-arrow-text-b p{
	transform: translateX(-10vw);
	padding-right: 7vw;
	background: linear-gradient(90deg, #009944 10%, #00B4B8 40%, #0068B7 75%, #4343A8);
	text-align: right;
}

.variation-arrow-text-a p::before{
	content: "";
	position: absolute;
	left: -24px;
	top: 50%;
	transform: translateY(-50%);
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
	border-right: 25px solid #E60000;
}

.variation-arrow-text-a p::after{
	content: "";
	position: absolute;
	right: -3px;
	bottom: -3px;
	display: inline-block;
	width: 0;
	height: 0;
	border-bottom: 40px solid #111111;
	border-left: 20px solid transparent;
}

.variation-arrow-text-b p::after{
	content: "";
	position: absolute;
	right: -24px;
	top: 50%;
	transform: translateY(-50%);
	display: inline-block;
	border-top: 25px solid transparent;
	border-bottom: 25px solid transparent;
	border-left: 25px solid #4343A8;
}

.variation-arrow-text-b p::before{
	content: "";
	position: absolute;
	left: -3px;
	bottom: -3px;
	display: inline-block;
	width: 0;
	height: 0;
	border-top: 40px solid transparent;
	border-left: 20px solid #111111;
}

.variation h3{
	font-size: 1.1em;
	font-weight: bold;
	text-align: center;
}

.variation h3 span{
	font-size: 0.7em;
	font-weight: bold;
	text-align: center;
}

.found-container{
	width: 100%;
	padding: 50px 4vw;
	color: #FFFFFF;
	display: flex;
	width: 100%;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.found-hikaku-container{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
}

.found-hikaku{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 500px;
	margin-top: 20px;
}

.found-hikaku-text{
	padding-right: 10px;
	font-size: clamp(12px, 3vw, 20px);
	width: 34%;
	display: flex;
}

.found-hikaku-text-box{
	display: flex;
	flex-direction: column;
}

.found-hikaku-text-space{
	padding-right: 1em;
}

.found-type-container{
	display: flex;
	justify-content: center;
	font-weight: bold;
	width: 66%;
	position: relative;
}

.found-hikaku-osusume{
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	font-size: min(3vw ,0.8em);
	font-weight: bold;
	padding: 4px 10px;
	background: #FFFFFF;
	color: #333333;
	text-align: center;
}

.found-type-container li{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0 1.5vw;
	position: relative;
	width: 15vw;
	max-width: 80px;
	height: 15vw;
	max-height: 80px;
	padding: 5px;
}

.found-type-container li a{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	position: absolute;
}

.found-type-rank{
	position: absolute;
	top: -20px;
	bottom: 0;
	margin: auto 0;
	font-size: 0.8em;
}

.found-type-rank-tab{
	display: none;
}

.found-type-se{
	background: linear-gradient(to bottom right, #EC7B48, #AD5231);
	border: 2px solid #FCC7AE;
}

.found-type-sa{
	background: linear-gradient(to bottom right, #81C04F, #5C9939);
	border: 2px solid #D2F2B6;
}

.found-type-zm{
	background: linear-gradient(to bottom right, #329234, #1F6928);
	border: 2px solid #85DE87;
}

.found-type-sgrgp{
	background: linear-gradient(to bottom right, #872ABD, #571D96);
	border: 2px solid #B993CF;
}

.found-type-container img{
	width: 60%;
	height: auto;
}

.found-type-container .found-type-sgrgp img{
	width: 90%;
	height: auto;
}

.found-type-material{
	font-size: min(2vw, 12px);
	text-align: center;
	margin-top: 7px;
}

.found-type-material span{
	display: inline-block;
}

/*===================
横幅768px以上でのレイアウト　解説部分
===================*/
@media screen and (min-width: 810px) {
    .variation-img-left{
		width: 50%;
	}
    .variation-img-right{
		width: 50%;
	}
}

@media screen and (max-width: 767px) {
.relief-flex-container {
        align-items: flex-start;
    }
    .relief-card {
        flex-basis: 100%;
		padding: 20px 0px;
    }
}

@media screen and (min-width: 768px) {
    .relief-title{
		font-size: 1.7em;
		white-space: nowrap;
	}
    .relief-text-a{
		font-size: 1em;
	}
    .variation-box-container li{
		width: 20vw;
		margin: 0 3px;
	}
    .variation-box-container-left{
		justify-content: flex-end;

	}
    .variation-box-container-right{
		justify-content: flex-start;
	}
    .variation-box-arrow{
		width: 100%;
	}
    .variation-arrow{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		overflow-x: hidden;
	}
    .variation-arrow-left{
		justify-content: flex-end;
	}
    .variation-arrow-right{
		justify-content: flex-start;
	}
    .variation-arrow-text{
		width: 80%;
		font-size: 1.2em;
		max-width: 800px;
	}

	.variation-arrow-text-a, .variation-arrow-text-b{
		margin-top: 30px;
	}
    .variation-arrow-text-a p, .variation-arrow-text-b p{
		position: relative;
		padding: 5px 0;
	}
    .variation-arrow-text-a p{
		transform: translateX(0);
		padding-left: 0;
		padding-left: min(7vw, 80px);
	}
    .variation-arrow-text-b p{
		transform: translateX(0);
		padding-right: 0;
		padding-right: min(7vw, 80px);
	}
    .variation-arrow-text-a p::after, .variation-arrow-text-b p::before{
		display: none;
	}
    .variation-arrow-text-a p::before{
		left: -24px;
		bottom: -40%;
		border-top: 29px solid transparent;
		border-bottom: 29px solid transparent;
		border-right: 29px solid #E60000;
	}
    .variation-arrow-text-b p::after{
		right: -24px;
		bottom: -40%;
		border-top: 29px solid transparent;
		border-bottom: 29px solid transparent;
		border-left: 29px solid #4343A8;
	}
    .found-title{
		font-size: 2.6em;
	}
    .found-hikaku{
		width: 46%;
		justify-content: space-between;
	}
    .found-hikaku-container{
		justify-content: space-between;
	}
    .found-hikaku-text{
		font-size: clamp(0.9em, 2vw, 1.2em);
		width: 37%;
	}
    .found-type-container{
		justify-content: space-between;
		width: 63%;
	}
    .found-type-container li{
		margin: 0 1vw;
		width: 7vw;
		max-width: 80px;
		height: 7vw;
		max-height: 80px;
		padding: 5px;
	}
    .found-type-rank-tab{
		display: block;
	}
    .found-type-material{
		font-size: min(1vw, 12px);
	}
}

/*===================
横幅1025px以上でのレイアウト　解説部分
===================*/
@media screen and (min-width: 1025px) {
    .variation{
		display: flex;
		flex-direction: column;
		width: 100%;
	}
    .variation-text-material{
		font-size: min(5vw, 18px);
	}
    .variation-text-hoshou{
		margin-top: 8px;

	}
    .found-title{
		font-size: 3em;
	}
    .found-hikaku{
		max-width: 900px;
	}
    .found-hikaku-text-box{
		flex-direction: row;
	}
    .found-type-rank{
		font-size: 1em;
	}
    .found-hikaku-text{
		width: 45%;
		font-size: clamp(1em, 1.4vw, 1.2em);
	}
    .found-type-container{
		width: 55%;
	}
    .found-type-container li{
		margin: 0  0.75vw;
		width: 6vw;
		max-width: 100px;
		height: 6vw;
		max-height: 100px;
		padding: 5px;
	}
    .found-type-material{
		font-size: min(1vw, 12px);
	}
}

/*===================
横幅1400px以上でのレイアウト　解説部分
===================*/
@media screen and (min-width: 1400px) {
    .explanation-container{
		padding: 20px 50px 0 50px;
	}
    .variation{
		padding:20px 50px 50px 50px;
	}
    .found-container{
		padding: 50px;
	}
    .found-hikaku-text{
		width: 48%;
	}
    .found-type-container{
		width: 52%;
	}
    .found-type-container li{
		margin: 0 2.5px;
		width: 80px;
		height: 80px;
	}
}

/*===============================================================
スタートメニュー
=================================================================*/
.support-title{
	font-size: 1.7em;
	font-weight: bold;
	width: 100%;
	margin-bottom: 26px;
	padding-left: 5px;
	text-align: center;
	color: #555555;
}

#support{
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	padding: 50px 4vw 50px 4vw;
	width: 100%;
}

.support-list{
	width: 43vw;
	height: 85px;
	font-size: 0.8em;
	box-sizing: border-box;
	border-radius: 15px;
	box-shadow: 1px 1px 2px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 4px;
	transition: .3s;
	background: #444444;
	color: #FFFFFF;
	border: 1px solid #444444;
}

.support-list svg{
	width: 40px;
	max-height: 40px;
	fill: #FFFFFF;
}

.support-text{
	margin-top: 2px;
}

.sup-news-bg{
	background: #FFFFFF;
}

.sup-news-container{
	display: flex;
	flex-wrap: wrap;
	max-width: 1300px;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 30px;
}

.support-list:hover{
	background: #888888;
}

/*===================
横幅768px以上でのレイアウト　スタートメニュー
===================*/
@media screen and (min-width: 768px) {
    #support{
		font-size: 1em;
	}
    .support-title{
		font-size: 1.7em;
	}
    .support-list{
		width: 22vw;
		height: 100px;
	}
    .support-list svg{
		width: 50px;
		max-height: 50px;
		transition: .3s;
	}
}

/*===================
横幅1025px以上でのレイアウト　スタートメニュー
===================*/
@media screen and (min-width: 1025px) {
    .support-list{
		width: 14vw;
	}
    #support{
		width: 40%;
	}
}

/*===================
横幅1400px以上でのレイアウト　スタートメニュー
===================*/
@media screen and (min-width: 1400px) {
    #support{
		padding: 50px;
	}
    .support-list{
		width: 170px;
	}
}

/*===============================================================
 NEWS
=================================================================*/
.news{
	display: flex;
	flex-wrap: wrap;
	padding: 50px 4vw 50px 4vw;
	position: relative;
	width: 100%;
}

.news-p-bold{
	font-weight: bold;
}

.news-header{
	width: 100%;
	margin-bottom: 26px;
	position: relative;
}

.news-title{
	font-size: 1.7em;
	font-weight: bold;
	color: #555555;
	font-style: italic;
	padding-left: 5px;
	text-align: center;
}

.news-all{ /* 過去のお知らせ */
	margin-bottom: 3px;
	background: #666666;
	color: #FFFFFF;
	font-size: 0.8em;
	padding: 3px 10px 3px 25px;
	border-radius: 3px;
	transition: .3s;
	position: absolute;
	right: 30px;
	bottom: 0;
}

.news-all::before{
	content: "";
	position: absolute;
	left: 5px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 6px;
	height: 6px;
	border-radius: 2px;
	border-left: 2px solid #FFFFFF;
	border-bottom: 2px solid #FFFFFF;
	transform: rotate(-135deg);
	box-sizing: content-box;
}

.news-label{ /* ラベルと時間 */
	font-size: 1.1em;
	font-weight: bold;
}

.news-label span{
	background: #3D63CC;
	color: #FFFFFF;
	border-radius: 3px;
	padding: 0 0.5em;
}

.news-label .new-items{
	background: #FF5050;
}

.news-label time{
	font-weight: normal;
	color: #666666;
}

.news-text{
	line-height: 1.7;
	margin-top: 1em;
	border-bottom: 1px dotted #666666;
	padding-bottom: 3em;
	display: flex;
	flex-wrap: wrap;
}

.news-text p{
	width: 100%;
}

.news-text-margin{
	margin-top: 10px;
}

.news-list{
	padding-bottom: 5px;
	max-height: 20em;
	overflow-y: scroll;
	width: 100%;
}

.news-list li{
	padding-top: 3em;
	width: 100%;
}

.news-list li:first-of-type{
	border-top: 1px dotted #666666;
	padding-top: 2em;
	margin-top: 1em;
}

.news-text a{
	color: #1558D6;
	text-decoration:underline;
}

.news-text-img{
	width: 100%;
	text-align: center;
}

.news-text-img-a:hover{
	opacity: 0.8;
}

.news-text img{
	width: 100%;
	height: auto;
	max-width: 500px;
}

.news-all:hover{
	background: #888888;
	color: #FFFFFF;
}

.news-margin{
	margin-top: 20px;
}

.news-text-link, .news-text-link-pdf{
	padding: 10px;
	text-align: center;
	font-size: 1em;
	font-weight: bold;
	margin: 10px 0 0 10px;
	border: 1px solid #3D63CC;
}

.news-text-link-pdf span{
	font-size: 0.7em;
	margin-left: 1em;
}

.news-text-link p::before, .news-text-link-pdf p::before{
	content: "";
	display: inline-block;
	top: 0;
	bottom: 0;
	margin: auto;
	margin-right: 0.5em;
	width: 12px;
	height: 12px;
	border-radius: 1px;
	border-top: 2px solid #3D63CC;
	border-right: 2px solid #3D63CC;
	transform: rotate(45deg);
	box-sizing: content-box;
}

/*===================
横幅768px以上でのレイアウト　ニュース
===================*/
@media screen and (min-width: 768px) {
    .news-title{
		font-size: 1.7em;
	}
    .news-all{
		right: 70px;
	}
    .news-label{
		font-size: 1em;
	}
    .news-text-link, .news-text-link-pdf{
		font-size: 1.2em;
		padding: 10px 30px;
	}
}

/*===================
横幅1025px以上でのレイアウト　ニュース
===================*/
@media screen and (min-width: 1025px) {
    .news{
		width: 60%;
		height: 100%;
	}
    .news-label{
		font-size: 0.8em;
	}
    .news-text{
		font-size: 0.8em;
	}
    .news-list{
		max-height: 25em;
	}
    .news-text a{
		text-decoration:none;
	}
    .news-text a:hover{
		text-decoration:underline;
	}
    .news-text-link, .news-text-link-pdf{
		font-size: 1.4em;
	}
}

/*===================
横幅1400px以上でのレイアウト　ニュース
===================*/
@media screen and (min-width: 1400px) {
    .news{
		padding: 50px;
	}
}