@charset "UTF-8";

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
}

body {
  color: #00a971;
  background: #fff;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}

img {
  max-width: 100%;
}

a,
a:visited {
  color: inherit;
  border: medium none;
  text-decoration: none;
}

a:hover {
  cursor: pointer;
  opacity: 0.7;
}

.show_pc {
  display: block;
}
.show_sp {
  display: none;
}

.wrapper {
  position: relative;
  min-height: 100vh;
}

.container {
  margin: 0 auto;
  width: 1200px;
}

@media screen and (max-width: 768px) {
  .show_pc {
    display: none;
  }
  .show_sp {
    display: block;
  }

  .container {
    width: 88%;
  }
}

/* アニメーション
---------------------------------------------------------------- */

.animation_updown {
  -webkit-animation: updown 2s ease-in-out infinite;
  animation: updown 2s ease-in-out infinite;
}

.animation_updown.third {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.animation_updown.second {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

@-webkit-keyframes updown {
  0% {
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
  50% {
    -webkit-transform: translate(0, 15px);
    transform: translate(0, 15px);
  }
  100% {
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}

@keyframes updown {
  0% {
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
  50% {
    -webkit-transform: translate(0, 15px);
    transform: translate(0, 15px);
  }
  100% {
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
  }
}

/* SP header
---------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  header {
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
    width: 100%;
  }

  .header_inner {
    background: #00a971;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    padding: 15px;
  }

  .header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
  }
}

/* main
---------------------------------------------------------------- */
#ymh2026 {
  text-align: center;
}

#main_visual {
  background: #00a971;
  position: relative;
  text-align: center;
  padding-top: 10px;
  width: 100%;
}

#main_visual p {
  color: #fff;
  font-size: 30px;
  line-height: 1.4;
  padding-top: 20px;
}

#main_visual .title {
  padding-top: 20px;
}

#main_visual .title img {
  margin: 0 auto;
}

#main_visual .mv {
  margin: 0 auto;
  max-width: 460px;
  padding-top: 10px;
  position: relative;
}

#main_visual .mv .mv_02 {
  position: absolute;
  top: -30px;
  left: -210px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#main_visual .day {
  position: relative;
  padding-top: 20px;
  margin: 0 auto;
  width: fit-content;
}

#main_visual .day_02 {
  position: absolute;
  right: -60px;
  top: -10px;
  width: auto;
}

#main_visual .day + p {
  font-size: 16px;
  line-height: 1.8;
}

#ymh2026 .memo {
  color: #000;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
}

#main_visual p.point {
  color: #54c2f1;
  font-size: 16px;
  font-weight: 700;
}

#main_visual .official_btn {
  background: url(../images/btn_bg.jpg) no-repeat;
  background-size: cover;
  border-radius: 18px;
  color: #070707;
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin: 10px auto 0;
  padding: 10px 0;
  width: 313px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* ナビ */
#main_visual .header_nav {
  background: #bafdec;
  margin: 20px auto 0;
  width: 100%;
}

#main_visual .header_nav.fixed {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  margin: 0 calc(50% - 50vw);
}

#main_visual .header_nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 22px 0;
  margin: 0 auto;
  width: 1200px;
}

#main_visual .header_nav li {
  text-align: center;
}

#main_visual .header_nav li a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

#main_visual .header_nav li a:after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-bottom: solid 2px #00a971;
  border-right: solid 2px #00a971;
  transform: translateX(-50%) rotate(45deg);
  position: absolute;
  bottom: -8px;
  left: 50%;
}

#main_visual .header_nav li.sns a:after {
  content: none;
}

#main_visual .header_nav li img {
  height: 22px;
}

#main_visual .header_nav li.sns img {
  height: 30px;
  margin-top: -2px;
}

#main_visual .header_nav li p {
  color: #00a971;
  font-size: 13px;
  font-weight: 400;
  padding-top: 5px;
}

