        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

body {
  background: #000; /* 黒背景 */
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* クリックを邪魔しない */
  z-index: 0;
}


.star1 {
  position: absolute;
      width: 5px;
      height: 5px;
  background: white;
  border-radius: 50%;
  opacity: 0.8;
  animation: twinkle 2s infinite alternate;
  /* ぼかし効果 */
  filter: blur(1px); /* 1pxくらいが自然 */
  box-shadow: 0 0 3px white; /* 光の余韻を少し追加 */
}

.star2 {
  position: absolute;
      width: 5px;
      height: 5px;
  background: #EEE24D;
  border-radius: 50%;
  opacity: 0.8;
  animation: twinkle 2s infinite alternate;
  /* ぼかし効果 */
  filter: blur(0.5px); /* 1pxくらいが自然 */
  box-shadow: 0 0 3px white; /* 光の余韻を少し追加 */
}

.star3 {
  position: absolute;
      width: 5px;
      height: 5px;
  background: #6A2BEF;
  border-radius: 50%;
  opacity: 0.8;
  animation: twinkle 2s infinite alternate;
  /* ぼかし効果 */
  filter: blur(0.5px); /* 1pxくらいが自然 */
  box-shadow: 0 0 3px white; /* 光の余韻を少し追加 */
}

.star4 {
  position: absolute;
      width: 5px;
      height: 5px;
  background: #FF2484;
  border-radius: 50%;
  opacity: 0.8;
  animation: twinkle 2s infinite alternate;
  /* ぼかし効果 */
  filter: blur(0.5px); /* 1pxくらいが自然 */
  box-shadow: 0 0 3px white; /* 光の余韻を少し追加 */
}
.star5 {
  position: absolute;
      width: 5px;
      height: 5px;
  background: #33A5DC;
  border-radius: 50%;
  opacity: 0.8;
  animation: twinkle 2s infinite alternate;
  /* ぼかし効果 */
  filter: blur(0.5px); /* 1pxくらいが自然 */
  box-shadow: 0 0 3px white; /* 光の余韻を少し追加 */
}

.fwb{
	font-weight: bold;
}
  /* 3パターンのタイミング */
  .star1 { animation-delay: 0s; }
  .star2 { animation-delay: 1.5s; }
  .star3 { animation-delay: 2s; }
  .star4 { animation-delay: 8s; }
  .star5 { animation-delay: 15s; }

  @keyframes twinkle {
    from { opacity: 0.3; transform: scale(1); }
    to { opacity: 1; transform: scale(1.5); }
  }
    #wrapper {
      position: relative;
      z-index: 1; /* 星の上にコンテンツ */
    }

/* コンテンツは前面に */
#wrapper {
    position: relative;
    z-index: 1;
    background: white;
  /* ふんわり縁の影 */
box-shadow: 
  0 0 20px rgba(0,0,0,0.1),
  0 0 40px rgba(0,0,0,0.05),
  0 0 60px rgba(0,0,0,0.03); 
}
        #wrapper {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
  /* ふんわり縁の影 */
