html {
  overflow: auto; /* iOS・レスポンシブモード用*/
}
body {
  /* background-color: #6ddde7; */
  position: relative; /* iOS用 */
  margin: 0;
  overflow: visible;
  overflow-x: hidden;
  width: 100%;
  /* font-family: 'メイリオ',"ヒラギノ角ゴ Pro", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif; */
  font-family: 'Noto Sans JP', sans-serif;
  /* font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif; */
  /* font-family: 'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳＰゴシック','MS PGothic' !important; */
  /* font-family: "ヒラギノ角ゴ StdN W8","ヒラギノ角ゴ ProN","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Verdana, "sans-serif"!important; */
  /* font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif; */
  /* font-family: "Noto Serif JP", serif; */
  /* font-feature-settings: "palt"; */
}
body.nav_scroll_on {
  overflow: hidden;
}

body::after {
  position: absolute;
  content: "";
  background-image: url("../images/top/bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

body.second::after {
  position: absolute;
  content: "";
  background-image: url("../images/second/second-bg-1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

@media (max-width: 1199px) {
  body {
    /* background-color: #6ddde7; */
  }

  body::after {
    background-image: url("../images/top/bg-sp.jpg");
  }
  body.second::after {
    background-image: url("../images/second/second-bg-sp.jpg");
    background-size: cover;
  }

  header{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
  }
}

@media (max-width: 1199px) {
  main{
    margin-top: 120px;
  }
}

@media (max-width: 767px) {
  main{
    margin-top: 80px;
  }
}

img {
  max-width: 100%;
  vertical-align: bottom;
}
h2 {
  margin-top: 0;
  font-size: 25px;
  text-align: center;
  font-weight: bold;
  padding: 15px 0px;
  letter-spacing: 8px;
  color: #000;
  font-family: vdl-logog, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-shadow: 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff, 0 0 2px #fff;
}
h3{
  margin: 0;
}


h3.c-subtitle{
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('../images/suimen/img_bg_suimen_title.jpg') repeat-x center /auto;
  border: 2px solid #ff9b37;
  box-sizing: border-box;
  height: 75px;
  text-align: center;
  width: 100%;
}

h3.c-subtitle span{
  display: block;
  color: #FFFFFF;
  font-size: 32px;
  font-weight: bold;
  text-shadow: 4px 4px 6px #005E93;
}

p.note {
  padding-left: 1.2em;
  line-height: 1.6;
  position: relative;
}

p.note span.mark {
  display: inline-block;
  width: 1em;
  left: 0;
  position: absolute;
}

@media (max-width: 767px) {
  p{
    font-size: min(4.3vw, 32px);
    font-weight: 500;
    line-height: 1.75;
  }
  
  h2 {
    letter-spacing: 7px;
  }

  h3.c-subtitle{
    height: auto;
  }
  h3.c-subtitle span{
    font-size: 5.4vw;
  }
}

ul {
  list-style: none;
  padding: 0;
}

.column_2{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.pc_none{display: none!important;}
.tb_none{display: flex!important;}
.sp_none{display: flex!important;}

@media (max-width: 1199px) {
  .column_2{
    gap: 5vw;
  }
  .pc_none{display: flex!important;}
  .tb_none{display: none!important;}
  .sp_none{display: none!important;}
}

/* * * * *  アニメーション  * * * * */
.scroll_anime {
  transition: all 0.5s;
  transition-delay: var(--animeDelay);
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  /* will-change: transform,opacity,visibility; */
}
.scroll_anime.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.del01{--animeDelay: 0.1s;}
.del02{--animeDelay: 0.2s;}
.del03{--animeDelay: 0.3s;}
.del04{--animeDelay: 0.4s;}
.del05{--animeDelay: 0.5s;}
.del06{--animeDelay: 0.6s;}
.del07{--animeDelay: 0.7s;}
.del08{--animeDelay: 0.8s;}
.del09{--animeDelay: 0.9s;}
.del10{--animeDelay: 1s;}


/*** MV ***/

#kv_msg{
  position: absolute;
  display: none;
  left: 170px;
  top: 300px;
  z-index: 10;
}

#kv_msg.show{
  display: block;
}

.kv_main{
  animation: fadeIn 6s ease forwards;
  opacity: 0;
  visibility: hidden;
}
@keyframes fadeIn {
  to {
    opacity: 1;
    visibility: visible;
  }
}

.logo_bottom{
  transition: all .45s;
  transition-delay: 4s;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-200px);
}

.keyvisual_wrap .kv_main.show,
.keyvisual_wrap .logo_bottom.show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transform: translateX(0);
}

.keyvisual_wrap .logo_bottom img{
  transition: .3s;
  transition-delay: 0s;
  opacity: 1;
}

.keyvisual_wrap .logo_bottom:hover img{
  cursor: pointer;
  opacity: 0.6;
}

.news_container picture{
  display: block;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 1199px) {
  #kv_msg{
      width: 38vw;
      height: auto;
      top: 13vw;
      left: 10vw;
  }
}

.button{
  border-radius: 10px;
  background-image: linear-gradient(180deg, rgba(238,232,206,1) 0%, rgba(232,226,201,1) 60%, rgba(167,159,148,1) 100%);
  margin: 40px auto 0;
  max-width: 233px;
  width: 100%;
  transition: all .2s;
}
.button:hover{
  opacity: .75;
}

.button a{
  color: #716B5A;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  height: 64px;
  justify-content: center;
  text-decoration: none;
}

.column_2 .button{
  margin: 20px 0 40px;
}

@media (max-width: 767px) {
  .button{
    margin-top: 30px;
    width: 41.4vw;
  }
  .button a{
    font-size: min(4.26vw, 32px);
    height: 50px;
  }
}

.head_container_pc{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background-image: url("../images/top/bg.jpg");
  background-size: 100% auto;
  height: 76px;
}
.head_contant_wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  height: 76px;
}

.head_contant_wrap .head_ul_pc{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}

.head_contant_wrap .head_ul_pc li{
  transition: all .3s;
}

.head_contant_wrap .head_ul_pc li:nth-child(3){
  align-self: end;
}

.head_contant_wrap .head_ul_pc li:hover{
  opacity: .6;
}

.head_contant_wrap .head_ul_pc li:nth-child(3):hover{
  opacity: 1;
}

.head_contant_wrap .head_ul_pc.head_info li:nth-child(1){  
  margin-right: 139px;
}
.head_contant_wrap .head_ul_pc.head_info li:nth-child(2){  
  margin-right: 10px;
}
.head_contant_wrap .head_ul_pc.head_info li:nth-child(3){
  margin-right: 0;
}

.head_contant_wrap .head_ul_pc.sns_list{
  padding-left: 5px;
}

.head_contant_wrap .head_ul_pc.sns_list img{
  width: 45px;
  height: auto;
}

.head_contant_wrap .head_ul_pc.sns_list li{
  box-sizing: border-box;
  margin-right: 5px;
  transition: all .3s;
}


.head_contant_wrap .head_ul_pc.sns_list li:hover{
  opacity: .6;
}

@media (min-width: 1200px) {
  .head_container_pc {
    display: block;
    overflow: hidden;
  }
  .head_container_tb {
    display: none;
  }
  .head_container_sp {
    display: none;
  }
}

@media (max-width: 1199px) {
  .head_container_pc {
    display: none;
  }
  .head_container_sp {
    /* background-color: #6DDDE7; */
    height: 120px;
    background-image: url("../images/top/bg-sp-head.jpg");
    background-size: cover;
    background-position: center;
  }
  
  .second .head_container_sp {
    /* background-color: #6DDDE7; */
    background-image: url("../images/second/second-bg-sp.jpg");
    background-size: cover;
    background-position: top center;
  }
}

@media (max-width: 767px) {
  .head_container_pc {
    display: none;
  }
  .head_container_tb {
    display: none;
  }
  .head_container_sp {
    display: block;
    height: 80px;
  }
}

