/*
Theme Name:harukayume
Description:りんご娘はるか夢スタジアム
version:1.0
*/

/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* フォント */
.m-plus-rounded-1c-light {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.m-plus-rounded-1c-medium {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.m-plus-rounded-1c-bold {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  font-style: normal;
}


.noto-sans-jp-semi_bold {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.noto-sans-jp-bold {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

body {
  font-family: "M PLUS Rounded 1c", "Noto Sans JP", sans-serif;
  background: #fff;
  color: #212121;
}

h1 {
  line-height: 1em;
  text-align: center;
  margin-bottom:1em;
}

.container {
  max-width:1000px;
  margin:0 auto;
}

/* ヘッダー */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1000;
}

#site-header.show {
  opacity: 1;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
}

.site-title {
  font-size: 1.75rem;
  font-weight: bold;
  color:#ffa1a1;
  font-family: "Libertinus Serif", serif;
  font-weight: 400;
  font-style: normal;
}

.hamburger {
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  color:#ffa1a1;
}

.nav-links {
  list-style: none;
  display: none; /* モバイルでは非表示 */
}

/* PC表示時のナビゲーション */
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
  .nav-links {
    display: flex;
    gap: 20px;
  }
  .nav-links li a {
    text-decoration: none;
    color: #212121;
    font-weight: 500;
  }
  .nav-links li a:hover {
    color: #E91E63;
  }
  .min768_hidden{
	display:none;
  }
}

/* メインビジュアル */
.main-visual {
  position: relative;
  height: 100svh;
  overflow: hidden;
}

.main-visual-bg {
  background: url('assets/main_1200px.jpg') center/cover no-repeat;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2.2s ease;
  position: fixed; /* ← これで固定表示 */
  top: 0;
  left: 0;
  z-index: -1; /* 背景として下に配置 */
}
@media (min-width: 1000px) {
  .main-visual-bg {
    background-size: 1000px auto;
  }
}

.main-visual-bg.show {
  opacity: 1;
}

.main-visual-logo {
  width:100%;
  text-align: center;
}
.main-visual-logo img {
  width:100%;
  max-width:900px;
  margin-top:0px;
}
@media (min-width: 650px) {
  .main-visual-logo img {
    margin-top:-50px;
	width:650px;
  }
}

/* チケットカウンター */
.ticket_counter{
	position:sticky;
	bottom:10px;
	width:90%;
	margin:0 auto;
	padding-bottom:0.5rem;
	background-color:#f03;
	color:#fff;
	text-align:center;
	font-weight:bold;
	border-radius:8px
}
@media (min-width: 650px) {
  .ticket_counter {
    width:50%;
  }
}

/* TOPへ移動する */
/* ボタン本体 */
#pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  background: #f59797;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  cursor: pointer;
  z-index: 9999;
}

/* 三角矢印（上向き） */
#pagetop .arrow {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #fff;
}

/* スクロールしたら表示 */
#pagetop.show {
  opacity: 1;
  visibility: visible;
}



/* キャッチコピー */
.catch-copy {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  font-weight: 400;
  font-style: normal;
  text-shadow: #ff1300 1px 0 10px;
  width:100%;
}

.catch-copy.show {
  opacity: 1;
}

/* コンセプトセクション */
.concept {
  position: relative;
  background: white;
  padding: 50px 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  /*box-shadow: 0 -4px 20px rgba(0,0,0,0.05);*/
  z-index: 1;
  font-weight: 400;
  font-style: normal;
}

.item_inner {
  max-width: 800px;
  margin: auto;
}
h1{
  margin-top:-200px;
  margin-bottom:100px;
  color:#fff;
  text-shadow: #ff1300 1px 0 10px;
}

@media screen and (min-width: 768px){
  h1{
    font-size:300%;
  }
}

.content-row {
  padding:10px 20px;
}
.concept h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color:#ffa1a1; /* ブランドピンク */
}

/* フェードインアニメーション初期状態 */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

/* 表示状態 */
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}