@media screen and (max-width: 768px) {
  #main_visual {
    padding: 0 0 30px;
  }

  #main_visual .mv {
    padding-top: 0;
  }

  #main_visual p {
    font-size: 20px;
  }

  #main_visual .title {
    padding-top: 20px;
  }

  #main_visual .day {
    padding-top: 15px;
  }

  #main_visual .day_02 {
    right: -5px;
    top: -5px;
    width: 25%;
  }

  #main_visual .day + p {
    text-align: left;
    padding-top: 10px;
    line-height: 1.6;
  }

  #main_visual .ambassador_btn {
    background: #ff2d16;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    padding: 21px 0;
    margin-top: 20px;
    max-width: 365px;
    width: 100%;
  }

  #main_visual p.point {
    font-size: 14px;
    padding: 15px 0 0;
  }

  #main_visual .official_btn {
    background: url(../images/btn_bg.jpg) no-repeat;
    background-size: cover;
    border-radius: 5px;
    padding: 21px 0;
    max-width: 365px;
    width: 100%;
  }

  .header_container .header_nav {
    background: #bafdec;
    display: flex;
    flex-wrap: wrap;
    border: 1px solid #00a971;
  }

  .header_container .header_nav li {
    border-left: 1px solid #00a971;
    text-align: center;
    width: 33.33%;
  }

  .header_container .header_nav li:nth-of-type(1),
  .header_container .header_nav li:nth-of-type(4) {
    border-left: none;
  }

  .header_container .header_nav li:nth-of-type(1),
  .header_container .header_nav li:nth-of-type(2),
  .header_container .header_nav li:nth-of-type(3) {
    border-bottom: 1px solid #00a971;
  }

  .header_container .header_nav li a {
    display: block;
    padding: 8px 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
  }

  .header_container .header_nav li img {
    height: 15px;
  }

  .header_container .header_nav li p {
    color: #00a971;
    font-size: 10px;
    font-weight: 500;
    padding-top: 5px;
  }
}

@media screen and (max-width: 374px) {
  #main_visual .day_02 {
    right: -8px;
    top: 0;
    width: 24%;
  }

  #main_visual p {
    font-size: 18px;
  }

  .header_container .header_nav li img {
    height: 12px;
  }

  .header_container .header_nav li p {
    letter-spacing: -1px;
  }
}

/* SPECIAL FREE LIVE
---------------------------------------------------------------- */
#special {
  padding: 125px 0 55px;
}

.page_title {
  position: relative;
}

.page_title p {
  font-size: 13px;
  padding-top: 5px;
}

.title_special_img_01 {
  position: absolute;
  left: -100px;
  top: -15px;
}

.title_special_img_02 {
  position: absolute;
  right: 110px;
  top: -30px;
}

.area_box_title_wrap {
  padding-top: 30px;
}

.area_box_title_wrap .area_box_title_small {
  background: #d1fef2;
  color: #00a971;
  font-size: 17px;
  padding: 10px 0;
}

.area_box_title_wrap .area_box_title_small span {
  font-size: 13px;
  display: block;
  line-height: 1.2;
  padding-top: 5px;
}

.area_box_title_wrap .area_box_title {
  background: #00a971;
}

.area_box_title_wrap .area_box_title h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.4;
  padding: 5px 0 9px;
  margin: 0 auto;
  width: 932px;
  position: relative;
}

#area01 .area_box_title_wrap .area_box_title h3 {
  line-height: 1.3;
  padding: 14px 0;
}

.area_box_title_wrap .area_box_title h3 span {
  font-size: 13px;
  display: block;
}

.area_box_title_wrap .area_box_title h3 span.number {
  display: block;
  position: absolute;
  right: 0;
  bottom: 15px;
  width: 72px;
}

.area_box_title_wrap .area_box_title h3 span.number img {
  width: 100%;
}

.area_box_title_wrap .area_box_title_text {
  background: #e4f1ed;
  font-size: 16px;
  line-height: 1.6;
  padding: 5px 0;
}

