/* ひめじウェルカード スタイル */

/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    color: #333;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ヘッダー */
.himeji-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.himeji-header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.himeji-header__logo {
    margin-left: 20px;
}

.himeji-header__logo img {
    height: 28px;
    width: auto;
}

.himeji-header__nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.himeji-header__nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 16px;
    transition: opacity 0.3s;
}

.himeji-header__nav-item:hover {
    opacity: 1;
}

.himeji-header__nav-item:hover .himeji-header__nav-icon {
    background-color: #0068B7;
    color: #ffffff;
}

.himeji-header__nav-item:hover .himeji-header__nav-text {
    color: #0068B7;
}

.himeji-header__nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #E8F4F8;
    border-radius: 50%;
    color: #0068B7;
    font-size: 14px;
    padding-top: 2px;
}

.himeji-header__nav-text {
    font-weight: 600;
}

/* キービジュアル */
.himeji-kv {
    background-color: #ffffff;
    padding: 0;
}

.himeji-kv__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.himeji-kv__image {
    width: 100%;
    height: auto;
}

/* ポイントセクション */
.himeji-points {
    background-color: #FDF8DD;
    padding: 60px 0;
}

.himeji-points__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.himeji-points__title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    letter-spacing: 0.05em;
}

.himeji-points__list {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.himeji-points__item {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background-color: #E8F4F8;
    border-radius: 12px;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
}

/* POINT 01, 02, 03専用スタイル */
.himeji-points__item--01,
.himeji-points__item--02,
.himeji-points__item--03 {
    background-color: #ffffff;
    border: 2px solid #0068B7;
    border-radius: 12px;
    overflow: hidden;
}

.himeji-points__header {
    background-color: #0068B7;
    padding: 3px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: -2px -2px 0 -2px;
    border-radius: 12px 12px 0 0;
    position: relative;
    z-index: 1;
}

.himeji-points__header-label {
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.himeji-points__header-number {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
}

.himeji-points__content {
    flex: 1;
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    overflow: hidden;
}

.himeji-points__visuals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0;
    width: 100%;
    max-width: 100%;
}

.himeji-points__card-icon {
    width: 60px;
    height: 40px;
    border: 2px solid #7DB4D6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.himeji-points__card-text {
    color: #7DB4D6;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.himeji-points__qr-icon {
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.himeji-points__qr-icon img {
    width: auto;
    height: 100%;
    max-width: 200px;
    max-height: 120px;
    object-fit: contain;
}

/* POINT 02専用スタイル */
.himeji-points__item--02 .himeji-points__qr-icon {
    height: 120px;
}

.himeji-points__item--02 .himeji-points__qr-icon img {
    height: 90px;
    max-height: 90px;
}

/* POINT 03専用スタイル */
.himeji-points__item--03 .himeji-points__qr-icon {
    height: 120px;
}

.himeji-points__item--03 .himeji-points__qr-icon img {
    height: 75px;
    max-height: 75px;
}

.himeji-points__check-icon {
    width: 40px;
    height: 40px;
    background-color: #7DB4D6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
}

.himeji-points__main-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.himeji-points__item-title {
    font-size: 20px;
    font-weight: 700;
    color: #0068B7;
    margin-bottom: 12px;
}

.himeji-points__item-text {
    font-size: 15px;
    color: #333;
    line-height: 1.8;
    text-align: left;
}

.himeji-points__item--01 .himeji-points__item-text {
    text-align: left;
}

.himeji-points__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.himeji-points__icon img {
    width: 100%;
    height: auto;
}

/* 利用者向けご案内セクション */
.himeji-guide {
    background-color: #ffffff;
    padding: 0 0 60px 0;
    overflow: visible;
}

.himeji-guide--business {
    background-color: #ffffff;
}

.himeji-guide--business .himeji-guide__title {
    background-color: #32A879;
}

.himeji-guide--business .himeji-register-button {
    width: 80%;
    margin: 50px auto 0 auto;
}

.himeji-guide--business .himeji-business-list__notice {
    width: 80%;
    margin: 50px auto 0 auto;
}

.himeji-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: visible;
}

.himeji-guide__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    background-color: #0068B7;
    margin-bottom: 0;
    padding: 20px;
    border-radius: 10px;
}

