/* Dayton Page CSS */

.dayton-content {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 0 30px 0;
    font-family: 'Noto Sans JP', sans-serif;
}

/* Intro Section */
.dayton-intro {
    margin-bottom: 80px;
    text-align: center;
}

.dayton-intro .design_headline {
    line-height: 1.5;
}

/* Allow natural line break between EN and JP if needed */
.dayton-intro .design_headline span.headline_text {
    word-break: keep-all;
    /* or specific spans if user edits HTML */
}

.dayton-desc {
    font-size: 15px;
    line-height: 2;
    text-align: left;
    display: inline-block;
    max-width: 800px;
    margin: 0 auto;
}

/* Product Blocks */
.dayton-product-block {
    margin-bottom: 30px;
}

.dayton-labels {
    margin-bottom: 0px;
    font-weight: bold;
    font-family: 'Roboto', sans-serif;
    /* 英語フォント */
    font-size: 18px;
    text-align: center;
}

/* 2 Column Labels */
.dayton-labels.col2 {
    display: flex;
    justify-content: space-around;
    /* 均等配置。画像に合わせて調整が必要かも */
    /* 画像が2分割されている前提なら、width: 50%ずつに配置 */
}

.dayton-labels.col2 .label-item {
    width: 50%;
    text-align: center;
}

/* Image */
.dayton-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Official Link */
.dayton-official-link {
    text-align: center;
    margin: 0 0 30px 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: bold;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .dayton-content {
        padding: 0px 30px;
    }

    .dayton-product-block .dayton-image {
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }

    .dayton-headline {
        font-size: 22px;
    }

    .dayton-desc {
        font-size: 14px;
        text-align: left;
    }

    .dayton-labels {
        font-size: 16px;
    }
}