@charset "UTF-8";
/*
Theme Name: Ainan Maranic
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%;
}
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: 70%;
  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;
  }
}
/*--------------トップページボタン共通---------------*/
.entry_btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-align: center;
  display: inline-block;
  padding: 30px;
  border: 3px solid #05204b;
  border-radius: 50px;
  margin-bottom: 100px;
  width: 100%;
  font-weight: bold;
  text-decoration: none;
  outline: none;
  /*アニメーションの指定*/   
  transition: ease .3s;
}

/*ボタン内spanの形状*/
.entry_btn span {
  position: relative;
  z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
}
/*== 背景が流れる（中央から外） */

.bgcenterout:before {
  content: '';
    /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
    /*色や形状*/
  background: #20a4e1;
  border-radius: 50px;
  width: 100%;
  height: 100%;
    /*アニメーション*/
  transition: transform .3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 0);
  transform-origin:center;
}

  /*hoverした際の形状*/
.bgcenterout:hover:before{
  transform:scale(1, 1);
}
@media screen and (max-width: 1150px) {
  .entry_btn {
    margin-bottom: 50px;
  }
}
/*--------------固定ページ共通---------------*/
.fixed_page_wrap {
  background-image: url(img/top_img1.jpg);
  background-position: center 80%;
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom-left-radius: 800px 200px;
  border-bottom-right-radius: 800px 200px;
}
.fixed_page_title {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  margin-top: -90px;
  text-align: center;
  font-size: 40px;
  padding: 200px 0 100px 0;
  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: -100px;
    font-size: 32px;
  }
}
/*----------------ヘッダー---------------*/
.main_content {
  width: 89%;
}
.header {
  position: fixed;
  width: 80%;
  top: 30px;
  left:calc((89% - 80%) / 2);
  padding: 15px 0;
  z-index: 10;
  background-color: #fff;
  border-radius: 20px;
  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: 15px;
  color: #fff;
  background-color:#0174DF;
  border: 1px solid #0174DF;
  border-radius: 20px;
}