.himeji-guide__title-icon {
    width: auto;
    height: 40px;
}

.himeji-guide__title-text {
    display: inline-block;
    color: #ffffff;
    letter-spacing: 0.1em;
}

.himeji-guide__title-text--yellow {
    color: #FFD700;
}

.himeji-guide__content {
    background-color: #E8F4F8;
    border-radius: 40px;
    padding: 15px 40px 10px 40px;
    position: relative;
    overflow: visible;
    margin-top: 50px;
}

.himeji-guide__content--spaced {
    margin-top: 150px;
    margin-bottom: 40px;
}

/* カードでの利用方法セクション */
.himeji-howto {
    display: flex;
    gap: 20px;
    padding: 10px 40px;
    background-color: #ffffff;
    border-radius: 12px;
    position: relative;
}

.himeji-howto__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 60px;
}

.himeji-howto__step-number {
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border: 2px solid #0068B7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0068B7;
    font-size: 26px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    flex-shrink: 0;
    z-index: 1;
}

.himeji-howto__step-line {
    width: 3px;
    height: 220px;
    background-color: #0068B7;
    margin-top: 10px;
    flex-shrink: 0;
}

.himeji-howto__step-line--step02 {
    height: 350px;
}

.himeji-howto__step-line--step03 {
    height: 300px;
}

.himeji-howto__content {
    display: flex;
    gap: 60px;
    flex: 1;
    align-items: flex-start;
}

.himeji-howto__image {
    margin-top: 0;
    padding-top: calc(15px + 1.5em + 20px);
}

.himeji-howto__text {
    flex: 1;
    min-width: 0;
}

.himeji-howto__title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 15px 0 20px 0;
    line-height: 1.5;
}

.himeji-howto__description {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin: 0 0 15px 0;
}

.himeji-howto__image {
    flex-shrink: 0;
    width: 450px;
    max-width: 100%;
    margin-top: 0;
    align-self: flex-start;
}

.himeji-howto__image img {
    width: 100%;
    height: auto;
    display: block;
}

.himeji-howto__category {
    margin-top: 20px;
}

.himeji-howto__category-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px 0;
    padding: 4px 0;
    width: 110px;
    text-align: center;
    border-radius: 8px;
    display: inline-block;
}

.himeji-howto__category--taxi .himeji-howto__category-title {
    background-color: #FFF9E6;
}

.himeji-howto__category--ship .himeji-howto__category-title {
    background-color: #E8F4F8;
}

.himeji-howto__category--fuel .himeji-howto__category-title {
    background-color: #FFE8F0;
}

.himeji-howto__category-description {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin: 0 0 8px 0;
}

.himeji-howto__category-note {
    font-size: 12px;
    color: #E64242;
    line-height: 1;
    margin: 0;
}

.himeji-howto__category-note--default {
    color: #666;
}

.himeji-guide__section-title {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 28px;
    font-weight: 700;
    color: #00479D;
    margin: 0;
    padding-left: 90px;
}

.himeji-guide--business .himeji-guide__content:has(+ .himeji-faq) {
    background-color: #E6F6F0;
}

.himeji-guide--business .himeji-guide__content:has(+ .himeji-faq) .himeji-guide__section-title {
    color: #32A879;
}

.himeji-guide--business .himeji-faq__label {
    color: #32A879;
}

.himeji-guide--business .himeji-faq__contact-card {
    background-color: #FFFFFF;
    padding: 20px;
}

.himeji-guide--business .himeji-faq__contact-card-title {
    color: #32A879;
}

.himeji-guide--business .himeji-faq__contact-card-title--business {
    color: #32A879;
    border-bottom-color: #E6F6F0;
}