.location_btn {
  background: #fff;
  border: 1px solid #00a971;
  border-radius: 7px;
  font-size: 16px;
  display: block;
  line-height: 1.6;
  margin: 17px auto 0;
  text-align: center;
  width: 135px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.location_btn.show_sp {
  display: none;
}

#area01 .expo_btn {
  display: block;
  margin: 17px auto 0;
  background: #e95377;
  border-radius: 9px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 500;
  padding: 12px 0;
  width: 483px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.expo_btn img {
  border-radius: 8px;
  box-shadow: 8px 6px 6px 0px rgba(0, 0, 0, 0.16);
}

.schedule {
  padding-top: 20px;
}

.schedule > ul {
  margin: 8px auto 0;
  width: 405px;
}

#area01 .schedule > ul {
  width: 550px;
}

.schedule li {
  display: flex;
  border-top: 1px solid #00a971;
  line-height: 1.5;
  padding: 2px 0;
}

.schedule li:last-of-type {
  border-bottom: 1px solid #00a971;
}

.schedule ul li ul {
  flex: 1;
}

.schedule ul li ul li:first-of-type {
  border-top: none;
  padding-top: 0;
}

.schedule ul li ul li:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.schedule .day {
  text-align: left;
  width: 65px;
}

.schedule .time {
  text-align: left;
  width: 55px;
}

.schedule .artist {
  flex: 1;
  text-align: left;
}

.schedule .memo {
  color: #000;
  text-align: left;
  padding-top: 5px;
  margin: 0 auto;
  width: 405px;
}

.artist_box {
  padding-top: 30px;
  width: 280px;
}

.ambassador_wrap .artist_box {
  margin: 0 auto;
  width: 650px;
}

.artist_box_img {
  position: relative;
  margin: 0 auto;
  width: 280px;
}

.artist_box_img .artist_icon {
  position: absolute;
  right: -30px;
  top: -14px;
}

.artist_title {
  font-size: 20px;
  line-height: 1.25;
  padding-top: 10px;
}

#area01 .artist_title span {
  color: #000;
  font-size: 13px;
  line-height: 1.2;
  display: block;
  padding-bottom: 5px;
}

#area01 .artist_box_wrap .artist_box:nth-of-type(3) .artist_title,
#area01 .artist_box_wrap .artist_box:nth-of-type(4) .artist_title {
  height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.artist_text {
  color: #000;
  font-weight: 400;
  line-height: 1.6;
  padding-top: 10px;
  text-align: left;
}

.ambassador_wrap .artist_text {
  text-align: center;
}

.ambassador_wrap .ambassador_btn_02 {
  background: #bb64b8;
  border-radius: 9px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin: 10px auto 30px;
  padding: 12px 0;
  width: 483px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.artist_box_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 46px;
}

