h1.hero-title {
	font-size: 3.0rem;
}

/* ベースのスタイル */
.hhcntct2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px; /* ボタン間の間隔 */
  width: 100%;
}

.hhcntct2 div a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 65px;
  background-color: #f3a300;
  color: #333333;
  text-decoration: none;
  border-radius: 33px; /* 指示通りの50%（楕円形になります） */
  font-size: 16px;
  box-sizing: border-box;
	margin-top: 30px;
	margin-bottom: 30px;
	font-weight:bold;
}

.hhcntct2 div a:hover {
  color: #333333;
}

/* レスポンシブ対応：958px未満 */
@media screen and (max-width: 958px) {
  .hhcntct2 {
    flex-direction: column;
  gap: 15px; /* ボタン間の間隔 */
	margin-top: 10px !important;
	margin-bottom: 10px !important;
	}
	.hhcntct2 div a {
	margin-top: 0px !important;
	margin-bottom: 0px !important;
  }
}

.page .entry-content, .page .entry-header .inner-wrap {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
}




/* セクション全体の余白と幅調整 */
.pickup-section {
    max-width: 1000px; /* 実際のサイトの幅に合わせて調整してください */
    margin: 0 auto;
    padding: 30px 20px;
    font-family: sans-serif; /* サイトのベースフォントに合わせてください */
}

/* ヘッダー部分 (PICK UP / 最新のイベント情報) */
.pickup-header {
    margin-bottom: 25px;
    color: #333333;
}

.pickup-header h2 {
    font-size: 24px;
    margin: 0 0 8px 0;
	padding-left: 0 !important;
    font-weight: normal;
    letter-spacing: 0.05em;
}

.pickup-header p {
    font-size: 14px;
    margin: 0;
    font-weight: bold;
}

/* リスト全体の装飾 */
.pickup-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #dcdcdc; /* 上部の線 */
}

.pickup-list li {
    border-bottom: 1px solid #dcdcdc; /* 各項目の区切り線 */
	list-style-type: none !important;
}

/* リンク要素をFlexboxで横並びに */
.pickup-list a {
    display: flex;
    align-items: center;
    padding: 20px 0;
    text-decoration: none;
    color: #333333;
    transition: opacity 0.3s ease;
	background: #fafafa;
}

.pickup-list a:hover {
    opacity: 0.6;
}

/* 日付とバッジをまとめるブロック */
.pickup-meta {
    display: flex;
    align-items: center;
    min-width: 260px; /* タイトルまでの距離を確保 */
	padding-left: 15px;
}

.pickup-date {
    font-size: 14px;
    margin-right: 20px;
    letter-spacing: 0.05em;
}

.pickup-badge {
    background-color: #ffffff;
    padding: 8px 0;
    font-size: 13px;
    width: 100px;
    text-align: center;
    display: inline-block;
}

/* タイトル部分 */
.pickup-title {
    font-size: 15px;
    margin: 0;
    flex-grow: 1; /* 余ったスペースをすべてタイトル領域にする */
    padding-right: 30px;
	  padding-top: 20px;
    font-weight: normal;
    line-height: 1.6;
}

/* レスポンシブ対応：768px未満（スマホ向け） */
@media screen and (max-width: 768px) {
    .pickup-list a {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
    }

    .pickup-meta {
        margin-bottom: 6px;
    }

    .pickup-title {
				padding-top:10px;
        padding-right: 50px; /* 矢印とテキストが被らないように余白確保 */
    }

    .pickup-arrow {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
}

h2 {padding-left: 0 !important;}
.single h2 {
	font-size: 30px;
}


body.page-id-3212 h1.entry-title {display: none;}