.himeji-guide--business .himeji-faq__contact-phone--business {
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.himeji-guide--business .himeji-faq__contact-phone-icon {
    width: auto;
    height: 1em;
    flex-shrink: 0;
}

.himeji-guide--business .himeji-faq__item--business-contact {
    background-color: #E6F6F0;
}

.himeji-guide--business .himeji-faq__contact-card-content--business {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
}

.himeji-guide--business .himeji-faq__contact-card-text--business {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.himeji-guide__section-title--roboto {
    font-family: 'Roboto', sans-serif;
}

.himeji-roboto-qr {
    font-family: 'Roboto', sans-serif;
}

.himeji-guide__section-title-icon {
    width: 100px;
    height: auto;
    flex-shrink: 0;
    position: absolute;
    left: 20px;
    top: -30px;
    z-index: 1;
}

.himeji-guide__description {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 0;
    padding: 0 20px;
}

.himeji-guide__description--note {
    margin-top: 0;
    font-size: 14px;
}

.himeji-guide__subsection {
    margin-top: 40px;
    padding: 0 20px;
}

.himeji-guide__subsection-title {
    font-size: 24px;
    font-weight: 700;
    color: #00479D;
    margin: 0 0 10px 0;
    position: relative;
    padding: 30px 0 10px 0;
}

.himeji-guide__subsection-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 8%;
    height: 3px;
    background-color: #00479D;
}

.himeji-guide__subsection-title::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 8%;
    width: 92%;
    height: 3px;
    background-color: #E0E0E0;
}

.himeji-guide__subsection-description {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-top: 15px;
    margin-bottom: 0;
}

.himeji-guide__table-wrapper {
    margin-top: 70px;
}

.himeji-guide__category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 0;
}

.himeji-guide__category-label {
    display: inline-block;
    background-color: #F57440;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 4px;
    white-space: nowrap;
}

.himeji-guide__category-number {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.himeji-guide__category-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.himeji-guide__table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    background-color: #ffffff;
    table-layout: fixed;
}

.himeji-guide__table thead {
    background-color: #FBC7B3;
}

.himeji-guide__table th {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    padding: 15px;
    text-align: center;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    width: 33.33%;
}

.himeji-guide__table th small {
    font-weight: 400;
}

.himeji-guide__table th:last-child {
    border-right: none;
}

.himeji-guide__table td {
    font-size: 16px;
    color: #333;
    padding: 15px;
    text-align: center;
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    background-color: #ffffff;
}

.himeji-guide__table td:last-child {
    border-right: none;
}

.himeji-guide__category-label--category2 {
    background-color: #8950B4;
}

.himeji-guide__category-description {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    margin-top: 10px;
    margin-bottom: 0;
    text-indent: -3em;
    padding-left: 3em;
}

.himeji-guide__table--category2 thead {
    background-color: #CFB9E1;
}


.himeji-guide__severe-section {
    background-color: #F5F5F5;
    border-radius: 8px;
    padding: 20px;
    margin-top: 40px;
}

.himeji-guide__severe-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.himeji-guide__severe-label {
    display: inline-block;
    background-color: #B450AC;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.himeji-guide__severe-description {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    flex: 1;
    text-indent: -3em;
    padding-left: 3em;
}

.himeji-guide__severe-text {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-top: 10px;
    margin-bottom: 0;
}

.himeji-guide__severe-text:first-of-type {
    margin-top: 0;
}

.himeji-guide__notice-section {
    background-color: #ffffff;
    border: 1px solid #E64242;
    border-radius: 0;
    padding: 20px;
    margin-top: 40px;
}

.himeji-guide__notice-title {
    font-size: 18px;
    font-weight: 700;
    color: #E64242;
    background-color: #FFDEDE;
    margin: 0;
    padding: 15px 20px;
}

.himeji-guide__notice-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
    background-color: #ffffff;
}

.himeji-guide__notice-list li {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 1.5em;
    position: relative;
}

.himeji-guide__notice-list li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: #333;
}

.himeji-guide__notice-list li:last-child {
    margin-bottom: 0;
}

.himeji-guide__notice-subsection {
    margin-top: 20px;
    padding: 0;
    border-top: none;
    background-color: #ffffff;
}