#area01 .artist_box_wrap {
  width: 650px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  #special {
    padding: 45px 0 35px;
  }

  .title_special_img_01 {
    position: relative;
    left: 0;
    top: -30px;
    width: 278px;
  }

  .page_title .page_title_img {
    height: 46px;
  }

  .page_title p {
    font-size: 15px;
    padding-top: 10px;
  }

  #area01 {
    padding-top: 15px;
  }

  .area_box_title_wrap {
    margin: 0 calc(50% - 50vw) 0;
    width: 100vw;
    padding-top: 10px;
  }

  .area_box_title_wrap .area_box_title_small {
    padding: 10px 0;
  }

  .area_box_title_wrap .area_box_title h3 {
    font-size: 20px;
    padding: 5px 0 9px;
    width: 88%;
  }

  #area01 .area_box_title_wrap .area_box_title h3 {
    padding: 16px 0;
    width: 93%;
  }

  .area_box_title_wrap .area_box_title h3 span.number {
    width: 56px;
    top: 10px;
  }

  .area_box_title_wrap .area_box_title_text {
    padding: 10px 6%;
    text-align: left;
  }

  #area01 .expo_btn {
    font-size: 20px;
    line-height: 1.5;
    padding: 8px 0;
    max-width: 365px;
    width: 100%;
  }

  #area01 .schedule > ul {
    max-width: 550px;
    width: 100%;
  }

  .schedule .day {
    width: 55px;
  }

  .schedule .memo {
    max-width: 405px;
    width: 100%;
  }

  .ambassador_wrap .artist_box,
  .ambassador_wrap .artist_box_img {
    max-width: 365px;
    width: 100%;
  }

  .ambassador_wrap .artist_box_img .artist_icon {
    right: 8px;
    top: 8px;
  }

  .ambassador_wrap .ambassador_btn_02 {
    font-size: 20px;
    line-height: 1.5;
    margin: 15px auto 0;
    padding: 8px 0;
    max-width: 365px;
    width: 100%;
  }

  .ambassador_wrap .artist_text {
    text-align: left;
  }

  #area01 .artist_box_wrap {
    width: 100%;
  }

  #area01 .artist_box_wrap .artist_box:nth-of-type(-n + 3) .artist_title {
    height: auto;
  }

  .artist_box_img .artist_icon {
    right: -14px;
    top: -25px;
  }

  .location_btn.show_sp {
    display: block;
  }
}

/* MOBILITY LIVE
---------------------------------------------------------------- */
.bg_blue {
  background: #e4f1ed;
}

#mobility {
  padding: 65px 0 55px;
}

.title_mobility_img_01 {
  position: absolute;
  left: 30px;
  top: 10px;
}

.title_mobility_img_02 {
  position: absolute;
  right: 105px;
  top: 15px;
}

.bg_blue .area_box_title_text {
  background: #fff;
}

.area_inner {
  margin: 15px auto 0;
  width: 622px;
}

.area_inner_img {
  position: relative;
}

.area_inner_img .icon_free {
  position: absolute;
  right: 18px;
  top: 14px;
}

.area_inner_img .icon_pamphlet {
  position: absolute;
  right: 18px;
  top: 14px;
}

#area02 .schedule .day {
  width: 50px;
}

#area02 .schedule .time {
  width: 140px;
}

.benefits {
  background: #f8f0d0;
  border: 1px solid #ff2d16;
  padding: 18px 10px;
  margin: 25px auto 0;
  position: relative;
  width: 405px;
}

.benefits .benefits_title {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.benefits .benefits_title span {
  background: #ff2d16;
  color: #fff;
  display: inline-block;
  height: 27px;
  margin: 0 3px;
  padding: 5px;
  width: 27px;
}

.benefits p {
  color: #ff2d16;
  font-size: 15px;
  line-height: 1.6;
}

.details {
  text-align: left;
  margin: 0 auto;
  padding-top: 10px;
  width: 405px;
}

.details li {
  padding-top: 3px;
}

.details .title {
  background: #00a971;
  color: #fff;
  font-size: 10px;
  font-weight: 400;
  padding: 0 4px 1px;
  vertical-align: middle;
}

.details .text {
  color: #000;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  vertical-align: middle;
}

.details .price .title {
  background: #ff2d16;
}

.details .price .text {
  color: #ff2d16;
  font-weight: 700;
}

.details li p {
  color: #000;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

#area02 .artist_box_wrap .artist_box:last-of-type {
  width: 200px;
}

#area02 .artist_box_wrap .artist_box_img {
  width: 100%;
}

/* #area03 */
#area03 {
  padding-top: 15px;
  position: relative;
}

.title_mobility_img_03 {
  position: absolute;
  left: 205px;
  top: -95px;
}

#area03 .schedule .time {
  width: 190px;
}

.yellow_box {
  background: #ffff0d;
  border-radius: 100vmax;
  line-height: 1.3;
  margin: 10px auto 0;
  padding: 5px 0;
  width: 405px;
}

.ticket_wrap {
  padding-top: 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 30px;
}

