main {
    margin-top: 72px;
    padding: 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    background: #f9f9e7;
}
.pagetitle {
    text-align: center;
    padding: 40px 0;
    background: #f0f0e8;
}
.pagetitle h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}
.pagetitle-sub {
    font-size: 1rem;
    color: #555;
}

.laser-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.laser-img img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin-top: 30px; 
}

.img-caption {
    font-size: 0.85rem;
    color: #333;
    text-align: center;
    margin-top: 6px;
}

.laser-text {
    flex: 1;
    font-size: 1rem;
    line-height: 1.7;
}

.laser-title {
    position: relative;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
}

.laser-title .bg-icon {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.laser-title .bg-icon::before {
    content: "";
    position: absolute;
    top: -0.3em;
    left: -0.8em;
    width: 30px;
    height: 30px;
    background: url(../common/img/bg_mark.png) no-repeat center/contain;
    z-index: -1;
}

.breadcrumb a {
    text-decoration: none;
    color: #000;
}

/* ※行インデントと行間 */
.laser-text .note {
    margin: 0;
}

.laser-text .note p {
    margin: 0;
    padding-left: 1.8em;
    text-indent: -0.5em;
    line-height: 1;
    font-size: 0.9rem;
}

.laser-text .note .marker {
    font-size: 0.8em;
    display: inline;
}

/* 通常行間 */
.laser-text p {
    margin-bottom: 1em;
}

/* ✅ キャンセル・承諾書だけ独立行間 */
.laser-text .cancel-link-wrapper {
    margin: 0 !important;
    padding: 0;
    line-height: 1;
}

.laser-text .syoudaku-link-wrapper {
    margin: 0 !important;
    padding: 0;
    line-height: 1;
}

.laser-text .orange-link {
    color: #ff6600;
    text-decoration: none;
    display: inline-block;
}

.calendar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    text-decoration: none;
    color: #000;
    font-size: 1.2rem;
    line-height: 1.5;
}

.laser-text .calendar-link img {
    width: 24px;
    height: auto;
}

.reserve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ff7f32;
    color: #fff;
    padding: 14px 36px;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 24px;
}
.back-btn {
    display: block; /* ← ここが重要 */
    margin: 24px auto 0; /* ← 自動で左右中央 */
    padding: 7px 18px;
    background: #ff7f32;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    text-align: center;
    width: fit-content;
}

.reserve-btn img {
    width: 20px;
    height: auto;
}

/* Q&A セクション */
.qanda dl {
    margin-left: 1em;
}
.qanda dt {
    font-weight: bold;
    margin-top: 0.5em;
}
.qanda dd {
    margin-left: 1em;
    margin-bottom: 0.8em;
}

/* ✅ サンプル画像間隔ゼロ */
.sample-list {
    display: flex;
    justify-content: space-between;
    gap: 0;
}

.sample-item {
    width: 33.3333%;
    text-align: center;
}
.sample-item img {
    width: 90%;
    height: auto;
}

/* ✅ 太字指定 */
.bold-text {
    font-weight: bold;
}
@media (max-width: 1100px) {

    .laser-flex {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .laser-img img {
        max-width: 90vw;
        max-width: 500px; 
        margin: 0 auto;
    }

    .img-caption {
        text-align: center;
        margin-bottom: 20px;
    }

    .laser-text {
        width: 100%;
        padding: 0 10px;
    }

    .pagetitle h1 {
        white-space: nowrap;
        font-size: 1.6rem;
    }

    .sample-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .sample-item {
        width: calc(50% - 5px);
        box-sizing: border-box;
        text-align: center;
    }

    .sample-item img {
        width: 90%;
        margin: 0 auto;
        max-width: 200px;
    }
}