@charset "utf-8";

/* 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%;
}

/*250408追加ここから*/
/* バナーエリア */
.banner-area {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
}
.banner-area .midashi {
  max-width: 980px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: ten-mincho, serif;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0.08em;
  margin: 0 auto 30px;
}
.banner-area .midashi::before,
.banner-area .midashi::after {
  content: "";
  display: block;
  flex: 1;
  height: 2px;
  border-bottom: 2px solid currentColor;
}
.banner-area .banner {
  max-width: 980px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 0 auto;
  padding-bottom: 30px;
  border-bottom: 2px solid currentColor;
}
.banner-area .banner.col2 > * {
  max-width: 350px;
}
.banner-area .banner img {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}
.banner-area .banner .name {
  display: block;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 0.5em;
}
.banner-area .banner a[target="_blank"] .name::after {
  content: "";
  display: inline-block;
  width: 1em;
  aspect-ratio: 1;
  -webkit-mask-image: url("../img/entrance_2025/icon_external.svg");
  mask-image: url("../img/entrance_2025/icon_external.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
  background-color: currentColor;
  margin-left: 0.5em;
}
.banner-area .banner .txt {
  display: block;
  font-size: 14px;
  margin-top: 0.5em;
}
/*250408追加ここまで*/

/* about */
#about {
  padding: 100px 0 170px;
  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 h2 {
  width: 345px;
  margin-bottom: 50px;
}
#about .midashi {
  margin-bottom: 30px;
  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: 40px;
  padding-left: 25px;
  border-left: 1px solid #376ea2;
  font-size: 20px;
  font-family: ten-mincho, serif;
}
#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: #376ea2;
}
#about .img .pin {
  width: 300px;
  opacity: 0;
}
#about .img .map {
  width: 295px;
  padding-bottom: 30px;
  opacity: 0;
}
#about .about_anime.in .pin {
  animation: fadeIn 1s linear forwards;
}
#about .about_anime.in .line {
  animation: slideLine 1s linear 1s forwards;
}
#about .about_anime.in .map {
  animation: fadeIn 1s linear 2.3s forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideLine {
  0% {
    width: 0;
  }
  100% {
    width: 166px;
  }
}

/* course */
#course {
  display: flex;
  padding-bottom: 190px;
  background-color: #f9f9f9;
}
#course .img {
  position: relative;
  width: 844px;
  min-width: 844px;
}
#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% - 844px);
  min-width: 420px;
  font-family: ten-mincho, serif;
}
#course h2 {
  display: block;
  width: 110px;
  margin: 90px auto 40px;
  writing-mode: vertical-rl;
  font-size: 36px;
  letter-spacing: 0.2em;
}
#course .txt {
  display: block;
  width: 325px;
  margin: 0 auto 25px;
  font-size: 16px;
  line-height: 24px;
}
#course .link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 325px;
  height: 78px;
  margin: 0 auto;
  background-color: #2f649e;
  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/fukuyama2023/icon/icon_arrow.svg") no-repeat center / cover;
}
#course .link:hover {
  opacity: 0.7;
  transition: 0.5s;
}

/* bg video */
#bg {
  position: relative;
  width: 100%;
  height: 480px;
}
/* #bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
} */
#video {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
}
#video video {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* spots */
#spots {
  padding: 95px 0 110px;
  background-color: #3572b4;
}
#spots .inner {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}
#spots h2 {
  position: relative;
  margin-bottom: 30px;
  padding-top: 45px;
  font-size: 40px;
  text-align: center;
  color: #fff;
  font-family: ten-mincho, serif;
}
#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 {
  font-size: 30px;
}
#spots .tab {
  display: flex;
  margin-bottom: 30px;
  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: #2a629a;
  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: 20px;
  height: 32px;
  background: url("../img/fukuyama2023/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/fukuyama2023/icon/icon_spot_active.svg") no-repeat center / cover;
}
#spots .tab li[data-spot="gourmet"] span::before {
  width: 22px;
  height: 26px;
  background: url("../img/fukuyama2023/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/fukuyama2023/icon/icon_gourmet_active.svg") no-repeat center / cover;
}
#spots .tab li[data-spot="activity"] span::before {
  width: 11px;
  height: 28px;
  background: url("../img/fukuyama2023/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/fukuyama2023/icon/icon_activity_active.svg") no-repeat center / cover;
}
#spots .tab li[data-spot="hotel"] span::before {
  width: 27px;
  height: 19px;
  background: url("../img/fukuyama2023/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/fukuyama2023/icon/icon_hotel_active.svg") no-repeat center / cover;
}
#spots .tab li[data-spot="event"] span::before {
  width: 29px;
  height: 29px;
  background: url("../img/fukuyama2023/icon/icon_event.svg") no-repeat center / cover;
}
#spots .tab li.active[data-spot="event"] span::before,
#spots .tab li[data-spot="event"]:hover span::before {
  background: url("../img/fukuyama2023/icon/icon_event_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: 60px 40px;
  background-color: #fff;
  border-radius: 8px;
}
#spots .spot_list.active {
  display: flex;
}
#spots .spot_list li {
  width: calc((100% - 60px) / 4);
  margin-bottom: 25px;
}
#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: 6px 0;
  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/fukuyama2023/movie_top.png") no-repeat top left / 360px, url("../img/fukuyama2023/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/fukuyama2023/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%;
}