.ticket_wrap .ticket_btn {
  background: #ff2d16;
  border-radius: 13px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto;
  padding: 14px 0 22px;
  width: 465px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.ticket_wrap .ticket_btn span {
  font-size: 13px;
  font-weight: 400;
  display: inline-block;
  padding-bottom: 10px;
}

.ticket_wrap .memo {
  padding-top: 5px;
}

/* area04 */
#area04 {
  padding-top: 30px;
  position: relative;
}

.title_mobility_img_04 {
  position: absolute;
  left: 180px;
  top: -15px;
}

.location_btn_wrap {
  display: flex;
  justify-content: center;
  gap: 33px;
}

.location_btn_wrap p {
  font-size: 13px;
  padding-top: 8px;
}

#area04 .schedule ul li ul li {
  flex-wrap: wrap;
}

#area04 .schedule .time {
  width: 100%;
}

#area04 .schedule .artist {
  font-size: 13px;
  padding-bottom: 3px;
}

#area04 .ticket_btn {
  width: 282px;
}

/* area05 */
#area05 {
  padding-top: 30px;
  position: relative;
}

.title_mobility_img_05 {
  position: absolute;
  left: 120px;
  top: 10px;
}

.title_station_img_02 {
  position: absolute;
  left: 35px;
  top: -30px;
}

#area05 .area_box_title_wrap .area_box_title h3 {
  line-height: 1.3;
  padding: 14px 0;
}

#area05 .schedule .day {
  width: 90px;
}

#area05 .schedule .time {
  width: 128px;
}

#area05 .schedule ul li ul li {
  border-top: none;
}

#area05 .schedule .bus {
  font-size: 13px;
  text-align: left;
  width: 45px;
}

#area05 .schedule .bus_time {
  flex: 1;
  font-size: 13px;
  text-align: left;
}

#area05 .schedule .bus_time .show_se {
  display: none;
}

#area05 .artist_box {
  position: relative;
}

.title_station_img_03 {
  position: absolute;
  left: -225px;
  top: 10px;
}

@media screen and (max-width: 768px) {
  #mobility {
    background: #fff;
    padding: 30px 0 0;
  }

  .title_mobility_img_02 {
    position: relative;
    right: 0;
    top: -30px;
    width: 145px;
  }

  #mobility .area_wrap {
    background: #e4f1ed;
    margin: 0 calc(50% - 50vw) 0;
    width: 100vw;
  }

  .area_box_title_wrap {
    padding-top: 0;
  }

  .area_inner {
    margin: 30px auto 0;
    max-width: 622px;
    width: 88%;
  }

  .area_inner_img {
    margin: 0 calc(50% - 50vw) 0;
    width: 100vw;
  }

  .area_inner_img .inner_img {
    width: 100%;
  }

  .area_inner_img .icon_free {
    left: 20px;
    top: 14px;
  }

  .area_inner_img .icon_pamphlet {
    left: 20px;
    top: 14px;
  }

  .schedule > ul {
    max-width: 405px;
    width: 100%;
  }

  .benefits {
    max-width: 405px;
    width: 100%;
  }

  .details {
    max-width: 405px;
    width: 100%;
  }

  #area03 {
    padding-top: 20px;
  }

  .yellow_box {
    max-width: 405px;
    width: 100%;
  }

  .ticket_wrap .ticket_btn {
    border-radius: 5px;
    max-width: 405px;
    width: 100%;
  }

  #area04 {
    padding: 40px 0 50px;
  }

  .location_btn_wrap {
    flex-direction: column;
    gap: 5px;
  }

  #area04 .schedule .day {
    width: 88px;
  }

  #area04 .ticket_btn {
    max-width: 365px;
    width: 100%;
  }

  #area04 .ticket_btn + .ticket_btn {
    margin-top: 15px;
  }

  #area05 {
    padding: 40px 0 0;
  }

  #area05 .area_box_title_wrap .area_box_title h3 {
    padding: 9px 0;
  }

  #area05 .schedule .bus,
  #area05 .schedule .bus_time {
    font-size: 12px;
  }
}

