@charset "UTF-8";

/* Google Fonts 読み込み */
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');


/* 共通設定
------------------------------------- */


.br {
	display: inline-block;
}

img {
	border-radius: 20px;
	margin: 0 0 2rem;
}


p,li {
	font-size: 1.6rem;
	line-height: 1.6;
}

.txt_small {
	font-size: 1.6rem;
}

.txt_large {
	font-size: 2rem;
}


/*.outlined-text {
  color: pink;
  -webkit-text-stroke: 2px black;
  font-weight: bold;
  font-size: 3rem;
}*/


h5 {
	font-size: 2rem;
	margin-bottom: 2rem;
  }

.simekiri {
	border: 2px solid #ff0000;
	padding:10px 20px;
	font-size: 2rem;
	color:#ff0000;
	text-align: center;
	font-weight: 700;
}

.margin-bottom {
	margin-bottom:40px;
}

.txt_deco_line {
	text-decoration: underline dotted #bbb;
	line-height: 2;
    text-underline-offset: 8px;
}

.txt_center {
  text-align: center;
}

/* キャッチタイトル */
.catch {
  margin-bottom: 2rem;
  color: #0f2468;
  font-size: 3.6rem;
  font-weight: bold;
  text-align: left;
  word-break: break-word;
  font-weight: 900;
  margin: 20px auto 40px;

  /* アニメーション用の設定 */
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 1s ease forwards;
}

/* アニメーションの定義 */
@keyframes fadeInLeft {
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@media (min-width: 769px) {
	.catch {
		font-size: 3.6rem;
	}
}




/* 水平線 */


 .hr {
    width: 100%;
    height: 60px;
	margin: 0 auto;
  }

/* スマートフォン向けのスタイル */
@media only screen and (max-width: 600px) {
	.pc_none {
	  display: block; /* スマートフォンの場合には <br> をブロック要素として表示 */
	}
  }
  
  /* その他のデバイス向けのスタイル */
  @media only screen and (min-width: 601px) {
	.pc_none {
	  display: none; /* スマートフォン以外では <br> を非表示にする */
	}
  }
 


/* ヘッダー hero */
.hero {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 60vh; /* 画面全体 */
}

.hero > * {
  grid-area: 1 / 1;
}

/* 黒オーバーレイ */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* 黒 + 40%透明 */
  z-index: 2;
}

.video-container {
  position: relative;
  z-index: 3; /* オーバーレイより前に出す */
  display: flex;
  justify-content: center;
  width: 100%;
}

.video-container iframe {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  height: auto;
}

/* 背景の設定 */
.hero .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
    transition: transform 8s ease-in-out, background-image 0s;
  transform: scale(1.05); /* 最終状態を常に維持 */
  z-index: -1;
}

/* ズームインのモーションをつける例 */
.hero .background.zoomed {
  animation: zoomIn 8s ease-in-out forwards;
}

@keyframes zoomIn {
  from {
      transform: scale(1);
  }
  to {
      transform: scale(1.1);
  }
}




/* メイン profile
------------------------------------- */
.profile {
	padding-top: max(45px, min(7.8023vw, 90px));
	padding-bottom: max(45px, min(7.8023vw, 90px));
}
.minami-image {
	margin-bottom: 1em;
}
.minami-image img {
	pointer-events: none;
}



/* アサイド info
------------------------------------- */
.info {
	padding-top: max(45px, min(7.8023vw, 90px));
	padding-bottom: max(45px, min(7.8023vw, 90px));
}
.info-list img:hover {
	opacity: .8;
}
.info-list p {
	margin: 1em 0;
	text-align: center;
}
.btn {
	display:block;
	margin: auto;
	padding: .5em 1em;
	width: 10em;
	border: 1px solid #bbb;
	color: #555;
	font-weight: 600;
	text-align: center;
}
.btn:hover { 
	color: #999;
}
@media (max-width: 768px) {
	.info-list + .info-list {
		margin-top: 3em;
	}
}

/* 見出しの装飾
------------------------------------- */

.fukidashi {
	font-size: 2.6rem;
	position: relative;
	width: 100%;
	padding: 20px 20px;
	color: #000000;
	border-radius: 10px;
	background-color: rgb(255, 238, 0);
	margin:0 auto 2rem;
	text-align:center;
	letter-spacing: 0.6rem;
  }

.fukidashi::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: -1;
	width: 20px;
	height: 12px;
	transform: translateX(-50%);
	box-sizing: border-box;
	background-color: rgb(255, 238, 0);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
  }


  .fukidashi_ouen {
	font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    margin: 0 auto 1em;
	color:#0f2468;
  }

  .fukidashi_ouen::before {
	content: "";
	width: 30px;
	height: 2px;
	transform: rotate(60deg);
	box-sizing: border-box;
	background-color: #0f2468;
  }

  .fukidashi_ouen::after {
	content: "";
	width: 30px;
	height: 2px;
	transform: rotate(-60deg);
	box-sizing: border-box;
	background-color: #0f2468;
  }


/* フッター footer
------------------------------------- */

.footer .row {
	align-items: center;
}
.contact-image {
	pointer-events: none;
}

.copyright {
	margin-top: 2em;
	margin-bottom: 0;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.2;
}


