* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
    line-height: 1.8;
    color: #2d2d2d;
    background: #084222;
}

/* ヘッダー */
.header {
    position: relative;
    height: 680px;
    overflow: hidden;
}
.title-bar {
    background-color: #d8cebd;
    width: 100%;
    text-align: center;
    padding: 30px 20px;
}

.title-bar img {
    max-width: 1000px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 15px;
}

.title-bar-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d2d2d;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .title-bar {
        padding: 20px 15px;
    }

    .title-bar img {
        max-width: 100%;
    }

    .title-bar-text {
        font-size: 1.3rem;
    }
}

.slideshow {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8);
    letter-spacing: 0.05em;
    line-height: 1.4;
    padding: 40px 60px;
    border-left: 8px solid #c9a961;
    border-right: 8px solid #c9a961;
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* コンテナ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* セクションタイトル */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #2d4a2d, #6b8e23, #c9a961);
}

.att{
	text-align: center;
	font-weight: bold;
	font-size: 120%;
	
}
.text_f{
	color: #FFFFFF;
}
.mb30{
	margin-bottom: 30px;
}
.mt20{
	margin-top: 20px;
}
.fwb{
	font-weight: bold;
}
.br_bottom{
	border-bottom: solid 1px #204213;
}
/* ツアー実施決定バナー */
.tour-announcement {
    max-width: 1200px;
    margin: 0 auto 50px;
    display: flex;
    align-items: center;
    gap: 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(45, 74, 45, 0.13);
}

.announcement-accent {
    background: #2d4a2d;
    width: 10px;
    align-self: stretch;
    flex-shrink: 0;
}

.announcement-body {
    flex: 1;
    background: #ffffff;
    border-top: 2.5px solid #c9a961;
    border-bottom: 2.5px solid #c9a961;
    border-right: 2.5px solid #c9a961;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.announcement-text {
    flex: 1;
}

.announcement-main {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d4a2d;
    line-height: 1.4;
    margin-bottom: 4px;
}

.announcement-sub {
    font-size: 1.05rem;
    color: #6b8e23;
    line-height: 1.6;
}

.announcement-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    line-height: 1;
}

@media (max-width: 768px) {
    .announcement-body {
        padding: 16px 20px;
        gap: 16px;
    }
    .announcement-icon {
        display: none;
    }
}



/* ツアーポイント */
.tour-points {
    margin-bottom: 100px;
}

.points-grid {
    display: block;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.point-card {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 6px solid #6b8e23;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
	margin-bottom: 40px;
}

.point-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), transparent);
    border-radius: 50%;
    transform: translate(50%, -50%);
	margin-bottom: 40px;
}

.point-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.point-number {
    font-size: 4rem;
    font-weight: 700;
    color: #084222;
    line-height: 1;
    margin-bottom: 10px;
}

.point-card h3 {
    font-size: 1.6rem;
    color: #2d4a2d;
    margin-bottom: 15px;
    font-weight: 600;
}

.point-card p {
    color: #555;
    line-height: 1.8;
}
/* 写真レイアウト */
.photo-single {
    text-align: center;
    margin: 20px 0 5px;
    position: relative; /* これを追加 */
    display: inline-block; /* 画像幅に合わせるため追加 */
    width: 100%;
}

.photo-single img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.photo-pair {
    display: flex;
    gap: 15px;
    margin: 20px 0 5px;
}

.photo-pair .photo-item {
    flex: 1;
    position: relative;
}

.photo-pair .photo-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

.photo-caption {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff!important;
    font-size: 0.5rem;
    padding: 3px 8px;
    border-radius: 3px;
    margin: 0;
    line-height: 1.2;
}

.photo-credit {
    font-size: 0.85rem;
    color: #666;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.6;
}

.photo-credit a {
    color: #6b8e23;
    word-break: break-all;
}

