* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #e0f2fe 0%, #bfdbfe 25%, #fed7aa 75%, #fecaca 100%);
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 100vh;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.star1 {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #f8fafc;
    border-radius: 50%;
    opacity: 0.6;
    animation: twinkle 2s infinite alternate;
    filter: blur(0.5px);
    box-shadow: 0 0 2px #f8fafc;
}

.star2 {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fef3c7;
    border-radius: 50%;
    opacity: 0.5;
    animation: twinkle 2.5s infinite alternate;
    filter: blur(0.3px);
    box-shadow: 0 0 2px #fef3c7;
}

.star3 {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #dbeafe;
    border-radius: 50%;
    opacity: 0.4;
    animation: twinkle 3s infinite alternate;
    filter: blur(0.8px);
    box-shadow: 0 0 3px #dbeafe;
}

.fwb {
    font-weight: bold;
}

.star1 { animation-delay: 0s; }
.star2 { animation-delay: 1s; }
.star3 { animation-delay: 2s; }

@keyframes twinkle {
    from { opacity: 0.2; transform: scale(1); }
    to { opacity: 0.8; transform: scale(1.3); }
}

#wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 40px auto;
    background: white;
    border-radius: 30px;
    /* ふんわり感を大幅アップ */
    box-shadow: 
        0 0 60px rgba(147, 197, 253, 0.3),
        0 0 120px rgba(254, 215, 170, 0.2),
        0 20px 80px rgba(0, 0, 0, 0.1),
        0 40px 120px rgba(0, 0, 0, 0.05);
    /* さらにふんわり効果を追加 */
    filter: drop-shadow(0 0 30px rgba(147, 197, 253, 0.2)) 
            drop-shadow(0 0 50px rgba(254, 215, 170, 0.15));
    overflow: hidden;
}

.post.featured {
    margin-bottom: 0;
}

.for_pc, .for_sp {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px 30px 0 0;
}

.post2 {
    padding: 40px;
    position: relative;
    overflow: hidden;
}

