.guidebox {
  pointer-events: none;
  background-size: 1366px;
  width: 100%;
  max-width: 1366px;
  z-index: 9999;
  opacity: 0.75;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0.3;
}
@media screen and (max-width: 701px) {
  .guidebox {
    max-width: 350px;
    background-size: 350px !important;
  }
}

.guidebox.hiroshima1 {
  background: url("../img/hiroshima2024/guide_hiroshima1.jpg") no-repeat top -128px center;
  height: 7130px;
}
@media screen and (max-width: 701px) {
  .guidebox.hiroshima1 {
    background: url("../img/hiroshima2024/guide_hiroshima1_sp.jpg") no-repeat top center;
    height: 9178px;
    background-position: top 0px center;
  }
}

/* common */
main {
  max-width: none;
  padding: 0;
  color: #3f3f3f;
}

section {
  position: relative;
  z-index: 1;
}

/* scroll in */
.fadeup {
  opacity: 0;
  transition: 2s;
  transform: translate(0, 30px);
}

.in {
  opacity: 1;
  transform: translate(0, 0);
}

/* mv */
#mv img {
  width: 100%;
}

/* about */
#about {
  overflow: hidden;
  padding: 76px 0 80px;
  background-color: #f9f9f9;
}

#about .inner {
  display: flex;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

#about .txt_wrap {
  width: 520px;
  padding-left: 70px;
}
#about .txt_wrap img {
  margin: 20px 0;
}

#about .txt_wrap h2 {
  width: 434px;
  margin-bottom: 25px;
}

#about .midashi {
  margin-bottom: 13px;
  font-size: 24px;
  line-height: 36px;
  /* color: #2A629A; */
  font-family: 'ten-mincho', serif;
}

#about .txt {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 30px;
}

#about .access {
  margin-top: 53px;
  padding-left: 25px;
  border-left: 1px solid #9b1612;
  font-size: 20px;
  font-family: 'ten-mincho', serif;
  letter-spacing: 0.06em;
}

#about .access span {
  display: block;
  margin-bottom: 20px;
}

#about .img {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: calc(100% - 520px);
}

#about .img .line {
  position: absolute;
  bottom: 100px;
  left: 220px;
  display: block;
  width: 0;
  height: 1px;
  background-color: #9b1612;
}

#about .img .pin {
  width: 300px;
  opacity: 0;
}

#about .img .map {
  width: 769px;
  max-width: unset;
  padding-bottom: 94px;
  opacity: 0;
  position: relative;
  left: 63px;
}

#about .about_anime.in .pin {
  animation: fadeIn 0.5s linear forwards;
}

#about .about_anime.in .line {
  animation: slideLine 0.3s linear 0.3s forwards;
}

#about .about_anime.in .map {
  animation: fadeIn 0.5s linear 0.7s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideLine {
  0% {
    width: 0;
  }
  100% {
    width: 166px;
  }
}
/* course */
#course {
  display: flex;
  padding-bottom: 206px;
  background: url("../img/hiroshima2024/cource_bg.png") no-repeat top 42px left -130px/954px, #f9f9f9;
}
#course .wrapper {
  width: 100%;
  display: flex;
  max-width: 1366px;
  margin: 0 auto;
}

#course .img {
  position: relative;
  width: 820px;
  min-width: 820px;
  justify-content: flex-end;
  display: flex;
  align-items: flex-start;
}
#course .img > img.pc {
  width: 189px;
  margin-left: 21px;
}
#course .img > img.pc:nth-of-type(1) {
  margin-top: 320px;
}
#course .img > img.pc:nth-of-type(2) {
  margin-top: 135px;
}
#course .img > img.pc:nth-of-type(3) {
  margin-top: 230px;
}
#course .img > img.pc:nth-of-type(4) {
  margin-top: 55px;
}

#course .img .en {
  position: absolute;
  top: 9px;
  right: -108px;
  display: block;
  width: 506px;
  height: 183px;
  background: url("../img/fukuyama2023/cource_en.png") no-repeat center/cover;
}

#course .txt_wrap {
  width: calc(100% - 820px);
  min-width: 420px;
  font-family: 'ten-mincho', serif;
}

#course h2 {
  display: block;
  width: 167px;
  margin: 3px auto 54px;
  writing-mode: vertical-rl;
  font-size: 36px;
  letter-spacing: 0.145em;
}
.hiroshima_en #course h2 {
  width: 325px;
  font-size: 32px;
  writing-mode: horizontal-tb;
}
#course .txt {
  display: block;
  width: 325px;
  margin: 0 auto 25px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.07em;
}

#course .link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 296px;
  height: 78px;
  margin: 0 auto;
  background-color: #9b1612;
  border-radius: 39px;
  font-size: 20px;
  color: #fff;
  transition: 0.5s;
}

#course .link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 40px;
  display: block;
  width: 8px;
  height: 9px;
  transform: translateY(-50%);
  background: url("../img/hiroshima2024/icon/icon_arrow.svg") no-repeat center/cover;
}
#course .link:hover {
  opacity: 0.7;
  transition: 0.5s;
}


.parallax {
  position: relative;
  height: 480px;
  .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%!important;
    padding:0!important ;  
    clip-path: inset(0);
    #bg {
      display: none;
      position: relative;
      width: 100%;
      height: 605px;
    }
    #video {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background-size: cover;
      background-position: center;
      z-index: -1;
      background-image: url("../img/fukui2024/video.jpg");
    }
    #video video,
    #video img {
      display: none;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
}/*.parallax*/