.himeji-guide__notice-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #E64242;
    background-color: #FFDEDE;
    margin: 0;
    padding: 15px 20px;
}

.himeji-guide__notice-text {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    margin: 15px 0 0 0;
    padding: 0;
    background-color: #ffffff;
}

/* セクションリンク */
.himeji-links {
    background-color: #ffffff;
    padding: 60px 0 40px;
}

.himeji-links__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.himeji-links__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.himeji-links__item--left {
    flex-direction: row;
    gap: 0;
    max-width: 480px;
}

.himeji-links__item--right {
    flex-direction: row;
    justify-content: flex-end;
    gap: 0;
    max-width: 480px;
}

.himeji-links__button {
    flex: 1;
    background-color: #E8F4F8;
    border-radius: 20px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border-bottom: 4px solid;
    min-height: 114px;
}

.himeji-links__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.himeji-links__button--left {
    background-color: #E8F4F8;
    border-bottom-color: #0068B7;
}

.himeji-links__button--right {
    background-color: #E8F8E8;
    border-bottom-color: #4CAF50;
}

.himeji-links__mascot {
    width: 130px;
    flex-shrink: 0;
    align-self: flex-end;
    margin-top: 20px;
}

.himeji-links__mascot img {
    width: 100%;
    height: auto;
}

.himeji-links__text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
    text-align: center;
    flex: 1;
    letter-spacing: 0.1em;
}

.himeji-links__button--left .himeji-links__text {
    color: #0068B7;
    font-weight: 700;
    font-size: 18px;
    text-align: left;
}

.himeji-links__button--right .himeji-links__text {
    color: #4CAF50;
    font-weight: 700;
    font-size: 18px;
    text-align: left;
}

.himeji-links__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    padding-top: 2px;
    flex-shrink: 0;
}

.himeji-links__button--left .himeji-links__icon {
    color: #0068B7;
}

.himeji-links__button--right .himeji-links__icon {
    color: #4CAF50;
}

/* レスポンシブ対応（タブレット） */
@media screen and (max-width: 1023.98px) {
    .himeji-header__container {
        padding: 15px 30px;
    }

    .himeji-header__nav {
        gap: 20px;
    }

    .himeji-kv__container {
        padding: 0 30px;
    }

    .himeji-points {
        padding: 50px 0;
    }

    .himeji-points__container {
        padding: 0 30px;
    }

    .himeji-points__list {
        gap: 30px;
    }

    .himeji-points__item {
        min-width: 240px;
        max-width: 300px;
    }

    .himeji-points__item--01 {
        min-width: 240px;
        max-width: 300px;
    }

    .himeji-points__visuals {
        gap: 12px;
    }

    .himeji-points__card-icon {
        width: 50px;
        height: 35px;
    }

    .himeji-points__card-text {
        font-size: 9px;
    }

    .himeji-points__qr-icon {
        width: 170px;
        height: 102px;
    }

    .himeji-points__qr-icon img {
        max-width: 170px;
    }

    .himeji-points__check-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .himeji-points__main-heading {
        font-size: 16px;
    }

    .himeji-links {
        padding: 50px 0 70px;
    }

    .himeji-links__container {
        padding: 0 30px;
        gap: 30px;
    }

    .himeji-links__item {
        min-width: 280px;
        max-width: 400px;
    }

    .himeji-links__button {
        padding: 18px 25px;
    }

    .himeji-links__mascot {
        width: 80px;
        height: 80px;
    }
}

/* スマホ表示のみ改行 */
.mobile-br {
    display: none;
}

/* レスポンシブ対応（モバイル） */
/* 新規登録方法セクション */
.himeji-register-titles {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding: 0 20px;
}

.himeji-register-button {
    width: 100%;
    margin-top: 40px;
    padding: 0;
}

.himeji-register-button--half {
    flex: 1;
    margin-top: 0;
}

.himeji-register-button--mobile-only {
    display: none;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
}