/* アイテム */
.item{
    background-color: #fff;
	padding-bottom:1em;
}
.item-section-ttl{
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(0deg, #ff5151, #ff8f8f);
    height:5rem;
    font-weight: bold;
    font-size:130%;
    color:#fff;
}
.item-list{
    max-width:800px;
    padding-bottom:5rem;
}
.item-spec{
    padding:1rem;
}
.item-photo {
    width:100%;
    overflow: hidden;
    background-color: #fff;
}
.item-photo img{
    width:100%;
}
.item-name {
    background-color: #fff;
    font-size:1rem;
    font-weight: bold;
}
.item-price{
    font-size:2rem;
}
.item-price-tax{
    font-size:1rem;
}
.item-text{
    line-height: 200%;
    font-size:90%;
}


@media screen and (min-width: 987px){
    .item-list{
        display: flex;
        justify-content: center;
    }
    .item-photo{width:50%}
    .item-spec{width:50%}
}

.display-flex{display: flex;}
.box-left{width:5em}
.box-right{}

.footer{
    padding:2rem;
    background-color:#ff5151; /* ブランドピンク */
    color:#fff;
    text-align: center;
}


/* 汎用ボタン ----------- */
.btn{
    padding:0.75rem;
    background-color: #333;
    color:#fff;
    text-align: center;
    margin:1rem 0;
}


.two-col-left, .two-col-right{margin-bottom:1em}

@media screen and (min-width: 987px){
	.two-col{display:flex}
	.two-col-left, .two-col-right{width:50%}
}
.price-table{
	width:90%;
	margin:0 auto;
	border-collapse: collapse;
}
.price-table th{width:33%;}
.price-table th:first-child{width:45%}
.price-table th,td{text-align:center;border-bottom:solid 1px #000;padding:0.75em 0}

/* TOPページのNEWS */
.top-news-list{
	list-style-type: none;
}
.top-news-list a{
	text-decoration:none;
}


/* TOPページのチケット購入ボタン */
.btn-flat-border {
  display: block;
	font-size:150%;
	font-weight:bold;
	text-align:center;
  padding: 1em 1em;
  width:90%;
  margin:1em auto;
  color: #fff;
  text-decoration:none;
  background: #ff6e6e;
  border: solid 5px #ff5151;
	border-radius: 15px;
  transition: .4s;
}


/* クリックで展開する */
.toggle-container {
	width:90%;
	margin:1em auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.toggle-header {
    background: #f7f7f7;
    padding: 12px 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-icon {
    font-size: 20px;
    transition: 0.3s;
}

.toggle-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 16px;
}

.toggle-container.open .toggle-content {
    padding: 16px;
}
.toggle-content li{margin-bottom:0.5em}

/* VIDEO */
.video-container {
	margin-top:20px;
  /* 1. コンテナを基準とする */
  position: relative; 
  /* 2. 幅は親要素に合わせる */
  width: 100%; 
  /* 3. 高さは0にして、パディングで高さを稼ぐ */
  height: 0; 
  /* 4. 縦横比を16:9にするためのパディング (9 / 16 * 100 = 56.25%) */
  padding-bottom: 56.25%; 
  /* 5. はみ出しを防ぐため（任意）*/
  overflow: hidden; 
}

.video-container iframe {
  /* 6. iframeを絶対配置でコンテナいっぱいに広げる */
  position: absolute; 
  top: 0;
  left: 0;
  /* 7. 幅と高さを100%にする */
  width: 100%; 
  height: 100%; 
}

/* NEWSアーカイブとNEWSシングル */
	.sub-header{padding:10px;background-color:#ff5151;color:#fff;}
	.sub-header a{text-decoration:none;color:#fff;}
	.single-news, .news-archive{width:90%;margin:1em auto}
	.single-news-ttl, .news-archive-ttl{font-size:150%;font-weight:bold;border-bottom:solid 1px #666;margin-bottom:1em;}
	.news-archive ul{list-style:none;margin-bottom:2em}
	.news-archive li{margin-bottom:1em;}
	.page-end-link{margin-top:3em;text-align:right;}

/* =============footerのメンバー写真 */
.hero-wrap {
  width: 100%;
  max-width: 1000px;
  overflow: hidden; /* ←トリミング */
}

/* 初期状態：スマホは自動高さ */
.hero-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* 横幅600px以上になったら「div の高さ固定＆画像をcover」 */
@media (min-width: 600px) {
  .hero-wrap {
    height: 70vh;      /* ←ここで高さ決定（自由に調整） */
	margin:0 auto;
  }

  .hero-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* ←div に合わせて拡大＆トリミング */
    object-position: top; /* ←下側をトリミング */
  }
}
/* ============カウントダウン============ */
.countdown-bubble {
  display: inline-block;
  background-color: #ff5151; /* 背景色 */
  color: #fff;            /* 文字色 */
  font-weight: bold;
  font-size: 1.5em;
  padding: 0.75em;
  border-radius: 0.75rem;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  margin: 1em auto;
	left:50%;transform: translateX(-50%);
	width:80%;
}
.countdown-bubble-img{
	width:100%;
	margin-bottom:15px;
}
/* 横幅600px以上になったらロゴ画像縮小 */
@media (min-width: 600px) {
	.countdown-bubble {
		width:60%;
	}
  .countdown-bubble-img {
    width:70%;      /* ←ここで高さ決定（自由に調整） */
  }
}
/* 吹き出しの矢印 */
.countdown-bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;   /* 吹き出しの下に配置 */
  left: 25%;
  transform: translateX(-50%);
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #ff5151 transparent transparent transparent;
}

/* ============改行コントロール============ */
@media (min-width: 600px) {
	.pc_hidden{
		display:none;
	}
}

.live-ttl-font{
  font-family: "Libertinus Serif", serif;
  font-weight: 800;
  font-style: normal;
	line-height:140%;
}