@charset "utf-8";
/* CSS Document */

body{
	margin: 0;
}

.wrapper{
	max-width: 600px;
	width: 100%;
	margin: 0 auto 3%;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

.wrapper img{
	display: block;
	line-height: 0;
}

.wrapper h1{
	text-align: center;
	font-size: 24px;
	margin: 10% auto 5%;
	line-height: 1.6;
}

.lead{
	text-align: center;
	margin: 10% auto 10%;
	font-size: 14px;
	line-height: 2.2;
}

.wrapper ul{
	padding: 0;
	list-style: none;
	width: fit-content;
	margin: 15% auto;
}

.wrapper ul li{
	font-size: 16px;
	line-height: 2;
	letter-spacing: 2px;
	margin: 2% 0;
}

.wrapper ul li:before{
	content: '';
	display: inline-block;
	width: 26px;
	height: 26px;
	background-image: url("../images/icon.png");
	background-size: contain;
	vertical-align: middle;
	margin-right: 5px;
}

.comentAria{
	margin: 10% auto;
	width: 90%;
}

.comentAria h2{
	text-align: center;
	font-size: 18px;
	color: #2c3582;
	margin: 5% auto;
}

.box{
	margin: 10% auto 15%;
	width: 95%;
}

.no__area{
	position: relative;
}

.no1{
	position: absolute;
	width: 23%;
	top: 0;
	right: 3%;
}

.no2{
	position: absolute;
	width: 23%;
	top: 0;
	left: 3%;
}

.box__img2{
	display: grid;
	justify-content: center;
	grid-template-columns: 43% 20% 35%;
	column-gap: 5px;
	grid-row-gap: 5px;
	padding-top: 14%;
}

.box__img2 img:first-child{
	grid-column: 1 / 3;
	grid-row: 1 / 3;
}

.box__img1{
	display: grid;
	justify-content: center;
	column-gap: 5px;
	grid-row-gap: 5px;
	grid-template-columns: 35% 20% 43%;
	padding-top: 14%;
}

.box__img1 img:nth-child(2){
	grid-column-start: 1;
    grid-row-start: 2;
}

.box__img1 img:last-child{
	grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 2;
    grid-row-start: 1;
}

.box h2{
	text-align: center;
	font-size: 18px;
	line-height: 1.5;
	margin: 8% auto 2%;
}

.box h2 span{
	font-size: 18px;
}

.box h2 span:after{
	content: '税込';
	font-size: 13px;
	margin-left: 3px;
}

.box a{
	display: block;
	width: 30%;
	margin: 2% auto;
	text-align: center;
	background-color: #000;
	color: #fff;
	text-decoration: none;
}

.box p{
	text-align: center;
	font-size: 14px;
	line-height: 2;
	margin: 8% auto;
}

.box_last{
	margin-bottom: 5%;
}
		
.comentBox{
	display: flex;
	column-gap: 20px;
	align-items: center;
	margin-bottom: 8%;
}

.staff{
	width: 40%;
}

.comment{
	border: 1px solid #2c3582;
    border-radius: .75em;
    padding: .5em .75em .75em;
    position: relative;
	width: 100%;
}

.comment:before{
	content: '';
	position: absolute;
	top: 40px;
	left: -8px;
	background-color: #fff;
    width: 13px;
	height: 20px;
}

.comment:after{
	content: '';
	position: absolute;
	background-color: #2c3582;
	top: 48px;
	left: -18px;
    height: 1px;
    transform: rotate(-30deg);
    transform-origin: right center;
    width: 20px;
}

.comment h3{
	font-size: 14px;
	color: #2c3582;
}

.comment .text{
	font-size: 11px;
	line-height: 1.8;
}

@media(min-width:750px){
	.lead{
		font-size: 15px;
	}
	
	.box h2{
		font-size: 25px;
	}

	.comment h3{
		font-size: 13px;
	}
	.comment .text{
		font-size: 12px;
	}
}