.container {
	background-color: #fff;
	border-radius: 20px;
	margin: 0 auto;
	padding: 60px;
	width: 90%;
}


/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #E91E63;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: float 2s ease-in-out infinite;
  transition: background-color 0.3s;
  text-decoration: none;
}

#pagetop:hover {
  background-color: #fc246c;
}

/* 浮き上がるアニメーション */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}


/*===================================*/
a.btns {
    display: block;
    max-width: 350px;
    margin: 0 auto 2rem;
    padding: 1.5rem 3.0rem;
    background-color: #ffffff;
    border-radius: 8px;
  box-sizing: border-box;
    text-decoration: none;
    transition: 0.3s;
	border:1px solid #333;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 横方向のオフセット、縦方向のオフセット、ぼかしの大きさ、色 */

}
a.btns span.bl__text {
    display: block;
    position: relative;
    color: #333;
    font-size: 16px;
    text-align: center;
    padding-left: 30px;
}

a.btns span.bl__text:before {
    content: '';
    width: 20px;
    height: 20px;
    background: #E91E63;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
	color:#fff;
}
a.btns span.bl__text:after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
	box-sizing: border-box;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 4px;
    bottom: 0;
    margin: auto;
    transition: 0.3s;
}
a.btns:hover {
    background-color: #E91E63;
	color: #fff;
	
}


.btns:hover .bl__text {
	color: #fff; /* マウスホバー時に文字色を白に */
  }

a.btns:hover span.bl__text:after {
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
}
@media (max-width: 736px) {
    a.btns {
        max-width: 280px;
        padding: 1.5rem 2.0rem;
    }
    a.btns span.bl__text {
        font-size: 14px;
    }
}


/* アニメーション */
@keyframes fadeInUp {
	0% {
	  opacity: 0;
	  transform: translateY(30px);
	}
	100% {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  
  /* モバイルファーストデザイン: 小さいデバイスからアニメーション */
  .fadeInUp {
	animation: fadeInUp 1s ease-out forwards;
  }
  
  /* 横並びの要素にアニメーション */
  .row .fadeInUp:nth-child(odd) {
	animation-delay: 0.3s;
  }
  .row .fadeInUp:nth-child(even) {
	animation-delay: 0.6s;
  }
  


  /* スマホ向けのスタイル調整 */
  @media only screen and (max-width: 600px) {
    /* フォントサイズを小さく */


    p, li {
        font-size: 1.4rem;
        line-height: 1.8;
    }

    .hero img {
        width: 100%;
        height: auto;
    }

    .container {
        padding: 1rem;
    }

    .row {
        margin-bottom: 3rem;
    }

    .btns {
        padding: 1.2rem 2.5rem;
    }

    .footer {
        padding: 1rem 2rem;
    }

	/*===================*/

	.fukidashi {
		font-size: 1.8rem;
	}

}

/*================================*/

.timetable_box {
	background-color: #f2f2f2;
	border-radius: 20px;
    max-width: 860px;
	margin: 2rem auto;
}


.schedule_midashi {
    font-size: 2.6rem;
    position: relative;
    width: 100%;
    padding: 40px;
    color: #000000;
    background-color: rgb(255, 238, 0);
    margin: 0 auto;
    text-align: center;
    letter-spacing: 0.6rem;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}


.timetable {
    list-style: none;
    padding: 20px ;
    margin: 0 auto;
    border-left: 3px solid #333;
    max-width: 600px;
}

.timetable li {
    position: relative;
    padding: 1rem 1rem 1rem 2rem;
    border-bottom: 1px solid #ddd;

    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timetable li.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.timetable li::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 1.2rem;
    width: 12px;
    height: 12px;
    background-color: #333;
    border-radius: 50%;
}

/* 順番に遅延をつける */
.timetable li:nth-child(1) { animation-delay: 0s; }
.timetable li:nth-child(2) { animation-delay: 0.1s; }
.timetable li:nth-child(3) { animation-delay: 0.2s; }
.timetable li:nth-child(4) { animation-delay: 0.3s; }
.timetable li:nth-child(5) { animation-delay: 0.4s; }
.timetable li:nth-child(6) { animation-delay: 0.5s; }
.timetable li:nth-child(7) { animation-delay: 0.6s; }
.timetable li:nth-child(8) { animation-delay: 0.7s; }

/* アニメーション内容 */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.timetable .time {
    font-weight: bold;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1.8rem;
}

.timetable .event {
    font-size: 1.6rem;
    color: #555;
}

@media (max-width: 600px) {
    .timetable {
        border-left: 2px solid #333;
    }

    .timetable li {
        padding: 0.8rem 0.8rem 0.8rem 1.5rem;
    }

    .timetable li::before {
        width: 10px;
        height: 10px;
        left: -6px;
        top: 1rem;
    }

    .timetable .time {
        font-size: 1.4rem;
    }

    .timetable .event {
        font-size: 1.4rem;
    }
}


/* PCでは改行する設定 */
@media (min-width: 768px) {
	.no-break br {
	  display: block;
	}
  }
  
  /* スマホでは改行しない設定 */
  @media (max-width: 767px) {
	.no-break br {
	  display: none;
	}
  }

