@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

/* CSS Document */
:root{
  --content-color-base: #333;
  --content-color-pink: #ff458b;
  --content-color-l_pink: #ff7faf;
  --content-color-purple: #ba0e4b;
  --content-color-orange: #ff6600;
  --content-color-t_white: rgba(255 255 255 / 80%);
  --bg-img-setting: no-repeat center center / contain;
  --bg-width-pc: max(100%, 1920px);
  --content-width: min((710vw / 7.5), 992px);
  --font-size-pc: 14px;
  --font-size-sp: calc(24vw / 7.5);
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --font-sans: "Noto Sans JP", sans-serif;
  --content-hover-speed: 0.3s;
  --content-shadow: 0 2px 4px rgb(0 0 0 / 15%);
  --content-arrow-down: url(../img/menu_arrow.png);
  --content-arrow-right: url(../img/button_arrow.png);
  --content-border_s: 1px solid;
  --content-border_dot: 2px dotted;
}

.nosp{
  display: none
}
.main{
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  font-weight: 400;
  position: relative;
  color: var(--content-color-base)
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
}
.note__txt{
  display: block;
  font-size: calc(20vw / 7.5);
  padding-left: 1.0em;
  text-indent: -1.0em;
}

/***** タイトル・ナビ *****/
.title__wrapper{
  width: 100%;
}
.event__period{
  background: var(--content-color-pink);
  text-align: center;
  font-size: calc(32vw / 7.5);
  font-weight: bold;
  color: #FFF;
  padding: calc(16vw / 7.5) 0;
}
.copyarea{
  width: var(--content-width);
  margin: calc(24vw / 7.5) auto;
}
.catchcopy{
  font-size: calc(30vw / 7.5);
  font-weight: bold;
}
.nav__wrapper{
  background: var(--content-color-pink);
}
.nav__list{
  display: flex;
  margin: auto
}
.nav__list>li{
  width: calc(100% / 3);
  flex-grow: 1
}
.nav__list>li:nth-child(2){
  border-right: var(--content-border_s) var(--content-color-t_white);
  border-left: var(--content-border_s) var(--content-color-t_white)
}
.nav__list>li>a{
  display: block;
  font-size: calc(26vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
  position: relative;
  padding: calc(16vw / 7.5) 0 calc(32vw / 7.5);
}
.nav__list>li>a::after{
  content: "";
  background: var(--content-arrow-down) var(--bg-img-setting);
  width: calc(18vw / 7.5);;
  height: calc(13vw / 7.5);;
  position: absolute;
  right: 0;
  bottom: calc(8vw / 7.5);;
  left: 0;
  margin: auto
}

/***** メインコンテンツ *****/
.main__content{
  background: #fdf9e1;
}
.content__wrapper{
  width: 100%;
  padding: calc(60vw / 7.5) 0;
}
.head-title{
  text-align: center;
  margin-bottom: calc(24vw / 7.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(16vw / 7.5);
}
.head-title::before,
.head-title::after{
  content: "";
  background: var(--bg-img-setting);
  width: calc(108vw / 7.5);
  height: calc(123vw / 7.5);
  display: block;
}
.head-title::before{
  background-image: url("../img/ttlBgimg_lft.png");
}
.head-title::after{
  background-image: url("../img/ttlBgimg_ryt.png");
}
.head-title .title__txt{
  font-size: calc(48vw / 7.5);
  font-weight: bold;
  color: var(--content-color-pink);
  line-height: 1.2
}

/*** .content__wrapper.product ***/
.content__wrapper.product .inner+.inner{
  margin-top: calc(60vw / 7.5);
}
.sub-title{
  font-size: calc(30vw / 7.5);;
  font-weight: bold;
  color: var(--content-color-purple);
}
.leadcopy{
  margin-bottom: calc(16vw / 7.5);  
}
.product-list.card-style>li .product-list__item .item-photo__wrapper .item-txt__port{
  background: rgba(242 60 89 / 80%)
}
.more__link{
  width: 90vw;
  margin: calc(32vw / 7.5) auto 0
}
.more__link>a{
  display: block;
  background: var(--content-color-orange);
  border-radius: calc(16vw / 7.5);
  font-size: calc(26vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
  padding: calc(24vw / 7.5) 0;
  position: relative
}
.more__link>a::after{
  content: "";
  background: var(--content-arrow-right) var(--bg-img-setting);
  width: calc(17vw / 7.5);
  height: calc(22vw / 7.5);
  position: absolute;
  top: 0;
  right: calc(8vw / 7.5);
  bottom: 0;
  margin: auto
}

/*** .content__wrapper.info ***/
.content__wrapper.info{
  background: #f6f1d0
}
.title__sub{
  display: block;
  font-size: calc(32vw / 7.5);
  font-weight: bold;
  color: var(--content-color-base)
}
.fes__period{
  text-align: center;
  font-size: calc(32vw / 7.5);
  font-weight: bold;
  margin-bottom: calc(16vw / 7.5);
}
.fes__map{
  width: 100vw;
  margin: 0 calc(50% - 50vw) calc(32vw / 7.5);
}
.fes__list{
  margin: auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: calc(24vw / 7.5);
}
.fes__midashi{
  font-size: calc(30vw / 7.5);
  font-weight: bold;
  color: var(--content-color-purple);
  margin-bottom: calc(16vw / 7.5);
  display: flex;
  gap: calc(16vw / 7.5);
  align-items: center
}
.fes__midashi::before{
  content: "";
  background: var(--bg-img-setting);
  display: block;
}
.fes__midashi.season::before{
  background-image: url("../img/ico_sakura.png");
  width: calc(39vw / 7.5);
  height: calc(36vw / 7.5);
}
.fes__midashi.access::before{
  background-image: url("../img/ico_access.png");
  width: calc(30vw / 7.5);
  height: calc(35vw / 7.5);
}
.fes__midashi.light::before{
  background-image: url("../img/ico_kira.png");
  width: calc(39vw / 7.5);
  height: calc(32vw / 7.5)
}
.fes__access:empty,
.fes__notice:empty{
  display: none
}
.is-train,
.is-car{
  display: flex;
  gap: calc(24vw / 7.5);
}
.is-train{
  padding-bottom: calc(16vw / 7.5);
  margin-bottom: calc(16vw / 7.5);
  border-bottom: var(--content-border_dot)
}
.fes__access{
  flex: 1;
}
.is-train::before,
.is-car::before{
  content: "";
  background: var(--bg-img-setting);
  display: block;
  width: calc(80vw / 7.5);
}
.is-train::before{
  background-image: url("../img/ico_train.png");
  height: calc(102vw / 7.5);
}
.is-car::before{
  background-image: url("../img/ico_car.png");
  height: calc(63vw / 7.5);;
}
.access__midashi{
  font-size: calc(26vw / 7.5);
  font-weight: bold;
  color: var(--content-color-pink);
}

/*** .content__wrapper.flower ***/
.content__wrapper.flower{
  background: #fff4f8
}
.spot__list{
  display: flex;
  overflow-x: scroll;
  gap: calc(16vw / 7.5);
}
.spot__list>li{
  flex: 0 0 85%;
  background: #FFF;
  box-shadow: var(--content-shadow);
}
.spot__img{
  width: 100%;
  height: calc(360vw / 7.5);
}
.spot__img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.spot__item{
  padding: calc(16vw / 7.5);
}
.spot__name{
  font-size: calc(30vw / 7.5);
  font-weight: bold;
  color: var(--content-color-pink);
  line-height: 1.2;
  margin-bottom: calc(16vw / 7.5)
}
.spot__season{
  color: var(--content-color-purple)
}
.spot__link{
  margin-top: calc(16vw / 7.5);
}
.spot__link>a{
  display: block;
  background: var(--content-color-pink);
  font-size: calc(26vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
  padding: calc(16vw / 7.5) 0;
  position: relative
}
.spot__link>a:not(.no__link)::after{
  content: "";
  background: var(--content-arrow-right) var(--bg-img-setting);
  width: calc(17vw / 7.5);
  height: calc(22vw / 7.5);
  position: absolute;
  top: 0;
  right: calc(8vw / 7.5);
  bottom: 0;
  margin: auto
}
.spot__link>a.no__link{
  background: var(--content-color-base);
  pointer-events: none;
}

.close-txt{
  border: var(--content-border_s);
  padding: calc(16vw / 7.5);
  font-size: calc(28vw / 7.5);
  font-weight: bold;
  color: var(--content-color-purple);
  margin: 0 auto calc(60vw / 7.5);
}