section {
    max-width: 1400px;
    margin: 0 auto;
}

.font {
    font-size: 1.8rem;
    color: var(--accent-color);
    padding: 8px;
}

.noise-list {
    padding: 0 8px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    gap: 10px;
}

.noise-list li {
    margin-bottom: 30px;
    flex-basis: 300px;
}

.noise-list li p {
    border-bottom: 2px solid;
    width: fit-content;
    margin: 0 auto 10px;
    font-weight: 600;
}

b {
	font-weight: bold;
}

@media (min-width: 1000px) {
    .noise-list li {
        flex-basis: 360px;
    }
}

.btn_con {
    display: flex;
    flex-flow: row wrap;
    gap: 0 60px;
    justify-content: space-evenly;
}

#noise > p,
#maintenance_service > p {
    padding: 0 8px;
    margin: 30px auto;
}

.hgroup-con > p {
    padding: 0 8px;
}

.blue {
	color: #00008B;
}

.red {
	color: #D12D37;
}
/*****************
fv
******************/

.slideshow1 hgroup {
	margin: 0 0 1em;
}

.slideshow1 hgroup p {
	font-size: 28px;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: -1px;
	color: #202050;
	font-family: 'Noto Sans JP';
}

.slideshow1 hgroup p b {
	color: #044E99;
}

@media(min-width:768px){
	.slideshow1 {
		display: flex;
		flex-flow: row nowrap;
		max-width: 1200px;
		justify-content: center;
		align-items: center;
	}
	.slideshow1 hgroup {
		width: clamp(300px, 35vw, 450px);
		margin-bottom: 50px;
	}
	.slideshow1 hgroup h1 {
		font-size: clamp(18px, 4vw, 20px);
	}
	.slideshow1 hgroup p {
		font-size: clamp(24px, 3vw, 28px);
	}
	.slideshow1 .slide-wr {
		flex-basis: 300px;
		flex-grow: 1;
	}
	.slideshow1 .slide-wr ul {
		aspect-ratio: 2 / 1;
		height: auto;
	}
}

/* ページ内ナビ */

.page-nav {
	margin: 2em auto;
	max-width: 1100px;
	padding: 0 20px;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	gap: 10px;

}

.page-nav li {
	width: clamp(100px, 30vw,350px);
	height: 100px;
	padding: 1em;
	background-color: #044e99;
	border-radius: 10px;
	box-shadow: inset 0px -10px 10px #00000080;
	flex-grow: 1;
	display: flex;
	justify-content: space-around;
}

.page-nav li a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	font-size: 14px;
	text-align: center;
}

.page-nav li a b {
	font-size: 18px;
	text-align: center;
}

.page-nav li a::after {
	content: '';
	background-image: url(arrow.svg);
	width: 40px;
	height: 20px;
}

@media (min-width:500px) {
	.page-nav li {
		display: none;
	}
}

/* 修理サービス */

#service {
	background-color: #E7F4FC;
	max-width: unset;
	padding: 2em 0;
	margin: 2em 0;
}

.service-wr {
	margin: 0 auto;
	padding: 0 10px;
}

#service h2 {
	font-size: 28px;
	font-weight: bold;
	margin: 1em auto;
	display: table;
}

.h2-blue {
	color: #00008B;
}

#service h3 {
	color: #00008B;
	font-size: 24px;
	margin: 16px 0;
}

.service-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.service-list li {
	display: flex;
	flex-flow: row nowrap;
	flex-grow: 1;
	gap: 8px;
}

.service-list li img {
	width: 160px;
	height: fit-content;
	object-fit: cover;
	aspect-ratio: 1 / 1;
}

#service .service-list li div h3 {
	margin: 0;
	font-size: 1.2em;
}