.nav_btn {
  width: 85px;
  height: 75px;
  cursor: pointer;
  background-size: contain;
  position: relative;

}
.nav_btn .line {
  left: 2px;
  right: 0;
  width: 85px;
  height: 9px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  position: absolute;
  transition: all 0.3s linear 0s;
  -webkit-transition: all 0.3s linear 0s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media all and (-ms-high-contrast:none) and (min-width: 769px) and (max-width: 830px) {
  *::-ms-backdrop,
  .nav_btn .line {
    left: 0;
  }
}
.nav_btn .line.top {
  top: 5px
}
.nav_btn.move .line.top {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  top: 30px;
}
.nav_btn .line.middle {
  top: 30px;
}
.nav_btn.move .line.middle {
  width: 0;
  opacity: 0;
}
.nav_btn .line.bottom {
  top: 55px;
}
.nav_btn.move .line.bottom {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  top: 30px;
}
@media (max-width: 767px) {
  .nav_btn {
    box-sizing: border-box;
    width: 50px;
    height: 50px;
    /* margin-right: 5vw; */
  }
  .nav_btn .line {
    width: 45px;
    height: 5px;
  }
  .nav_btn .line.top {
    top: 8px;
  }
  .nav_btn .line.middle {
    top: 20px;
  }
  .nav_btn .line.bottom {
    top: 33px;
  }
  .nav_btn.move .line.top {
    top: 20px;
  }
  .nav_btn.move .line.bottom {
    top: 20px;
  }
}

ul.head_ul_sp {
  height: 120px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.head_img1_sp {
  margin: 0 3px 0 0;
  max-width: 100px;
  width: 100px;
}

.head_img1_sp img {
  margin-left: 8px;
  margin-right: 10px;
  max-width: 100%;
  min-height: auto;
}

.head_img2_sp {
  box-sizing: border-box;
  max-width: 200px;
  padding: 0 0 0 4px;
  width: 200px;
}

.head_img2_sp img{
  max-width: 100%;
}

@media (max-width: 1199px) {
  ul.head_ul_sp {
    justify-content: space-between;
    padding: 0 3%;

  }
  
  .head_img1_sp {
    margin: 0;
    max-width: unset;
    width: 18%;
  }
  .head_img1_sp img {
    margin-left: 0;
    margin-right: 0;
    min-height: auto;
    width: 100%;
    max-width: 100%;
  }
  .head_img2_sp {
    box-sizing: border-box;
    max-width: unset;
    padding: 0;
    text-align: center;
    width: 65%;
    display: flex;
    align-items: flex-end;
    margin-bottom: 2vw;
  }

  .head_img2_sp a{
    display: inline-block;
    width: 100%;
  }
  .head_img2_sp img{
    width:100%;
    margin-top: 10px;
    /* max-width: 280px; */
  }
}

@media (max-width: 767px) {
  ul.head_ul_sp {
    height: 80px;
    justify-content: space-between;
    padding: 0px 1%;
  }
  .head_img1_sp {
    width: 23%;
    /* width: 100px; */
  }
  .head_img2_sp {
    width: 60%;
    /* padding-right: 5%; */
    margin-bottom: 0;
  }
  .head_img2_sp img{
    width: 100%;
    margin-top: 0;
    max-width: 300px;
  }
}

@media (max-width: 500px) {
   .head_img2_sp img{
    width: 100%;
    margin-top: 0;
    max-width: 210px;
  }
}

/* * *  head_nav * * */
.nav_container_pc {
  background-color: #ff8dc6;
   height: 90px;
   position: fixed;
   top: 76px;
   width: 100%;
   z-index: 20;
}
@media (min-width: 2000px) {
  .nav_container_pc {
    background-size: cover;
  }
}

ul.nav_ul_pc {
  list-style: none;
  margin: 0 auto;
  max-width: 1200px;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

li.nav_ul_li_pc {
  height: 90px;
  position: relative;
  /* text-align: center; */
  display: flex;
  align-items: center;
  gap: 26px;
}

li.nav_ul_li_pc.mr {
  margin-right: 36px;
}

/* li.nav_ul_li_pc:nth-child(-n+3)::after{
  position: absolute;
  right: -1.5em;
  top: 0;
  bottom: 0;
  margin: auto;
  content: '';
  transform: rotate(540deg);
  transition: all .3s;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #ffffff transparent;
  border-width: 0px 8px 16px 8px;
} */
li.nav_ul_li_pc.btnlink a{
  height: 90px;
  display: flex;
  transition: all .1s;
  align-items: center;
}
li.nav_ul_li_pc.btnlink a:hover{
  opacity: .75;
}
li.nav_ul_li_pc.btnlink a + a{
  /* margin-left: -40px; */
}

li.nav_ul_li_pc.btnlist{
  display: flex;
}
li.nav_ul_li_pc.btnlist a{
  transition: all .2s;
}
li.nav_ul_li_pc.btnlist a:hover{
  opacity: .6;
}

li.nav_ul_li_pc{
  text-decoration: none;
}
li.nav_ul_li_pc:hover a{
  color: #ffef00;
}
li.nav_ul_li_pc:hover .nav_list_pc a{
  color:#ec85b5;
}

li.nav_ul_li_pc:nth-child(-n+3):hover::after {
  transition: unset;
  border-color: transparent transparent rgba(255, 255, 0, 0.9) transparent;
}
.main_nav_title_pc {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 23px;
  font-weight: 500;
  font-style: normal;
}
.main_nav_title_pc span.triangle_icon {
  font-size: 22px;
  margin-left: -10px;
  vertical-align: middle;
}
@media all and (-ms-high-contrast:none) {
  *::-ms-backdrop,  /* IE11 */
  .main_nav_title_pc span.triangle_icon {
    vertical-align: baseline;
  }
}
.main_nav_link_set {
  padding-top: 5px;
}
.main_nav_link_set a {
  display: block;
  margin-bottom: 4px;
}
.main_nav_link_set a:hover {
  opacity: 0.7;
}
/* サブメニュー全体：初期は折りたたみ＆透明で操作不可 */
ul.nav_list_pc {
  position: absolute;
  top: 100px;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 50;

  transform: scaleY(0);
  transform-origin: top;
  opacity: 0;
  pointer-events: none;

  transition: transform .35s ease, opacity .25s ease;
}

/* 展開（親ホバー） */
li.nav_ul_li_pc:hover > ul.nav_list_pc {
  transform: scaleY(1);
  opacity: 1;
  pointer-events: auto;
}

/* 各サブアイテムは常時表示状態にしておく */
ul.nav_list_pc li {
  display: block;
  background-color: rgba(255, 255, 255, 0.9);
  width: 425px;
  /* padding: 13px 0 13px 15px; */
  line-height: 30px;
  position: relative;
  /* opacity / visibility はここではいじらない */
  transition: background-color .2s ease;
}


ul.nav_list_pc {
  left: 10px;
  position: absolute;
  top: 90px;
  margin: 0;
  padding: 0;
  list-style: none;
  transform-origin: top;
  opacity: 0;
  pointer-events: none;
  transition: transform .25s ease, opacity .3s ease;
}

/* 展開（ホバー時） */
li.nav_ul_li_pc:hover > ul.nav_list_pc {
  transform: scaleY(1);
  pointer-events: auto;
}

ul.nav_ul_pc li.nav_ul_li_pc:hover ul.nav_list_pc li:hover{
  background-color: #ffef00;
}

ul.nav_ul_pc li:hover > li.nav_ul_li_pc:nth-child(-n+3)::after{
  background-color: rgba(255, 255, 0, 0.9);
}


ul.nav_ul_pc li.nav_ul_li_pc:hover ul.nav_list_pc li:last-child {
  /* padding-bottom: 10px; */
}
ul.nav_list_pc li:last-child {
  border-bottom: none;
}

.nav_list_pc_li_icon {
  font-size: 12px;
  padding: 0 5px;
  color: #b92019;
}
.grayout .nav_list_pc_li_icon {
  color: #000;
}
ul.nav_list_pc li:hover .nav_list_pc_li_icon {
  color: #fff;
}
a.main_nav_title_pc{
  position: relative;
  display: inline-block;
  text-decoration: none;
  height: 40px;
  line-height: 40px;
  letter-spacing: .025em;
}

a.main_nav_title_pc:hover{
  color:rgb(255,215,22);
}
@media all and (-ms-high-contrast:none) {
  *::-ms-backdrop,ul.nav_list_pc li a {
    padding-top: 3px;
  }
}
ul.nav_list_pc li a {
  position: relative;
  color: #ec85b5;
  display: block;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: .06em;
  text-decoration: none;
  text-align: left;
  /* padding-left: 30px; */
  padding: 14px 0 14px 12px;
}
ul.nav_list_pc li a::before {
    /* position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    margin: auto;
    content: '';
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent #244d7b;
    border-width: 6px 0 6px 12px; */
}

@media (max-width: 1199px) {
  .nav_container_pc {
    display: none;
  }
  .nav_container_sp {
    display: block;
  }

  .nav_container_sp .sns_list{
    display: flex;
    justify-content: center;
    gap: 2vw;
    margin-top: 8vw;
  }
  .nav_container_sp .sns_list img{
    width: min(14vw, 106px);
  }
}
@media (min-width: 1200px) {
  .nav_container_pc {
    display: block;
  }
  .nav_container_sp {
    display: none;
  }
}
.nav_container_sp {
  position: fixed;
  top: auto;
  height: min(13.3vw, 100px);
  width: 100%;
  background: rgba(0,0,0,0);
  color: #fff;
  visibility: hidden;
  height: 0;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 40;
}
@media (max-width: 767px) {
  .nav_container_sp {
    height: min(13.3vw, 100px);
  }
}
.nav_container_sp.open {
  height: 100vh;
  background: rgba(255,229,255,0.9);
  visibility: visible;
}
.nav_ul_sp {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 150px;
  padding-bottom: 55px;
}

.nav_banner_sp{
  display: flex;
  justify-content: center;
  gap: 2vw;
  margin: 4vw auto;
  width: 36%;
  padding-right: 5%;
}

.nav_banner_sp a {
  width: 100%;
}
.nav_banner_sp a img {
  width: 100%;
}



.nav_live_replay_sp {
  display: flex;
  justify-content: center;
  gap: 6vw;
  /* padding: 0 5%; */
  margin-bottom: 8%;
}
.nav_live_replay_sp a{
  width: 50%;
  display: block;
}

.nav_live_replay_sp a:nth-child(1) {
  width: 20%;
}

.nav_live_replay_sp a:nth-child(2) {
  width: 20%;
}

.nav_live_replay_sp a:nth-child(3) {
  width: 25.6%;
}



.nav_live_replay_sp a img{
  width: 100%;
  height: auto;
}

.nav_ul_li_sp {
  width: 96%;
  margin: 0 auto;
  margin-top: 1px;
  background-color: rgba(0, 18, 72, 1);
  background-image: linear-gradient(90deg, rgba(0,18,72,0.5) 0%, rgba(16,122,172,1) 15%, rgba(16,122,172,.5) 85%, rgba(0,18,72,0.5) 100%);
  height: 46px;
  width: 100%;
  z-index: 10;
}
.nav_ul_li_sp a {
  text-decoration: none;
}
.nav_title {
  color: #333333;
  cursor: pointer;
  display: block;
  padding: 10px 0;
  font-size: 36px;
  position: relative;
  transition: all .3s;
}
.nav_title.direct_link:after{
  position: absolute;
  left: 10px;
  top: 15px;
  content: '▶︎';
  font-size: 36px;
  vertical-align: middle;
}
.nav_title:hover {
  opacity: 0.7;
}
.nav_title:hover .nav_list_pc_li_icon {
  color: #f6cf5d;
}

.nav_title:hover::after,
.nav_title.up:hover::after {
  color: #333333;
}
.nav_list_sp {
  display: none;
  font-weight: 600;
  list-style: none;
  padding: 0;
  margin: .3em 0 5vw;
  width: 100%;
}

.nav_list_sp li.grayout {
    background: #969696;
    pointer-events: none;
}
.nav_list_sp li.grayout a{
    color: #565656!important;
}
.nav_ul_li_sp .nav_list_sp li.grayout a::after{
  border-color: transparent transparent transparent #565656;
}

.nav_list_sp a {
  color: #ea609e;
  display: block;
  font-size: min(4vw, 32px);
  text-decoration: none;
  padding: 8px 0;
  padding-left: 10px;
  letter-spacing: 0.5px;

}
.nav_list_sp a:hover .nav_list_pc_li_icon {
  color: #ffffff;
}
.nav_list_sp .nav_list_pc_li_icon {
  color: #59c0c8;
}
.nav_list_sp li:last-child {
  border-bottom: none;
}

.nav_ul_li_link a{
  background-image: linear-gradient(180deg, rgba(238, 232, 206, 1) 0%, rgba(232, 226, 201, 1) 60%, rgba(167, 159, 148, 1) 100%);
  color: #244d7b;
  cursor: pointer;
  display: block;
  font-size: min(4.27vw, 32px);
  font-weight: 500;
  height: min(8.8vw, 66px);
  line-height: min(8.8vw, 66px);
  margin: 0 5%;
  padding: 0 0 0 .6em;
  text-decoration: none;
}

.images_three_set + .images_three_set{
  margin-top: 45px;
}
.images_three_set {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 95%;
  margin: 30px auto 0;
}
.images_three_set a:hover {
  opacity: 0.7;
}
.image_single a:hover {
  opacity: 0.7;
}

.images_three_set a + a {
  margin-left: 30px;
}

@media (max-width: 1199px) {
  .nav_title {
    /* background-image: linear-gradient(180deg, rgba(238,232,206,1) 0%, rgba(232,226,201,1) 60%, rgba(167,159,148,1) 100%); */
    color: #ea609e;
    cursor: pointer;
    display: block;
    font-size: min(4.8vw, 32px);
    font-weight: 600;
    height: min(8.8vw, 66px);
    line-height: min(8.8vw, 66px);
    /* margin: 0 5%; */
    padding: 0 0 0 1.8em;
  }

  .nav_title:hover {
    opacity: unset;
  }

  .nav_title::after {
    position: absolute;
    left: min(2vw, 25px);
    top: .1em;
    bottom: 0;
    margin: auto;
    content: '';
    /* background-image: url(../images/header/img_headnav_arrow.png);
    background-repeat: no-repeat;
    background-size: cover; */
    /* width: min(4.9vw, 37px);
    height: min(2.7vw, 20px); */
    transform: rotate(180deg);
    transition: all .3s;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent #ea609e transparent;
    border-width: 0px 12px 21px 12px;
  }

  .nav_title.up::after {
    transform: rotate(0deg);
    top: 0;
  }
  
  .nav_ul_li_sp {
    position: relative;
    width: 96%;
    margin: 0 auto 2.4vw;
    margin-top: 1px;
    background-color: rgba(0, 18, 72, 1);
    /* background-image: linear-gradient(180deg, rgba(238,232,206,1) 0%, rgba(232,226,201,1) 60%, rgba(167,159,148,1) 100%); */
    background: none;
    height: auto;
    width: 100%;
    z-index: 10;
    /* padding-inline: 2%; */
  }
}

@media (max-width: 450px) {
  .nav_title::after {
    position: absolute;
    left: 3vw;
    top: 1vw;
    border-width: 0px 8px 14px 8px;
  }
  
}
.nav_ul_li_sp .nav_list_sp li{
  padding-left: 6%;
  transition: all .2s;
}
.nav_ul_li_sp .nav_list_sp li:hover{
  background-color: #ffef00;
}
.nav_ul_li_sp .nav_list_sp li a{
  position: relative;
  /* margin-left: 20px; */
}
/* .nav_ul_li_sp .nav_list_sp li a::after{
    position: absolute;
    left: -12px;
    top: 0;
    bottom: 0;
    margin: auto;
    content: '';
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent #244d7b;
    border-width: 7px 0 7px 12px;
} */

@media (max-width: 767px) {
  .images_three_set {
    margin: 20px auto 0;
  }

  .images_three_set + .images_three_set{
    margin-top: 5vw;
  }
  .images_three_set a + a {
    margin-left: 3vw;
  }

  .nav_ul_li_sp .nav_list_sp li a::after{
    border-width: 5px 0 5px 9px;
  }
}

/* グレイアウト用 */
ul.nav_list_pc li.grayout {
  background: #969696;
  pointer-events: none;
}
.nav_list_pc li.grayout a{
    color: #565656!important;
}
.nav_ul_li_pc .nav_list_pc li.grayout a::before{
  border-color: transparent transparent transparent #565656!important;
}
ul.nav_list_pc li.grayout:hover .nav_list_pc_li_icon {
  color: #000;
}
.nav_list_sp li.grayout_sp {
  background: #969696;
  pointer-events: none;
}
.nav_list_sp li.grayout_sp a .nav_list_pc_li_icon {
  color: #000;
}
.nav_list_sp .grayout_sp a:hover .nav_list_pc_li_icon {
  color: #000;
}
.nav_list_sp li.grayout_sp:hover {
  opacity: 0.9;
}
.nav_ul_li_sp_stay.grayout_sp {
  background: #969696;
  pointer-events: none;
}
.nav_ul_li_sp_stay.grayout_sp a {
  color: #000;
}
.nav_ul_li_sp_stay.grayout_sp:hover {
  opacity: 1;
}


main#top{
  /* background: url(../images/top/mv/bg.jpg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top; */
}
.main_container .keyvisual_wrap{
  background: url(../images/top/mv/img_kv_bg.jpg);
  background-repeat: no-repeat;
  background-position: top;
  position: relative;
  margin: 0 auto;
  height: 1641px;
  /* overflow: hidden; */
  margin-top: 166px;
  max-width: 1200px;
}

.main_container{
      /* background-position: center 0%; */
        /* background: url(../images/top/mv/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top; */

}


.main_container .keyvisual_wrap .kv_person1{
  position: absolute;
  bottom: 314px;
  left: 214px;
  display: block;
  /* width: 65%; */
  z-index: 5;
  opacity: 0;
}

.main_container .keyvisual_wrap .kv_boat {
  position: absolute;
  bottom: 305px;
  right: -81px;
  display: block;
  /* width: 65%; */
  z-index: 5;
  opacity: 0;
}

@media (max-width: 1199px) {
  .main_container .keyvisual_wrap .kv_boat {
    width: 53%;
    top: 60%;
    right: 0;
    bottom: auto;
  }

   .main_container .keyvisual_wrap .kv_boat img {
    width: 100%;
   }
}

.main_container .keyvisual_wrap.loaded .kv_boat{
  animation: boat .6s ease-out forwards;
  animation-fill-mode: forwards;
  animation-delay: 2.9s;
  opacity: 0;
}

.main_container .keyvisual_wrap.loaded .kv_boat img {
   animation: sparkle 2s steps(5) ;
   animation-iteration-count: 2;
  animation-delay: 2.8s;
}

@keyframes boat {
  0% {
    opacity: 0;
    transform:translateX(-600px);
  }
  100% {
    opacity: 1;
    transform:translateX(0); 
  }
}



.main_container .keyvisual_wrap.loaded .kv_person1{
  animation: characteranime01 .6s ease-out forwards;
  animation-fill-mode: forwards;
  animation-delay: 2.3s;
  opacity: 0;
}
@keyframes characteranime01 {
  0% {
    opacity: 0;
   
  }
  100% {
    opacity: 1;
  
  }
}

.main_container .keyvisual_wrap .kv_jewelry{
  position: absolute;
  display: block;
  bottom: 310px;
  left: 52px;
  /* transform: translate(-50%, -50%); */
  animation-timing-function: ease-out;
  transform-origin: center center;
  opacity: 0;
  z-index: 5;
}
.main_container .keyvisual_wrap .kv_jewelry2{
  position: absolute;
  display: block;
  bottom: 295px;
  left: 43px;
  /* transform: translate(-50%, -50%); */
  animation-timing-function: ease-out;
  transform-origin: center center;
  opacity: 0;
  z-index: 5;
}
.main_container .keyvisual_wrap.loaded .kv_jewelry{
  animation: characteranime02 0.5s ease-out forwards;
  animation-fill-mode: forwards;
  animation-delay: 1.5s;
  opacity: 0;
}
.main_container .keyvisual_wrap.loaded .kv_jewelry2{
  animation: characteranime03 2s steps(10) forwards;
  animation-fill-mode: forwards;
  /* animation-delay: s; */
  opacity: 0;
}

.main_container .keyvisual_wrap.loaded .kv_jewelry img {
   animation: sparkle 2s steps(5) ;
   animation-iteration-count: 3;
  animation-delay: 1.5s;
}
.main_container .keyvisual_wrap.loaded .kv_jewelry2 img {
   animation: sparkle 1s;
   animation-iteration-count: 3;
}

@keyframes characteranime02 {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.5);
  }
  60% {
    opacity: 1;
    transform: translateY(-50px) scale(1);
  }
  80% {
    transform: translateY(5px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) ;
  }
}
@keyframes characteranime03 {
  0% {
    opacity: .5;
    transform: translateY(-60%) rotateY(0deg);
  }
  60% {
   opacity: .7;
    
  }
  80% {
   
  }
  100% {
    opacity: 0;
    transform:translateY(20%) rotateY(360deg);
  }
}