.himeji-register-button__title {
    background-color: #F5F5F5;
    border-radius: 30px;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.himeji-register {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    padding: 0 20px;
}

.himeji-register__step {
    flex: 1;
    border: 2px solid #0068B7;
    border-radius: 8px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
}

.himeji-register__step-header {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.himeji-register__step-number {
    width: 45px;
    height: 50px;
    background-color: #0068B7;
    border-radius: 8px 0 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    flex-shrink: 0;
    margin-top: -2px;
    margin-left: -2px;
}

.himeji-register__step-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-align: left;
    line-height: 1.5;
    padding-top: 10px;
    flex: 1;
}

.himeji-register__step-image {
    width: 65%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex: 1;
    margin: 0;
    padding: 0;
    margin-top: 20px;
}

.himeji-register__step-image img {
    width: 100%;
    height: auto;
    max-width: 200px;
    display: block;
    margin: 0;
    padding: 0;
}

/* 利用可能な事業者一覧セクション */
.himeji-business-list {
    background-color: #F5F5F5;
    padding: 40px;
    margin-top: 100px;
    border-radius: 8px;
    text-align: center;
}

.himeji-business-list__title {
    font-size: 28px;
    font-weight: 700;
    color: #0068B7;
    margin: 0 0 20px 0;
    text-align: center;
}

.himeji-business-list__description {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin: 0 0 20px 0;
    text-align: center;
}

.himeji-business-list__notice {
    background-color: #FDF8DD;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: center;
}

.himeji-business-list__notice-icon {
    font-size: 85px;
    color: #BABABA;
    flex-shrink: 0;
}

.himeji-business-list__notice-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.himeji-business-list__notice-text {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    line-height: 1.8;
    margin: 0;
    text-align: center;
}

.himeji-business-list__notice-text:not(:last-child) {
    margin-bottom: 5px;
}

/* 事業者向けカードセクション */
.himeji-business-cards {
    display: flex;
    gap: 30px;
    width: 100%;
    margin: 50px auto 0 auto;
    background-color: transparent;
    border-radius: 0;
    overflow: visible;
}

.himeji-business-card {
    flex: 1;
    background-color: #E6F6F0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.himeji-business-card:not(:last-child)::after {
    display: none;
}

.himeji-business-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    text-align: center;
}

.himeji-business-card__description {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin: 0 0 30px 0;
    text-align: center;
    flex: 1;
}

.himeji-business-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #32A879;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: opacity 0.3s ease;
    min-width: 200px;
}

.himeji-business-card__button:hover {
    opacity: 0.9;
}

.himeji-business-card__button-text {
    white-space: nowrap;
}

.himeji-business-card__button-icon {
    width: 32px;
    height: 32px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    color: #32A879;
}

.himeji-guide--business .himeji-business-cards {
    width: 100%;
    margin: 50px auto 0 auto;
}

/* FAQセクション */
.himeji-faq {
    margin-top: 40px;
    padding: 0 20px;
}

.himeji-faq__item {
    background-color: #F5F5F5;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.himeji-faq__item--highlight {
    background-color: #EAF6FD;
}

.himeji-faq__question {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    gap: 15px;
}

.himeji-faq__label {
    font-size: 24px;
    font-weight: 700;
    color: #0068B7;
    flex-shrink: 0;
    font-family: 'Roboto', sans-serif;
}

.himeji-faq__question-text {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    line-height: 1.6;
    letter-spacing: 0.1rem;
}

.himeji-faq__icon {
    font-size: 20px;
    color: #666;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.himeji-faq__answer {
    display: none;
    padding: 0 20px 20px 20px;
    gap: 15px;
    margin-top: 0;
    align-items: flex-start;
    position: relative;
}

.himeji-faq__answer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background-color: #E0E0E0;
}

.himeji-faq__item--open .himeji-faq__answer {
    display: flex;
}

.himeji-faq__answer .himeji-faq__label {
    padding-top: 15px;
}

.himeji-faq__answer-text {
    flex: 1;
    padding-left: 0;
}

.himeji-faq__answer-text p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin: 0;
    padding-top: 15px;
}

.himeji-faq__answer-text p.himeji-faq__contact-info {
    background-color: #FFFFFF;
    padding: 15px 20px;
    margin-top: 15px;
    border-radius: 4px;
}