@media screen and (max-width: 374px) {
  #area02 .schedule .day {
    width: 45px;
  }

  #area02 .schedule .time {
    width: 110px;
  }

  #area03 .schedule .time {
    width: 150px;
  }

  .ticket_wrap .ticket_btn {
    font-size: 16px;
  }

  .yellow_box {
    font-size: 13px;
  }

  #area04 .schedule .day {
    width: 55px;
  }

  #area05 .schedule .bus_time .show_se {
    display: block;
  }

  #area05 .schedule .day {
    width: 70px;
  }
}

/* STATION FREE LIVE
---------------------------------------------------------------- */
#station {
  padding: 85px 0 70px;
}

.title_station_img_01 {
  position: absolute;
  right: 0;
  top: -45px;
}

.area_box_subtitle {
  font-size: 25px;
  padding: 4px 0 7px;
}

#area06 .schedule .time {
  width: 128px;
}

#area07 {
  position: relative;
}

#area07 .schedule .time {
  width: 128px;
}

@media screen and (max-width: 768px) {
  #station {
    padding: 0 0 65px;
  }

  .title_station_img_01 {
    position: relative;
    right: 0;
    top: -30px;
    width: 202px;
  }

  #area06 {
    padding-top: 20px;
  }

  #area06 .area_box_title_wrap .area_box_title h3 span.number {
    bottom: 10px;
    top: auto;
  }

  .area_box_subtitle {
    font-size: 20px;
    line-height: 1.4;
  }

  #area06 .location_btn.show_pc {
    display: none;
  }

  #area06 .area_inner {
    margin-top: 15px;
    max-width: 622px;
    width: 100%;
  }

  #area07 {
    padding-top: 25px;
  }

  #area07 .area_box_title_wrap .area_box_title h3 span.number {
    bottom: 10px;
    top: auto;
  }

  #area07 .area_inner {
    margin-top: 15px;
    max-width: 622px;
    width: 100%;
  }

  #area07 .schedule .day {
    width: 55px;
  }

  #area07 .schedule .time {
    width: 120px;
  }
}

@media screen and (max-width: 374px) {
  .area_box_title_wrap .area_box_title h3 {
    font-size: 18px;
  }

  .area_box_subtitle {
    font-size: 16px;
  }
}

/* HOTEL LIVE
---------------------------------------------------------------- */
#hotel {
  padding: 85px 0;
}

.title_art_img_01 {
  position: absolute;
  left: 200px;
  top: -75px;
}

.title_art_img_02 {
  position: absolute;
  right: 0;
  top: -75px;
}

@media screen and (max-width: 768px) {
  #hotel {
    padding: 0 0 65px;
  }

  .title_art_img_02 {
    position: relative;
    right: 0;
    top: -40px;
    width: 265px;
  }
}

/* AMUSEMENT
---------------------------------------------------------------- */
#amusement {
  padding: 80px 0 60px;
}

.title_amusement_img_01 {
  position: absolute;
  right: 95px;
  top: -45px;
}

#area09 .area_box_title_wrap .area_box_title h3 span {
  color: #ff2d16;
  font-size: 30px;
  display: inline-block;
}

#area09 .area_box_title_wrap .area_box_title h3 span.number {
  color: #fff;
  font-size: 16px;
  display: block;
}

#area09 .area_inner_img .icon_pamphlet {
  position: absolute;
  left: 25px;
  top: 18px;
}

.area_inner_small_img {
  padding-top: 20px;
}