@keyframes sparkle { 
  0%, 100% { 
    filter: brightness(1); 
   } 
   50%
    { filter: brightness(1.5); 
    }
   }

.main_container .keyvisual_wrap .kv_particle{
  position: absolute;
  display: block;
  bottom: 14px;
  right: 0;
  /* transform: translate(-50%, -50%); */
  animation-timing-function: ease-out;
  transform-origin: center center;
  opacity: 0;
  z-index: 5;
}
.main_container .keyvisual_wrap.loaded .kv_particle{
  animation: particleanime 0.2s ease-out forwards;
}
@keyframes particleanime {
  0% {
    transform: scale(.8);
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}


.main_container .keyvisual_wrap .kv_person2{
    position: absolute;
    display: block;
    top: 47px;
    right: 335px;
    margin: auto;
    /* z-index: 10; */
    opacity: 0;
    transform-origin: center center;
}
.main_container .keyvisual_wrap.loaded .kv_person2{
    animation: copyanime 0.6s ease-out forwards;
    animation-timing-function: ease-out;
    animation-delay: 2.5s;
}
@keyframes copyanime {
  0% {
    opacity: 0;
    transform:translateY(200px) scale(0);
  }
  100% {
    opacity: 1;
    transform:translateY(0) scale(1); 
  }
}


.main_container .keyvisual_wrap .kv_text{
  position: absolute;
  bottom: 255px;
  /* right: 0; */
  left: 50px;
  margin: auto;
  /* width: 80%; */
  z-index: 10;
  opacity: 0;
}
.main_container .keyvisual_wrap.loaded .kv_text{
  animation: racelogoanime 1.0s ease-out forwards;
  animation-delay: 2s;
}
@keyframes racelogoanime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.main_container .keyvisual_wrap .kv_date{
  position: absolute;
  bottom: 30px;
  right: 0;
  left: 0;
  margin: auto;
  /* width: 80%; */
  z-index: 10;
  opacity: 0;
  text-align: center;
}
.main_container .keyvisual_wrap.loaded .kv_date{
  animation: dateanime 1.0s ease-out forwards;
  animation-delay: 3.3s;
}
@keyframes dateanime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 1199px) {
  .main_container{
      background-position: center 0%;
  }
  .main_container .keyvisual_wrap{
    background: url(../images/top/mv/img_kv_bg-sp.jpg);
    background-position: top center;
    background-size: 100% auto;
    margin-top: 0;
    /* padding-top: 20px; */
    height: auto;
    aspect-ratio: 750 / 1033;
    /* overflow-x: hidden; */
  }

  .main_container .keyvisual_wrap .kv_person1{
    left: 18%;
    top: 26%;
    width: 76%;
  }
  .main_container .keyvisual_wrap .kv_jewelry{
    top: 450px;
    right: 115px;
  }

  @media (max-width: 1199px) {
    .main_container .keyvisual_wrap .kv_jewelry {
      width: 94%;
      top: 14%;
      left: auto;
      right: 2%;
    }
  }
  @media (max-width: 1199px) {
    .main_container .keyvisual_wrap .kv_jewelry2 {
      width: 94%;
      top: 14%;
      left: auto;
      right: 2%;
    }
  }

  .main_container .keyvisual_wrap .kv_person2{
    width: 71%;
    top: 2.4%;
    right: 27.7%;
  }

  .main_container .keyvisual_wrap .kv_text{
    position: absolute;
    bottom:auto;
    left: 4%;
    top: 56.6%;
    margin: auto;
    width: 61%;
    z-index: 10;
  }

  .main_container .keyvisual_wrap .kv_text img{
    width: 100%;
  }

  .main_container .keyvisual_wrap .kv_date{
    position: absolute;
    bottom: auto;
    right: 0;
    left: 0;
    margin: auto;
    width: 94%;
    top: 85%;
    z-index: 10;
  }

  .main_container a{
    top: 15px;
  }
}
@media (max-width: 767px) {
  main#top{
    background: unset;
  }
  .main_container{
    display: block;
    margin-top: 0;
    position: relative;
  }

  .main_container .keyvisual_wrap{
    /* padding-top: 0;
    height: 141.4vw; */
  }

  /* .main_container .keyvisual_wrap .kv_person1{
    width: 57%;
  } */
  .main_container .keyvisual_wrap .kv_jewelry{
    /* top: 60vw;
    right: 16vw;
    width: 30%; */
  }
  .main_container .keyvisual_wrap .kv_person2{
    /* top: 9vw;
    right: 7vw;
    width: 9vw; */
  }

  /* .main_container .keyvisual_wrap .kv_text{
    position: absolute;
    bottom: 15vw;
    right: 0;
    left: 0;
    margin: auto;
    width: 80%;
    z-index: 10;
  } */

  /* .main_container .keyvisual_wrap .kv_date{
    bottom: 2vw;
    width: 75%;
  } */
}


