/*==============================================================
/ 2025.6.20
/==============================================================*/
.img-reverse {
    transform: scale(-1, 1);
}

.text-center {
    text-align: center !important;
}

.lp-header {
    background-color: #3a564c;
    /* 深緑 */
    color: #fff;
    padding: 60px 0 0;
    text-align: center;
    margin-bottom: 80px;
}

.lp-header .lp-header__img01,
.lp-header .lp-header__img02 {
    width: 100%;
    height: auto;
}

.lp-header__label {
    display: inline-block;
    background-color: #e64091;
    /* ピンク */
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 4px 20px;
    position: absolute;
    left: 20px;
    top: 20px;
}

.lp-header__sub {
    font-size: 1.5rem;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.lp-header__title {
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
}

.lp-header__lead {
    font-size: 1.2rem;
    font-weight: bold;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px
}

.lp-header__img01 {
    width: 100%;
    height: auto;
    aspect-ratio: 2/1;
    object-fit: cover;
}

h3 {
    text-align: left !important;
    font-size: 1.8rem !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 10px !important;
    color: #265d48 !important;
}

h4 {
    font-size: 1.5rem !important;
    letter-spacing: 0.08em !important;
}

span.text-m {
    font-size: 1.2rem;
    font-weight: 600;
}

p {
    font-feature-settings: "palt" 1 !important;
}

.flex-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.flex-1 {
    flex: 1;
}

.flex-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flex-col p,
.flex-col h4,
.flex-col ul {
    margin: 0 !important;
}

.flex-col ul {
    padding-left: 25px;
    display: inline-block;
    position: relative;
}

.flex-col ul::before {
    content: "\025cf";
    margin-right: 5px;
    display: inline-block;
    position: absolute;
    left: 0;
}


.highlight-red {
    color: #d40322;
    font-size: 1.2rem;
}

.tour-date {
    font-size: 1.3rem;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    display: block;
    width: fit-content;
}

.tour-schedule ul li,
.apply-section ul li {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.tour-schedule ul::before,
.apply-section ul::before {
    font-size: 1.2rem;
}

/* Schedule Table */
.schedule-table {
    max-width: 100%;
    width: auto;
    background: white;
    overflow: hidden;
    margin-bottom: 60px;
}

.table-header {
    display: grid;
    grid-template-columns: 150px 200px 1fr;
    background: #3a564c;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.table-header>div {
    padding: 20px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.table-header>div:last-child {
    border-right: none;
}

.table-body {
    background: #f8fdf9;
}

.table-row {
    display: grid;
    grid-template-columns: 150px 200px 1fr;
    border-bottom: 1px solid #e0e7e1;
    transition: background-color 0.3s ease;
}

.table-row:hover {
    background-color: #f0f8f1;
}

.table-row.separator {
    border-bottom: 2px solid #3a564c;
}

.date-cell {
    padding: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
    background: #e8f4ea;
    border-right: 1px solid #d0e2d3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.table-row:first-child .date-cell {
    grid-row: 1 / 9;
}

.table-row:not(:first-child) .date-cell {
    display: none;
}

.time-cell {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: #3a564c;
    border-right: 1px solid #e0e7e1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blank-cell {
    border-right: 1px solid #e0e7e1;
}

.program-cell {
    padding: 20px;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
    margin-left: 5px;
    display: block;
}

/* Responsive for table */
@media (max-width: 768px) {

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .table-header>div,
    .time-cell,
    .program-cell {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .date-cell {
        grid-row: auto;
        display: flex !important;
        background: #3a564c;
        color: white;
    }

    .table-row:not(:first-child) .date-cell {
        display: none !important;
    }
}

/* 申し込み */
.apply-section {
    margin: 40px auto;
}

.apply-deadline {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.btn-wrapper {
    margin-inline: auto;
    width: 90%;
    padding: 60px;
    background-color: #f5f5f5;
}

.btn-inner {
    width: 100%;
    max-width: 760px;
    margin-inline: auto;
}

.apply-button {
    position: relative;
    display: inline-block;
    color: #fff !important;
    padding: 18px 32px;
    font-size: 1.4em;
    font-weight: bold;
    border-radius: 18px;
    text-decoration: none;
    border: 3px solid #0a8b3f;
    overflow: hidden;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
    z-index: 0;
    background: linear-gradient(to bottom, #0a8b3f, #06692f);
}

.apply-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, #59af7d, #06692f);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.apply-button:hover {
    color: #fff !important;
}

.apply-button:hover::before {
    opacity: 1;
}

.apply-notes {
    text-align: left;
    font-size: 0.95em;
    line-height: 1.6;
    padding-left: 10px !important;
}

.apply-notes::before {
    content: none !important;
}

.apply-notes li {
    font-size: 16px !important;
    list-style-type: none;
    position: relative;
    padding-left: 1.2em;
}

.apply-notes li::before {
    content: "※" !important;
    position: absolute;
    left: 0;
}

.tour-attention ul::before {
    content: none !important;
}

.tour-attention li {
    list-style: disc !important;
    margin-left: 20px;
    font-size: 16px !important;
}


/*==============================================================
/ フォーム
/==============================================================*/
.apply-form-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Helvetica Neue', sans-serif;
    color: #141412;
}

.apply-form-section p {
    margin-bottom: 0 !important;
}

.apply-form-section h2 {
    text-align: center;
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 40px;
}

.apply-form-section .flex-row {
    margin-bottom: 10px;
}

.form-attention {
    margin-bottom: 20px;
}

.wpcf7-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    margin-top: 25px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="date"],
.wpcf7-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #aaa;
    border-radius: 4px;
    font-size: 1em;
    box-sizing: border-box;
}

.wpcf7-form textarea {
    height: 120px;
}

.cf7-radio-wrapper {
    border: 1px solid #666;
    border-radius: 30px;
    padding: 20px 30px;
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 20px auto 30px;
    background-color: #fff;
}


.wpcf7-radio input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid #333;
    border-radius: 50%;
    position: relative;
    margin-right: 8px;
    vertical-align: middle;
}

.wpcf7-radio input[type="radio"]:checked::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    background: #333;
    border-radius: 50%;
}

.wpcf7-radio .wpcf7-list-item-label {
    font-weight: bold;
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

.wpcf7-radio label {
    display: flex;
    align-items: center;
}

.form-label {
    display: block;
    width: 25%;
}

.note {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

.apply-submit-button input[type="submit"] {
    display: inline-block;
    background: linear-gradient(to right, #004fa0, #00a0e3) !important;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
}

.apply-submit-button:hover input[type="submit"] {
    background: linear-gradient(to right, #0066c0, #33b5e5) !important;
    /* ホバー時に少し明るく */
}