/* セクション見出し */
h7 {
    display: block;
    font-size: 22px;
    font-weight: bold;
    margin: 50px 0 15px 0;
    padding: 12px 20px;
    background: linear-gradient(135deg, #7dd3fc, #93c5fd);
    color: #1e40af;
    border-radius: 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(125, 211, 252, 0.2);
    text-shadow: none;
}

h7:nth-of-type(even) {
    background: linear-gradient(135deg, #fed7aa, #fbbf24);
    color: #c2410c;
    box-shadow: 0 4px 15px rgba(254, 215, 170, 0.2);
}

h7:nth-of-type(3n) {
    background: linear-gradient(135deg, #a5f3fc, #7dd3fc);
    color: #0369a1;
    box-shadow: 0 4px 15px rgba(165, 243, 252, 0.2);
}

h7:nth-of-type(4n) {
    background: linear-gradient(135deg, #fecaca, #fed7aa);
    color: #dc2626;
    box-shadow: 0 4px 15px rgba(254, 202, 202, 0.2);
}

/* パラグラフとリスト */
p {
    margin: 15px 0;
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}

p strong {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 2px 8px;
    border-radius: 15px;
    color: #92400e;
    font-weight: bold;
}

ul, ol {
    margin: 15px 0 15px 30px;
    position: relative;
    z-index: 1;
}

li {
    margin: 10px 0;
    font-size: 15px;
    line-height: 1.6;
    padding-left: 10px;
    color: #374151;
}

li::marker {
    color: #7dd3fc;
    font-weight: bold;
}

/* テーブルスタイル */
.sch, .table2 {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    position: relative;
    z-index: 1;
}

.sch th, .table2 th {
    background: #0a396d;
    color: #FFF;
    border: 1px solid #f3f4f6!important;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

.sch td, .table2 td {
    padding: 12px 15px;
    border: 1px solid #f3f4f6!important;
    text-align: center;
    background: white;
    color: #374151;
}

.table2 td:nth-child(5) {
    text-align: left!important;
}

.td_l {
    text-align: left!important;
}

.fcr {
    color: #f87171;
}

/* ボタンスタイル */
.moko {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, #93c5fd, #7dd3fc, #fed7aa, #fbbf24);
    background-size: 300% 300%;
    color: #1e40af;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.moko:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    color: #0f172a;
}

/* ステップセクション */
#stepnum {
    background: linear-gradient(135deg, #fed7aa, #fbbf24);
    color: #c2410c;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 18px;
    margin: 25px 0 15px 0;
    box-shadow: 0 6px 20px rgba(254, 215, 170, 0.2);
    position: relative;
    z-index: 1;
    text-align: center;
}

#step {
    background: white;
    border-left: 5px solid #7dd3fc;
    padding: 20px;
    margin: 15px 0;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    position: relative;
    z-index: 1;
}

/* 矢印 */
.arrow {
    width: 0;
    height: 0;
    border-top: 20px solid #a5f3fc;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    margin: 20px auto;
    position: relative;
    z-index: 1;
}

/* 銀行情報とコンタクト情報 */
#bank {
    background: linear-gradient(135deg, #a5f3fc, #7dd3fc);
    padding: 20px;
    border-radius: 15px;
    color: #0369a1;
    font-weight: bold;
    margin: 20px 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
}

.bank_box {
    border: solid 1px #d1d5db;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    z-index: 1;
    background: #f9fafb;
}

/* 強調テキスト */
strong2 {
    background: linear-gradient(135deg, #fed7aa, #fbbf24);
    color: #c2410c;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin: 10px 0;
    box-shadow: 0 3px 10px rgba(254, 215, 170, 0.2);
}

.fontcolor {
    color: #f87171;
    font-weight: bold;
}

/* ロゴとフッター */
.knt {
    max-width: 350px;
    margin: 20px 0;
}

.align-center {
    text-align: center;
    margin: 20px 0;
}

.f_right {
    float: right;
    width: 45%;
}

.f_left {
    float: left;
    width: 45%;
}

/* ツアータイトルセクション */
.tour-title-section {
    background: linear-gradient(135deg, rgba(147, 197, 253, 0.1), rgba(254, 215, 170, 0.1));
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
}

.tour-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #93c5fd, #7dd3fc, #fed7aa, #fbbf24);
    background-size: 200% 100%;
    animation: gradientFlow 4s linear infinite;
    border-radius: 30px 30px 0 0;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.tour-main-title {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.tour-title-line1 {
    font-size: 42px;
    font-weight: bold;
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(96, 165, 250, 0.1);
    letter-spacing: 1px;
}

.tour-title-line2 {
    font-size: 28px;
    font-weight: 600;
    background: linear-gradient(135deg, #fb923c, #fed7aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

/* ツアーポイント セクション */
.tour-points {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(147, 197, 253, 0.03), rgba(254, 215, 170, 0.03));
    z-index: 1;
}

.tour-points-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.tour-points-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.tour-points-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #fb923c, #fed7aa);
    border-radius: 2px;
}

/* ポイントグリッド - 縦に1列で並べる */
.points-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ポイントカード - 横長に調整 */
.point-card {
    position: relative;
    background: white;
    border-radius: 25px;
    padding: 25px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 25px 25px 0 0;
    transition: all 0.3s ease;
}

.point-1::before {
    background: linear-gradient(135deg, #93c5fd, #dbeafe);
}

.point-2::before {
    background: linear-gradient(135deg, #fed7aa, #fef3c7);
}

.point-3::before {
    background: linear-gradient(135deg, #7dd3fc, #a5f3fc);
}

.point-4::before {
    background: linear-gradient(135deg, #fecaca, #fed7aa);
}

.point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.point-card:hover::before {
    height: 8px;
}

/* ポイント番号 - 左側に配置 */
.point-number {
    position: relative;
    top: 0;
    left: 0;
    right: auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.point-1 .point-number {
    background: linear-gradient(135deg, #60a5fa, #93c5fd);
}

.point-2 .point-number {
    background: linear-gradient(135deg, #fb923c, #fed7aa);
}

.point-3 .point-number {
    background: linear-gradient(135deg, #06b6d4, #7dd3fc);
}

.point-4 .point-number {
    background: linear-gradient(135deg, #f87171, #fecaca);
}

/* ポイントコンテンツ - 中央に配置 */
.point-content {
    flex-grow: 1;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
}

.point-content h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    color: #374151;
    line-height: 1.4;
}

.point-1 .point-content h3 {
    color: #3b82f6;
}

.point-2 .point-content h3 {
    color: #f97316;
}

.point-3 .point-content h3 {
    color: #0891b2;
}

.point-4 .point-content h3 {
    color: #ef4444;
}

/* ポイントアイコン - 右側に配置 */
.point-icon {
    font-size: 32px;
    opacity: 0.5;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.point-card:hover .point-icon {
    opacity: 0.8;
    transform: scale(1.1);
}


/* レスポンシブ対応 */
@media screen and (max-width: 1024px) {
    .scroll_box {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        display: block;
        white-space: nowrap;
    }
    
    .f_right, .f_left {
        float: none;
        width: 100%;
    }
    
    #wrapper {
        margin: 20px;
        border-radius: 20px;
    }
    
    .tour-title-section::before {
        border-radius: 20px 20px 0 0;
    }
    
    .tour-title-section {
        border-radius: 20px 20px 0 0;
    }
}

@media screen and (max-width: 768px) {
    .post2 {
        padding: 20px;
    }
    
    h7 {
        font-size: 18px;
        padding: 10px 15px;
    }
    
    .moko {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .sch th, .table2 th,
    .sch td, .table2 td {
        padding: 8px;
        font-size: 14px;
    }
    
    .tour-title-section {
        padding: 50px 30px;
    }
    
    .tour-title-line1 {
        font-size: 32px;
    }
    
    .tour-title-line2 {
        font-size: 22px;
    }
    
    .tour-points {
        padding: 30px 0;
    }
    
    .tour-points-container {
        padding: 0 20px;
    }
    
    .tour-points-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .points-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .point-card {
        padding: 25px;
        min-height: 140px;
    }
    
    .point-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
        top: -12px;
        right: 20px;
    }
    
    .point-content h3 {
        font-size: 16px;
    }
    
    .point-icon {
        font-size: 28px;
    }
}

@media screen and (max-width: 480px) {
    #wrapper {
        margin: 10px;
        border-radius: 15px;
    }
    
    .tour-title-section {
        padding: 40px 20px;
        border-radius: 15px 15px 0 0;
    }
    
    .tour-title-section::before {
        border-radius: 15px 15px 0 0;
    }
    
    .tour-main-title {
        gap: 8px;
    }
    
    .tour-title-line1 {
        font-size: 24px;
    }
    
    .tour-title-line2 {
        font-size: 18px;
    }
    
    .tour-points-title {
        font-size: 24px;
    }
    
    .point-card {
        padding: 20px;
        border-radius: 20px;
        min-height: 120px;
    }
    
    .point-content h3 {
        font-size: 14px;
    }
}

/* YES / NO ボタン */
.btn-group {
    display: inline-flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.mokofo.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 999px;
    padding: 12px 36px;
    font-weight: 700;
    font-size: 25px;
    line-height: 1;
    transition: transform .22s cubic-bezier(.2,.9,.2,1), box-shadow .22s, background-position 3s linear;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 3;
}

.btn-yes {
    color: #1e40af;
    background: linear-gradient(90deg, #93c5fd 0%, #7dd3fc 45%, #fed7aa 100%);
    background-size: 200% 100%;
    box-shadow: 0 10px 30px rgba(147,197,253,0.12), 0 3px 8px rgba(0,0,0,0.08);
    border: none;
}

.btn-yes::after {
    content: "→";
    display: inline-block;
    margin-left: 12px;
    font-weight: 800;
    transform: translateX(0);
    transition: transform .22s ease;
}

.btn-yes:hover,
.btn-yes:focus {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 18px 40px rgba(147,197,253,0.15), 0 6px 18px rgba(0,0,0,0.08);
    background-position: 100% 50%;
    outline: none;
}

.btn-no {
    color: #3b82f6;
    background: transparent;
    border: 2px solid rgba(147,197,253,0.3);
    box-shadow: inset 0 -3px 0 rgba(0,0,0,0.02), 0 8px 20px rgba(0,0,0,0.04);
    padding: 10px 34px;
}

.btn-no::after {
    content: "✕";
    display: inline-block;
    margin-left: 10px;
    opacity: 0.7;
    transform: translateX(0);
    transition: transform .18s ease;
}

.btn-no:hover,
.btn-no:focus {
    transform: translateY(-3px);
    background: linear-gradient(180deg, rgba(147,197,253,0.05), rgba(147,197,253,0.02));
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

@keyframes btnGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-yes {
    animation: btnGradient 4s linear infinite;
}

@media screen and (max-width: 480px) {
    .btn-group {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: center;
    }
    
    .mokofo.btn {
        width: calc(100% - 40px);
        padding: 14px 18px;
        font-size: 15px;
    }
}

.btn-note {
    font-size: 13px;
    color: #9ca3af;
}
/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .points-grid {
        max-width: 100%;
        gap: 15px;
    }
    
    .point-card {
        padding: 20px 25px;
        height: 70px;
    }
    
    .point-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .point-content {
        margin: 0 15px;
    }
    
    .point-content h3 {
        font-size: 16px;
    }
    
    .point-icon {
        font-size: 28px;
    }
}

@media screen and (max-width: 480px) {
    .point-card {
        padding: 15px 20px;
        height: 60px;
    }
    
    .point-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .point-content {
        margin: 0 10px;
    }
    
    .point-content h3 {
        font-size: 14px;
    }
    
    .point-icon {
        font-size: 24px;
    }
}
/* 注意事項セクション */
.notice-section {
    background: #fef3c7;
    margin: 40px 30px;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 8px 25px rgba(254, 215, 170, 0.2);
}

/* 矢印アイコン */
.notice-arrow {
    text-align: center;
    font-size: 32px;
    color: #f97316;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.notice-content {
    color: #c2410c;
    font-size: 16px;
    line-height: 1.8;
}

.notice-content p {
    margin: 15px 0;
    color: #c2410c;
}

.notice-content .highlight {
    background: linear-gradient(135deg, #fbbf24, #fde68a);
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: bold;
    color: #92400e;
}

.notice-content .star-point {
    color: #ea580c;
    font-weight: bold;
}

.notice-content .option-title {
    background: linear-gradient(135deg, #fb923c, #fed7aa);
    padding: 8px 15px;
    border-radius: 15px;
    font-weight: bold;
    display: inline-block;
    margin: 10px 0;
    box-shadow: 0 3px 10px rgba(251, 146, 60, 0.3);
}

.notice-content .important-note {
    background: rgba(251, 146, 60, 0.1);
    padding: 15px;
    border-radius: 12px;
    margin: 15px 0;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .notice-section {
        margin: 30px 0;
        padding: 25px 20px;
    }
    
    .notice-arrow {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .notice-content {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .notice-section {
        padding: 20px 15px;
        border-radius: 15px;
    }
    
    .notice-arrow {
        font-size: 24px;
    }
    
    .notice-content {
        font-size: 14px;
    }
}
.point-card.point-3 {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 25px 30px;
}

.point-3-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.point-card.point-2 {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 25px 30px;
}

.point-2-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.point-photos_2 {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    width: 100%;
}

.point-photos {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    width: 100%;
}

.point-photos_2 img {
    width: calc(50% - 8px);
    max-width: 500px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


.point-photos img {
    width: calc(50% - 8px);
    max-width: 500px;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


@media screen and (max-width: 768px) {
    .point-photos {
        gap: 10px;
    }

    .point-photos img {
        border-radius: 8px;
    }
	
	 .point-photos_2 {
        gap: 10px;
    }

    .point-photos_2 img {
        border-radius: 8px;
    }
}

@media screen and (max-width: 480px) {
    .point-photos {
        flex-direction: column;
        gap: 10px;
    }

    .point-photos img {
        width: 100%;
    }
	
	  .point-photos_2 {
        flex-direction: column;
        gap: 10px;
    }

    .point-photos_2 img {
        width: 100%;
    }
}