.sub_container{
  padding-bottom: 60px;
  overflow: hidden;
}

.sub_container h2{
  margin: 0;
  padding: 0;
}
.sub_container h2 img{
  position: relative;
}

@media (max-width: 767px) {
  .sub_container{
    padding-bottom: 6.5vw;
  }

  .sub_container h2 img{
    right: unset;
  }
}


/* * * * *  News  * * * * */
.news_content{
  margin: 50px auto 0;
  box-sizing: border-box;
  /* padding: 0 5%; */
}
@media (max-width: 1199px) {
.news_content {
    padding: 0 5%;
    margin-top: 6vw;
  }
}  

.news_content h2{
  margin: 0 auto 30px;
  position:relative;
}

.news_content h2 img{
  position:relative;
}

@media (max-width: 1199px){
  
  .news_content h2{
      width: 22vw;
      margin-bottom: 6vw;
      /* right: 4vw; */
  }
  .news_content h2 img {
    width: 100%;
  }
}
/* ===== Base wrapper ===== */
.news_wrap{
  margin: 0 auto;
  max-width: 1200px;
  background: #fff;
  padding: 0;
  position: relative;
}

/* ===== Slot height (PC/iPad=2行, SP=4行) ===== */
:root{
  --slot-h: 64px;
}
@media (max-width: 767.98px){
  :root{ --slot-h: 104px; }
}

.news_list{
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 10px 3px;
  height: 194px;
  overflow-y: scroll;
  position: relative;
}

.news_list::-webkit-scrollbar {
    width: 55px;
}

@media (max-width: 1199px) {
  .news_list::-webkit-scrollbar {
    width: 40px;
}
}

.news_list::-webkit-scrollbar-thumb {
    background: url(../images/top/scrollbar.jpg) no-repeat;
    /* height: 80px; */
    height: 70px;
    background-position: center;
    background-size: 20px auto;

}

.news_list > li{
  display: block;
  margin: 0;
  padding: 15px 0;
}

@media (min-width: 1200px) {
  .news_list > li div{
    display: flex;
    align-items: center;
  }
}


.news_item{display: flex!important;}
.news_item_pc{display: flex!important;}
.news_item_sp{display: none!important;}

@media (max-width: 1199px){
  .news_item{display: flex!important;}
  .news_item_pc{display: none!important;}
  .news_item_sp{display: flex!important;}
}
.news_list .slick-list{
  overflow: hidden;
  transition: height .2s ease;
}

.slick-vertical .slick-slide{
  align-items: center;
  min-height: var(--slot-h);
  height: auto;
  overflow: hidden;
  box-sizing: border-box;
}

.news_list .slick-slide > .card__head{
  width: 100%;
  display: flex;
  align-items: center;
  gap: .75rem;
  min-width: 0;
}

.card__date{
  /* font-size: 14px;
  font-weight: 600;
  flex: 0 0 auto;
  line-height: 1.2;
  white-space: nowrap; */

  background: #e6d0ff;
  background-size: cover;
  color: #000;
  padding: 2px 10px 3px 10px;
  margin-left: 20px;
  font-weight: 400;
  font-size: 18px;
}

.card__title{
  /* display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  flex: 1 1 auto;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
  min-width: 0;
  word-break: break-word; */
  color: #000;
  margin-left: 40px;
  letter-spacing: 0.3px;
  display: block;
  font-weight: 400;
  font-size: 16px;
}

@media (max-width: 1199px) {
    .card__title {
        display: block;
        padding: 0 10px 0 0;
        margin-top: 15px;
        margin-left: 20px;
    }
}

.card__title a{
    color:#ed1c24;
}
@media (max-width: 767px){
  .card__title{ 
    -webkit-line-clamp: 4;
    /* font-size: (3.25vw, auto, 14px); */
  }
  .card__date{
    /* font-size: (3.25vw, auto, 14px); */
  }
}

/* ===== Arrows ===== */
.news_arrow{
  position: absolute;
  right: 8px;
  background: none;
  border: none;
  color: #e92d6a;
  cursor: pointer;
  height: 24px;
  width: 24px;
  z-index: 10;
}
.news_prev{ top: 4px; }
.news_next{ bottom: 4px; }

/*** News end ***/

.pickup_wrap {
  margin-top: 70px;
  padding: 0 0 0 0;
  position: relative;
}
.pickup_box{
  margin-bottom: 75px;
}
.pickup_box .pickup_item{
  text-align: center;
}