/* spots */
#spots {
  padding: 91px 0 110px;
  background: url("../img/hiroshima2024/spots_bg.svg") repeat center/1599px, #9b1612;
}

#spots .inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

#spots h2 {
  position: relative;
  margin-bottom: 23px;
  padding-top: 31px;
  font-size: 40px;
  text-align: center;
  color: #fff;
  font-family: 'ten-mincho', serif;
  letter-spacing: 0.05em;
}

#spots h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  margin: 0 auto;
  width: 62px;
  height: 36px;
  background: url("../img/fukuyama2023/icon/icon_recommend.svg") no-repeat center/cover;
}

#spots h2 span.f32 {
  font-size: 32px;
}

#spots h2 span {
  font-size: 30px;
}

#spots .tab {
  display: flex;
  margin-bottom: 40px;
  border-bottom: 1px solid #fff;
  font-family: 'ten-mincho', serif;
  color: #fff;
}

#spots .tab li {
  width: calc(100% / 5);
  padding: 20px 0;
  text-align: center;
  font-size: 24px;
  cursor: pointer;
  transition: 0.5s;
}

#spots .tab li.active,
#spots .tab li:hover {
  background-color: #fff;
  color: #9b1612;
  transition: 0.5s;
}

#spots .tab li span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

#spots .tab li span::before {
  content: "";
  display: inline-block;
  transition: 0.5s;
}

#spots .tab li[data-spot=spot] span::before {
  width: 22px;
  height: 32px;
  background: url("../img/hiroshima2024/icon/icon_spot.svg") no-repeat center/cover;
}

#spots .tab li.active[data-spot=spot] span::before,
#spots .tab li[data-spot=spot]:hover span::before {
  background: url("../img/hiroshima2024/icon/icon_spot_active.svg") no-repeat center/cover;
}

#spots .tab li[data-spot=gourmet] span::before {
  width: 22px;
  height: 26px;
  background: url("../img/hiroshima2024/icon/icon_gourmet.svg") no-repeat center/cover;
}

#spots .tab li.active[data-spot=gourmet] span::before,
#spots .tab li[data-spot=gourmet]:hover span::before {
  background: url("../img/hiroshima2024/icon/icon_gourmet_active.svg") no-repeat center/cover;
}

#spots .tab li[data-spot=activity] span::before {
  width: 11px;
  height: 28px;
  background: url("../img/hiroshima2024/icon/icon_activity.svg") no-repeat center/cover;
}

#spots .tab li.active[data-spot=activity] span::before,
#spots .tab li[data-spot=activity]:hover span::before {
  background: url("../img/hiroshima2024/icon/icon_activity_active.svg") no-repeat center/cover;
}

#spots .tab li[data-spot=hotel] span::before {
  width: 27px;
  height: 19px;
  background: url("../img/hiroshima2024/icon/icon_hotel.svg") no-repeat center/cover;
}

#spots .tab li.active[data-spot=hotel] span::before,
#spots .tab li[data-spot=hotel]:hover span::before {
  background: url("../img/hiroshima2024/icon/icon_hotel_active.svg") no-repeat center/cover;
}

#spots .tab li[data-spot=shopping] span::before {
  width: 25px;
  height: 25px;
  background: url("../img/hiroshima2024/icon/icon_shopping.svg") no-repeat center/cover;
}

#spots .tab li.active[data-spot=shopping] span::before,
#spots .tab li[data-spot=shopping]:hover span::before {
  background: url("../img/hiroshima2024/icon/icon_shopping_active.svg") no-repeat center/cover;
}

#spots .spot_list {
  display: none;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 49px 40px 18px;
  background-color: #fff;
  border-radius: 8px;
}

#spots .spot_list.active {
  display: flex;
}

#spots .spot_list li {
  width: calc((100% - 60px) / 4);
  margin-bottom: 30px;
}

#spots .spot_list li figure {
  display: block;
  width: 100%;
  height: 165px;
  overflow: hidden;
}

#spots .spot_list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

#spots .spot_list li a:hover img {
  transform: scale(1.05);
  opacity: 1;
  transition: 0.5s;
}

#spots .spot_list li .ttl {
  margin: 14px 0 1px;
  font-size: 20px;
  font-family: 'ten-mincho', serif;
  line-height: 1.6rem;
}

#spots .spot_list li .txt {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
}

#spots .spot_list li .area {
  display: inline-block;
  padding: 3px 9px;
  background-color: #efefef;
  border-radius: 4px;
  color: #919191;
  font-size: 14px;
}

/* movie */
#movie {
  padding: 110px 0 40px;
  background: url("../img/hiroshima2024/movie_bottom.png") no-repeat bottom right/508px;
  background-color: #fff;
}

#movie .inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

#movie h2 {
  position: relative;
  margin-bottom: 40px;
  padding-top: 33px;
  font-size: 36px;
  text-align: center;
  font-family: 'ten-mincho', serif;
}

#movie h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  margin: 0 auto;
  width: 38px;
  height: 27px;
  background: url("../img/hiroshima2024/icon/icon_movie.svg") no-repeat center/cover;
}

#movie h3 {
  margin-bottom: 30px;
  font-size: 24px;
  text-align: center;
  font-family: 'ten-mincho', serif;
}

#movie .inner > div {
  margin-bottom: 110px;
}

#movie .youtube {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
}

#movie .youtube iframe {
  width: 100%;
  height: 100%;
}