box-shadow: 
  0 0 20px rgba(0,0,0,0.1),
  0 0 40px rgba(0,0,0,0.05),
  0 0 60px rgba(0,0,0,0.03); 
        }

        /* ヘッダー部分はそのまま */
        .post.featured {
            margin-bottom: 0;
        }

        .for_pc, .for_sp {
            width: 100%;
            height: auto;
            display: block;
        }

        .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, #33A5DC, #6A2BE2);
            color: white;
            border-radius: 25px;
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 15px rgba(51, 165, 220, 0.3);
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }

        h7:nth-of-type(even) {
            background: linear-gradient(135deg, #FF2484, #E37202);
            box-shadow: 0 4px 15px rgba(255, 36, 132, 0.3);
        }

        h7:nth-of-type(3n) {
            background: linear-gradient(135deg, #A5C569, #EEE24D);
            box-shadow: 0 4px 15px rgba(165, 197, 105, 0.3);
        }

        h7:nth-of-type(4n) {
            background: linear-gradient(135deg, #E37202, #F02D25);
            box-shadow: 0 4px 15px rgba(227, 114, 2, 0.3);
        }

        /* パラグラフとリスト */
        p {
            margin: 15px 0;
            position: relative;
            z-index: 1;
            font-size: 16px;
            line-height: 1.7;
        }

        p strong {
            background: linear-gradient(135deg, #EEE24D, #A5C569);
            padding: 2px 8px;
            border-radius: 15px;
            color: #333;
            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;
        }

        li::marker {
            color: #33A5DC;
            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.1);
            position: relative;
            z-index: 1;
        }

        .sch th, .table2 th {
            background: #202357;
            color: white;
            padding: 15px;
            text-align: center;
            font-weight: bold;
            font-size: 16px;
        }

        .sch td, .table2 td {
            padding: 12px 15px;
            border: 1px solid #e0e0e0;
			text-align: center;
            background: white;
        }

.table2 td:nth-child(5) {
  text-align: left!important;
}
.td_l{
	text-align: left!important;
}
.fcr{
	color: red;
}
        /* ボタンスタイル */
        .moko {
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(135deg, #FF2484, #E37202, #EEE24D, #A5C569, #33A5DC);
            background-size: 300% 300%;
            color: white;
            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.2);
            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.3);
        }

        /* ステップセクション */
        #stepnum {
            background: linear-gradient(135deg, #E37202, #F02D25);
            color: white;
            padding: 15px 25px;
            border-radius: 25px;
            font-weight: bold;
            font-size: 18px;
            margin: 25px 0 15px 0;
            box-shadow: 0 6px 20px rgba(227, 114, 2, 0.3);
            position: relative;
            z-index: 1;
			text-align:center;
        }

        #step {
            background: white;
            border-left: 5px solid #33A5DC;
            padding: 20px;
            margin: 15px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            position: relative;
            z-index: 1;
        }

        /* 矢印 */
.arrow {
    width: 0;
    height: 0;
    border-top: 20px solid #A5C569;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    margin: 20px auto;
    position: relative;
    z-index: 1;
}
        /* 銀行情報とコンタクト情報 */
        #bank {
            background: linear-gradient(135deg, #E4A6AA, #A5C569);
            padding: 20px;
            border-radius: 15px;
            color: white;
            font-weight: bold;
            margin: 20px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
            position: relative;
            z-index: 1;
        }
        /* 銀行情報とコンタクト情報 */
        .bank_box {
            border: solid 1px #1F1F1F;
            padding: 20px;
            margin: 20px 0;
            position: relative;
            z-index: 1;
        }
        /* 強調テキスト */
        strong2 {
            background: linear-gradient(135deg, #FF2484, #E37202);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: bold;
            display: inline-block;
            margin: 10px 0;
            box-shadow: 0 3px 10px rgba(255, 36, 132, 0.3);
        }

        .fontcolor {
            color: #F02D25;
            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%;
}

        /* レスポンシブ対応 */
        @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;
            }
        }



        /* さらなるペイント装飾 */
        .paint-splash {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            z-index: 0;
            pointer-events: none;
        }
/* ツアータイトルセクション */
.tour-title-section {
    background: linear-gradient(135deg, rgba(51, 165, 220, 0.1), rgba(238, 226, 77, 0.1));
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tour-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #33A5DC, #6A2BE2, #FF2484, #E37202, #EEE24D);
    background-size: 200% 100%;
    animation: gradientFlow 4s linear infinite;
}

@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, #33A5DC, #6A2BE2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(51, 165, 220, 0.2);
    letter-spacing: 1px;
}