.point-card h4 {
    font-size: 1.1rem;
    color: #2d4a2d;
    margin-top: 20px;
    margin-bottom: 8px;
    font-weight: 600;
    border-left: 3px solid #c9a961;
    padding-left: 10px;
}
h4 {
    font-size: 1.1rem;
    color: #2d4a2d;
    margin-top: 20px;
    margin-bottom: 8px;
    font-weight: 600;
    border-left: 3px solid #c9a961;
    padding-left: 10px;
}
/* プロフィールテキスト */
.profile-pair {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.profile-item {
    flex: 1;
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .photo-pair {
        flex-direction: column;
    }

    .profile-pair {
        flex-direction: column;
    }
}
.profile-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d4a2d;
    margin-bottom: 8px;
    padding-left: 10px;
    border-left: 4px solid #6b8e23;
}
@media (max-width: 768px) {
    .photo-pair {
        flex-direction: column;
    }
}
/* 詳細情報 */
.tour-details {
    margin-bottom: 80px;
}

.detail-item {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 5px solid #8b7355;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.detail-item:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.detail-item h3 {
    font-size: 1.3rem;
    color: #2d4a2d;
    margin-bottom: 10px;
    font-weight: 600;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 2px solid #c9a961;
}

.detail-item p {
    color: #444;
    font-size: 1.1rem;
}

