@charset "utf-8";
/* CSS Document */
:root {
  --blue: #004567;
  --r_blue: #0091c0;
}

.Futura{
	font-family: "futura-100", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.mainte-top-contets{
	position: relative;
    margin-top: 70px;
	width: 100%;
	height: 500px;
	background-image: url("../img/dryingplate/01.jpg");
	background-position: center bottom 35%;
	background-size: cover;
}
.mainte-top-contets::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
}
.mainte-top-copy{
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	transform: translate(-50%,-50%);
	width: 90%;
	text-align: center;
	color: #ffffff;
}
.mainte-top-copy p{
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -0.025em;
}
.mainte-top-copy h1{
	font-size: 3rem;
	font-weight: 700;
	letter-spacing: -0.025em;
}
.mainte-top-copy span{
	font-size: 1.25rem;
	letter-spacing: 0.23em;
}

/*メインコンテンツ*/
body.drying-plate-tips main{
	padding: 60px 0 100px;
}

.mainte-sentence{
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	font-size: 1.1rem;
    font-weight: 700;
    line-height: 2.2em;
    letter-spacing: 0.025em;
}
.mainte-sentence span,
.mainte-sec span,
.mainte-bottom-sentence p span{
	color: var(--r_blue);
	text-decoration: underline;
}
.mainte-sec{
	margin-top: 70px;
}
.mainte-sec-title{
	padding: 60px 0;
	border-top: 10px solid var(--blue);
	border-bottom: 10px solid var(--blue);
	text-align: center;
	color: var(--blue);
}
.mainte-sec-title h2{
	font-size: 2.5rem;
}
.mainte-sec-title p{
	font-size: 1.25rem;
	letter-spacing: 0.23em;
}
h3.dryingplate-sub{
	margin-top: 70px;
	text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blue);
	padding-bottom: 15px;
    position: relative;
}
h3.dryingplate-sub::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background-color: var(--blue);
	opacity: 0.2;
}
h3.dryingplate-sub + p{
	width: 100%;
    max-width: 750px;
    margin: 30px auto 0;
	text-align: justify;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.8em;
    letter-spacing: 0.025em;
}
.dryingplate-list{
	margin-top: 55px;
	text-align: center;
}
.dryingplate-list:not(:has(li h4)){
  margin-top: 30px;
}
.dryingplate-list li{
	padding: 60px 40px 40px;
	background-color: #f5f5f5;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	position: relative;
}
.dryingplate-list li:not(:first-of-type){
	margin-top: 55px;
}
.dryingplate-list li:has(.dryingplate-list-img){
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.dryingplate-list li h4{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	transform: translateY(-50%);
	text-align: center;
	width: 100%;
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 0.075em;
	color: var(--blue);
}
.dryingplate-list li p{
	display: inline-block;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.8em;
    letter-spacing: 0.025em;
}
.dryingplate-list-img{
	width: 45%;
	height: 250px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	overflow: hidden;
}
.dryingplate-list-img img{
	height: 100%;
	object-fit: cover;
}
.dryingplate-list-img.double{
	display: flex;
}
.dryingplate-list-subimg{
	width: 50%;
}
.dryingplate-list li:has(.dryingplate-list-img) p{
	width: calc(55% - 20px);
}
.dryingplate-list + p{
	margin-top: 20px;
	text-align: right;
	font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.8em;
    letter-spacing: 0.025em;
}

.mainte-bottom-sentence {
    width: 100%;
    max-width: 750px;
    margin: 100px auto 0;
}
.mainte-bottom-sentence h3{
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blue);
}
.mainte-bottom-sentence p{
    margin-top: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 2.2em;
    letter-spacing: 0.025em;
}
.mainte-bottom-copy {
    width: 80%;
    max-width: 400px;
    margin: 50px auto 0;
}

a.dryingplate-to-maintenance{
	display: block;
    margin: 55px auto 0;
    padding: 0 2.5em;
    width: auto;
	text-align: center;
    height: 80px;
    line-height: 74px;
    border: 3px solid var(--blue);
    background-color: #ffffff;
    color: var(--blue);
    font-size: 1.5rem;
    font-weight: 700;
    -webkit-border-radius: 40px;
    border-radius: 40px;
	transition: .3s ease;
}
a.dryingplate-to-maintenance:hover{
	color: #ffffff;
	background-color: var(--blue);
}
    



/*調整用*/
@media screen and (max-width:1100px) {

}

/*スマートフォン*/
@media screen and (max-width:780px) {
	/*トップコンテンツ*/
	.mainte-top-contets{
		margin-top: 40px;
		height: 150px;
	}
	.mainte-top-copy p{
		font-size: 0.8rem;
	}
	.mainte-top-copy h1{
		font-size: 1.2rem;
		line-height: 1.2em;
	}
	.mainte-top-copy span{
		font-size: 1.6vw;
	}
	
	/*メインコンテンツ*/
	body.drying-plate-tips main{
		padding: 40px 0 60px;
	}
	.mainte-sentence{
		font-size: 0.9rem;
	}
	.mainte-sec{
		margin-top: 45px;
	}
	.mainte-sec-title{
		border-width: 5px;
		padding: 40px 0 ;
	}
	.mainte-sec-title h2{
		font-size: 1.2rem;
	}
	.mainte-sec-title p{
		font-size: 0.8rem;
	}
	h3.dryingplate-sub{
		margin-top: 45px;
		font-size: 1.3rem;
	}
	h3.dryingplate-sub + p{
		font-size: 0.9rem;
	}
	.dryingplate-list,
	.dryingplate-list li:not(:first-of-type){
		margin-top: 45px;
	}
	.dryingplate-list li{
		padding: 30px 20px 20px;
		-webkit-border-radius: 10px;
		border-radius: 10px;
	}
	.dryingplate-list li:has(.dryingplate-list-img){
		flex-wrap: wrap;
	}
	.dryingplate-list li h4{
		font-size: 1rem;
		letter-spacing: 0rem;
	}
	.dryingplate-list li p{
		font-size: 0.8rem;
	}
	.dryingplate-list-img{
		width: 100%;
		height: 180px;
		-webkit-border-radius: 10px;
		border-radius: 10px;
	}
	.dryingplate-list li:has(.dryingplate-list-img) p{
		width: 100%;
		margin-top: 12px;
	}
	.dryingplate-list + p{
		font-size: 0.7rem;
	}
	.mainte-bottom-sentence{
		margin-top: 80px;
	}
	.mainte-bottom-sentence h3{
		font-size: 1.1rem;
	}
	.mainte-bottom-sentence p{
		margin-top: 20px;
		font-size: 0.8rem;
	}
	a.dryingplate-to-maintenance{
		margin-top: 40px;
		height: 60px;
		line-height: 54px;
		font-size: 1rem;
		border-radius: 30px;
		-webkit-border-radius: 30px;
	}
}