.tour-title-line2 {
    font-size: 28px;
    font-weight: 600;
    background: linear-gradient(135deg, #FF2484, #E37202);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

.tour-title-line3 {
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(135deg, #A5C569, #EEE24D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
    letter-spacing: 0.8px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .tour-title-section {
        padding: 50px 30px;
    }
    
    .tour-title-line1 {
        font-size: 32px;
    }
    
    .tour-title-line2 {
        font-size: 22px;
    }
    
    .tour-title-line3 {
        font-size: 26px;
    }
}

@media screen and (max-width: 480px) {
    .tour-title-section {
        padding: 40px 20px;
    }
    
    .tour-main-title {
        gap: 8px;
    }
    
    .tour-title-line1 {
        font-size: 24px;
    }
    
    .tour-title-line2 {
        font-size: 18px;
    }
    
    .tour-title-line3 {
        font-size: 20px;
    }
}
/* ツアーポイント セクション */
.tour-points {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(51, 165, 220, 0.05), rgba(238, 226, 77, 0.05));
    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, #33A5DC, #6A2BE2);
    -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, #FF2484, #E37202);
    border-radius: 2px;
}

/* ポイントグリッド */
.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* ポイントカード */
.point-card {
    position: relative;
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    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, #33A5DC, #6A2BE2);
}

.point-2::before {
    background: linear-gradient(135deg, #FF2484, #E37202);
}

.point-3::before {
    background: linear-gradient(135deg, #A5C569, #EEE24D);
}

.point-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.point-card:hover::before {
    height: 8px;
}

/* ポイント番号 */
.point-number {
    position: absolute;
    top: -15px;
    right: 25px;
    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.2);
}

.point-1 .point-number {
    background: linear-gradient(135deg, #33A5DC, #6A2BE2);
}

.point-2 .point-number {
    background: linear-gradient(135deg, #FF2484, #E37202);
}

.point-3 .point-number {
    background: linear-gradient(135deg, #A5C569, #EEE24D);
}

/* ポイントコンテンツ */
.point-content {
    flex-grow: 1;
    margin-top: 20px;
}

.point-content h3 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.point-1 .point-content h3 {
    color: #33A5DC;
}

.point-2 .point-content h3 {
    color: #FF2484;
}

.point-3 .point-content h3 {
    color: #A5C569;
}

.point-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ポイントアイコン */
.point-icon {
    font-size: 32px;
    text-align: right;
    margin-top: 15px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.point-card:hover .point-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* 装飾用ペイント効果 */
.paint-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}




@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .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: 180px;
    }
    
    .point-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
        top: -12px;
        right: 20px;
    }
    
    .point-content h3 {
        font-size: 20px;
    }
    
    .point-content p {
        font-size: 15px;
    }
    
    .point-icon {
        font-size: 28px;
    }
    
    /* 装飾を小さく */
    .paint-deco-1,
    .paint-deco-2,
    .paint-deco-3 {
        width: 80px;
        height: 80px;
    }
}

@media screen and (max-width: 480px) {
    .tour-points-title {
        font-size: 24px;
    }
    
    .point-card {
        padding: 20px;
        border-radius: 20px;
    }
    
    .point-content h3 {
        font-size: 18px;
    }
    
    .point-content p {
        font-size: 14px;
    }
}
@media screen and (max-width: 1024px) {
  .scroll_box {
    width: 100%;
    overflow-x: auto;   /* autoの方が自然 */
    -webkit-overflow-scrolling: touch; /* iOSで慣性スクロール */
    display: block;     /* 念のため */
    white-space: nowrap; /* 中の要素を横並びにしたい時 */
  
	}
	.f_right{
	float: none;
	width: 100%;
}
.f_left{
	float: none;
	width: 100%;
}
	  
	  
}
/* ------------------------
   YES / NO ボタン（共通）
   ------------------------ */
.btn-group {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* .mokofo を既存のまま使う想定で拡張 */
.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; /* 星背景より前面に表示されるように */
}

/* ===== YES ボタン（目立つグラデ） ===== */
.btn-yes {
  color: #fff;
  background: linear-gradient(90deg, #33A5DC 0%, #6A2BE2 45%, #FF2484 100%);
  background-size: 200% 100%;
  box-shadow: 0 10px 30px rgba(51,165,220,0.18), 0 3px 8px rgba(0,0,0,0.12);
  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(51,165,220,0.20), 0 6px 18px rgba(0,0,0,0.12);
  background-position: 100% 50%;
  outline: none;
}
.btn-yes:focus-visible {
  box-shadow: 0 18px 40px rgba(51,165,220,0.20), 0 0 0 6px rgba(51,165,220,0.10);
}

/* ===== NO ボタン（やさしいアウトライン） ===== */
.btn-no {
  color: #202357;
  background: transparent;
  border: 2px solid rgba(51,165,220,0.14);
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.03), 0 8px 20px rgba(0,0,0,0.06);
  padding: 10px 34px;
}

/* NO の疑似アイコン */
.btn-no::after {
  content: "✕";
  display: inline-block;
  margin-left: 10px;
  opacity: 0.9;
  transform: translateX(0);
  transition: transform .18s ease;
}

.btn-no:hover,
.btn-no:focus {
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(51,165,220,0.03), rgba(51,165,220,0.01));
  box-shadow: 0 12px 30px rgba(0,0,0,0.09);
}
.btn-no:focus-visible {
  box-shadow: 0 12px 30px rgba(0,0,0,0.09), 0 0 0 6px rgba(51,165,220,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: #666;
}
/* 写真セクション */
.photo-section {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
    align-items: flex-start;
}

.photo-item {
    flex: 1;
    max-width: 450px;
}

.photo-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.photo-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #33A5DC, #6A2BE2);
    z-index: 1;
}

.photo-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.photo-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.photo-caption {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    text-align: center;
    padding: 0 15px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .photo-section {
        flex-direction: column;
        gap: 40px;
        margin-top: 40px;
    }
    
    .photo-item {
        max-width: 100%;
    }
    
    .photo-caption {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .photo-section {
        gap: 30px;
        margin-top: 30px;
    }
    
    .photo-caption {
        font-size: 14px;
        padding: 0 10px;
    }
}
/* トークイベントセクション */
.talk-event-section {
    margin-top: 60px;
    position: relative;
}

.talk-event-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #FF2484, #E37202);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.talk-event-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #FF2484, #E37202);
    border-radius: 2px;
}

.talk-event-content {
    background: linear-gradient(135deg, rgba(255, 36, 132, 0.08), rgba(227, 114, 2, 0.08));
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.talk-event-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF2484, #E37202, #EEE24D);
    border-radius: 25px 25px 0 0;
}

.talk-event-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .talk-event-section {
        margin-top: 50px;
    }
    
    .talk-event-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .talk-event-content {
        padding: 30px 25px;
    }
    
    .talk-event-content p {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .talk-event-section {
        margin-top: 40px;
    }
    
    .talk-event-title {
        font-size: 22px;
    }
    
    .talk-event-content {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .talk-event-content p {
        font-size: 14px;
    }
}	