.nav_entry:hover a {
  color: #0174DF;
  background-color: #fff;
  border: 1px solid #0174DF;
}
@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: block;
    position: fixed;
    z-index: 99;
    right: 0;
    top: 0;
    width: 48px;
    height: 48px;
    cursor: pointer;
    text-align: center;
    background-color: #71C4D2;
  }
  .hamburger span {
    display: block;
    position: absolute;
    width: 35px;
    height: 3px;
    left: 6px;
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 22px;
  }
  .hamburger span:nth-child(3) {
    top: 34px;
  }
  .hamburger.active span:nth-child(1) {
    top: 23px;
    left: 6px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 23px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: 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: 100%;
  min-height: 100vh;
  object-fit: cover;
}
.fade li {
  position: absolute;
  width: 100%;
  opacity: 0;
  animation: fade 28s infinite ease;
  -webkit-animation: fade 28s infinite ease;
}
.fade li:nth-child(1) {
  animation-delay: 0s;
}
.fade li:nth-child(2) {
  animation-delay: 7s;
}
.fade li:nth-child(3) {
  animation-delay: 14s;
}
.fade li:nth-child(4) {
  animation-delay: 21s;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  16% {
      opacity: 1;
  }
  33% {
      opacity: 1;
  }
  49% {
      opacity: 0;
  }
  100% {
      transform: scale(1.2);
      opacity: 0;
  }
}
.countdown {
  position: absolute;
  top: 75%;
  right: 15%;
  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;
  top: 40%;
  right: 15%;
  width: 500px;
  height: auto;
}
.date_img img {
  width: 100%;
  object-fit: cover;
}
.guest {
  margin-top:50px;
  text-align: center;
}
.guest h2 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 50px;
  margin-bottom: 10px;
  color: #87cefa;
}
.guest_img_wrapper {
  width: 500px; /* 画像と同じ幅を指定 */
  height: auto; /* 高さは自動調整 */
  overflow: hidden; /* はみ出た部分を隠す */
  display: inline-block; /* 必要に応じて調整 */
}
.guest_img {
  width: 100%;
  height: auto;
  transition: .3s all;
}
.guest_img:hover {
  transform: scale(1.05,1.05);
  transition: .3s all;
}
.SP_logo {
  display: none;
}
@media screen and (max-width: 1150px) {
  .main_v {
    min-height: 75vh;
  }
  .main_v img {
    min-height: 75vh;
  }
  .date_img {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 300px;
  }
  .countdown {
    position: absolute;
    bottom: 0;
    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 h2 {
    font-size:34px;
  }
  .guest_img_wrapper {
    width: 100%; /* 画像と同じ幅を指定 */
    height: auto; /* 高さは自動調整 */
    padding: 0 10px;
  }  
}
@media screen and (max-height: 760px) {
  .main_v {
    min-height: 600px;
  }
  .main_v img {
    min-height: 600px;
  }
  .date_img {
    max-width: 350px;
  }
  .countdown {
    max-width: 350px;
  }
}
/*------------流れる画像-------------*/
.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;
  }
}
/*------------流れるテキスト-------------*/
.bbs{
  align-items: center;
  color: #ddd;
  display: flex;
  line-height: 80px;
  overflow:hidden;
  width: 100%;
  white-space:nowrap;
  z-index: 1;
  background-color: #87cefa;
}
.bbs ul {
  animation: flowing 200s linear infinite;
  font-size: 100px;
  transform:translateX(100%);
  margin: 0;
  padding: 0;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.stroke{
  color: #fff;
  -webkit-text-stroke:1px #87cefa;
  position: relative;
}
.bbs ul li{
  display: inline-block;
  padding-right: 10px;
}
@keyframes flowing {
  0% {
    transform:translateX(-100%);
  }
  100% {
    transform:translateX(0);
  }
}

@keyframes flowimg {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@media screen and (max-width: 1200px) {
  .flowimg::before, .flowimg::after {
    font-size: 100px;
  }
}
@media screen and (max-width: 1150px) {
  .flowimg {
    display: none;
  }
}
/*------------ボタン項目-------------*/
.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;
}
.main_info h2 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 76px;
  text-align: center;
  margin-bottom: 10px;
  color: #87cefa;
}
.main_info_content {
  width: 50%;
}
.main_news ul {
  display: block;
  padding: 0 60px;
}
.main_news_list {
  border-bottom: 1px solid #71C4D2;
  padding: 10px 0;
  margin: 10px 0;
}
.main_news_list:hover {
  opacity: .7;
}
.insta {
  width: 50%;
  padding: 0 50px;
}
.all_list_wrap {
  text-align: center;
}
.all_list {
  font-size: 14px;
  display: inline-block;
  font-weight: bold;
  text-align:center;
  margin-top: 40px;
  padding: 10px 70px;
  border: 2px solid black;
  border-radius: 30px;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.1);
  transition: all .3s ease;
}
.all_list:hover {
  box-shadow: 5px 5px 5px rgba(0,0,0,0.2); /* ホバー時のbox-shadowを少し小さくして、押された感じを出す */
  transform: translate(4px, 4px);
}
.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__wrapper{
  background-color: #8ecbfd;
  width: 100%;
  height: 100%;
}
.concept_bg_img1 {
  margin-top: 50px;
}
.concept_bg_img1 img {
  width: 350px;
}
.concept_bg_img2 {
  text-align: right;
  margin-top: -150px;
}
.concept_bg_img2 img {
  width: 300px;
}
.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;
}
/*------------メインコンテント コンセプト-------------*/
.up_item {
  opacity: 0;
}
.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 {
  width: 100%;
  height: 100vh;
  background-color: #00223E;
  padding: 0 0 330px 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%;
}
.concept_image {
  width: 30%;
  height: max-content;
  overflow-y: auto;
  position: absolute;
  top: 0;
  right: 0;
  /* object-fit: cover; */
  padding-right: 60px;
}
.concept_image ul li img {
  width: 100%;
}
.bg_text {
  text-align: center;
}
.bg_text img {
  width: 500px;
  margin-bottom: 20px;
  z-index: 79;
}
.concept_txt p {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  color: #fff;
  text-align: center;
  padding: 30px 25px;
  text-shadow: 0 0 16px #000a53;
}
.top_txt {
  font-size: 20px;
}
.txt1 {
  position: relative;
  z-index: 79;
}
.txt2 {
  position: relative;
  z-index: 79;
}
.txt3 {
  position: relative;
  z-index: 79;
}
.concept_entry_btn {
  display: inline-block;
  padding: 30px 100px;
  background-color: #fff;
  border-radius: 70px;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.2);
  transition: opacity 0.4s ease-in;
}
.concept_entry_btn:hover {
  border: 3px solid #F4E511;
  transition: .3s;
}
.entry_btn_text_wrapper {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.entry_btn_text {
  font-size: 60px;
}
.entry_btn_subText {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .slider__content {
    display: block;
    margin-bottom: 0;
  }
  .slider__wrap-left,.slider__wrap-right{
    width: 100%;
    height: fit-content;
    display: block;
    flex-direction: column;
    justify-content: center;
  }
  .slider__wrap-right .img-box img{
    width: 100%;
    height: 300px;
  }  
  .bg_text img {
    width: 100%;
    margin-bottom: 0;
    padding: 0;
  }
  .txt2,.txt3 {
    font-size: 15px;
  }
  .concept_txt p {
    padding: 20px 25px;
    text-shadow: 0 0 16px #000a53;
  }  
  .concept_bg li:nth-child(1) {
    position: absolute;
    top: 15%;
    right: 3%;
    z-index: 10;
  }
  .concept_bg li:nth-child(2) {
    position: absolute;
    top: 32%;
    left: 0%;
    z-index: 10;
  }
  .concept_bg li:nth-child(1) img {
  width: 180px;
  }
  .concept_bg li:nth-child(2) img {
    width: 160px;
  }
  .concept_bg li:nth-child(3) img {
    width: 180px;
  }
  .concept_bg li:nth-child(4) img {
    width: 360px;
  }
  .concept_bg li:nth-child(5) img {
    width: 190px;
  }
  .concept_bg_img1 img {
    width: 160px;
    margin-left: -50px;
  }
  .concept_bg_img2 img {
    width: 200px;
  }
  .concept_entry_btn {
    padding: 10px 80px;
  }
  .entry_btn_text {
    font-size: 50px;
  }
  .spacer_bottom {
    height: 40vh;
  }  
}
@media screen and (max-width: 480px) {
  .concept_bg li:nth-child(3) {
    position: absolute;
    bottom: 29%;
    right: -13%;
    z-index: 10;
  }
  .concept_bg li:nth-child(4) {
    position: absolute;
    bottom: -10%;
    left: 20%;
    z-index: 10;
  }
  .concept_bg li:nth-child(5) {
    position: absolute;
    bottom: 15%;
    left: -10%;
    z-index: 10;
  }
}
@media screen and (max-height: 760px) {
  .bg_text img {
    margin-bottom: 5px;
  }  
  .concept_txt p {
    padding: 10px 25px;
  }  
}
/*------------MOVIE-------------*/
.movie {
  padding: 150px 0 100px 0;
}
.movie_content {
  text-align: center;
}
.movie_flex {
  display: flex;
  justify-content:space-between;
}
.movie_content h2 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 80px;
  color: #87cefa;
  margin-bottom: 10px;
}
.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: 50px;
  color: #87cefa;
  margin-bottom: 10px;
}
.previous_btn_wrapper {
  width: 600px;
  height: auto;
  overflow: hidden;
  display: inline-block;
}
.previous_btn_wrapper img {
  width: 100%;
  height: auto;
  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;
  }
  .previous h2 {
    font-size: 30px;
  }
  .previous_btn_wrapper {
    width: 100%;
  }  
}
/*--------------フッター-------------*/
.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: 280px;
  background-image: url(img/footer.png);
  color: #fff;
  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 {
  color: #fff;
  font-size: 14px;
}
.execution {
  font-size: 18px;
  font-weight: bold;
}
.sitemap ul li a:hover {
  opacity: 0.8;
}
.copyright {
  text-align: center;
  font-size: 10px;
  padding-top: 30px;
}
.mail_to {
  color: #fff;
  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 {
    margin-top: -300px;
    padding-top: 600px;
  }
  .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 {
    margin-top: -300px;
    padding-top: 480px;
  }
  .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;
  background-color: #e1e5e6;
  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;
  color: #2a90ff;
  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: #eef7cc;
}
@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 h4, .entry h4, .aid h4 {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-size: 30px;
  text-align: center;
  margin-top: 80px;
  color: #2a90ff;
  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;
}
@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;
  }
}
/*--------------ギャラリー-------------*/
.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 {
  display:flex;
  flex-wrap:wrap;
  list-style:none;
}
.photo_list li, .photo_list2023 li, .photo_list2024 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 {
    width: calc(100% / 2 - 10px);
  }
	.tab {
	margin-left: 0;
}
}
/*--------------リザルト-------------*/
#result_2023 a, #result_2024 a {
	border-bottom: 1px solid #2a90ff;
}
#result_2023 a:hover {
	color: #2a90ff;
}
#result_2024 a:hover {
	color: #2a90ff;
}
#result_2022 ul, #result_2023 ul, #result_2024 ul {
  display: block;
  width: 50%;
}
#result_2022 ul li, #result_2023 ul li, #result_2024 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 {
    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: #ffff;
  border: 1px solid #2a90ff;
}
@media screen and (max-width: 750px) {
  .pdf_btn {
    font-size: 16px;
  }
}
/*--------------エイドステーション-------------*/
.aid {
  margin-top: 80px;
  margin-bottom: 150px;
}
.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 - 30px);
  margin: 15px 15px;
  background-color: #F3F6FB;
  position: relative;
  padding-top: 70px;
  padding-bottom: 50px;
}
.aid_list li p {
  padding: 0 10px;
}
.aid_number {
  position: absolute;
  top: -8px;
  left: -5px;
}
.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;
  }
  .aid_img_top {
    padding: 10px 10px;
  }
  .aid_img_bottom {
    padding: 10px 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: 15px 0;
	background-color:#fff;
	display: flex;
   align-items: center;
	text-align: center;
	justify-content: center;
}
.ja, .coca, .maki{
  width: 100%;
  height: 100%;
  object-fit:contain;
  background-color: #fff;
}
.nanreku {
  width: 100%;
  height: 100%;
  object-fit:contain;
  background-color: #fff;
}
.jal_side {
	width: 60%;
  height: 60%;
  object-fit:contain;
  background-color: #fff;
}
.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;
	}
}
/*--------------追加-------------*/
.inn td {
	 padding: 10px 0;
}
.dot {
	border-bottom: 1px dotted #c7c7c7;
}
.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) {
  .aid h4 {
    font-size: 24px;
    margin-top: 50px;
    margin-bottom: 10px; 
  }