@charset "UTF-8";
/*
Theme Name: 愛南トライアスロン2026
Version:1.0.1
Author:
*/
/*--------------共通---------------*/
html {
  font-size: 100%;
}
body {
  font-family: 'FOT-筑紫A丸ゴシック Std D', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'Hiragino Sans', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  color: #000;
  letter-spacing: 0.1em;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
body, html {
  margin: 0;
  padding: 0;
}
body * {
  box-sizing: border-box;
}
a {
  color: #05204b;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
  display: flex;
}
li {
  list-style: none;
}
.wrap {
  overflow: hidden;
}
.inner {
  width: 85%;
  margin: 0 auto;
}
.content_flex {
  display: flex;
}
.home_back {
  display: none;
  font-size: 14px;
  text-align: center;
  text-decoration: underline;
  margin-bottom: 100px;
}
.home_back:hover {
  transition: .3s;
  color: #71C4D2;
}
@media screen and (max-width: 1150px) {
  .content_flex {
    display: block;
  }
  .inner {
    width: 100%;
  }
  .home_back {
    display: block;
  }
}
/*--------------トップページボタン共通---------------*/
.top-page_btn {
  display: inline-block;
  font-weight: bold;
  text-align:center;
  border-radius: 30px;
  position: relative;
  width: 100%;
  max-width: 280px;
  padding: 17px 5px 17px 0;
  font-size: 1rem;
  color: #fff;
  transition: .3s;
}
.news_btn,.toppage-aid_btn {
  margin-top: 40px;
  background: linear-gradient(to right,rgb(240, 107, 36),rgb(248, 229, 143));
}
.ainan_knowledge_btn {
  margin-top: 40px;
  background: linear-gradient(to right, rgb(173, 232, 152), rgb(72, 178, 228));
}
.about-ainan_btn {
  margin-top: 20px;
  background: linear-gradient(to right,rgb(240, 107, 36),rgb(248, 229, 143));
}
.top-page_btn:hover {
  opacity: .8;
}
/*--------------固定ページ共通---------------*/
.fixed_page_wrap {
  background-image: url('img/bg_sp.webp');
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative; /* これで画像を囲む親要素を基準に位置決めできる */
}
.fixed-bg-image {
  position: absolute;
  top: 43%;  /* 必要に応じて調整 */
  left: 5%;
  width: 150px; /* 画像の大きさを調整 */
  height: auto; /* 画像の大きさを調整 */
  z-index: 1; /* h3の後ろに画像が表示されるようにする */
}
.fixed_page_title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  margin-top: -90px;
  font-size: 50px;
  padding: 300px 0 200px 150px;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 1150px) {
  .fixed_page_wrap {
    background-position: 100%;
    background-attachment: fixed;
    background-size: cover;
  }  
  .fixed_page_title {
    margin-top: 0;
    font-size: 32px;
  }
  .fixed-bg-image {
    width: 100px;
    top: 25%;  
    left: 26%;
  }
  .fixed_page_title {
    padding: 100px 0 100px 0;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .fixed-bg-image {
    width: 80px;
    top: 30%;  
    left: 15%;
  }
}
/*----------------ヘッダー---------------*/
.main_content {
  width: 89%;
}
.header {
  position: fixed;
  width: 78%;
  top: 30px;
  left:calc((89% - 78%) / 2);
  padding: 15px 0;
  z-index: 10;
  background-color: #fff;
  border-radius: 35px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  transition: top 0.3s ease-in-out;
}
.pc_nav ul {
  display: flex;
  justify-content: center;
}
.pc_nav ul li {
  padding: 0 15px;
  font-weight: bold;
}
.pc_nav ul li a {
  font-size:15px;
  transition: .3s;
}
.pc_nav ul li:not(:last-child) a:hover {
  color: #0174DF;
  transition: .3s;
}
.nav_entry a {
  padding: 17px;
  color: #fff;
  background: linear-gradient(to right, rgb(152, 191, 232), #154ea2);
  border-radius: 25px;
}

.nav_entry:hover a {
  opacity: .8;
}
@media screen and (max-width: 1400px) {
  .pc_nav ul li {
    padding: 0 10px;
  }  
  .pc_nav ul li a {
    font-size:14px;
  }  
}
@media screen and (max-width: 1150px) {
  .header {
    margin-top: -100px;
  }
  .main_content {
    width: 100%;
  }
  .header_logo {
    display: none;
  }
}
/*----------------------ハンバーガーメニュー-------------------*/
.globalMenuSp {
  display: none;
  opacity: 0;
  /* padding-top: 50px; */
}
@media screen and (max-width: 1150px) {
  .globalMenuSp {
    display:block;
    opacity: 0;
  }  
  .pc_nav {
    display: none;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center; /* 上下中央寄せ */
    align-items: center; /* 左右中央寄せ */
    position: fixed;
    z-index: 99;
    right: 0;
    top: 0;
    width: 3.8rem;
    height: 3.8rem;
    cursor: pointer;
    text-align: center;
    background-color: #71C4D2;
  }
  .hamburger span {
    display: block;
    position: relative;
    width: 30px;
    height: 3px;
    background: #fff;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:not(:last-child) {
    margin-bottom: 6px; /* 線同士の間隔調整 */
}
  /* ハンバーガーメニューがアクティブ時のスタイル */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0; /* 真ん中の線を消す */
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(45deg);
}
  nav.globalMenuSp {
    position: fixed;
    z-index: 98;
    top: 0;
    right: 0;
    color: #05204b;
    background: #71C4D2;
    text-align: center;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    transition: all 0.6s;
  }
  nav.globalMenuSp ul {
    background: #71C4D2;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    margin-top: 0;
  }
  nav.globalMenuSp ul {
    display: block;
  }
  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px dotted #c8ddff;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  nav.globalMenuSp ul li:hover {
    background: rgb(203, 236, 209);
  }
  nav.globalMenuSp ul li a {
    display: block;
    color: #4a4a4a;
    padding: 1.6em 0;
    text-decoration: none;
  }
  nav.globalMenuSp.active {
    transform: translateY(0%);
    opacity: 1;
  }
}
/*------------ファーストビュー-------------*/
.main_v {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}
.main_v img {
  display: block;
  width: 100vw;
  height: 100vh;
  min-height: unset;
  object-fit: cover;
}
.fade li {
  position: absolute;
  top: 0;
  left: -7%;
  width: 120%;
  opacity: 0;
  animation: fade 20s infinite ease;
  -webkit-animation: fade 20s infinite ease;
  transform-origin: center center; /* 拡大の基準を中央に */
}
.fade li:nth-child(1) {
  animation-delay: 0s;
}
.fade li:nth-child(2) {
  animation-delay: 5s;
}
.fade li:nth-child(3) {
  animation-delay: 10s;
}
.fade li:nth-child(4) {
  animation-delay: 15s;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  16% {
      opacity: 1;
      transform: scale(1.1) translate(40px, -40px); /* 右上に少し移動 */
  }
  33% {
      opacity: 1;
      transform: scale(1.1) translate(40px, -40px); /* さらに右上 */
  }
  49% {
      opacity: 0;
      transform: scale(1.1) translate(60px, -60px); /* さらに右上に */
  }
  100% {
    transform: scale(1.2) translate(80px, -80px); /* 最後は完全に右上へ */
      opacity: 0;
  }
}
.countdown {
  position: absolute;
  bottom: 5%;
  left: 5%;
  text-align: center;
  background-image: url('img/名称未設定-1.jpg'); /* 画像のパスを指定 */
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  background-position:center;
  padding: 0 20px;
  width: 500px;
  height: 70px;
	display: flex;
  justify-content: center;
  align-items: center; /* 追加: 縦方向に中央揃え */
}
.countdown P {
  width: 100%;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size:24px;
  letter-spacing: 6px;
}
.countdown span {
  font-size:46px;
  color: #fff;
  padding-left: 10px;
}
.date_img {
  position: absolute;
  bottom: 15%;
  left: 2%;
  width: 600px;
  height: auto;
}
.date_img img {
  width: 100%;
  object-fit: cover;
}
.guest {
  margin-top:50px;
  display: flex;
}
.guest h2 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 25px;
  margin-bottom: 10px;
}
.guest_img_wrapper {
  width: 600px; /* 画像と同じ幅を指定 */
  height: auto; /* 高さは自動調整 */
  overflow: hidden; /* はみ出た部分を隠す */
  display: inline-block; /* 必要に応じて調整 */
}
.guest_img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out; /* なめらかなアニメーション */
}
.guest-content:hover .guest_img {
  transform: scale(1.05,1.05); /* ホバー時に1.2倍に拡大 */
  cursor: pointer;
}
.SP_logo {
  display: none;
}
@media screen and (max-width: 1150px) {
  .main_v {
    min-height: 75vh;
  }
  .main_v img {
    min-height: 75vh;
  }
  .date_img {
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 300px;
  }
  .countdown {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
  }
  .countdown P {
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size:20px;
  }
  .countdown span {
    font-size:38px;
    color: #2a90ff;
  }  
  .pc_logo {
    display: none;
  }
  .SP_logo {
    display: block;
  }
  .main_v {
    margin-top: 0;
  }
  .guest {
    margin-top:90px;
  }  
}
@media screen and (max-width: 768px) {
  .guest_img_wrapper {
    width: 100%; /* 画像と同じ幅を指定 */
    height: auto; /* 高さは自動調整 */
    padding: 0 10px;
  } 
  .countdown {
    bottom: 15%;
  }
}
@media screen and (max-height: 760px) {
  .main_v {
    min-height: 650px;
  }
  .main_v img {
    min-height: 650px;
  }
  .date_img {
    max-width: 400px;
	bottom: 26%;
  }
  .countdown {
    max-width: 400px;
	bottom: 8%;
  }
}
/*------------流れる画像-------------*/
.loop_img {
  overflow: hidden;
}
.loop__box {
  display: flex;
  width: 100vw;
}
.loop__box img {
  min-width: 100vw;
}
.loop__box img:first-child {
  animation: loop 50s -25s linear infinite;
}
.loop__box img:last-child {
  animation: loop2 50s 0s linear infinite;
}
@keyframes loop {
  0% {
      transform: translateX(100%);
  }
  to {
      transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
      transform: translateX(0);
  }
  to {
      transform: translateX(-200%);
  }
}
@media screen and (max-width: 1150px) {
  .loop__box img {
    min-width: 120vw;
  }
}
@media screen and (max-width: 768px) {
  .loop__box img {
    min-width: 230vw;
  }
}
/*------------ボタン項目-------------*/
.sub_content a {
  width: 100%;
  display: block;
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  padding: 25px 0;
  transition: all .3s;
  background-color: #fff;
  border-radius: 30px;
}
.sub_content a:hover {
  opacity: .7;
  filter: brightness(110%);
  transition: all .3s;
}
@media screen and (max-width: 1150px) {
  .sub_content a {
    font-size: 16px;
    width: 350px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 355px) {
  .sub_content a {
    width: 100%;
  }
}
/*------------愛南マラニックの心得-------------*/
.modal-content {
  border-top: 10px solid #edf033;
  border-right: 10px solid #edf033;
  border-bottom: 10px solid #20a4e1;
  border-left: 10px solid #20a4e1;
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,50%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
  box-sizing: border-box;
  z-index: 80;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
	opacity: 1;
	visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	max-width: 1000px;
	width: 100%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
	position: absolute;
	display: flex;
  align-items: center;
  justify-content: center;
	top: -40px;
	right: -40px;
	width: 40px;
	height: 40px;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
	background: #fff;
	text-align: left;
	padding: 30px;
}
.modal-content table tr {
  vertical-align: top;
}
.article {
  white-space: nowrap;
  font-weight: bold;
  padding-right: 15px;
}
.modal-content table {
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
@media screen and (max-width: 1047px) {
  .modal-container{
    padding: 80px 20px;
  }  
  .modal-container:before{
    height: auto;
  }
  .modal-content{
    padding: 10px;
  }
}
/*------------NEWとSNS-------------*/
.main_info {
  padding: 50px 0 0 0;
  margin-bottom: 100px;
}
.main_info_flex {
  display: flex;
  justify-content:space-between;
}
.news_wrap,.insta_wrap {
  position: relative;
  text-align: center;
}
.main_info h2 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 35px;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.main_info h2::before {
  content: "";
  display: inline-block;
  width: 40px; /* 画像の幅 */
  height: 40px; /* 画像の高さ */
  background-image: url('img/名称未設定-9.png'); /* 画像のパス */
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px; /* 文字との間隔 */
  vertical-align: middle;
}
.main_info_content {
  width: 55%;
}
.main_news ul {
  display: block;
  padding: 0 30px;
}
.main_news_list {
  position: relative;  /* ← これを追加 */
  padding: 10px 0;
  margin: 10px 0;
}
.main_news_list::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;  /* top: 0; ではなく bottom: 0; に変更 */
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #00A491, #fae943 86%, #faacc8);
}
.main_news_list:hover {
  opacity: .7;
}
.insta {
  width: 45%;
  padding: 0 30px;
}
.all_list_wrap {
  text-align: center;
}
.main_news_list .date {
  color: #2a90ff;
  font-size: 14px;
}
@media screen and (max-width: 1150px) {
  .main_news ul {
    padding: 0 10px;
  }
  .insta {
    width: 50%;
    padding: 0 10px;
  }  
}
@media screen and (max-width: 768px) {
  .main_info {
    padding: 40px 0;
  }  
  .main_info_flex {
    display: block;
  }
  .main_info_content {
    width: 100%;
  }
  .main_info h2 {
    font-size: 42px;
    padding-bottom: 10px;
  }
  .insta {
    margin-top: 80px;
    width: 100%;
  }  
}

/*------------テスト-------------*/
.spacer_bottom {
  width: 100%;
  height: 50vh;
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
}

.slider__content {
  display: flex;
  margin-bottom: 50px;
}
.slider__wrap-left,.slider__wrap-right{
  width: 50%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.slider__wrap-img {
  display: block;
}
.ball{
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.slider__wrap-right .img-box{
  padding: 0;
  width: 95%;
  margin: 0 auto;
}
.slider__wrap-right .img-box:first-child{
  padding-top: 100px;
}
.slider__wrap-right .img-box2 {
  padding-top: 50px;
}
.slider__wrap-right .img-box3 {
  padding-top: 50px;
}
.slider__wrap-right .img-box:last-child{
  padding-bottom: 0;
}
.slider__wrap-right .img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*------------メインコンテント コンセプト-------------*/

.fadeUp_random {
  animation-name:fadeUpAnimeRandom;
  animation-duration:0.8s;
  animation-fill-mode:forwards;
  opacity: 0;
}
@keyframes fadeUpAnimeRandom{
  from {
  opacity: 0;
  transform: translateY(100px);
  }

  to {
  opacity: 1;
  transform: translateY(0);
  }
}


.concept_wrapper {
  width: 100%;
  height: max-content;
  display: flex;
  position: relative;
  overflow: hidden;
}
.concept_text,.concept_image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.concept_text {
  position: sticky;
  top: 0;
  height: max-content;
  overflow-y: auto;
  /* margin-top: 80px;
  position: sticky;
  top: 80px; */
  width: 70%;
}

/*------------MOVIE-------------*/
.movie {
  padding: 150px 0 100px 0;
}
.movie_content {
  text-align: center;
}
.movie_flex {
  display: flex;
  justify-content:space-between;
}
.movie_wrap {
  position: relative;
  text-align: center;
}
.movie_content h2 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 35px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.movie_content h2::before {
  content: "";
  display: inline-block;
  width: 40px; /* 画像の幅 */
  height: 40px; /* 画像の高さ */
  background-image: url('img/名称未設定-9.png'); /* 画像のパス */
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px; /* 文字との間隔 */
  vertical-align: middle;
}
.movie_img_2022, .movie_img_2023 {
  width: 50%;
  padding-top: 25%; /* 16:9のアスペクト比を設定 */
  position: relative;
}

.movie_img_2022 iframe, .movie_img_2023 video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .movie {
    margin-top: 70px;
    padding: 0;
  }
	.movie_flex {
    display: block;
  }
  .movie_content h2 {
    font-size: 42px;
  }
  .movie_img_2022 {
    width: 100%;
    height:250px;
    padding:0;
  }
  .movie_img_2023 {
    width:100%;
    height:250px;
    padding:0 10px;
  }
}
/*------------過去のマラニック-------------*/
.previous {
  text-align: center;
  margin-bottom: 100px;
}
.previous h2 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 25px;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.previous h2::before {
  content: "";
  display: inline-block;
  width: 40px; /* 画像の幅 */
  height: 40px; /* 画像の高さ */
  background-image: url('img/名称未設定-9.png'); /* 画像のパス */
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px; /* 文字との間隔 */
  vertical-align: middle;
}
.previous_btn_wrapper {
  width: 80%;
  height: auto;
  overflow: hidden;
  display: flex; /* Flexboxを使用 */
  justify-content: space-between; /* 左右の画像を均等に配置 */
}
.previous_btn_wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; /* Flexboxで横並び */
  justify-content: space-between; /* 画像の間隔を均等に */
}
.previous_btn_wrapper li {
  width: 100%; /* 画像サイズを調整（少し縮める） */
  display: inline-block;
  position: relative; /* 位置を調整 */
}
.previous_btn_wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* 画像が枠内で縦横比を保ちながら収まる */
  transition: transform .3s ease;
}
.previous_btn_wrapper img:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .previous {
    padding: 50px 10px 0 10px;
    margin-bottom: 30px;
  }
  .previous h2 {
    font-size: 30px;
  }
  .previous_btn_wrapper {
    width: 100%;
  }
  .previous_btn_wrapper ul {
    flex-direction: column; /* 縦並びにする */
    align-items: center; /* 中央寄せ */
    gap: 15px; /* 画像間の余白を調整 */
  }
  
}
/*--------------フッター-------------*/
.footer_wrapper {
  position: relative;
  height: 360px;
  width: 100%; /* .footer1 の高さ（100px）と .footer の padding-top（280px）の合計 */
}
.footer {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding-top: 100px;
  background-image: url(img/名称未設定-6.jpg);
  background-size:cover;
  background-position:50%;
}
.footer p {
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.ex_info {
  font-size: 14px;
}
.ex_info span {
  text-align: center;
  display: inline-block;
  width: 80px;
  background-color: #fff;
  color: #0a47b3;
  border-radius: 20px;
  line-height: 1.4;
  margin-right: 5px;
}
.footer_flex {
  width: 65%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sitemap ul {
  display: block;
}
.sitemap ul li {
  padding: 5px 15px;
}
.sitemap ul li a {
  font-size: 14px;
}
.execution {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}
.sitemap ul li a:hover {
  opacity: 0.8;
}

.copyright {
  text-align: center;
  font-size: 10px;
  padding-top: 50px;
}
.mail_to {
  text-decoration: underline;
  font-size: 14px;
}
.mail_to:hover {
  opacity: .8;
}
.page_top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background-color: #6002EE;
  display: block;
  text-align: center;
  border-radius: 24px;
  opacity: 0;
  transition: opacity 0.4s ease-in;
}
.page_top::before {
  content: '';
  color: #fff;
  line-height: 48px;
}
a.fadein {
  opacity: 1;
}
@media screen and (max-width: 1150px) {
  .footer {
    padding-top: 100px;
  }
  .footer_flex {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }  
  .sitemap {
    display: none;
  }
  .ex_info, .mail_to {
    font-size: 13px;
  }
  .execution {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 50px;
  }
  .footer_flex {
    display: block;
  }
  .sitemap ul li {
    padding: 3px 25px 3px 0;
  }  
  .ex_info span {
  width: 50px;
}
}
/*--------------サイドバー-------------*/
.side_logo_wrapper {
  width: 100%;
  height:150px;
}
.header_logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .3s;
}
.header_logo:hover {
  opacity: .8;
  transition: .3s;
}
.side {
  position: relative;
  width: 11%;
  height: auto;
  padding-bottom: 200px;
}
/* .sponsor_inner {
  margin-top: 120px;
} */
.sponsor_inner p {
  text-align: center;
}
.sponsor_inner span {
  display: block;
}
.sponsor_inner ul li {
  font-size: 14px;
  padding: 7px 15px;
}
@media screen and (max-width: 1150px) {
  .side {
    width: 100%;
    height: auto;
    padding-bottom: 120px;
  }
  .sponsor_inner {
    padding: 30px 0 0 0;
  }  
  .syusai {
    text-align: center;
  }
  .side_logo_wrapper {
    height: 0;
  }  
}
/*--------------大会要項-------------*/
.outline_content {
  margin-bottom: 150px;
  
}
.schedule {
  margin-bottom: 150px;
}
.outline {
  margin-bottom: 150px;
}
.outline h4 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 30px;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 50px;
}
.outline_content table {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
  text-align: left;
  border-collapse: collapse;
}
.outline_content table tr {
  border-bottom: 1px solid #ddd;
}
.outline_content table th, .outline_content table td {
  padding: 20px 10px;
}
.outline_content table td {
  padding-left: 30px;
}
.nowrap {
  white-space: nowrap;
}
.soon {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  color: #2a90ff;
  font-weight: bold;
}
.kiyaku {
  margin-bottom: 50px;
}
.sche_date {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 26px;
  border-left: 3px solid #fca730;
  padding: 0 10px;
  margin: 10px 0;
}
.schedule table {
  width: 100%;
  font-size: 15px;
  border-collapse: collapse;
}
.schedule table, .schedule table th, .schedule table td {
  border: 1px solid #c7c7c7;
}
.schedule table th, .schedule table td {
  padding: 20px;
}
.schedule table th {
  background-color: rgb(249, 219, 188);
}
@media screen and (max-width: 1150px) {
  .outline_margin{
    padding: 0 10px;
  }
  .outline table {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .outline_content h4 {
    margin-bottom: 20px;
  }
  .kiyaku h4 {
    margin-bottom: 10px;
  }
  .outline_content table {
    border-top: none;
    border-bottom: none;  
    font-size: 14px;
    display: block;
  }
  .outline_content table th, .outline_content table td {
    display: block;
    padding: 10px 10px;
  }
  .outline_content table th {
    background-color: #bad0d5;
  }
  .outline_content table tr {
    border-bottom: none; 
  }
  .schedule table {
    font-size: 13px;
  }
  .outline_content {
    margin-bottom: 100px;
  }  
  .schedule {
    margin-bottom: 100px;
  }  
}
/*--------------ギャラリー-------------*/
.gallery_content {
  margin-top: 50px;
  margin-bottom: 50px;
}
/*tabの形状*/
.tab {
  display: flex;
  flex-wrap: wrap;
	margin-left: 20px;
}
.tab li a {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  display: block;
  background:#fff;
  border: 1px solid #edf033;
  margin:0 10px;
  padding:10px 50px;
  border-radius: 50px;
}
.tab li a:hover {
  opacity: .7;
  transition: .3s;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  background:#edf033;
  border: 1px solid #edf033;
}
/*エリアの表示非表示と形状*/
.area {
  display: none;/*はじめは非表示*/
  opacity: 0;/*透過0*/
  background: #fff;
  padding:50px 20px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
  display: block;/*表示*/
  animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime{
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*--------------アクセス-------------*/
.access_flex {
  margin-bottom: 100px;
}
.access h4, .entry h4 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 30px;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 50px;  
}
.access h5 {
  font-size: 16px;
  border: 2px solid #edf033;
  padding: 10px 0;
  text-align: center;
  margin: 20px 0;
}
.access_place {
  font-size: 20px;
  font-weight: bold;
  padding-top: 10px;
}
.address_info {
  font-style: normal;
  padding-bottom: 20px;
}
.hotel {
  margin: 100px auto 120px auto;
}
.hotel a, .kiyaku a {
  padding: 20px 80px;
  border: 1px solid #edf033;
  border-radius: 50px;
  background-color: #edf033;
  transition: .3s;
}
.hotel a:hover, .kiyaku a:hover {
  opacity: .8;
  transition: .3s;
}
.rounded-table tr:first-child td:first-child {
  border-top-left-radius: 15px;
}
.rounded-table tr:first-child td:last-child {
  border-top-right-radius: 15px;
}
.inn td {
  padding: 23px 0;
}
.dot {
 border-bottom: 1px dotted #c7c7c7;
}
.rounded-table button {
  border: 1px solid orange;
  border-radius: 20px;
  padding: 5px 8px;
}
.rounded-table button:hover {
  opacity: .8;
  transition: .3s;
  color: #fff;
  background-color: orange;
}
.rounded-table a {
  text-decoration: underline;
  transition: .3s;
}
.rounded-table a:hover {
  color: orange;
  transition: .3s;
}
@media screen and (max-width: 1150px) {
  .access_margin {
    margin: 0 10px;
  }
  .hotel, .kiyaku {
    padding: 0 10px;
    text-align: center;
  }
  .hotal a, .kiyaku a {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .inn td:nth-child(2), .inn td:nth-child(4) {
    display: none;
  }
}
/*--------------ギャラリー-------------*/
.btn_left {
	margin-left: 20px;
}
.left_text {
	text-align: left;
}
.photo_btn {
	font-size: 14px;
	font-weight: bold;
	width: 24%; 
	border: 1px solid #2a90ff;
	border-radius: 10px;
	display: inline-block;
	box-sizing: border-box;
	padding: 10px 20px;
	margin: 5px 0;
	transition: .3s;
}
.photo_btn:hover {
	transition: .3s;
	background-color: #2a90ff;
	border: 1px solid #2a90ff;
}
.photo_btn.active {
    background-color: #2a90ff; 
    color: #ffffff; /* 白色のテキストカラーを設定 */
}
.photo_list, .photo_list2023, .photo_list2024, .photo_list2025 {
  display:flex;
  flex-wrap:wrap;
  list-style:none;
}
.photo_list li, .photo_list2023 li, .photo_list2024 li, .photo_list2025 li {
  width: calc(100% / 3 - 10px);
  margin: 5px;
}
.mousepointer-hand {
  cursor: pointer;
}
#graydisplay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%!important;
  height: 100%;
  background: rgba(0,0,0,0.45);
  z-index:10;
}
#graydisplay img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 80%;
  max-height: 80%;
  margin: auto;
  height: auto;
}
@media screen and (max-width: 1010px) {
	.photo_btn {
		width: 32%;
	}
}
@media screen and (max-width: 1300px) {
.tab li a {
    font-size: 14px;
    margin: 0 3px 5px 3px;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 775px) {
	.photo_btn {
		padding: 10px 14px;
	}
}
@media screen and (max-width: 750px) {
	.btn_left {
	margin-left: 0;
   }
	.photo_btn {
		width: 100%;
		padding: 10px 20px;
	}
  .photo_list li, .photo_list2023 li, .photo_list2024 li, .photo_list2025 li {
    width: calc(100% / 2 - 10px);
  }
	.tab {
	margin-left: 0;
}
}
/*--------------リザルト-------------*/
#result_2023 a, #result_2024 a, #result_2025 a {
	border-bottom: 1px solid #2a90ff;
}
#result_2023 a:hover, #result_2024 a:hover, #result_2025 a:hover {
	color: #2a90ff;
}

