@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap');

/* テンプレここから*/

html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    margin: 0 auto;
    color: #231815;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-style: normal;
	font-size: 1.2rem;
	text-align: center;
}


/* 幅設定 */

.mt-6 {
    margin-top: 5rem;
}
.mt-7 {
    margin-top: 7rem;
}
.mb-6 {
    margin-bottom: 5rem;
}
.mb-7 {
    margin-bottom: 7rem;
}
.pt-6 {
    padding-top: 5rem;
}
.pt-7 {
    padding-top: 7rem;
}
.pb-6 {
    padding-bottom: 5rem;
}
.pb-7 {
    padding-bottom: 7rem;
}


/* テンプレここまで */

.mainImg {
    background: url(../images/top_pc.webp) no-repeat center top;
    background-size: contain;
    width: 100%;
    aspect-ratio: 1920 / 1028;
}

h2{
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin: 4.5rem 0 3rem;
}

p{
	line-height: 2.5rem;
}



@media screen and (min-width: 481px) {
	.sponly {
		display: none;
	}
}


@media screen and (max-width: 480px) {
	.pconly {	
		display: none;
	}
	.mainImg {
        background: url(../images/top_sp.webp) no-repeat center top;
        aspect-ratio: 720 / 1010;
        background-size: contain;
    }
	img{
		width: 85%;
	}
	h2{
	font-size: 1.9rem;
	letter-spacing: 0.08em;
	margin: 2.8rem 0 2rem;
}

p{
	line-height: 1.8rem;
	font-size: 16px;
}

}