@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

html {
    width: 100%;
    font-size: 16px;
}

body {
    margin: 0 1em;
    font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
    color: #333333;
}

main {
    margin: 0 auto 3em auto;
    max-width: 1200px;
    display: grid;
    justify-items: center;
    gap: 1em;
}

.toplogo {
    height: 200px;
}

.title {
    margin: 0.5em;
    text-align: center;
    font-weight: bold;
    line-height: 1.5;
    font-size: 38px;
}

.mv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
    gap: 2em;
}

.mv-img {
    max-width: 100%;
    max-height: 350px;
}

.mv-new {
    width: 120px;
    height: 120px;
    margin: 0;
    background-color: darkorange;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 32px;
    display: grid;
    place-content: center;
}

.mv-desc {
    line-height: 1.8;
    margin: 1em 1em 1em 0;
}

.line_box{
	border-top: #989898 1px solid;
	width: 100%;
	margin-top: 1em;
}

@media screen and (max-width: 779px) {
    .mv {
        grid-template-columns: 1fr;
    }
    .mv-new, .mv div .buy-button {
        margin: 0 auto;
    }
    .mv-desc {
        text-align: center;
        margin: 1em 0;
    }
}

.buy-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    text-align: center;
    padding: 0.5em 1.5em;
    background-color: darkorange;
    border-radius: 12px;
    color: white;
    font-weight: bold;
    text-decoration: none;
}
.buy-button::after {
    padding-left: 1em;
    content: ">";
    font-weight: normal;
    font-size: 1.3em;
}

.buy-button.book{
	background-color: #3d8f00;
}

.sectitle {
    margin: 1em;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
}

.goods-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3em;
    margin: 0;
    padding: 0;
}

.goods {
    max-width: 350px;
    list-style-type: none;
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 1em;
}

@media screen and (max-width: 779px) {
    .goods {
        max-width: 100%;
    }
}

.goods-img {
    width: 100%;
    max-height: 350px;
}

.buy-button-l {
    width: 16em;
    padding: 16px 1em;
}

.links {
    margin-top: 3em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5em;
}