.session-lead {
    width: 1100px;
    margin: 0 auto 50px;
}

.session-menu {
    width: 1100px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 100px;
}

.session-menu li a {
    color: #d72854;
    font-weight: 700;
    font-size: 18px;
}

.session-menu li a::before {
    content: "↓";
    display: inline-block;
    margin-right: 10px;
}

.c-about-session {
    width: 1100px;
    margin: 0 auto;
}

.c-session__item {
    margin-bottom: 50px;
    border: #d72854 4px solid;
    border-radius: 10px;
    padding: 50px 30px;
    scroll-margin-top: 150px;
}

.c-session__item-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.c-session__item-title img {
    display: block;
}

.c-session__item-title-text {
    width: 65%;
    font-size: 20px;
    color: #333;
    font-weight: 700;
}

.c-session__item-title-text p {
    display: flex;
}

.c-session__item-title-text p span {
    display: flex;
    align-items: baseline;
}

.c-session__item-title-text p span:first-child {
    margin-right: 60px;
}

.c-session__item-title-text p:not(:last-child) {
    margin-bottom: 10px;
}

.c-session__item-title-text p strong {
    font-size: 36px;
}

.session-button-wrapper {
    margin: 50px auto;
    text-align: center;
}

.session-button {
    display: inline-flex;
    align-items: center;
    padding: 20px 25px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background-color: #d72854;
    border-radius: 10px;
    transition: all .3s;
}

.session-button:hover {
    color: #d72854;
    background-color: #fff;
    outline: 1px solid #d72854;
    cursor: pointer;
    opacity: 1;
}

.c-about__link.--size-small {
    text-align: center;
}

/* session-button アイコン丸 */
.session-button__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.session-button__icon::before {
    position: absolute;
    inset: 0;
    content: "";
    background-color: #fff;
    border-radius: 50%;
    transition: background-color .3s;
}

.session-button:hover .session-button__icon::before {
    background-color: #d72854;
}

.session-button__icon-img {
    position: relative;
    z-index: 1;
}

.session-button__icon-img path {
    stroke: #d72854;
    transition: stroke .3s;
}

.session-button:hover .session-button__icon-img path {
    stroke: #fff;
}

/* ホームへ戻る・ご予約ボタン共通スタイル */
.c-about__link-wrapper-process .c-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 20px 25px !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #fff !important;
    background-color: #d72854 !important;
    border-radius: 10px !important;
    transition: all .3s !important;
    width: auto !important;
}

.c-about__link-wrapper-process .c-link:hover {
    color: #d72854 !important;
    background-color: #fff !important;
    outline: 1px solid #d72854 !important;
    cursor: pointer !important;
}

.c-about__link-wrapper-process .c-link .c-link__icon {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    width: 30px !important;
    height: 30px !important;
}

.c-about__link-wrapper-process .c-link .c-link__icon::before {
    position: absolute !important;
    inset: 0 !important;
    content: "" !important;
    background-color: #fff !important;
    border-radius: 50% !important;
    transition: background-color .3s !important;
}

.c-about__link-wrapper-process .c-link:hover .c-link__icon::before {
    background-color: #d72854 !important;
}

.c-about__link-wrapper-process .c-link .c-link__icon-img {
    position: relative !important;
    z-index: 1 !important;
}

.c-about__link-wrapper-process .c-link .c-link__icon-img path {
    stroke: #d72854;
    transition: stroke .3s;
}

.c-about__link-wrapper-process .c-link:hover .c-link__icon-img path {
    stroke: #fff;
}

/* ボタン中央寄せ・マージン */
.c-about__link-wrapper-process {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 167px;
}

.c-about__link-wrapper-process .c-about__link {
    text-align: center;
}

/* page-reason レイアウト修正 */
.c-about__item.reason {
    flex-direction: column;
}

.c-about__item.reason .c-about__text-wrapper {
    width: 100%;
}

.c-about__item.reason .c-about__img-wrapper {
    width: 100%;
    text-align: center;
}

.c-about__item.reason .c-about__img-wrapper .c-about__img {
    max-width: 100%;
    height: auto;
}