.himeji-faq__contact-info strong {
    font-weight: 700;
}

.himeji-faq__contact-phone,
a.himeji-faq__contact-phone {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #333;
    text-decoration: none;
}

a.himeji-faq__contact-phone:hover {
    text-decoration: none;
}

.himeji-faq__contact-cards {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.himeji-faq__contact-card {
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 20px;
    flex: 1;
    min-width: 280px;
}

.himeji-faq__contact-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #0068B7;
    margin: 0 0 15px 0;
    line-height: 1.6;
    padding-bottom: 10px;
    border-bottom: 2px solid #EAF6FD;
}

.himeji-faq__contact-card-content {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

p.himeji-faq__contact-card-text {
    margin: 0;
    padding-top: 0;
}

.himeji-faq__contact-link {
    color: #0068B7;
    text-decoration: underline;
}

.himeji-faq__contact-link:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .himeji-faq__contact-cards {
        flex-direction: column;
    }

    .himeji-faq__contact-card {
        min-width: 100%;
    }

    .himeji-guide--business .himeji-faq__contact-card-text--business {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .himeji-guide--business .himeji-faq__contact-phone--business {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* 資料ダウンロードセクション */
.himeji-download {
    background-color: #F5F5F5;
    padding: 60px 0 80px 0;
    position: relative;
}

.himeji-download__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
}

.himeji-download__title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0 0 40px 0;
}

.himeji-download__buttons {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
}

.himeji-download__button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    padding: 20px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    flex: 1;
    min-width: 200px;
    max-width: 340px;
}

.himeji-download__button:hover {
    opacity: 0.9;
}

.himeji-download__button--green {
    background-color: #32A879;
}

.himeji-download__button--blue {
    background-color: #0068B7;
}

.himeji-download__button-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    flex: 1;
}

.himeji-download__button-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-left: 20px;
}

