@charset "UTF-8";

/* =========================================
   変数・ベース設定
   ========================================= */
:root {
  --content-width: 1200px;
  --max-width: 1920px;
  --color-text: #000;
  --color-bg-light: #f7f8f8;
  --color-brown: #4c422d;
  --color-btn-brown: #6d6753;
  
  /* A賞〜D賞のカラー */
  --color-prize-a: #be9f33;
  --color-prize-b: #898989;
  --color-prize-c: #98491a;
  --color-prize-d: #4facaa;
}

body {
  margin: 0;
  padding: 0;
  color: var(--color-text);
  background-color: #fff;
  line-height: 1.6;
  letter-spacing: 0.02em;
  font-size: 16px;
}

main {
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  overflow: hidden;
}

.container {
  max-width: var(--content-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.pc_br {
    display: block;
}
@media screen and (max-width: 680px) {
    .pc_br {
        
        display: none;
    }
}

.sp_br {
    display: none;
}
@media screen and (max-width: 680px) {
    .sp_br {
        display: block;
    }
}

/* =========================================
   Main Visual (MV)
   ========================================= */
.mv {
  width: 100%;
  height: 80vh; 
  min-height: 500px; 
  background: linear-gradient(135deg, #006b9e 0%, #006b9e 55%, #008f45 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
@media (max-width: 680px) {
  .mv {
    height: 100vh;
  }
}

.mv-content {
  text-align: center;
  color: #fff;
  width: 100%;
}

.mv-title img {
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
}

.mv-subtitle {
  font-size: clamp(16px, 3vw, 24px);
  font-weight: 700;
  letter-spacing: 0.15em;
}

/* =========================================
   Intro Section
   ========================================= */
.intro-section {
  background-color: var(--color-bg-light);
  padding: 80px 0;
}
@media (max-width: 680px) {
  .intro-section {
    padding: 40px 0;
  }
}

.intro-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 680px) {
  .intro-inner {
    flex-direction: column;
  }
}

.intro-text-area {
  width: 50%;
}
@media (max-width: 680px) {
  .intro-text-area {
    width: 100%;
  }
}

.intro-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 25px;
}
@media (max-width: 680px) {
  .intro-title {
  }
}

.intro-title .en {
  font-size: 26px;
  display: block;
  margin-bottom: 8px;
}

.intro-text {
  font-size: 16px;
  font-weight: 500;
}

.intro-info-area {
  width: 45%;
  margin-top: auto;
  margin-bottom: auto;
}
@media (max-width: 680px) {
  .intro-info-area {
    width: 100%;
  }
}

.info-list {
  margin: 0;
  color: #4c422d;
  border-top: 1px solid var(--color-brown);
}

.info-item {
  display: flex;
  padding: 18px 14px;
  border-bottom: 1px solid var(--color-brown);
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 680px) {
  .info-item {
  padding: 18px 4px;
  }
}

.info-item dt {
  width: 20%;
  flex-shrink: 0;
}
@media (max-width: 680px) {
  .info-item dt {
    width: 30%;
    margin-top: auto;
    margin-bottom: auto;
  }
}

.info-item dd {
  margin: 0;
}

/* =========================================
   Campaign Section
   ========================================= */
.campaign-section {
  padding: 40px 0;
}

.section-title {
  text-align: center;
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 700;
  margin-bottom: 60px;
  letter-spacing: 0.1em;
}
@media (max-width: 680px) {
  .section-title {
    margin-bottom: 40px;
  }
}

/* --- Card Base --- */
.card {
  display: flex;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  margin-bottom: 60px;
  overflow: hidden;
  min-height: 420px;
}
@media (max-width: 680px) {
  .card {
    flex-direction: column;
  }
}

.card-visual {
  width: 45%;
  position: relative;
}
@media (max-width: 680px) {
  .card-visual {
    width: 100%;
    height: 280px;
  }
}

.visual-text {
  position: absolute;
  width: 75%;
  max-width: 250px;
}
@media (max-width: 680px) {
  .visual-text {
    width: 65%; /* SP用に少しサイズ調整（位置はPCの設定を引き継ぐ） */
  }
}

/* 画像の配置設定（PC・SP共通で適用されます） */
.pos-message {
  top: 15%;
  left: 10%;
}

.pos-scratch {
  top: 12%;
  right: 8%;
}

.pos-tickets {
  bottom: 15%;
  right: 10%;
}

.pos-member {
  top: 22%;
  left: 10%;
}

/* グラデーション */
.gradient-message {
  background: linear-gradient(to bottom, #e8728a 0%, #ed9734 100%);
}

.gradient-scratch {
  background: linear-gradient(to bottom, #7c1687 0%, #1da4db 100%);
}

.gradient-tickets {
  background: linear-gradient(to bottom, #ea9900 0%, #90c31a 100%);
}

.gradient-member {
  background: linear-gradient(to bottom, #1f94a8 0%, #c4e09f 100%);
}

.card-content {
  width: 55%;
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
@media (max-width: 680px) {
  .card-content {
    width: 100%;
    padding: 40px 20px;
  }
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 680px) {
  .card-title {
  }
}

.card-desc {
  font-size: 16px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--color-brown);
  padding-bottom: 25px;
}
@media (max-width: 680px) {
  .card-desc {
    padding-bottom: 20px;
  }
}

/* 共通パーツ */
.campaign-details {
  font-size: 16px;
}

.detail-row {
  margin-bottom: 15px;
  font-weight: 700;
}

.icon-img {
  width: 22px;
  height: 22px;
  margin-right: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.icon-large {
  width: 36px;
  height: 36px;
  margin-right: 18px;
}

.sns-banner {
  display: flex;
  align-items: center;
  background-color: #efefef;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.sns-banner-text {
  display: flex;
  flex-direction: column;
}

.sns-title,
.sns-date {
  font-weight: 700;
}

.outline-box,
.menu-box {
  margin-bottom: 20px;
}

.outline-title,
.menu-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.prize-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  font-weight: 700;
}

.prize-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.link-wrapper {
  margin-top: 10px;
}
@media (max-width: 680px) {
  .link-wrapper {
    text-align: center;
  }
}

.text-link {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* SP用非表示ラベル */
.sp-hidden-label {
  display: inline;
}
@media (max-width: 680px) {
  .sp-hidden-label {
    display: none;
  }
}

/* リスト形式 */
.info-table dl,
.simple-dl {
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  font-weight: 700;
}

.info-table dt,
.simple-dl dt {
  width: 85px;
}
@media (max-width: 680px) {
  .info-table dt,
  .simple-dl dt {
    margin-bottom: 5px;
    width: auto;
  }
}

.info-table dd,
.simple-dl dd {
  width: calc(100% - 85px);
  margin: 0;
}
@media (max-width: 680px) {
  .info-table dd,
  .simple-dl dd {
    width: calc(100% - 85px);
    margin-bottom: 15px;
  }
}

@media (max-width: 680px) {
  .simple-dl dt.full-line,
  .simple-dl dd.full-line {
    width: 100%;
  }

  .simple-dl dt.full-line {
    margin-bottom: 4px;
  }
}

/* A〜D賞バッジ */
.badge-prize-list {
  list-style: none;
  padding: 0;
}

.prize-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.prize-badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.prize-badge span {
  font-size: 11px;
  margin-left: 1px;
  margin-top: 2px;
}

.badge-a { background-color: var(--color-prize-a); }
.badge-b { background-color: var(--color-prize-b); }
.badge-c { background-color: var(--color-prize-c); }
.badge-d { background-color: var(--color-prize-d); }

.prize-body {
  padding-left: 48px;
}

.note {
  display: flex;
  flex-direction: column;
  gap: 4px; 
}

.note-row {
  display: flex;
  align-items: flex-start; 
}

.note-label {
  width: 5.1em;
  text-align: justify;
  text-align-last: justify;
  flex-shrink: 0;
}

.note-text {
  flex: 1;
}

.note-container {
  font-size: 14px;
  line-height: 1.7;
}

.note-flex-row {
  display: flex;
  align-items: flex-start; 
}

.note-label-tickets {
  flex-shrink: 0; 
}

.note-content {
  flex-grow: 1;
}

.note-bottom-text {
  margin-top: 8px; 
}

@media screen and (max-width: 767px) {
  .note-flex-row {
    display: block;
  }
}

/* ボタン設定 */
.btn-area {
  margin-top: 35px;
}
@media (max-width: 680px) {
  .btn-area {
    text-align: center;
  }
}

.btn-area-center {
  text-align: center;
}

.btn-gradient {
  display: inline-block;
  background: linear-gradient(to right, #00365a, #005f3d);
  color: #fff;
  padding: 18px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  transition: 0.3s;
}

.btn-brown {
  display: inline-block;
  background-color: var(--color-btn-brown);
  color: #fff;
  padding: 18px 50px;
  font-weight: 700;
  font-size: 18px;
  transition: 0.3s;
}

.btn-message {
  display: inline-block;
  background: linear-gradient(to bottom, #e8728a 0%, #ed9734 100%);
  color: #fff;
  padding: 18px 28px;
  font-weight: 700;
  font-size: 18px;
  transition: 0.3s;
}

.btn-scratch {
  display: inline-block;
  background: linear-gradient(to bottom, #7c1687 0%, #1da4db 100%);
  color: #fff;
  padding: 18px 28px;
  font-weight: 700;
  font-size: 18px;
  transition: 0.3s;
}

.btn-tickets {
  display: inline-block;
  background: linear-gradient(to bottom, #ea9900 0%, #90c31a 100%);
  color: #fff;
  padding: 18px 28px;
  font-weight: 700;
  font-size: 18px;
  transition: 0.3s;
}

.btn-member {
  display: inline-block;
  background: linear-gradient(to bottom, #1f94a8 0%, #c4e09f 100%);
  color: #fff;
  padding: 18px 28px;
  font-weight: 700;
  font-size: 18px;
  transition: 0.3s;
}

.btn-gradient:hover,
.btn-brown:hover,
.btn-tickets:hover
 {
  opacity: 0.8;
  transform: translateY(-2px);
}



/* =========================================
   告知ボックス（開催前用）
   ========================================= */
.scratch-teaser {
  background: linear-gradient(to bottom, #7c1687 0%, #1da4db 100%);
  color: #fff;
  text-align: center;
  padding: 24px 50px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 330px; 
  box-sizing: border-box;
}

@media (max-width: 680px) {
  .scratch-teaser {
    max-width: 100%;
    margin-left: unset;
    margin-right: unset;
  }
}

.scratch-teaser .teaser-top {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
@media (max-width: 680px) {
  .scratch-teaser .teaser-top {
    font-size: 17px;
  }
}

.scratch-teaser .teaser-top span {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid #fff; 
  line-height: 1.2;
}

.scratch-teaser .teaser-bottom {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}



.teaser-price {
  font-weight: 700;
  margin-bottom: 25px; 
}

.tickets-teaser {
  background: linear-gradient(to bottom, #ea9900 0%, #90c31a 100%);
  color: #fff;
  text-align: center;
  padding: 24px 20px;
  font-size: 18px;
  font-weight: 700;
  max-width: 330px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

@media (max-width: 680px) {
  .tickets-teaser {
    max-width: 100%;
  }
}


.member-teaser {
  background: linear-gradient(to bottom, #1f94a8 0%, #c4e09f 100%);
  color: #fff;
  text-align: center;
  padding: 24px 20px;
  font-size: 18px;
  font-weight: 700;
  max-width: 330px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

@media (max-width: 680px) {
  .member-teaser {
    max-width: 100%;
    margin-top: 0;
  }
}

.message-teaser {
  background: linear-gradient(to bottom, #e8728a 0%, #ed9734 100%);
  color: #fff;
  text-align: center;
  padding: 24px 20px;
  font-size: 16px;
  font-weight: 700;
  max-width: 330px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  line-height: 1.6;
}

@media (max-width: 680px) {
  .message-teaser {
    max-width: 100%;
    font-size: 14px;
  }
}

/* =========================================
   Footer Message
   ========================================= */
.footer-message-section {
  text-align: center;
}

.footer-message-title {
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 700;
  color: #8c7657;
  margin-bottom: 25px;
}

.footer-message-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 50px;
}

footer {
  margin-top: 80rem;
}
@media (max-width: 680px) {
  footer {
    margin-top: 60rem;
  }
}