*,
*::before,
*::after{
  box-sizing:border-box;
  margin: 0;
  padding: 0;
}
:root {
  --color-orange: #ff6400;
  --color-blue: #2b4c8e;
  --color-yellow: #ffe65a;
  --color-black: #000000;
  --color-white: #ffffff;
}
:root{
  --font-jp:
    'Noto Sans JP',
    'Hiragino Sans',
    'Yu Gothic',
    'Meiryo',
    sans-serif;

  --font-en:
    'Montserrat',
    'Helvetica Neue',
    'Arial',
    sans-serif;

  --font-impact:
    'Dela Gothic One',
    'Noto Sans JP',
    sans-serif;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body{
  margin: 0;
  background: url(../img/bg_pc.png) repeat center center;
  background-color: #97E0FF;
  color: var(--color-black);
  font-family: var(--font-jp);
  font-weight: 500;
  line-height: 1.8;
}
img{
  display:block;
  width:100%;
  max-width: 100%;
  height:auto;
}
a{
  color:inherit;
  text-decoration:none;
  transition: opacity 0.3s ease;
}
a:hover {
  opacity: 0.7;
}
ul{
  margin:0;
  padding:0;
  list-style:none;
}
.pc_content{
  display: none;
}
/* =============================================
   PC (1080px以上)
   ============================================= */
@media screen and (min-width: 1080px) {
  .pc_content{
    width: calc(50% - 300px);
    position: fixed;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  /* PC左 */
  .pc_content_left{
    display: flex;
    left: 0;
    background: url(../img/fv_left.png)no-repeat center bottom / contain, url(../img/bg_pc.png) no-repeat center / cover;
    overflow: hidden;
  }

  /* LOOP画像 */
 .diagonal_line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
  }
  .infinite_image_track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .infinite_image_track img {
    position: absolute;
    left: 0;
    width: 2427px;
    height: 36px;
    max-width: none; /* 小さくなるのを防止 */
    transform-origin: left center; /* 左端を軸にして回転 */
  }
  .infinite_image_track .loop01 {
    top: 200px;
    animation: flow_left_to_right_blue 30s linear infinite;
    z-index: 3;
  }
  .infinite_image_track .loop02 {
    top: 120px;
    animation: flow_left_to_right_white 50s linear infinite;
    z-index: 2;
  }
  @keyframes flow_left_to_right_blue {
    0% {
      transform: rotate(-39deg) translateX(-809px);
    }
    100% {
      transform: rotate(-39deg) translateX(0);
    }
  }
  @keyframes flow_left_to_right_white {
    0% {
      transform: rotate(-19deg) translateX(-809px);
    }
    100% {
      transform: rotate(-19deg) translateX(0);
    }
  }
  /* ここまでループ */

  .logo_icon{
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px; 
  }
  .logo_icon a img{
    width: 186px;
    height: auto;
  }

  /* PC右 */
  .pc_content_right{
    display: flex;
    right: 0;
    background: url(../img/fv_right.png)no-repeat center bottom / contain, url(../img/fv_pole.png)no-repeat center calc(50vh - 66.5px)  / 33px 500px, url(../img/bg_pc.png) no-repeat center / cover;
    padding: 0;
  }
  .pc_menu{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0;
    transform: translateY(16.66%);
  }

  /* 右メニュー */
  .vertical_menu {
    display: flex;
    flex-direction: column;
    gap: 2px; 
    align-items: center;
    width: 100%;
  }
  .menu_set {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .menu_btn {
    position: relative;
    display: inline-block;
    transition: transform 0.2s ease;
  }
  .menu_btn:hover{
    right:5px;
    opacity:1;
  }
  .menu_img {
    display: block;
    margin: 0 auto;
  }
  .menu_btn span{
    font-family: var(--font-impact);
    font-weight: 400;
    font-size: 22px;
    letter-spacing: -0.1px;
    color: var(--color-white);
    text-align: center;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .item_01 .menu_img { width: 233px; }
  .item_02 .menu_img { width: 168px; }
  .item_03 .menu_img { width: 181px; }
  .item_04 .menu_img { width: 181px; }
  .item_05 .menu_img { width: 168px; }
  .item_06 .menu_img { width: 130px; }
  .item_03 .menu_btn span,
  .item_04 .menu_btn span,
  .item_05 .menu_btn span,
  .item_06 .menu_btn span {
    color: var(--color-black);
  }
  .item_01 .menu_btn { transform: rotate(0deg); }
  .item_02 .menu_btn { transform: rotate(-2deg); } 
  .item_03 .menu_btn { transform: rotate(2deg); }
  .item_04 .menu_btn { transform: rotate(-1.7deg); }
  .item_05 .menu_btn { transform: rotate(2deg); }
  .item_06 .menu_btn { transform: rotate(0deg); }
  .item_01 .menu_btn span,
  .item_03 .menu_btn span,
  .item_05 .menu_btn span{
    left: 53%;
  }
  .item_02 .menu_btn span,
  .item_04 .menu_btn span,
  .item_06 .menu_btn span{
    left: 47%;
  }
  /* FAQボタン */
  .btn_list {
    display: flex;
    justify-content: center;
    gap: 2.4%;
    align-items: center; 
    position: absolute;
    bottom: 37px;
    padding: 0;
    margin: 0 auto;
    left: 0;
    right: 0;
  }
  .btn_list li a {
    position: relative;
    display: block;
    max-width: 154px;
    width: 100%;
  }
  .btn_list li a:hover{
    opacity: 1;
    bottom: -3px;
  }
  .btn_list img{
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
  }
  .btn_list span{
    font-family: var(--font-en);
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    color: var(--color-white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    box-sizing: border-box;
  }
  .btn_list li:last-child  span{
    font-size: 11px;
  }
  @media screen and (max-width: 1200px) {
    .btn_list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    bottom: 12px;
    }
  }
}
/* 600〜 */
@media (min-width: 600px) {
  .sp_content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    box-shadow:
      -8px 0 14px rgba(0,0,0,0.1),
       8px 0 14px rgba(0,0,0,0.1);
  }
}
/* =============================================
   main contents（〜599px）
   ============================================= */
/* ハンバーガーメニュー */
.sp_menu_toggle{
  position: fixed;
  top: 8px; 
  right: 8px;
  z-index: 9999;
  width: clamp(58px, 15vw, 72px); 
  height: clamp(58px, 15vw, 72px);
  background: var(--color-orange);
  border: 2px solid var(--color-black);
  border-radius: 14px; 
  box-shadow: 2px 2px 0 var(--color-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .3s;
}
.sp_menu_toggle{
  opacity: 0;
  pointer-events: none;
}
.sp_menu_toggle.show{
  opacity: 1;
  pointer-events: auto;
}
.sp_menu_toggle .line{
  display: block;
  width: clamp(22px, 5.8vw, 28px);
  height: 3px; 
  background: var(--color-black);
  border-radius: 10px;
  transition: .3s;
}
.sp_menu_toggle .line1{
  margin-bottom: 6px;
}
.sp_menu_toggle .menu_text{
  font-family: var(--font-impact);
  font-weight: 400;
  margin-top: 7px; 
  font-size: clamp(.75rem, 2.4vw, .95rem);
  line-height: 1;
  letter-spacing: .02em;
  color: var(--color-black);
}
.sp_menu_toggle.active .line1{
  transform:
    translateY(4.5px) 
    rotate(45deg);
}
.sp_menu_toggle.active .line2{
  transform:
    translateY(-4.5px)
    rotate(-45deg);
}
/* ハンバーガー開いた時 */
.sp_menu_overlay{
  position: fixed;
  inset: 0;
  z-index: 9990;
  background: var(--color-yellow);
  opacity: 0;
  visibility: hidden;
  transition: .35s;
}
.sp_menu_overlay.active{
  opacity: 1;
  visibility: visible;
}
.sp_menu_nav{
  padding: calc(clamp(58px, 15vw, 72px) + 16px) 
  clamp(16px, 4vw, 28px)
   16px; 
   width: min(100% - clamp(24px, 6vw, 72px), 720px);
  margin-inline: auto;
}
.sp_vertical_menu,
.sp_btn_list{
  list-style: none;
}
.sp_vertical_menu li + li,
.sp_btn_list li + li{
  margin-top:  clamp(10px, 2vw, 18px);
}
.sp_menu_btn{
  position: relative;
  width: 100%;
  min-height: clamp(48px, 13vw, 58px);
  background: var(--color-white);
  border: 2.5px solid var(--color-black);
  border-radius: 14px;
  box-shadow: 3px 3px 0 var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: .2s;
}
.sp_menu_btn span{
  font-family: var(--font-impact);
  font-size: clamp(1.1rem, 4.4vw, 1.5rem); 
  font-weight: 400;
  line-height: 1; 
  color: var(--color-black);
}
/* FAQ */
.sp_btn_list{
  margin-top: 16px;
}
.sp_sub_btn{
  width: 100%;
  min-height: clamp(44px, 12vw, 54px);
  background: var(--color-blue);
  border:  2px solid var(--color-black);
  border-radius: 14px;
  box-shadow: 3px 3px 0 var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}
.sp_sub_btn span{
  font-family: var(--font-impact);
  font-weight: 400;
  font-size: clamp(.8rem, 3.2vw, 1.0rem);
  line-height: 1.15;
  color: var(--color-white);
}
.sp_menu_btn:active,
.sp_sub_btn:active,
.sp_menu_toggle:active{
  opacity: 1;
  transform: translate(3px,3px);
  box-shadow: 0px 0px 0 var(--color-black);
}
/* PCでは消す */
@media screen and (min-width: 1080px){
  .sp_menu_toggle,
  .sp_menu_overlay{
    display: none;
  }}
/* タブレット */
@media (min-width: 768px) and (max-width: 1079px){
  .sp_menu_toggle{
    width: clamp(72px, 10vw, 88px);
    height: clamp(72px, 10vw, 88px);
    top: 16px;
    right: 3vw;
  }
  .sp_menu_toggle .line{
    width: 32px;
  }
  .sp_menu_toggle .menu_text{
    margin-top: 9px;
  }   
  .sp_menu_nav{
    padding-top: calc(clamp(72px, 11vw, 90px) + 24px);
  }
}
/* ここまでハンバーガー */

.sp_content{
  background: url(../img/bg_sp.png) repeat center / contain;
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}
.section_padding{
  padding-top: 48px;
  padding-bottom: 48px;
}
.wth_600{
  margin-left: auto;
  margin-right: auto;
  padding-left: 38px;
  padding-right: 38px;
  width: 100%;
  position: relative; 
}
@media (max-width: 480px){
  .wth_600{
  padding-left: 24px;
  padding-right: 24px;
  }
}
h2{
  font-family: var(--font-impact);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.6;
}
@media (max-width: 480px){
  h2{
  font-size: 28px;
  }
}
.fw_600{font-weight: 600;}/* semibold */
.fw_700{font-weight: 700;}/* bold */
.fw_900{font-weight: 900;}/* black */
/* bodyは500medium */
.ls_02{letter-spacing: -0.02em;}
.ls_05{letter-spacing: -0.05em;}
/* アニメーション */
.swing {
  animation-name: decoSwing;
  animation-duration: 2400ms;
  animation-timing-function: steps(2, end);
  animation-iteration-count: infinite;
}
@keyframes decoSwing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(18deg);
  }
}
/* ===================  fv  ==================== */
#fv{
  background: url(../img/bg_fv02.png)no-repeat center bottom / contain, url(../img/bg_sp.png)no-repeat center / cover;
  position: relative;
  overflow: hidden;
}
.fv_column{
  height: 100vh;/* 古いブラウザ対策 */
  height: 100svh;/* 優先（URLバーの表示分差し引き） */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 10%;
  position: relative;
  z-index: 10;
}
.fv_column img{
  max-width: 360px;
  height: auto;
}
.fv_column h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -30px;
  gap: 14px; 
  z-index: 2;
}
.fv_lead{
  transform: translateX(20px);/* キャッチ右へ */
}
@media (max-width: 480px){
  .fv_lead{
  transform: translateX(12px);
}
}
.fv_bg_item {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.fv_car {
  width: 31.66vw;
  height: auto;
  right: -35px;
  bottom: 33%;
  animation-delay: 1s;
}
.fv_tree {
  width: 22.33vw;
  height: auto;
  left: 5px;
  bottom: 22%;
  animation-delay: 1.3s;
}
.fv_clothes {
  width: 39.33vw;
  height: auto;
  right: 5px;
  bottom: 0;
  animation-delay: 1.6s;
}
@media (min-width: 600px) {
  .fv_car {
    width: 190px;
    right: -35px;
  }
  .fv_tree {
    width: 134px;
    left: 5px;
  }
  .fv_clothes {
    width: 236px;
    right: 5px;
  }
}
/* ===================  about  ==================== */
.section_bg{
  background: url(../img/bg_section.png) no-repeat center top / cover;
}
.about_box {
  position: relative;
  background-color: var(--color-white);
  padding-top: 18px;
  padding-bottom: 34px;
  padding-left: 32px;
  padding-right: 32px;
  border-radius: 9px;
  box-shadow: 0 0 0 10px var(--color-blue);
}
.about_box::before {
  content: "";
  position: absolute;
  top: -19px;
  height: 19px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  background-color: var(--color-blue);
  border-radius: 8px 8px 0 0;
}
.about_box::after {
  content: "";
  position: absolute;
  bottom: -45px;
  height: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  background-color: var(--color-blue);
  border-radius: 0 0 8px 8px;
}
.about_icon{
  position: absolute;
  top: -20px;
  right: 12%;
  width: 74px;
  height: auto;
  transform: rotate(7deg);
  pointer-events: none;
}
@media (max-width: 480px){
  .about_icon{width: 60px; }}
@media (max-width: 400px){
  .about_icon{top: -18px; right: 4%; width: 54px; }}

.about_title{
  color: var(--color-orange);
  text-align: center;
  margin-bottom: 12px;
}
@media (max-width: 480px){
  .about_box {
    padding-top: 12px;
    padding-bottom: 21px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .about_title{
    margin-bottom: 8px;
  }
  .about_text{
    font-size: 15px;
  }
}
/* ===================  live  ==================== */
.live_title{
  width: 174px;
  height: auto;
  text-align: left;
  margin-bottom: 8px;
}
@media (max-width: 480px){
  .live_title{
    width: 150px;
    margin-left: -10px;
  }
}
@media (max-width: 380px){
    .live_title{
    width: 122px;
  }
}
.live_box{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 32px;
}
.live_box:not(:last-child){
  margin-bottom: 32px;
}
.day_ttl{
  display: flex;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 4px;
}
.live_day{
  font-family: var(--font-impact);
  font-weight: 400;
  font-size: 24px;
  color: var(--color-white);
  -webkit-text-stroke: 0.7px var(--color-black);
  text-shadow: 2px 2px 0 var(--color-black);
  line-height: 1;
}
.tight_y{
  margin-left: -0.24em;
}
.time-range{
  font-family: var(--font-en);
  font-size: 20px;
  line-height: 1;
}
@media (max-width: 480px){
  .day_ttl{
    gap: 10px;
    margin-bottom: 2px;
  }
  .live_day{
    font-size: 21px;
    text-shadow: 1.5px 1.5px 0 var(--color-black);
  }
  .time-range{
    font-size: 18px;
  }
}
.ytube_box{
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #d9d9d9;
  border: 6px solid var(--color-black);
  box-shadow: 6px 6px 0 var(--color-black);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 480px){
  .ytube_box{
    border: 5px solid var(--color-black);
    box-shadow: 5px 6px 0 var(--color-black);
    border-radius: 10px;
    }
}
/* 赤丸 */
.ytube_box::after{
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ff0000;
  border: 6px solid var(--color-black);
}
/* 再生三角 */
.ytube_box::before{
  content: "";
  position: absolute;
  z-index: 2;
  right: 7px;
  bottom: 9px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 20px solid var(--color-white);
}
@media (max-width: 480px){
  .ytube_box::after{
    right: -18px;
    bottom: -18px;
    width: 64px;
    height: 64px;
    border: 5px solid var(--color-black);
  }
  .ytube_box::before{
    right: 4px;
    bottom: 6px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 16px solid var(--color-white);
  }
}
.ytube_text{
  font-family: var(--font-impact);
  font-weight: 400;
  font-size: 32px;
  color: #5b5b5b;
  line-height: 1;
}
@media (max-width: 480px){
  .ytube_text{
    font-size: 28px;
  }
}
@media (max-width: 380px) {
    .ytube_text {
        font-size: 20px;
    }
}
/* ===================  ticket  ==================== */
.section_padding_ticket{
  padding-top: 0;
  padding-bottom: 32px;
}
.ticket_title{
  width: 246px;
  height: auto;
  margin-left: auto;
  margin-bottom: 8px;
}
@media (max-width: 480px){
  .ticket_title{
    width: 212px;
    margin-right: -14px;
  }
}
@media (max-width: 380px){
    .ticket_title{
    width: 172px;
  }
}
.ticket_box{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: -3px;
}
/* .ticket_box img{
  padding-left: 32px;
  padding-right: 32px;
} */
.ticket_description{
  font-family: var(--font-jp);
  font-size: 12px;
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 16px;
}
.btn{
  width: clamp(240px, 44vw, 290px);
  height: 66px;
  background: var(--color-orange);
  border: 2px solid var(--color-black);
  box-shadow: 1px 2px 0 var(--color-black);
  border-radius: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
}
.btn:hover{
  opacity: 1;
  bottom: -3px;
  box-shadow: 0 0 0 var(--color-black);
}
.btn_text{
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: -0.02em;
  line-height: 1;
}
@media (max-width: 480px){
  .btn{
    width: 240px;
  }
}
/* ===================  inazuma mate  ==================== */
.inazumamate_title{
  width: 246px;
  height: auto;
  margin-right: auto;
  z-index: 2;
  margin-bottom: 8px;
}
@media (max-width: 480px){
  .inazumamate_title{
    width: 212px;
    margin-left: -14px;
  }
}
@media (max-width: 380px){
    .inazumamate_title{
    width: 172px;
  }
}
.inazumamate_box{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: -3px;
  background: var(--color-white);
  border: 4px solid var(--color-black);
  box-shadow: 5px 5px 0 var(--color-black);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  z-index: 3;
  position: relative;
}
.inazumamate_deco{
  position: absolute;
  top: 0;
  right: 50px;
  width: 94px;
  height: 94px;
  transform: translate(50%, -50%);
  pointer-events: none;
}
@media (max-width: 480px){
  .inazumamate_deco{
    right: 40px;
    width: 80px;
    height: 80px;
  }
}
.inazumamate_title_en{
  font-family: var(--font-impact);
  font-weight: 400;
  color: var(--color-blue);
  font-size: 40px;
  padding-top: 24px;
  line-height: 1;
  padding-left: 20px;
  padding-right: 20px;
}
.inazumamate_description{
  font-family: var(--font-jp);
  font-size: 15px;
  line-height: 1.2;
  margin-top: 16px;
  margin-bottom: 6px;
}
.inazumamate_description span{
  font-family: var(--font-impact);
  font-weight: 400;
  font-size: 32px;
  color: var(--color-black);
  text-decoration: underline;
  text-decoration-color: var(--color-orange);
  text-decoration-thickness: 10px;
  text-underline-offset: -3px;
  text-decoration-skip-ink: none;
}
.inazumamate_notice{
  font-family: var(--font-jp);
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.inazumamate_box .btn{
  margin-bottom: 30px;
}
@media (max-width: 480px){
  .inazumamate_title_en{
    font-size: 32px;
  }
  .inazumamate_description{
    font-size: 14px;
  }
  .inazumamate_description span{
    font-size: 30px;
  }
  .inazumamate_notice{
    font-size: 11px;
  }
}
@media (max-width: 380px){
  .inazumamate_box .btn{
    width: 220px;
  }
}
/* ===================  lottery  ==================== */
/*   lottery loop画像   */
#lottery{
  position: relative;
  overflow: hidden;
}
.lottery_diagonal_line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 36px;
  pointer-events: none;
  z-index: 10;
}
.lottery_diagonal_line:first-of-type {
  top: 0;
}
.lottery_diagonal_line:last-of-type {
  bottom: -10px;
}
.lottery_diagonal_line img {
  position: absolute;
  left: 0;
  width: 2427px;
  height: 36px;
  max-width: none;
  transform-origin: left center;
}
.lottery_diagonal_line img.loop01 {
  animation: lottery_flow_right 25s linear infinite;
}
.lottery_diagonal_line img.loop02 {
  animation: lottery_flow_left 25s linear infinite;
}
@keyframes lottery_flow_right {
  0% {
    transform: rotate(-1.7deg) translateX(-809px);
  }
  100% {
    transform: rotate(-1.7deg) translateX(0);
  }
}
@keyframes lottery_flow_left {
  0% {
    transform: rotate(1.7deg) translateX(-809px);
  }
  100% {
    transform: rotate(1.7deg) translateX(0);
  }
}

.lottery_bg{
  background-color: var(--color-yellow);
  position: relative;
  z-index: 10;
  overflow: visible !important;
}
.lottery_box{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 5;
}
.lottery_title{
  font-family: var(--font-impact);
  font-size: 40px;
  color: var(--color-orange);
  font-weight: 400;
  line-height: 1;
  margin-top: 14px;
  margin-bottom: 32px;
}
.lottery_text{
  font-family: var(--font-jp);
  font-size: 18px;
  line-height: 160%;
  margin-top: 16px;
  margin-bottom: 16px;
}
.lottery_box .btn{
  width: 340px;
}
@media (max-width: 480px){
  .lottery_title{
    font-size: 32px;
  }
  .lottery_text{
    font-size: 15px;
  }
  .lottery_box .btn{
  width: 290px;
}
}
/* ===================  media  ==================== */
.media_title{
  font-family: var(--font-impact);
  font-size: 40px;
  color: var(--color-black);
  font-weight: 400;
  line-height: 1;
  margin-top: 14px;
  margin-bottom: 32px;
  text-align: center;
}
.media_list{
  padding-left: clamp(0px, 4vw, 32px);
  padding-right: clamp(0px, 4vw, 32px);
}
.media_list >ul{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 5px;
  justify-items: center;
}
.media_list >ul>li{
  margin-bottom: 24px;
}
.media_list >ul>li img{
  width: clamp(119px, 22vw, 138px);
  height: auto;
}
.media_list >ul>li>ul{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}
.media_list >ul>li>ul>li>a img{
  width: clamp(24px, 2.4vw, 28px);
  height: auto;
}

@media (max-width: 480px){
  .media_title{
    font-size: 32px;
  }
} 
/* ===================  footer  ==================== */
.footer_bg{
  background: url(../img/bg-footer.png) no-repeat center /cover;
}
.footer_box{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.5;
  color: var(--color-white);
}
.footer_logo{
  width: 282px;
  height: auto;
  margin-bottom: 28px;
}
.footer_inner{
  margin-bottom: 24px;
}
.footer_iinkai{
  font-family: var(--font-jp);
  font-size: 14px;
  margin-bottom: 12px;
}
.footer_block{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2px;
}
.footer_icon15{
  width: 15px !important;
  height: 15px !important;
  max-width: 15px !important;
  flex-shrink: 0;
  margin-right: 2px;
}
.footer_icon12{
  width: 12px !important;
  height: 12px !important;
  max-width: 12px !important;
  flex-shrink: 0;
  margin-right: 2px;
}
.footer_icon_mail{
  margin-right: 4px;
}
.footer_number{
  font-family: var(--font-en);
  font-size: 15px;
}
.footer_number_sameday, .footer_number_inquiry{
  font-family: var(--font-en);
  font-size: 14px;
}
.footer_time{
  font-family: var(--font-jp);
  font-size: 12px;
  opacity: 0.9;
}
.footer_address{
  font-family: var(--font-en);
  font-size: 15px;
  line-height: 1.2;
}
.footer_address_inquiry{
  font-family: var(--font-en);
  font-size: 14px;
}
.footer_sameday, .footer_inquiry{
  font-family: var(--font-jp);
  font-size: 12px;
  background-color: var(--color-white);
  border-radius: 4px;
  width: 166px;
  height: 30px;
  margin: 0 auto;
  color: var(--color-black);
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_notice{
  font-family: var(--font-jp);
  font-size: 11px;
  line-height: 1.6;
}
.footer_company{
  font-family: var(--font-jp);
  font-size: 12px;
  line-height: 1.6;
  margin-top: 4px;
}
@media (max-width: 450px){
  .footer_logo {
    width: 220px;
    margin-bottom: 20px;
  }
  .footer_inner {
    margin-bottom: 20px;
  }
  .footer_iinkai {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .footer_number {
    font-size: 13px;
  }
  .footer_number_sameday, 
  .footer_number_inquiry,
  .footer_address_inquiry {
    font-size: 12px;
  }
  .footer_address {
    font-size: 13px;
    line-height: 1.3;
  }
  .footer_time,
  .footer_company {
    font-size: 11px; 
  }
  .footer_sameday, 
  .footer_inquiry {
    font-size: 11px;
    width: 145px;
    height: 26px;
    margin-bottom: 6px;
  }
  .footer_icon15 {
    width: 13px !important;
    height: 13px !important;
    max-width: 13px !important;
  }
  .footer_icon12 {
    width: 10px !important;
    height: 10px !important;
    max-width: 10px !important;
  }
  .footer_notice {
    font-size: 10px;
  }
}

/* FAQボタン */
.footer_btn_list{
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  gap: 2.4%;
  align-items: center; 
  margin: 0 auto;
  margin-right: -20px;
  margin-left: -20px;
}
.footer_btn_list li a {
  position: relative;
  display: block;
  width: 160px;
  height: auto;
}
.footer_btn_list li a:hover{
  opacity: 1;
  bottom: -2px;
}
.footer_btn_list li a img{
  width: 100%;
  height: auto;
  display: block;
}
.footer_btn_list span{
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
  color: var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
}
.footer_btn_list li:last-child span{
  font-size: 11px;
}
@media (max-width: 350px){
  .footer_btn_list li a {
    width: 148px;
  }
  .footer_btn_list span{
    width: 110px;
  }
}

.footer_copy{
  display: block;
  font-family: var(--font-en);
  margin-top: 24px;
  font-size: 11px;
  line-height: 1;
  text-align: center;
  color: var(--color-white);
}
/* ===================  追従ボタン  ==================== */
.sp_fixed_ticket{
  display: none; /* PCでは非表示 */
}
@media screen and (max-width: 1080px){
  .sp_fixed_ticket{
    display: block;
    position: fixed;
    left: 0px;
    bottom: 20px;
    width: 28vw; 
    min-width: 90px;/* 小さすぎ防止 */
    max-width: 120px; /* 大きくなりすぎ防止 */
    z-index: 8000;
  }
  .sp_fixed_ticket_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: 0 2px 0 7px;
    background: var(--color-blue);
    color: var(--color-white);
    border: 2.5px solid var(--color-white);
    border-left: none;
    border-radius: 0 14px 14px 0;
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    box-shadow: 2px 2px 0 var(--color-black);
    gap: 2px;
  }
  .sp_fixed_ticket_btn:active{  
    transform: translate(2px, 2px);
    box-shadow: 0 0 0 var(--color-black);
  }
  .btn_arrow {
    width: 18px;
    height: 18px;
    stroke-width: 3.5px;
  }
  .sp_fixed_ticket{
  opacity: 0;
  pointer-events: none;
  transition: .3s;
  transform: translateY(10px);
  }
  .sp_fixed_ticket.show{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  @media (min-width: 768px) and (max-width: 1079px){
    .sp_fixed_ticket{
      width: clamp(160px, 20vw, 200px); 
      max-width: none;
    }
    .sp_fixed_ticket_btn{
      height: clamp(72px, 10vw, 88px); 
      font-size: clamp(14px, 1.8vw, 16px);
      padding: 0 10px 0 15px;
      border-radius: 0 18px 18px 0; 
      gap: 6px;
    }
    .btn_arrow {
      width: clamp(18px, 2.2vw, 22px);
      height: clamp(18px, 2.2vw, 22px);
      stroke-width: 4px;
    }
  }
}
/* =============================================
   下層　共通
   ============================================= */
#sub_logo .logo_head{
  background: linear-gradient(
    -90deg,
    #4482BC 0%,
    #2B4C8E 100%
  );
  padding-top: 20px;
  padding-bottom: 20px;
}
#sub_logo .logo_head a{
  display: block;
  width: 180px;
  position: relative;
  z-index: 3;
}
#sub_logo .logo_head a img{
  padding-left: 20px;
  width: 100%;
}
#sub_pagettl h1{
  font-family: var(--font-impact);
  color: var(--color-blue);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 430px) {
  #sub_logo .logo_head a{
    width: 140px;
  }
  #sub_pagettl h1{
    font-size: 34px;
  }
}
/* =============================================
   下層　FAQページ
   ============================================= */