@media (max-width: 1199px) {
  .pickup_box .pickup_item a{
    width: 100%;
  }
  .pickup_box .pickup_item a img{
    width: 100%;
  }
}

.pickup_box .pickup_item img{
  transition: all .2s;
}
.pickup_box .pickup_item img:hover{
  opacity: .7;
}

.pickup_box .pickup_item + .pickup_item{
  margin-top: 40px;
}

.pickup_box .sns_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.pickup_box .sns_list li{
  transition: all .2s;
}
.pickup_box .sns_list li:hover{
  opacity: .6;
}
.pickup_box .sns_list img{
  /* max-width: 84px; */
}

.pickup_list {
  list-style: none;
  padding: 0;
  margin: 100px auto 0;
  width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  text-align: center;
  gap: 0 40px;
}

.pickup_list li{
  display: block;
  transition: all .3s;
  width: 31%;
}

.pickup_list li:nth-child(n+4){
  margin-top: 40px;
}
.pickup_list li:hover{
  opacity: .6;
}

.pickup_list li:hover.disabled{
  opacity: 1;
  pointer-events: none;
}


.pickup_list:first-child li:first-child {
  margin-left: 0;
}


@media (max-width: 1199px) {
  /* .collabo_wrap {
    display: block;
  }
  .collabo_ul {
    list-style: none;
    padding: 0;
    margin: 5vw auto 0;
    width: 95%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3%;
  }

  .collabo_ul li{
    width: 44%;
    height: auto;
    margin-left: unset;
    z-index: 1;
    transition: all .3s;
  }
  .collabo_ul li:hover{
    opacity: .6;
  }
  .collabo_ul li img{
    width: 100%;
  } */

  .pickup_wrap {
    padding: 0 5%;
    margin-top: 6vw;
    position: relative;
  }

  .pickup_wrap h2 img{
    /* width: 48vw;
    right: 4vw; */
  }

  
  .pickup_box .pickup_item + .pickup_item{
    margin-top: 5vw;
  }

  .pickup_list {
    list-style: none;
    padding: 0;
    margin: 8vw auto 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
    gap: 3%;
  }

  .pickup_list{
    gap: unset;
  }

  .pickup_list li{
    width: 47%;
  }

  .pickup_list li img{
    width: 100%;
  }
  .pickup_list li:nth-child(n+3){
    margin-top: 6%;
  }
}

@media (max-width: 1199px)  {
      .pickup_box .sns_list {
        margin-top: 7vw;
        gap: 5%;
      }
      .pickup_box .sns_list li{
        width: 14%;
      }
      .pickup_box .sns_list li a{
        width: 100%;
        display: inline-block;
      }
      .pickup_box .sns_list li img{
        width: 100%;
      }
      .pickup_wrap h2 img{
        width: 30vw;
  }
  .pickup_box{
    margin-bottom: 12vw;
  }
}

@media (max-width: 767px) {
  .pickup_wrap {
    padding: 0 5%;
    background-size: contain;
    background-position: 50%;
    position: relative;
  }

  
  .pickup_box .sns_list{
    /* display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 10vw; */
  }

  .pickup_box .sns_list img{
    max-width: 16vw;
  }

  

  .pickup_list{
    width: 100%;
    margin-top: 8vw;
  }

  .pickup_list li:nth-child(n+4){
    margin-top: unset;
  }
  .pickup_list li:nth-child(n+3){
    margin-top: 7vw;
  }

  
}

.dream_container .dream_wrap{
  margin-top: 100px;
  text-align: center;
  /* margin-bottom: 60px; */
}
.dream_container .dream_wrap .racer_list{
  margin: 40px 0 100px;
}
.dream_container .dream_wrap .racer_list +  .racer_list{
  margin: 80px 0;
}

.top_dream_note{
  max-width: 1200px;
  margin: 0 auto 100px;
}
.top_dream_note p{
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  text-align: left;
}
.dream_note p{
  color: #000000;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-align: left;
  padding: 0 0 0 3%;
}

.btn_dream object{
    max-width: 344px;
}
.btn_dream object svg{
  transition: all .2s;
}
.btn_dream object svg:hover{
  opacity: .6;
}

.btn_dream a{
  transition: all .2s;
}
.btn_dream a:hover{
  opacity: .6;
}

.btn_dream svg a{
  transition: all .2s;
}
.btn_dream svg a:hover{
  opacity: .6;
}

@media (max-width: 1199px) {
  .dream_container .dream_wrap{
    margin-top: 12vw;
    margin-bottom: 0;
    text-align: center;
  }

  .dream_container .dream_wrap h2 img{
    width: 65vw;
    /* right: 3vw; */
  }

  .dream_container .dream_wrap .racer_list{
    margin: 7vw 5% 4vw;
  }
  .dream_container .dream_wrap .racer_list +  .racer_list{
    margin: 8vw 5% 4vw;
  }

  .top_dream_note{
    margin: 0 5% 8vw;
  }

  .dream_note p{
    padding: 0;
  }

  .btn_dream{
    width: 34%;
    margin: 8vw auto 0;
  }
  .btn_dream a{
   width: 100%;
   display: inline-block;
  }
  .btn_dream a img{
   width: 100%;
   display: inline-block;
  }


}

@media (max-width: 767px) {
  .dream_container .dream_wrap{
    /* margin-top: 15vw; */
  }

  .dream_container .dream_wrap h2 img{
    /* width: 90%;
    right: 0; */
  }
  .dream_container .dream_wrap .racer_list{
    /* margin: 8vw 5% 4vw; */
  }

  .top_dream_note p{
    font-size: 3.25vw;
    line-height: 1.2;
  }

  

  .dream_note p{
    font-size: 3.333vw;
  }
}

/* メインビジュアルサイズ変更 */

/******表示・非表示*******/
@media (min-width: 1200px) {
	/*PCの時非表示にします*/
	.pc-none {
		display: none !important;
	}
}
@media (max-width: 1199px) {
	/*TBとSPの時非表示にします*/
	.tb-none {
		display: none !important;
	}
}
@media (max-width: 767px) {
	/*SPの時非表示にします*/
	.sp-none {
		display: none !important;
	}
	.sp-only {
		display: block !important;
	}
}

/* ヘッダースクロール固定用 */
.head_container_pc,
.nav_container_pc,
.main_container {
  transition: 0.5s;
}
.fade-out {
  transition: 0.5s;
}


/* * * * *  footer * * * * */
footer {
  /* background-color: #6ddde7; */
  padding: 0 0 0;
  position: relative;
  z-index: 1;
}

.footer_container {
  padding: 0;
  position: relative;
}
.footer_container p {
  text-align: center;
  line-height: 1;
}

footer .catchcopy{
  margin: 55px auto 55px;
  padding: 0;
}
@media (max-width: 1199px) {
footer{
  margin: 0 auto 35px;
  padding: 0;
}
  
}
@media (max-width: 767px) {
  footer {
    padding: 0;
    position: relative;
    z-index: 1;
  }

  footer .catchcopy{
    margin: 18vw auto 0;
    padding: 0;
  }

  footer .catchcopy img {
    width: 60%;
  }

}


#to_top_btn {
  position: fixed;
  right: 30px;
  bottom: 51px;
  cursor: pointer;
  width: 82px;
  height: 80px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s, visibility 1s;
  text-align: center;
}

@media (min-width: 1500px) {
  #to_top_btn {
    right: 50px;
  }
}
@media (min-width: 1900px) {
  #to_top_btn {
    right: 250px;
  }
}
@media (min-width: 2500px) {
  #to_top_btn {
    right: 550px;
  }
}
@media (min-width: 3800px) {
  #to_top_btn {
    right: 1150px;
  }
}

@media (max-width: 767px) {
  #to_top_btn {
    bottom: 10vw;
    right: 2vw;
    height: 14vw;
    line-height: 14vw;
    width: 14vw;
  }
}

#to_top_btn.show{
  opacity: 1;
  visibility: visible;
}
#to_top_btn:hover {
  opacity: 0.8;
}


/* * * * *  footer end  * * * * */


footer {
  position: relative;
  z-index: 13;
}

footer .slider{
  box-shadow: none;
  margin: 83px auto 75px;
  padding-inline-end: 40px;
}


footer .slick-list{
  margin: auto;
  width: 100%;
}

footer .slick-list .slick-slide{
  max-width: ;
  transition: all .2s;
}

footer .slick-list .slick-slide img{
  width: 100%;
}
footer .slick-list .slick-slide.disable{
  opacity: 1;
  pointer-events: none;
}
footer .slick-list .slick-slide:hover{
  opacity: .4;
}
@media (max-width: 1199px) {
  footer .slider{
    box-shadow: none;
    margin: 30px auto 60px;
    padding-inline-start: 80px;
    padding-inline-end: 80px;
  }
  footer .slick-list .slick-slide{
  max-width: unset;
}
}

@media (max-width: 767px) {
  footer .slider{
    box-shadow: none;
    margin: 28px auto 32px;
    padding-inline-start: 10vw;
    padding-inline-end: 10vw;
  }
  footer .slick-list{
    margin: auto;
    width: 95%;
  }
}