/* テーブル */
.itinerary, .price {
    margin-bottom: 80px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

thead {
    background: linear-gradient(135deg, #2d4a2d 0%, #3d5a3d 100%);
}

thead th {
    color: #ffffff;
    padding: 20px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

tbody td {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    color: #444;
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:hover {
    background: #f9f9f9;
}

.day-cell {
    font-weight: 700;
    color: #2d4a2d;
    font-size: 1.1rem;
}

.schedule-cell {
    line-height: 1.8;
}

.meal-cell {
    color: #6b8e23;
    font-weight: 600;
}

.hotel-cell {
    color: #8b7355;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c9a961;
    text-align: right;
}

/* 代金情報・注意事項 */
.price-info, .notes {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.price-info h3, .notes h3 {
    font-size: 1.5rem;
    color: #2d4a2d;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #6b8e23;
}

.notes ul {
    list-style: none;
    padding-left: 0;
}

.notes li {
    padding-left: 30px;
    margin-bottom: 10px;
    position: relative;
    color: #444;
}

.notes li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #6b8e23;
    font-size: 0.8rem;
}




.detail-item ul {
    list-style: none;
    padding-left: 0;
}

.detail-item li {
    padding-left: 30px;
    margin-bottom: 10px;
    position: relative;
    color: #444;
}

.detail-item li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #6b8e23;
    font-size: 0.8rem;
}
 .detail-item ol {
    list-style: decimal;
    padding-left: 20px;
}

.detail-item li {
    padding-left: 10px;
    margin-bottom: 10px;
    position: relative;
    color: #444;
}

.detail-item li::before {
    content: none;
}
/* 申し込み方法 */
.application {
    margin-bottom: 80px;
}

.steps {
    max-width: 700px;
    margin: 0 auto;
}

.step {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border: 2px solid #e0e0e0;
    position: relative;
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, #2d4a2d, #4a6a4a);
    color: #ffffff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.step h4 {
    font-size: 1.4rem;
    color: #2d4a2d;
    margin-bottom: 12px;
    font-weight: 600;
}

.step p {
    color: #555;
    line-height: 1.8;
}

.arrow-down {
    text-align: center;
    font-size: 2.5rem;
    color: #c9a961;
    margin: 20px 0;
    font-weight: 700;
}

.apply-button {
    display: block;
    width: 100%;
    max-width: 350px;
    margin: 25px auto 0;
    padding: 18px 40px;
    background: linear-gradient(135deg, #c9a961 0%, #d4b66f 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.3);
    letter-spacing: 0.05em;
}

.apply-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
    background: linear-gradient(135deg, #d4b66f 0%, #c9a961 100%);
}

/* お問い合わせ先 */
.contact {
    margin-bottom: 60px;
}

.contact-info {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-left: 6px solid #6b8e23;
    margin-bottom: 30px;
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d4a2d;
    margin-bottom: 5px;
}

.tour-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #6b8e23;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 8px;
    color: #444;
    line-height: 1.8;
}

.notice {
    color: #d32f2f;
    font-weight: 600;
}

.manager-box {
    background: #f9f9f9;
    padding: 30px;
    border: 2px solid #c9a961;
    border-radius: 8px;
    line-height: 1.8;
}

.manager-box p {
    color: #444;
    margin-bottom: 10px;
}

.manager-box strong {
    color: #2d4a2d;
    font-size: 1.1rem;
}

/* 会社情報 */
.company-info {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.company-info h3 {
    font-size: 1.5rem;
    color: #2d4a2d;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #8b7355;
}

.company-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.company-text {
    flex: 1;
}

.company-text p {
    margin-bottom: 8px;
    color: #444;
    line-height: 1.8;
}

.company-logo {
    flex-shrink: 0;
}

.company-logo img {
    max-width: 350px;
    height: auto;
}

/* 個人情報 */
.privacy {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.privacy h3 {
    font-size: 1.5rem;
    color: #2d4a2d;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #c9a961;
}

.privacy p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* フッター */
.footer {
    background: linear-gradient(135deg, #2d4a2d 0%, #1a2e1a 100%);
    color: #c9a961;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .header {
        height: 300px;
    }

    .slideshow {
        display: block;
    }

    .slide img {
        object-fit: cover;
        object-position: center;
    }

    .header-overlay {
        background: linear-gradient(135deg, #2d4a2d 0%, #4a6a4a 100%);
    }

    .main-title {
        font-size: 1.8rem;
        padding: 25px 30px;
        border-width: 4px;
    }

    .section-title {
        font-size: 2rem;
    }

    .points-grid {
        grid-template-columns: 1fr;
    }

    .company-flex {
        flex-direction: column;
        text-align: center;
    }

    table {
        font-size: 0.9rem;
    }

    thead th, tbody td {
        padding: 12px;
    }
}

.photo-triple {
    display: flex;
    gap: 15px;
    margin: 20px 0 5px;
}

.photo-triple .photo-item {
    flex: 1;
    position: relative;
}

.photo-triple .photo-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .photo-triple {
        flex-direction: column;
    }
}
/* 同意確認 */
.consent-check {
    text-align: center;
    margin: 35px 0 0;
    padding: 35px 30px;
    background: #f9f9f9;
    border-radius: 8px;
    border-top: 3px solid #c9a961;
}

.consent-question {
    font-size: 1.05rem;
    color: #444;
    line-height: 2;
    margin-bottom: 25px;
}

.consent-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.consent-btn {
    width: 140px;
    padding: 14px 0;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.consent-yes {
    background: linear-gradient(135deg, #2d4a2d, #4a6a4a);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(45,74,45,0.3);
}

.consent-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(45,74,45,0.4);
}

.consent-no {
    background: #ffffff;
    color: #888;
    border: 2px solid #ddd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.consent-no:hover {
    transform: translateY(-3px);
    border-color: #bbb;
    color: #555;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.consent-message {
    font-size: 0.95rem;
    font-weight: 600;
    min-height: 1.5em;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .consent-check {
        padding: 25px 15px;
    }

    .consent-question {
        font-size: 0.95rem;
    }

    .consent-btn {
        width: 120px;
        font-size: 1rem;
    }
}
.announcement-inner {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.announcement-left {
    flex: 1;
}


.announcement-copy {
    font-size: 0.75rem;
    color: #888;
    margin-top: 6px;
    text-align: center;
}

@media (max-width: 768px) {
    .announcement-inner {
        flex-direction: column;
    }


}
.gensaku-box {
    text-align: center;
}

.gensaku-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d4a2d;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #c9a961;
    display: inline-block;
}

.gensaku-box img {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 8px;
    border-radius: 4px;
}

.gensaku-copy {
    font-size: 0.8rem;
    color: #888;
}