.faq_bg{
  background-color: var(--color-white);
}
#sect_faq{
  padding: 0;
  padding-bottom: 80px;
}
#sect_faq .faq_dl dt{
  margin-top: 32px;
}
#sect_faq .faq_dl dt:first-child{
  margin-top: 0;
}
#sect_faq .faq_dl dt h2{
  font-family: var(--font-jp);
  color: var(--color-black);
  font-weight: 700;
  display: flex;
  align-items: flex-start;
  font-size: 20px;
  line-height: 1.5;
  text-decoration: underline;
  text-decoration-color: var(--color-orange);
  text-decoration-thickness: 8px;
  text-decoration-skip-ink: none;
}
#sect_faq .faq_dl dd .faq_txt{
  display: flex;
  align-items: flex-start;
  padding: 20px 8px 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-black);
}

/* FOR OVERSEAS */
#faq_en{
  padding-bottom: 80px;
}
#faq_en .faq_dl dt{
  margin-bottom: 32px;
}
#faq_en .faq_dl dt h2{
  font-family: var(--font-impact);
  color: var(--color-blue);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}
#faq_en .faq_dl .faq_mid{
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-white);
  background-color: var(--color-blue);
  margin-top: 32px;
  padding: 7px;
  padding-left: 12px;
}
#faq_en .faq_dl .faq_txt{
  display: block;
  padding: 12px 8px 0;
  font-size: 16px;
  color: var(--color-black);
  word-break: break-word;
}
#faq_en .faq_dl .faq_txt a{
  color: var(--color-blue);
  text-decoration: underline;
  word-break: break-all;
}

@media screen and (max-width: 430px) {
  #sect_faq .faq_dl dt h2{
    font-size: 15px;
    text-decoration-thickness: 5px;
  }
  #sect_faq .faq_dl dd + dt {
    margin-top: 24px;
  }
  #sect_faq .faq_dl dd .faq_txt{
    font-size: 13px;
    padding: 16px 4px 0;
  }
  #faq_en{
    padding-bottom: 56px;
  }
  #faq_en .faq_dl dt h2{
    font-size: 26px;
  }
  #faq_en .faq_dl .faq_mid{
    font-size: 16px;
    line-height: 1.5;
    margin-top: 24px;
    text-decoration-thickness: 5px;
    text-underline-offset: 3px;
  }
  #faq_en .faq_dl .faq_txt{
    font-size: 14px;
    padding: 10px 4px 0;
  }
}