#result_2022 ul, #result_2023 ul, #result_2024 ul, #result_2025 ul {
  display: block;
  width: 50%;
}
#result_2022 ul li, #result_2023 ul li, #result_2024 ul li, #result_2025 ul li {
  border-bottom: 1px solid #71C4D2;
  padding: 10px 0;
  margin: 10px 0;  
}
@media screen and (max-width: 750px) {
  #result_2022 ul, #result_2023 ul, #result_2024 ul, #result_2025 ul {
    width: 100%;
  }
}
/*--------------お知らせ-------------*/
.info {
  width: 60%;
  margin: 100px auto 50px auto;
}
.info_btn {
  margin-top: 50px;
}
.clearfix {
  text-align: center;
  margin-bottom: 50px;
}
.clearfix a {
  font-size: 13px;
  padding: 15px 20px;
  border: 1px solid black;
  border-radius: 50px;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.1);
  transition: all .3s ease;
}
.clearfix a:hover {
  box-shadow: 5px 5px 5px rgba(0,0,0,0.2); /* ホバー時のbox-shadowを少し小さくして、押された感じを出す */
  transform: translate(4px, 4px);
}
.fadeUpTrigger{
  opacity: 0;
}
.info_title {
  font-size: 18px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.info .date {
  font-size: 13px;
  color: #2a90ff;
}
@media screen and (max-width: 750px) {
  .info {
    width: 100%;
    padding: 0 10px;
    margin-top: 80px;
  }
}
/*--------------フェイドイン-------------*/
.fadeIn{
  animation-name:fadeInAnime;
  animation-duration:1.5s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.pdf_btn {
  text-align: center;
  display: block;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 20px;
  color: #2a90ff;
  width: 100%;
}
.pdf_btn:hover {
  background-color: #fff;
  border: 1px solid #2a90ff;
}
@media screen and (max-width: 750px) {
  .pdf_btn {
    font-size: 16px;
  }
}
/*--------------エイドステーション-------------*/
.aid {
  margin-top: 50px;
  margin-bottom: 150px;
}
.aid h4 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 30px;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 30px;  
}
.aid h5 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  line-height: 1;
}
.aid h5 span {
  font-size: 16px;
}
.aid_list {
  display:flex;
  flex-wrap:wrap;
  list-style:none;
}
.aid_list li {
  width: calc(100% / 2 - 15px);
  position: relative;
  margin: 15px 0;
  padding-top: 70px;
  padding-bottom: 50px;
  border: 2px solid; /* 線の太さ */
  border-image: linear-gradient(to right, #00A491, #fae943 86%, #faacc8) 1;
  border-radius: 20px;
}
.aid_list li:nth-child(odd) {
  margin-right: 25px;
}
.aid_list li p {
  padding: 0 20px;
}
.aid_number {
  width: 9.5rem;
  position: absolute;
  top: -2.2%;
  left: 50%;
  transform: translateX(-50%);
}
.aid_img_top {
  width: 350px;
  padding: 10px 10px;
}
.aid_img_bottom {
  width: 250px;
  padding-top: 10px;
}
.aid_title {
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width: 750px) {
  .aid_list li {
    width: 100%;
    padding-top: 65px;
    margin: 15px 10px;
  }
  .aid_img_top {
    padding: 10px 10px;
  }
  .aid_img_bottom {
    padding: 10px 10px;
  }
  .aid_list li:nth-child(odd) {
    margin-right: 10px;
  }
}
/*--------------追加-------------*/
.sponsor_inner img {
  transition: all .3s;
}
.sponsor_inner img:hover {
  opacity: .7;
  filter: brightness(110%);
  transition: all .3s;
}
.runnet {
  font-size: 20px;
}
.jal {
  text-align: center;
}
.jal img {
  margin: 0 auto;
  padding: 0 10px 70px 10px;
  transition: all .3s;
}
.jal img:hover {
  opacity: .7;
  filter: brightness(110%);
  transition: all .3s;
}
.inner_fact {
	padding: 12% 0;
}
@media screen and (max-width: 750px) {
  .runnet {
    font-size: 16px;
    padding: 15px 0;
  }
}
.special img{
  width: 100%;
  height: 100%;
  object-fit: contain;
	background-color:#fff;
}
.kyosan, .special {
  width: 100%;
  height: 90px;
  margin: 0;
	background-color:#fff;
	display: flex;
  align-items: center;
	text-align: center;
	justify-content: center;
}
.ja, .coca, .maki, .takasago, .nanreku {
  width: 100%;
  height: 100%;
  object-fit:contain;
  background-color: #fff;
}
.minami {
  width: 95%;
  height: 100%;
  object-fit:contain;
  background-color: #fff;
}
.nikkei {
	width: 60%;
	object-fit:contain;
}
.jal_side, .fuji {
	width: 60%;
  height: 60%;
  object-fit:contain;
  background-color: #fff;
}
.inner_fact {
  width: 60%;
  height: 40%;
  object-fit:contain;
  background-color: #fff;
}
.kyosan a:not(.maki) {
	line-height:0;
}
@media screen and (max-width: 1150px) {
  .special {
    width: 300px;
    height: 100px;
    margin: 0 auto;
  }
  .special img {
    object-fit: none;
  }
  .kyosan {
    width: 300px;
    height: 100px;
	  margin: 15px auto;
  }
	.ja {
		text-align: center;
	}
  .coca {
	  width: 70%;
  }
	.jal_side {
		width: 40%;
	}
	.inner_fact {
		padding: 15px 0;
	}
}
/*--------------追加-------------*/

.access table {
	margin-bottom:10px;
}
.syusai a:hover {
	color: #0174DF;
}
.maki {
	width: 100%;
  height: 90px;
  margin: 15px 0;
	background-color:#fff;
	text-align: center;
}
.maki:hover {
	 opacity: .7;
  filter: brightness(110%);
  transition: all .3s;
}
@media screen and (max-width: 1150px) {
	.maki {
	  width: 300px;
      height: 100px;
	  margin: 15px auto;
	  padding: 3% 0;
	}
}
.inner_fact {
	width: 300px;
  height: 100px;
    display: block; /* 画像をブロック要素として扱い、横並びから縦並びにする */
    margin: 0 auto; /* 左右のマージンを自動で設定して中央寄せ */
}
@media screen and (max-width: 750px) {
	.fact {
		width: 100%;
  height: 90px;
		margin: 50px 0;
	}
.inner_fact {
  display: block; /* ブロックレベル要素として扱う */
  max-width: 100%; /* 親要素（.kyosan）の幅に収まるように最大幅を指定 */
  height: 100px; /* 高さを親要素（.kyosan）と同じにする */
 }
}
@media screen and (max-width: 750px) {
  .access h4, .entry h4, .aid h4 , .outline h4 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 10px; 
  }
}
#map {
  height: 500px;
  width: 100%;
}
.fade-in-text, .fade-in-paragraph {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-active {
  opacity: 1;
  transform: translateY(0px);
}
@media screen and (max-width: 750px) {
  .fade-in-paragraph {
    padding-bottom: 15%;
  }
}
/*--------------のちに削除　ゲストランナー-------------*/
.guest-comingsoon {
  width: 70%;
  margin: 0 auto;
  margin-top: 30px;
}
.gradient-border {
  position: relative;
  display: block; /* 幅いっぱいに */
  width: 100%;
  padding: 2px; /* 内側の余白 */
  border-radius: 12px;
  background: linear-gradient(to right, #00A491, #fae943 86%, #faacc8);
}

.guest-content {
  display: flex;
  align-items: center;
  background: white; /* 内側の背景色 */
  padding: 1rem;
  border-radius: 9px;
  z-index: 1;
  width: 100%; /* 要素いっぱいに */
  box-sizing: border-box; /* padding を含めて幅を計算 */
  cursor: pointer; /* ホバー時にポインターを表示 */
}
.guest-text {
  padding-left: 40px;
}
@media screen and (max-width: 1150px) {
  .guest-comingsoon {
    width: 100%;
    margin-top: 10%;
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .guest-content {
    display: block;
  }
  .guest-text {
    padding-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .guest-comingsoon {
    margin-top: 24%;
  }
}

/*--------------コンセプト部分　後で移動！-------------*/
.top {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex; /* フレックスボックスを適用 */
  flex-direction: column; /* 縦方向に要素を並べる */
  justify-content: center; /* 縦方向の中央揃え */
  align-items: center; /* 横方向の中央揃え */
  color: #fff;
}
.top_image {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1; /* 画像がテキストの下に表示されるように */
  width: 80%;  /* 親要素に合わせて幅を100%に設定 */
}
.top_title {
  position: relative;
  z-index: 2; /* テキストが画像の上に表示されるように */
  text-align: center;
  padding-top: 150px; /* 上部に余白を調整 */
  color: white; /* テキストが見やすくなるように色を変更 */
}
.top_title span {
  font-size: 60px;
}
.text-section {
  height: 130vh;
}
.concept {
  padding-top: 200px;
  z-index: 50;
}
.fade-in-paragraph {
  line-height: 2;
}
.section {
  display: flex;
  flex-direction: column;
}

.container {
  position: relative;
  height: 200vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.text {
  color: #fff;
  position: absolute;
  font-size: 25rem;
  font-weight: bold;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.8;
  transform: rotate(-10deg);
}
.ainan {
  top: -5%; /* 位置調整 */
  left: 5%;
}
.maranic {
  top: 25%;
  right: 5%;
}
@media screen and (max-width: 1160px) {
  .text {
    font-size: 20rem;
  }
}
@media (max-width: 800px) {
  .top {
    height: 80vh;
  }
  .top_image {
    top: -10%; /* 位置調整 */
    width: 120%; /* 通常より大きめに表示 */
    max-width: 500px; /* 画面が狭くても大きくなりすぎないように制限 */
  }
  .top_title {
    padding-top: 150px; /* 上部に余白を調整 */
  }
  .text-section {
    height: 60vh;
  }
  .container {
    height: 130vh;
  }
  .text {
    font-size: 8rem;
  }
  .ainan {
    top: 0; /* 位置調整 */
    left: 0;
  }
  .maranic {
    top: 20%;
    right: -35%;
  }
  .concept-btn-wrapper {
    text-align: center;
  }
  .top_title span {
    font-size: 45px;
  }
}
.aid-section {
  position: relative;
  padding: 100px 0 350px 0;
}
.concept-ue {
  position: relative;
}
.concept-img1 {
  position: absolute;
  top: 8%;
  right: 5%;
  width: 35%;
}
.concept-img2 {
  position: absolute;
  top: 40%;
  right: 0;
  width: 30%;
}
.concept-img4 {
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 35%;
}
.concept-img5 {
  position: absolute;
  top: 35%;
  right: -5%;
  width: 15%;
}
.concept-img6 {
  position: absolute;
  bottom: 0;
  right: 15%;
  width: 30%;
}
.concept-img7 {
  position: absolute;
  top: 40%;
  right: 0;
  width: 400px;
}
.concept-img8 {
  position: absolute;
  top: 23%;
  right: 0;
  width: 100px;
}
.concept-img9 {
  position: absolute;
  bottom: 25%;
  right: 5%;
  width: 150px;
}
.concept-img10 {
  position: absolute;
  bottom: 45%;
  left: -8%;
  width: 450px;
}
@media (max-width: 800px) {
  .concept {
    text-align: center;
    padding: 350px 10px 0 10px;
  }
  .concept-img1 {
    top: 2%;
    right: 5%;
    width: 50%;
  }
  .concept-img2 {
    position: absolute;
    top: 55%;
    right: 0;
    width: 45%;
  }
  .aid-section {
    padding: 350px 0 350px 0;
  }
  .concept-img4 {
    bottom: 0;
    left: -10%;
    width: 35%;
  }
  .concept-img5 {
    top: -11%;
    left: -5%;
    width: 35%;
  }
  .concept-img6 {
    bottom: 0;
    right: 5%;
    width: 45%;
  }
  .concept-img10 {
    bottom: 55%;
    left: -8%;
    width: 340px;
  }
  .concept-img9 {
    position: absolute;
    bottom: 10%;
    right: 0;
    width: 150px;
  }
}
@media (max-width: 600px) {
  .concept {
    text-align: center;
    padding: 210px 10px 0 10px;
  }
  .aid-section {
    padding: 80px 0 350px 0;
  }
  .concept-img10 {
    bottom: 55%;
    left: -8%;
    width: 200px;
  }
  .concept-img6 {
    bottom: 21%;
    right: 5%;
    width: 62%;
  }
}
.entry_btn {
	text-align: center;
  	display: inline-block;
  	padding: 30px 50px;
  	border: 3px solid #05204b;
  	border-radius: 50px;
	transition: .3s;
}
.entry_btn:hover {
	opacity: .8;
	transition: .3s;
}
.hurusato_text {
	font-size: 20px;
	margin-top: 30px;
}
@media screen and (max-width: 750px) {
	.entry_btn {
		padding: 30px 20px;
	}
	.hurusato_text {
		font-size: 16px;
	}
}