.service-list li div p {
	margin: 0;
	font-size: 1em;
}
@media (min-width: 600px) {
	.service-list {
		grid-template-areas: 
		"a b"
		"c d";
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}
	.service-list li img {
		aspect-ratio: unset;
		width: 100%;
	}
	.service-list li {
		flex-flow: column nowrap;
	}	
}
@media(min-width:900px){
	.service-wr {
		display: flex;
		justify-content: space-between;
		max-width: 1100px;
		margin-top: 84px;
	}
	#service h2 {
		width: 260px;
		flex-shrink: 0;
		margin: 0 2em 0 0;
	}
}

/* 修理事例公開中 */
.link-wr {
	margin: 2em auto;
	padding: 0 10px;
	max-width: 1100px;
}
.case-public {
	margin: 2em 0;
	max-width: 1100px;
	background-color: #044E99;
	padding: 1.5em;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.case-public h2 {
	margin: 0 auto;
	text-align: center;
	color: white;
}

.case-public a {
	background-color: white;
	color: #044E99;
	font-weight: bold;
	padding: 0.5em 1em;
	display: flex;
	flex-flow: row nowrap;
	gap: 16px;
	align-items: center;
}

.case-public a::after {
	content: '';
	background-image: url(arrow-r.svg);
	background-size: cover;
	width: 30px;
	height: 30px;
}

/* 来店 */

.reserve {
	max-width: 1100px;
	margin: 2em auto;
	padding: 1.5em;
	background-color: white;
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, 25%));
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.reserve .reserve-wr {
	display: flex;
	flex-flow: row wrap;
	gap: 16px;
	justify-content: center;
}

.reserve .reserve-wr span {
	margin: 0 auto;
}

.reserve a {
	min-width: 240px;
	height: fit-content;
	background-color: #044E99;
	color: white;
	font-weight: bold;
	padding: 0.5em 1em;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
}
.reserve .web-r {
	margin-top: 24px;	
}

.reserve .tel-r {
	padding-top: 24px;	
}
.reserve a::after {
	content: '';
	background-image: url(arrow-r.svg);
	background-size: cover;
	width: 30px;
	height: 30px;
}

.reserve .tel-r p {
	margin: 0;
	text-align: center;
}

/* 修理サービス */
.repair {
	margin: 6em auto;
	max-width: 1100px;
	padding: 0 10px;
}
.repair h2 {
	margin: 2em auto 0;
	text-align: center;
}
.repair h3 {
	margin: 8px auto;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.6;
}
.repair p {
	font-weight: 500;
	font-size: 14px;
	line-height: 2;
	letter-spacing: 0.5px;
	max-width: unset;
}
.repair-list li {
	background-color: #F6FCFF;
	padding: 16px;
	margin: 2em auto;
	max-width: 500px;
}

@media (min-width:768px) {
	.repair-list li {
		display: flex;
		flex-flow: row nowrap;
		align-items: center;
		padding: 35px;
		gap: 16px;
		border-radius: 40px;
		max-width: unset;
	}
	.repair-list li:nth-child(odd) {
		flex-direction: row-reverse;
	}
	.repair-list li .repair-content {
		width: 60%;
	}
	.repair-list img {
		height: fit-content;
		width: 40%;
	}
}
/* ヤナモ保険 */

.insurance {
	border-top: 4px solid #D12D37;
	border-bottom: 4px solid #D12D37;
	max-width: unset;
	padding: 4em 0;
}

.insurance-wr {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 10px;
}

.insurance-wr h2 {
	font-size: 32px;
}

.insurance-wr h2 .insurance-content p {
	font-weight: 500;
	line-height: 1.6;
}

.a-btn {
	min-width: 240px;
	height: fit-content;
	background-color: #044E99;
	color: white;
	font-weight: bold;
	padding: 0.5em 1em;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	width: 200px;
	margin: 0 auto;
}

.a-btn::after {
	content: '';
	background-image: url(arrow-r.svg);
	background-size: cover;
	width: 30px;
	height: 30px;
}

@media (min-width:600px) {
	.insurance-wr {
		display: flex;
		flex-flow: row nowrap;
		gap: 16px;
	}
	.insurance-wr h2 {
		width: 45%;
	}
	.insurance-wr .insurance-content {
		width: 55%;	
	}	
}