@media screen and (max-width: 768px) {
  #amusement {
    padding: 0px 0 105px;
  }

  .title_amusement_img_01 {
    position: relative;
    right: 0;
    top: -30px;
    width: 105px;
  }

  #area09 {
    padding-top: 20px;
  }

  #area09 .area_box_title_wrap .area_box_title h3 span {
    font-size: 20px;
  }

  #area09 .area_box_title_wrap .area_box_title h3 span.number {
    font-size: 11px;
    bottom: 10px;
    top: auto;
  }

  #area09 .area_inner {
    margin-top: 15px;
    max-width: 622px;
    width: 100%;
  }
}

/* area10
---------------------------------- */
#area10 .area_box_title_wrap .area_box_title h3 span {
  color: #ff2d16;
  font-size: 30px;
  display: inline-block;
}

#area10 .area_inner_img .icon_free {
  right: 0;
}

#area10 .schedule .bus {
  font-size: 13px;
  text-align: left;
  width: 65px;
}

#area10 .schedule .bus_time {
  flex: 1;
  font-size: 13px;
  text-align: left;
}

#area10 .table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #00a971;
  width: 800px;
  margin: 30px auto 0;
}

#area10 table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}

#area10 th {
  background: #fffbc7;
  border-bottom: 1px solid #00a971;
  border-right: 1px solid #00a971;
  color: #00a971;
  font-weight: bold;
  line-height: 1.2;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  position: sticky;
  top: 0;
  vertical-align: middle;
}

#area10 th:last-child {
  border-right: none;
}

#area10 td {
  font-size: 14px;
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #00a971;
  border-right: 1px solid #00a971;
}

#area10 td:last-child {
  border-right: none;
}

#area10 tr:last-child td {
  border-bottom: none;
}

#area10 tbody tr:nth-child(even) {
  background: #d8d8d8;
}

@media screen and (max-width: 768px) {
  #area10 {
    padding-top: 40px;
  }

  #area10 .area_box_title_wrap .area_box_title h3 span {
    font-size: 20px;
  }

  #area10 .area_inner_img .icon_free {
    left: 10px;
    top: -35px;
    width: 75px;
  }

  #area10 .table-wrapper {
    width: auto;
  }
}

/* footer
---------------------------------- */
footer {
  background: #00a971;
  width: 100%;
  text-align: center;
  padding: 27px 0 15px;
}

.footer_container {
  margin: 0 auto;
  width: 1200px;
  position: relative;
}

footer .text_link {
  color: #fff;
  display: inline-block;
  text-decoration: underline;
  font-size: 13px;
  font-weight: 500;
  margin-top: 5px;
  line-height: 1.4;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer .text_link.show_pc {
  display: inline-block;
}

footer .text_link.show_sp {
  display: none;
}

footer .copy {
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  margin-top: 5px;
}

footer .contact {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 10px;
}

#pagetop {
  position: fixed;
  bottom: 165px;
  right: 15px;
  z-index: 100;
  display: none;
}

#pagetop a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 35px 0 25px;
  }

  .footer_container {
    width: 88%;
  }

  footer .text_link {
    margin-top: 8px;
  }

  footer .copy {
    margin-top: 8px;
  }

  footer .text_link.show_pc {
    display: none;
  }

  footer .text_link.show_sp {
    display: inline-block;
  }

  #pagetop {
    bottom: 180px;
    width: 77px;
  }
}

@media screen and (max-width: 374px) {
  #pagetop {
    bottom: 160px;
    width: 55px;
  }
}

/* sponsor
---------------------------------- */
#ymh2026_sponsor #main_visual {
  padding-top: 0;
}

#ymh2026_sponsor #main_visual .header_nav {
  margin: 0 calc(50% - 50vw);
}

#sponsor {
  padding: 60px 0 40px;
  text-align: center;
}

.sponsor_subtitle {
  color: #2b2e34;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  padding-top: 20px;
}

.sponsor_box ul li {
  color: #2b2e34;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  #ymh2026_sponsor #main_visual {
    display: none;
  }

  #sponsor {
    margin-top: 0;
  }

  .sponsor_subtitle {
    font-size: 13px;
  }

  .sponsor_box ul li {
    font-size: 13px;
  }
}