.footer_container {
  /*  background: url('../images/pickup/index_pickup_bg_pc.jpg');*/
  /*  padding: 30px 0 15px;*/
  padding: 0;
  position: relative;
  /* background: #231714; */
  /* border-style: solid;
  border-width: 8px 0 0 0;
  -moz-border-image: url('../images/news/black_obi7.png') 11 11 11 11 round round;
  -webkit-border-image: url('../images/news/black_obi7.png') 11 11 11 11 round round;
  -o-border-image: url('../images/news/black_obi7.png') 11 11 11 11 round round;
  border-image: url('../images/news/black_obi7.png') 11 11 11 11 round round; */
}
#footer_center_moya {
  position: absolute;
  top: -35px;
  z-index: -1;
  left: 0;
  right: 0;
  margin: auto;
}
#to_top_btn_pc {
  position: fixed;
  right: 30px;
  bottom: 26px;
  cursor: pointer;
  width: 63px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s, visibility 1s;
}
@media (max-width: 1199px) {
  #to_top_btn_sp {
    position: fixed;
    right: 20px;
    bottom: 45px;
    width: 45px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s, visibility 1s;
    z-index: 1;
  }
}
@media (max-width: 600px) {
  #to_top_btn_sp {
    bottom: 14px;
    right: 14px;
  }
}
@media (min-width: 1500px) {
  #to_top_btn_pc {
    right: 50px;
  }
}
@media (min-width: 1900px) {
  #to_top_btn_pc {
    right: 250px;
  }
}
@media (min-width: 2500px) {
  #to_top_btn_pc {
    right: 550px;
  }
}
@media (min-width: 3800px) {
  #to_top_btn_pc {
    right: 1150px;
  }
}
#to_top_btn_pc.show,
#to_top_btn_sp.show {
  opacity: 1;
  visibility: visible;
}
#to_top_btn_pc:hover {
  opacity: 0.8;
}
img.slide-arrow.prev-arrow.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -60px;
  cursor: pointer;
}

@media (max-width: 1199px) {
  img.slide-arrow.prev-arrow.slick-arrow {
    position: absolute;
    left: -39px;
    width: 31px;
    display: block !important;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
  }
}

img.slide-arrow.next-arrow.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -60px;
  cursor: pointer;
}

@media (max-width: 1199px) {
  img.slide-arrow.next-arrow.slick-arrow {
    position: absolute;
    top: 10px;
    right: -39px;
    width: 31px;
    display: block !important;
    cursor: pointer;
    top: 50%;
    transform: translateY(-50%);
  }
}

@media (max-width: 700px) {
  img.slide-arrow.next-arrow.slick-arrow {
    right: -5vw;
    width: 5.4vw;
  }
  img.slide-arrow.prev-arrow.slick-arrow {
    left: -5vw;
    width: 5.4vw;
  }
}

@media (max-width: 1199px) {
  #footer_center_moya {
    display: none;
  }
}
.footer_banner_wrap{
  /* background-color: #244d7b; */
}

.footer_banner_pc,
.footer_banner_sp {
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .footer_banner_pc {
    display: none;
  }

  .footer_banner_sp {
    display: block;
  }
}

@media (min-width: 1200px) {
  .footer_banner_pc {
    display: block;
  }

  .footer_banner_sp {
    display: none;
  }
}

ul.slider {
  padding: 34px 20px;
  margin: 0;
  list-style: none;
  width: 79%;
  margin: 0 auto
}

@media (max-width: 1199px) {
  ul.slider {
    background: none;
    box-shadow: none;
    margin-bottom: 25px;
    padding: 34px 0;
  }
}

@media (max-width: 767px) {
  ul.slider {
    padding: 3vw 0;
  }


ul.slider li a img {
  width: 100%;
}

ul.slider li a img:hover {
  opacity: 0.7;
}

/* slickデファクト左右ボタン用 */
.slick-prev:before {
  /* content: url('../images/footer/banner_left.png')!important; */
}

.slick-next:before {
  /* content: url('../images/footer/banner_right.png')!important; */
}

.slick-prev {
  left: -10px !important;
}

.slick-next {
  right: -10px !important;
}

_::-webkit-full-page-media,
_:future,
:root .slick-prev {
  width: auto !important;
}

_::-webkit-full-page-media,
_:future,
:root .slick-next {
  /* right: -20px!important; */
  width: auto !important;
}
}
@media all and (-ms-high-contrast:none) {

  *::-ms-backdrop,
  .slick-prev {
    width: auto !important;
  }

  .slick-next {
    width: auto !important;
    /* right: -20px!important; */
  }
}




/* * * * *  下層ページ  * * * * */

/***** 下層タイトル 2種 *****/
/*-*-* 画像 *-*-*/
.second_title_img{
  box-sizing: border-box;
  /* padding-bottom: 50px; */
  position: relative;
  text-align: center;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*-*-* テキスト *-*-*/
h2.second_title_txt{
  color: #FFFFFF;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
  text-shadow: none;
  background: linear-gradient(180deg, rgba(225, 192, 116, 1) 0%, rgba(255, 243, 207, 1) 45%, rgba(174, 141, 61, 1) 55%, rgba(249, 217, 142, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
_:-ms-lang(x)::-ms-backdrop, h2.second_title_txt {
  top: 50%;
}
@media (max-width: 1199px) {
  h2.second_title_txt{
    font-size: 1.3em;
    width: 80%;
  }
}
@media (max-width: 767px) {
  h2.second_title_txt{
    font-size: 2.8vw;
    width: 100%;
  }
}

h2.pc {
  background: #e0bf43;
  background-size: 100%;
  font-size: 30px;
  text-align: center;
  font-weight: 900;
  padding: 15px 0px;
  color: #000000;
  letter-spacing: 10px;
  position: relative;
  text-shadow: none;
  text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
  position: relative;
  z-index: 1;
}
h2.pc span{
  background: linear-gradient(180deg, rgba(225,192,116,1) 0%, rgba(255,243,207,1) 45%, rgba(174,141,61,1) 55%,rgba(249,217,142,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media all and (-ms-high-contrast:none) {
  *::-ms-backdrop,
  h2.pc {
    padding-bottom: 8px;
  }
}
h2.sp {
  background: #e0bf43;
  filter: drop-shadow(0 3px 3px rgba(0,0,0,0.7));
  box-shadow: 0 3px 3px rgba(0,0,0,0.4);
  font-size: 20px;
  text-align: center;
  font-weight: 900;
  padding: 15px 0px;
  color: #000000;
  letter-spacing: 3px;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  text-shadow: 0px 1px 2px #000000;
  text-shadow:0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff,0 0 3px #fff;
  position: relative;
  z-index: 1;
}

h2.c-title{
  font-size: 40px;
  text-align: center;
  font-weight: bold;
  width: 100%;
  margin: 0 0 0;
  position: relative;
  text-shadow: none;
  z-index: 1;
  letter-spacing: 0;
  box-sizing: border-box;
}

@media (max-width: 1199px) {
    h2.c-title{
    margin: 0 0 2vw;
  }
}
@media (max-width: 767px) {
  h2.c-title{
    font-size: 6.4vw;
    padding: 2vw 0;
  }
}
/* * * * *  下層タイトル end  * * * * */
.page-bi {
}

.contain {
  max-width: 1200px;
  margin: auto;
  padding-top: 215px;
  position: relative;
}
@media (max-width: 1199px) {
  .contain {
    width: 100%;
    padding-top: 40px;
  }
}
@media (max-width: 1199px) {
  .contain {
    padding-top: 0;
  }
}

.container{
    background-color: #FFFFFF;
    color:#333333;
    padding-top: 60px;    
}
.container p{
    font-size: min(4.3vw, 18px);
    font-weight: 500;
    margin: 0;
}

@media (max-width: 1199px) {
    .container{
        padding-top: 5.3vw;
    }
}

.bc-white {
  /* background: rgba(255,255,255,1); */
}
@media (max-width: 1199px) {
  .bc-white {
    /* background: rgb(255,255,255); */
    box-shadow: none;
  }
  .clear_box_w.pc-none{
    height: 100px;
  }
}

@media (max-width: 767px) {
  .contain {
    padding-top: 1vw;
  }


  .bc-white {
    box-sizing: border-box;
  }
}

.page-inner {
  padding: 2% 2% 3% 2%;
  margin: 0 auto 50px;
}
  
@media (max-width: 1199px) {
  .page-inner {
    padding: 5vw 0 2vw 0;
    margin:0 0 10vw;
  }
}

@media (max-width: 797px) {
  .page-inner {
    padding: 5% 5% 3%;
  }
}
/*** dream.php css ***/
.jstream-eqPlayer {
  display: block!important;
}
.jstplayer {
  width: 640px;
}
.jstlistcrtl {
  width: 640px;
}
.jstlist {
  width: 600px;
}
.jstream-eqPlayer {
  display: block!important;
}
.saturday {
	color: #01a0e9;
}
.sunday {
	color: #e60a12;
}
.kousin {
    text-align: center;
    font-weight: bold;
    font-size: 28px;
    padding: 150px 0;
    color: #020203;
    margin: 0;
}

@media (max-width: 1199px){
.kousin {
    padding: 120px 0 150px;
    
  }
}

@media (max-width: 767px){
  .kousin {
    font-size: 20px!important;
    padding: 30vw 0 34vw!important;
  }
}
/*** dream.php css end ***/

/*** tv_schedule.php css ***/
#tv_schedule .c-subtitle {
  background: #ff9b37;
  /* border-left: solid 5px #59c0c8; */
  color: #FFFFFF;
}

#tv_schedule .c-box {
  /* padding: 20px; */
}
#tv_schedule .c-box a {
  color: #4d4f9a;
}
#tv_schedule .c-box p {
  margin: 0;
  margin-top: 10px;
}
#tv_schedule .c-box tr {
  background: #fff;
}

@media (max-width: 1199px){
  #tv_schedule .c-box {
  }
  #tv_schedule p {
    font-size: min(4.4vw, 16px);
  }

}