@media screen and (max-width: 839.98px) {
    .himeji-points__container {
        padding: 0 20px;
    }

    .himeji-points__title {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 30px;
    }

    .himeji-points__list {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

@media screen and (max-width: 767.98px) {
    .mobile-br {
        display: block;
    }
    .himeji-header__container {
        padding: 12px 20px;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }


    .himeji-header__logo {
        align-self: flex-start;
    }

    .himeji-header__logo img {
        height: 20px;
    }

    .himeji-header__nav {
        gap: 4px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .himeji-header__nav-item {
        font-size: 12px;
        gap: 4px;
    }

    .himeji-header__nav-item:not(:last-child)::after {
        content: '│';
        margin-left: 4px;
        margin-right: 4px;
        color: #333;
    }

    .himeji-header__nav-icon {
        display: none;
    }

    .himeji-kv__container {
        padding: 0;
    }

    .himeji-points {
        padding: 40px 0;
    }

    .himeji-points__item {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        padding: 0;
    }

    .himeji-points__header {
        padding: 6px 15px;
        justify-content: center;
    }

    .himeji-points__header-label {
        font-size: 18px;
    }

    .himeji-points__header-number {
        font-size: 28px;
    }

    .himeji-points__content {
        padding: 12px 25px;
        gap: 3px;
    }

    .himeji-points__visuals {
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 0;
    }

    .himeji-points__card-icon {
        width: 45px;
        height: 30px;
    }

    .himeji-points__card-text {
        font-size: 8px;
    }

    .himeji-points__qr-icon {
        width: 150px;
        height: 90px;
    }

    .himeji-points__qr-icon img {
        max-width: 150px;
    }

    /* POINT 02専用スタイル（モバイル） */
    .himeji-points__item--02 .himeji-points__qr-icon {
        height: 90px;
    }

    .himeji-points__item--02 .himeji-points__qr-icon img {
        height: 70px;
        max-height: 70px;
    }

    /* POINT 03専用スタイル（モバイル） */
    .himeji-points__item--03 .himeji-points__qr-icon {
        height: 90px;
    }

    .himeji-points__item--03 .himeji-points__qr-icon img {
        height: 55px;
        max-height: 55px;
    }

    .himeji-points__check-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .himeji-points__main-heading {
        font-size: 15px;
    }

    .himeji-points__item-title {
        font-size: 18px;
    }

    .himeji-points__item-text {
        font-size: 13px;
    }

    .himeji-links {
        padding: 15px 0;
    }

    .himeji-links__container {
        padding: 0 20px;
        flex-direction: column;
        gap: 20px;
    }

    .himeji-links__item {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        flex-direction: column !important;
        gap: 0;
    }

    .himeji-links__item--left,
    .himeji-links__item--right {
        flex-direction: column !important;
    }

    .himeji-links__button {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        padding: 18px 20px;
    }

    .himeji-links__mascot {
        width: 80px;
        height: 80px;
    }

    .himeji-links__item--left .himeji-links__mascot {
        align-self: flex-start;
        margin-top: 0;
    }

    .himeji-links__item--right .himeji-links__mascot {
        margin-top: 0;
    }

    .himeji-links__text {
        font-size: 14px;
    }

    .himeji-guide__container {
        padding: 0 20px;
    }

    .himeji-guide__title {
        padding: 15px 10px;
        font-size: 22px;
    }

    .himeji-guide__title-icon {
        height: 20px;
    }

    .himeji-guide__section-title-icon {
        width: 60px;
        left: 0px;
    }

    .himeji-guide__section-title {
        font-size: 18px;
        padding-left: 0;
    }

    .himeji-guide__content {
        padding: 15px 40px 10px 47px;
    }

    .himeji-guide__subsection {
        padding: 0;
    }

    .himeji-guide__subsection-title {
        font-size: 20px;
    }

    .himeji-guide__severe-header {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 0;
    }

    .himeji-guide__severe-description {
        display: block;
        margin-top: 10px;
        margin-bottom: 15px;
    }

    .himeji-howto {
        flex-direction: row;
        gap: 5px;
        padding: 5px 0;
    }

    .himeji-howto__step {
        width: 60px;
        flex-direction: column;
        align-items: center;
        gap: 0;
        flex-shrink: 0;
    }

    .himeji-howto__step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
        flex-shrink: 0;
    }

    .himeji-howto__step-line {
        width: 3px;
        height: 290px;
        margin-top: 10px;
        flex-shrink: 0;
    }

    .himeji-howto__step-line--step02 {
        height: 520px;
    }

    .himeji-howto__step-line--step03 {
        height: 420px;
    }

    .himeji-howto__content {
        flex-direction: column;
        gap: 0;
        flex: 1;
    }

    .himeji-howto__image {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .himeji-howto__title {
        font-size: 18px;
    }

    .himeji-howto__description {
        font-size: 14px;
    }

    .himeji-howto__category-description {
        font-size: 14px;
    }

    .himeji-guide__content--spaced {
        margin-top: 80px;
    }

    .himeji-register {
        flex-direction: column;
        gap: 20px;
        padding: 0;
        display: flex;
    }

    .himeji-register__step {
        width: 100%;
    }

    .himeji-register__step-image {
        width: 50% !important;
    }

    .himeji-register__step-image img {
        max-width: 150px;
    }

    .himeji-register-titles {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .himeji-register-button--half {
        width: 100%;
        flex: none;
    }

    .himeji-register-button--half:first-child {
        margin-bottom: 0;
    }

    .himeji-register-button--mobile-hidden {
        display: none !important;
    }

    .himeji-register-button--mobile-only {
        display: block !important;
        margin-top: 20px;
        margin-bottom: 0;
        padding: 0;
        width: 100%;
    }

    .himeji-register-button--mobile-only .himeji-register-button__title {
        margin-top: 0;
        margin-bottom: 0;
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .himeji-business-list {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .himeji-business-list__title {
        font-size: 22px;
    }

    .himeji-business-list__description {
        font-size: 14px;
    }

    .himeji-business-list__notice {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
    }

    .himeji-business-list__notice-icon {
        font-size: 60px;
    }

    .himeji-business-list__notice-text {
        font-size: 16px;
    }

    .himeji-business-cards {
        flex-direction: column;
        width: 100%;
        margin: 30px auto 0 auto;
        gap: 20px;
    }

    .himeji-business-card {
        padding: 30px 20px;
    }

    .himeji-business-card:not(:last-child)::after {
        display: none;
    }

    .himeji-business-card:not(:last-child) {
        border-bottom: none;
    }

    .himeji-business-card__title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .himeji-business-card__description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .himeji-business-card__button {
        width: 100%;
        max-width: 300px;
        padding: 15px 20px;
        font-size: 14px;
    }

    .himeji-download {
        padding: 40px 0 40px 0;
    }

    .himeji-download__container {
        padding: 0 20px 60px 20px;
        position: relative;
    }

    .himeji-download .himeji-footer__top {
        bottom: 0;
        right: 0;
    }

    .himeji-download__title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .himeji-download__buttons {
        flex-direction: column;
        gap: 15px;
    }

    .himeji-download__button {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        padding: 18px 20px;
    }

    .himeji-download__button-text {
        font-size: 16px;
    }

    .himeji-download__button-icon {
        font-size: 20px;
        margin-left: 15px;
    }
}

/* フッター */
.himeji-footer {
    background-color: #0068B7;
    color: #ffffff;
}

.himeji-download .himeji-footer__top {
    position: absolute;
    bottom: -80px;
    right: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding: 0;
    background-color: transparent;
    z-index: 10;
}

.himeji-footer__top-left {
    flex: 1;
}

.himeji-footer__top-button {
    background-color: #00479D;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 8px 8px 0 0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.himeji-footer__top-button:hover {
    opacity: 0.9;
}

.himeji-footer__main {
    background-color: #0068B7;
    padding: 40px 0;
}

.himeji-footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.himeji-footer__left {
    flex: 1;
}

.himeji-footer__contact-button,
h3.himeji-footer__contact-button {
    display: inline-block;
    background-color: #ffffff;
    color: #0068B7;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: opacity 0.3s ease;
}


.himeji-footer__center-name {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.himeji-footer__phone {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.himeji-footer__phone-icon {
    font-size: 24px;
    color: #ffffff;
}

.himeji-footer__phone-number,
a.himeji-footer__phone-number {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
}

.himeji-footer__hours {
    font-size: 14px;
    color: #ffffff;
    margin: 0 0 3px 0;
    line-height: 1.6;
}

.himeji-footer__note {
    font-size: 12px;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.6;
}

.himeji-footer__trademark {
    font-size: 12px;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.himeji-footer__right {
    text-align: right;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-self: flex-end;
    align-items: flex-end;
}

.himeji-footer__right > a {
    text-decoration: none;
    display: inline-block;
}

.himeji-footer__mascot {
    width: 120px;
    height: auto;
    margin-bottom: 0;
}

.himeji-footer__operator {
    display: flex;
    flex-direction: column;
}

.himeji-footer__operator-label {
    font-size: 14px;
    color: #ffffff;
    margin: 0 0 5px 0;
    line-height: 1.6;
}

.himeji-footer__operator-name {
    font-size: 16px;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

.himeji-footer__bottom {
    background-color: #00479D;
    padding: 15px 0;
}

.himeji-footer__copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    font-size: 12px;
    color: #ffffff;
    text-align: center;
    line-height: 1.6;
}

@media screen and (max-width: 767.98px) {
    .himeji-download .himeji-footer__top {
        bottom: -40px;
        right: 0;
    }

    .himeji-footer__main {
        padding: 30px 0;
    }

    .himeji-footer__container {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
    }

    .himeji-footer__right {
        text-align: left;
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .himeji-footer__mascot {
        width: 100px;
        flex-shrink: 0;
    }

    .himeji-footer__operator-label,
    .himeji-footer__operator-name {
        margin: 0;
    }

    .himeji-footer__phone-number,
    a.himeji-footer__phone-number {
        font-size: 24px;
    }

    .himeji-footer__copyright {
        padding: 0 20px;
        font-size: 11px;
    }
}