/* page-reason 画像サイズ・中央寄せ（PC） */
@media screen and (min-width: 768px) {
    .c-about__item.reason .c-about__img-wrapper-inner {
        max-width: 700px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 767px) {
    .session-lead {
        width: 100%;
        margin-bottom: 30px;
    }
    .session-menu {
        width: 100%;
        flex-direction: column;
        margin-bottom: 30px;
    }
    .session-menu li {
        width: 100%;
        margin-bottom: 10px;
    }
    .session-menu li a {
        font-size: 16px;
    }
    .c-about-session {
        width: 100%;
    }
    .c-session__item {
        padding: 30px 20px;
    }
    .c-session__item-title {
        flex-direction: column;
        margin-bottom: 30px;
    }
    .c-session__item-title img {
        height: 70px;
        width: auto;
        object-fit: contain;
        object-position: left;
        margin-bottom: 15px;
    }
    .c-session__item-title-text {
        width: 100%;
        font-size: 16px;
    }
    .c-session__item-title-text p:not(:last-child) {
        margin-bottom: 0;
    }
    .c-session__item-title-text p span {
        font-size: 12px;
    }
    .c-session__item-title-text p span:first-child {
        margin-right: 20px;
    }
    .c-session__item-title-text p strong {
        font-size: 20px;
    }
    .session-button small {
        display: block;
        font-size: 12px;
    }
    .session-button {
        font-size: 18px;
    }
    .c-about__link-wrapper-process {
        gap: 60px;
    }
    .c-about__link-wrapper-process .c-link {
        font-size: 18px !important;
    }
}

/* お問い合わせページ：必須ラベル横並び・縦中央揃え */
.wpcf7 .wpcf7-form p,
.wpcf7 .wpcf7-form label {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

/* お問い合わせページ：フォーム中央寄せ */
.c-contact-form-section {
    max-width: 700px;
    margin: 0 auto;
}

/* お問い合わせページ：送るボタン 中央寄せ・ホバー反転 */
.wpcf7 .wpcf7-submit-container,
.wpcf7 p:has(input[type="submit"]) {
    display: flex;
    justify-content: center;
}

.wpcf7 input[type="submit"] {
    display: inline-flex !important;
    align-items: center !important;
    padding: 20px 25px !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #fff !important;
    background-color: #d72854 !important;
    border-radius: 10px !important;
    border: none !important;
    transition: all .3s !important;
    cursor: pointer !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.wpcf7 input[type="submit"]:hover {
    color: #d72854 !important;
    background-color: #fff !important;
    outline: 1px solid #d72854 !important;
}

/* お問い合わせページ：ホームへ戻るボタン */
.c-contact-footer {
    display: flex;
    justify-content: center;
    margin-top: 167px;
}

.c-contact-footer .c-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 20px 25px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    background-color: #d72854;
    border-radius: 10px;
    transition: all .3s;
    width: auto;
    text-decoration: none;
}

.c-contact-footer .c-button:hover {
    color: #d72854;
    background-color: #fff;
    outline: 1px solid #d72854;
    cursor: pointer;
}

.c-contact-footer .c-button .c-button__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
}

.c-contact-footer .c-button .c-button__icon::before {
    position: absolute;
    inset: 0;
    content: "";
    background-color: #fff;
    border-radius: 50%;
    transition: background-color .3s;
}

.c-contact-footer .c-button:hover .c-button__icon::before {
    background-color: #d72854;
}

.c-contact-footer .c-button .c-button__icon-img {
    position: relative;
    z-index: 1;
}

.c-contact-footer .c-button .c-button__icon-img path {
    stroke: #d72854;
    transition: stroke .3s;
}

.c-contact-footer .c-button:hover .c-button__icon-img path {
    stroke: #fff;
}

@media screen and (max-width: 767px) {
    .c-contact-footer {
        margin-top: 60px;
    }
    .c-contact-footer .c-button {
        font-size: 18px;
    }
}

/* お問い合わせページ：チェックボックス中央寄せ */
.wpcf7 .wpcf7-form p:has(.wpcf7-acceptance) {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: 40px !important;
    margin-bottom: 35px !important;
}
.wpcf7 .wpcf7-form p:has(.wpcf7-acceptance) .wpcf7-form-control-wrap {
    display: inline-flex !important;
    width: auto !important;
}
.wpcf7 .wpcf7-acceptance,
.wpcf7 .wpcf7-acceptance label,
.wpcf7 .wpcf7-acceptance .wpcf7-list-item-label {
    color: #333333d9 !important;
}

/* 送るボタン行を中央寄せ */
.wpcf7-submit-container,
.wpcf7 .wpcf7-form p:has(input[type="submit"]),
.wpcf7 .wpcf7-form p:has(.wpcf7-submit-container) {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    position: relative !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.wpcf7 input[type="submit"] {
    flex-shrink: 0 !important;
    width: 220px !important;
    padding: 20px 0 !important;
    text-align: center !important;
    justify-content: center !important;
    margin: 0 !important;
}

.wpcf7 .ajax-loader,
.wpcf7 .wpcf7-spinner {
    position: absolute !important;
    left: calc(50% + 120px) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
}

/* お客様の声カードの背景色 */
.c-voice__card {
    background-color: #fff0f0 !important;
}

/* ヘッダータイトルリンク */
.c-header__title a {
    color: inherit !important;
    text-decoration: none !important;
    display: block;
}
.c-header__title a:hover {
    opacity: 0.8;
}

/* スマホ固定バナー余白 */
@media screen and (max-width: 767px) {
    body {
        padding-bottom: 70px !important;
    }
}

/* スマホ：ヘッダー被り修正 */
@media screen and (max-width: 767px) {
    .c-header .c-header__title {
        font-size: 15px !important;
        line-height: 1.3 !important;
    }
    main:not(.l-main) {
        padding-top: 60px !important;
    }
}

@media screen and (max-width: 499px) {
    .c-header .c-header__title {
        font-size: 13px !important;
    }
    main:not(.l-main) {
        padding-top: 80px !important;
    }
}

/* TOPページ：PC SafariでヘッダーがTOPに被る対策 */
@media screen and (min-width: 768px) {
    .l-main .l-section:first-child {
        padding-top: 50px;
    }
}

/* archive.php：タグ同士の余白を半分に（PC・SP共通） */
.c-topics__tags {
    gap: 20px !important;
}

/* archive.php：もっと見るボタン（SPのみ表示・中央寄せ） */
.c-topics__more-btn {
    display: none;
}

@media screen and (max-width: 767px) {
    #topics-filter-tags {
        max-height: 80px;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    #topics-filter-tags.is-open {
        max-height: 600px;
    }
    .c-topics__more-btn {
        display: flex;
        width: 100%;
        justify-content: center;
        gap: 8px;
        align-items: center;
        padding: 0;
        margin: 0 auto 90px;
        font: inherit;
        font-weight: 700;
        color: #333333d9;
        cursor: pointer;
        background-color: transparent;
        border: none;
    }
    .c-topics__more-btn-icon {
        position: relative;
        flex-shrink: 0;
        width: 12px;
        height: 8px;
        transition: transform .2s ease;
    }
    .c-topics__more-btn-icon:after {
        position: absolute;
        top: -50%;
        left: 50%;
        width: 10px;
        height: 10px;
        content: "";
        border-right: 2px solid currentcolor;
        border-bottom: 2px solid currentcolor;
        transform: translate(-50%) rotate(45deg);
    }
    .c-topics__more-btn.is-expanded .c-topics__more-btn-icon {
        transform: rotate(180deg);
    }
}

/* archive.php：SPではタグのu-mb-70を30pxに */
@media screen and (max-width: 767px) {
    #topics-filter-tags.u-mb-70 {
        margin-bottom: 30px !important;
    }
}

/* YouTubeアイコン：fill色指定 */
.c-sns-inline__icon--youtube use,
.c-header__nav-sns-icon--youtube use,
.c-footer__sns-icon--youtube use {
    fill: currentColor;
}

/* YouTubeアイコン：縦中央揃え */
.c-sns-inline__icon--youtube,
.c-header__nav-sns-icon--youtube,
.c-footer__sns-icon--youtube {
    display: block;
}

/* page-process：動画埋め込み */
.c-about__movie {
    text-align: center;
    margin-bottom: 60px;
}

.c-about__movie-label {
    color: #d72854;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 16px;
}

.c-about__movie-wrapper {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
}

.c-about__movie-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 767px) {
    .c-about__movie-label {
        font-size: 16px;
    }
}