.schedule_list {
  width: 100%;
  text-align: center;
  border: 1px solid #000;
  border-collapse: collapse;
  margin-top: 20px;
}
.schedule_list th,
.schedule_list td {
  border: 1px solid #ff9b37;
  padding: 5px;
}
.schedule_list th {
  background: #ff9b37;
  color: #FFFFFF;
}
.schedule_list p{
  font-size: min(3vw, 18px);
}
/*** tv_schedule.php css end ***/


/*** event.php css ***/
.event_box .span_red {
  color: #FF0000;
}
.event_box .span_blue {
  color: #003CFF;
}
.event_box {
  max-width: 96%;
  margin: auto;
  border: 5px solid #eb0081;
  padding-bottom: 40px;
  border-radius: 10px;
  background: #fff;
}
.event_box + .event_box {
  margin-top: 40px;
}
.event_box h3 {
  text-align: center;
  border-bottom: 5px solid #eb0081;
  font-size: 55px;
  font-weight: bold;
  padding-bottom: 15px;
  max-width: 100%;
  margin: 0 auto;

  text-shadow:
  3px 3px 0px #fff,
  -3px -3px 0px #fff,
  -3px 3px 0px #fff,
  3px -3px 0px #fff,
  3px 0px 0px #fff,
  -3px 0px 0px #fff,
  0px 3px 0px #fff,
  0px -3px 0px #fff;
  background: #eb0081;
}
.youbi {
  font-size: 46px;
}
.event_contents_box {
  max-width: 90%;
  margin: auto;
  padding-left: 40px;
}
.event_inner_title {
  text-align: center;
  font-size: 50px;
  font-weight: bold;
  margin: 0;
  margin-bottom: 40px;
}
.event_contents_box h4 {
  margin: 0;
  font-size: 43px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  position: relative;
}
.event_contents_box h4::before {
  content: '';
  position: absolute;
  left: -50px;
  top: 5px;
  bottom: 0;
  width: 35px;
  height: 35px;
  background: #eb0081;
  margin: auto;
  border-radius: 50%;
}
.event_contents_box .pattern1 {
  margin: 0;
  font-size: 25px;
  font-weight: bold;
}
.event_contents_box .pattern1.mt,
.event_contents_box .flex_box_pattern1.mt {
  margin-top: 20px;
}
.event_contents_box .pattern1.pl {
  padding-left: 15px;
}
.flex_box_pattern1 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.flex_box_pattern2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 20px;
}
.flex_box_pattern2 + .flex_box_pattern2 {
  margin-top: 40px;
}
.event_contents_box .flex_img_box {
  width: 27%;
  margin-top: 25px;
}
.event_contents_box .flex_img_box.HIPPY {
  width: 45%;
}
.event_contents_box .flex_img_box.sdgs {
  width: 52%;
}
.event_contents_box .flex_img_box.splash_vr {
  width: 56%;
}
.gest_imgs {
  border: 1px solid #000;
}
.event_wrapper .mt70 {
  margin-top: 70px!important;
}
.event_link_btn {
  color:#FF0000;
  text-decoration:none;
}
.event_link_btn:hover {
  opacity: 0.7;
}
.event_contents_box .flex_img_box2 {
  display: flex;
  width: 40%;
  margin-top: 0;
  gap: 5px;
  justify-content: flex-end;
}
.event_contents_box .flex_img_box2 img {
  width: 33.3%;
}
.event_contents_box .flex_img_box3 {
  width: 45%;
  flex-wrap: wrap;
}
.gests_4_inner_left_box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 25px;
  font-weight: bold;
  gap: 25px;
}
.event_contents_box .flex_img_box3 {
  width: 27%;
}
.event_contents_box .flex_img_box3 img {
  width: 49%;
}

@media (max-width: 1499px) {
  .event_box h3 {
    font-size: 42px;
  }
  .event_contents_box h4 {
    font-size: 37px;
  }
  .event_contents_box .pattern1 {
    font-size: 17px;
  }
  .event_contents_box .flex_img_box2 {
    width: 45%;
  }
  .gests_4_inner_left_box {
    font-size: 17px;
    gap: 18px;
  }
  .event_contents_box .flex_img_box3 {
    width: 31%;
  }
  .event_contents_box .flex_img_box3 img {
    width: 48%;
  }
  .youbi {
    font-size: 34px;
  }
}

@media (max-width: 1199px) {
  
  .event_container {
    margin-top: 20px;
  }
  .event_contents_box {
    padding-left: 10px;
  }
  .event_inner_title {
    font-size: min(5vw,50px);
    margin-bottom: min(4vw,40px);
  }
  .event_box h3 {
    font-size: min(6vw,55px);
    padding-bottom: min(2vw, 15px);
  }
  .youbi {
    font-size: min(5.5vw,46px);
  }
  .event_contents_box h4 {
    font-size: min(4vw,45px);
  }
  .event_contents_box .pattern1 {
    font-size: min(3vw,25px);
  }
  .flex_box_pattern2 {
    display: block;
  }
  .event_contents_box .flex_img_box {
    width: 60%;
    text-align: center;
    margin: auto;
    margin-top: 15px;
  }
  .event_contents_box .flex_img_box.HIPPY {
    width: 80%;
  }
  .event_contents_box .flex_img_box.sdgs,
  .event_contents_box .flex_img_box.splash_vr {
    width: 80%;
  }
  .br_sp_none {
    display: none;
  }
  .event_contents_box .flex_img_box2 {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .gests_4_inner_left_box {
    font-size: min(3vw,25px);
  }
  .event_contents_box .flex_img_box3 img {
    width: 33.3%;
  }
  .event_contents_box h4::before {
    content: '';
    position: absolute;
    left: max(-4.5vw, -40px);
    top: 2px;
    bottom: 0;
    width: min(3vw, 40px);
    height: min(3vw, 40px);
    background: #eb0081;
    margin: auto;
    border-radius: 50%;
  }
}

@media (max-width: 767px) {
  .event_box {
    padding-bottom: 20px;
  }
  .event_wrapper .mt70 {
    margin-top: 35px!important;
  }
  .event_box h3 {
    text-shadow: 2px 2px 0px #fff, -2px -2px 0px #fff, -2px 2px 0px #fff, 2px -2px 0px #fff, 2px 0px 0px #fff, -2px 0px 0px #fff, 0px 2px 0px #fff, 0px -2px 0px #fff;
  }
  .event_contents_box h4::before {
    content: '';
    position: absolute;
    left: max(-4.5vw, -30px);
    top: 2px;
    bottom: 0;
    width: min(3vw, 30px);
    height: min(3vw, 30px);
    background: #eb0081;
    margin: auto;
    border-radius: 50%;
  }
}
/*** event.php css end ***/

/*** racerlist.php css ***/
.table_container.container{
  padding-top: 0;
}
.table_container.container p{
  font-size: min(3.2vw, 16px);
  font-weight: 500;
  margin: 0 auto 20px;
  text-align: center;
}
.table_container table td{
  white-space: nowrap;
}
/*** racerlist.php css End***/

/*** pamphlet.php css ***/
.pdf_wrap{
  padding-top: 0;
}
.pdf {
  box-sizing: border-box;
  max-width: 800px;
  margin: 0 auto;
  padding: 12px 10px;
}

.pdf:first-child {
  padding-top: 0;
}

.pdf p{
  font-size: min(4.3vw, 18px);
  margin: .8em auto 2em;
}

@media (max-width: 1199px) {
  .pdf {
    padding: 0 2%;
  }
  .pdf:last-child p {
    margin: .8em auto 1.2em;
  }
}
@media (max-width: 1199px) {
  .pdf {
    padding: 0;
  }
}
/*** pamphlet.php css End***/


/*** quize.php css ***/

#quize .content{
  padding: 0;
}

.quize-page-inner {
  padding: 0;
  margin: 0 auto 100px;
}


@media (max-width: 1199px) {

}
@media (max-width: 767px) {
  #quize .page-inner{
    background-image: url(../images/quize/img_bg_quizehead_sp.jpg);
  }
  .quize-page-inner {
    margin: 0 auto 12vw;
  }
}

.quize_announce{
  font-size: 21px;
  font-weight: 500;
  text-align: left;
}

.quize_announce .rank_head_title{
  display: block;
  margin: 20px auto 90px;
  text-align: center;
}

.quize_announce .rank_1,
.quize_announce .rank_2,
.quize_announce .rank_3,
.quize_announce .other{
  box-sizing: border-box;
  max-width: 994px;
  margin: auto;
}

.quize_announce .rank_2,
.quize_announce .rank_3{
  margin-top: 175px;
}

.quize_announce .rank_3{
  margin-bottom: 175px;
}

.rank_result{
  display: block;
  margin-bottom: 45px;
}

.comment_list{
  margin: 10px 0 0;
}
.comment_list p,
.other_comment_list p{
  margin: 0;
}

.comment_list li:nth-child(n+2){
  margin-top: 34px;
}

.other_comment_list li{
  display: flex;
  align-items: center;
  gap: 12px;
}

.other_comment_list li:nth-child(n+2){
  margin-top: 38px;
}
.other_comment_list li .yoso_num{
  display: flex;
  align-items: center;
  gap:10px;
  margin-right: 38px;
}

.other_comment_list li p{
  flex: 1 1 0;
  min-width: 0;
  line-height: 1.5;
  word-break: break-word;
}

.quize_announce .announce_head .comment_wrap .comment_list + .note,
.quize_announce .announce_head .comment_wrap .other_comment_list + .note{
  font-size: 21px;
  font-weight: 500;
  margin-top: 60px;
  text-align: right;
}


@media (max-width: 1199px) {
  .quize_announce .rank_head_title{
    margin: 3vw auto 8vw;
    padding: 0 5%;
  }

  .quize_announce .rank_1,
  .quize_announce .rank_2,
  .quize_announce .rank_3,
  .quize_announce .other{
    box-sizing: border-box;
    max-width: 100%;
    padding: 0 6%;
  }

  .quize_announce .rank_2,
  .quize_announce .rank_3{
    margin-top: 100px;
  }

  .quize_announce .rank_3{
    margin-bottom: 100px;
  }

  .comment_list li:nth-child(n+2){
    margin-top: 23px;
  }

  .other_comment_list li .yoso_num{
    margin-right: 3vw;
  }
  .other_comment_list li .yoso_num img{
    width: calc((100% - 20px)/3);
    height: auto;
    flex: 0 0 auto;
  }

}

@media (max-width: 767px) {
  .quize_announce .rank_head_title{
    margin: 3vw auto 5vw;
    padding: 0 5%;
  }
  .comment_head_lead img{
    width: 60%;
  }

  .quize_announce .rank_2,
  .quize_announce .rank_3{
    margin-top: 20vw;
  }

  .quize_announce .rank_3{
    margin-bottom: 20vw;
  }

  .comment_list p,
  .other_comment_list p{
    font-size: 3.333vw;
  }
  .comment_list li:nth-child(n+2){
    margin-top: 2.6vw;    
  }

  .other_comment_list li .yoso_num{
    flex-basis: 34%;
  }
  .comment_list li p{
    line-height: 1.5;
  }

  .quize_announce .announce_head .comment_wrap .comment_list + .note,
  .quize_announce .announce_head .comment_wrap .other_comment_list + .note{
    font-size:3.333vw;
  }
}

.quize_announce + .quize_head {
  margin-top: 200px;  
}

.base_txt,
.base_txt_2{
  font-size: 26px;
  font-weight: 500;
  line-height: 2.6;
  letter-spacing: -1px;
  text-align: center;
}

.base_txt{
  margin: 70px auto 50px;

}

.base_txt_2{
  margin: 70px auto 90px;
}

.pickup_txt{
  font-size: 31px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: -1px;
  text-align: center;
  margin: 0 auto 80px;
}

.pickup_txt .txt_bold_pink_l{
  color: #e92d6a;
  font-size: 43px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.pickup_txt .txt_bold_pink_m{
  color: #e92d6a;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}

.quize_info .btn_yoso{
  margin: 10px auto 90px;
}

.quize_info .btn_yoso a{
  transition: all .2s;
}
.quize_info .btn_yoso a:hover{
  opacity: .6;
}

.quize_info .notelist{
  margin: 0 auto 130px;
  max-width: 1080px;
}

.quize_info .notelist li p{
  font-size: 23px;
  font-weight: 500;
  text-align: left;
  line-height: 1.4;
  letter-spacing: -1px;
}

.quize_schedule{
  box-sizing: border-box;
  padding: 0 0 100px;
  max-width: 1080px;
  margin: auto;

}

.quize_schedule .quize_schedule_lead{
  display: block;
  text-align: center;
}

.quize_schedule .schedule_wrap{
  margin: 74px auto 0;
}

.quize_schedule .schedule_wrap li{
  position: relative;
}

.quize_schedule .schedule_wrap li .yoso_end{
  position: absolute;
  top: .8em;
  left: .4em;
  right:0;
  margin: auto;
  color: red;
  font-size: 100px;
  font-weight: 600;
  text-shadow:
    8px 0 white,
   -8px 0 white,
    0 8px white,
    0 -8px white,
    8px 8px white,
   -8px -8px white,
    8px -8px white,
   -8px 8px white;
}

.quize_schedule .schedule_wrap li + li{
  margin-top: 60px;
}

.quize_schedule .schedule_wrap li .yoso_title{
  background-color: #06c7ea;
  color: #ffffff;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  line-height: 1.5;
  margin: 0 0 38px;
  padding-bottom: .1em;
}

.quize_schedule .schedule_wrap li .date_wrap{
  font-size: 31px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.quize_schedule .schedule_wrap li .date_wrap.disable p{
    user-select: none;     /* テキスト選択不可 */
  -webkit-user-select: none; /* Safari対応 */
  -moz-user-select: none;    /* Firefox対応 */
  -ms-user-select: none;     /* 古いIE/Edge対応 */
}
.quize_schedule .schedule_wrap li .date_wrap + .date_wrap{
  margin-top:  15px;
}

.quize_schedule .schedule_wrap li .date_wrap .yoso_item{
  color: #06c7ea;
  border: 2px solid #06c7ea;
  text-align: center;
  padding: 0 2px 5px;
  width: 220px;
  margin: 0 1em 0 0;
}

.quize_schedule .schedule_wrap li .date_wrap .yoso_date{
  font-weight: 500;
  margin: 0;
  text-align: left;
}

@media (max-width: 1199px) {
  .quize_announce + .quize_head {
    margin-top: 100px;  
  }

  .base_txt, .base_txt_2{
    font-size: 2.76vw;
    line-height: 2.4;
  }
  .base_txt{
    margin: 6vw auto 3vw;
  }
  .base_txt_2{
    margin: 6vw auto;
  }

  .pickup_txt{
    font-size: 3.7333vw;
    margin: 0 auto 8vw;
  }

  .pickup_txt .txt_bold_pink_l{
    font-size: 5vw;
    padding: 0 .1em;
    line-height: 1.8;
  }

  .pickup_txt .txt_bold_pink_m{
    font-size: 3.333vw;
    font-weight: 500;
  }

  .quize_info .notelist{
    box-sizing: border-box;
    padding: 0 5%;
  }

  .quize_info .btn_yoso{
    margin: 0 auto 10vw;
    width: 50%;
  }

  .quize_schedule{
    padding: 0 0 12vw;
  }

  .quize_schedule .schedule_wrap li .date_wrap .yoso_item{
    min-width: 220px;
  }

  .quize_schedule .schedule_wrap li .yoso_end{
    font-size: 10vw;
    top: .7em;
    left: 1.2em;
  }
  .quize_schedule .quize_schedule_lead{
    width: 80%;
    margin: auto;
  }

  .quize_schedule .schedule_wrap{
    box-sizing: border-box;
    margin-top: 5vw;
    padding: 0 5%;
  }

  .quize_schedule .schedule_wrap li .yoso_title{
    font-size: min(3.2vw, 40px);
    font-weight: 500;
    text-align: center;
    width: 100%;
    line-height: 1.5;
    margin: 0 0 .5em;
    padding: .2em 0;
  }

  .quize_schedule .schedule_wrap li .date_wrap .yoso_item{
    font-size: 2.8vw;
    min-width: 20%;
    width: unset;
    padding: .1em 0 0;

  }

  .quize_schedule .schedule_wrap li .date_wrap .yoso_date{
    font-size: 2.8vw;
    letter-spacing: -1px;
  }
}

@media (max-width: 767px) {
  .quize_head{
    padding-top: 50px;;
  }
  .quize_head picture{
    padding: 0 5%;
  }
  .quize_head picture img{
    width: 90%;
  }

  .quize_info .notelist{
    margin: 0 auto 12vw;
  }

  .quize_schedule .schedule_wrap li + li{
    margin-top: 10vw;
  }

  .quize_info .notelist li p{
    font-size: 3.7333vw;
    line-height: 1.8;
    margin: 2vw 0;
  }

  .quize_schedule .schedule_wrap li .yoso_title{
    margin: 0 0 3vw;
    font-size: 3.733vw;
    padding: .2em 0;
  }

  .quize_schedule .schedule_wrap li .yoso_end{
    font-size: 11vw;
    top: 1.1em;
    left: 1.75em;
  }

  .quize_schedule .schedule_wrap li .date_wrap + .date_wrap{
    margin-top: 4vw;
  }
  .quize_schedule .schedule_wrap li .date_wrap .yoso_item{
    font-size: 3.7333vw;
  }

  .quize_schedule .schedule_wrap li .date_wrap .yoso_date{
    font-size: 3.7333vw;
  }

  .base_txt, .base_txt_2{
    font-size: 3.7333vw;
    line-height: 2.4;
  }
    .base_txt{
    margin: 6vw auto 8vw;
  }
}

/*** quize.php css End***/

.slick-slide {
  box-sizing: border-box;
}
.slider {
  width: 100%;
  overflow: visible;
}

.slick-list .draggable{
max-height: 30px!important;
}

.pickup_item1,
.pickup_item2 {
  text-align: center;
  margin-top: 60px;
} 
.pickup_item1 img:hover,
.pickup_item2 img:hover{
  opacity: .7;
} 

@media (max-width: 1199px) {
  .pickup_item1,
  .pickup_item2 {
  text-align: center;
  margin-top: 6vw;
} 
  .pickup_item1 a,
  .pickup_item2 a {
 width: 100%;
 display: inline-block;
} 
  .pickup_item1 img,
  .pickup_item2 img {
 width: 100%;
} 
}

.grayout-pickup {
  pointer-events: none;
}
.grayout-pickup:hover {
  opacity: 1;
}
.grayout-img {
  filter: grayscale(1);
  pointer-events: none;
}

.head_sp_flex {
  display: inline-block;
}

@media (max-width: 767px) {
  .head_sp_flex {
  display: none;
}
}
@media (max-width: 767px){
.head-d-none-tb {
  display: none;
}
}

.head-d-none-sp {
  display: none;
}

@media (max-width: 767px) {
  .head-d-none-sp {
    display: inline-block;
  }
}

 .head_ul_sp li a:hover {
    opacity: 0.7;
}

@media (max-width: 1199px){
#tv_schedule p.kousin {
    font-size: 28px;
    
  }
}

.pickup_item_gray {
  filter: grayscale(1);
  pointer-events: none;
}