@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho:wght@400;700&display=swap');

:root{
  --content-color-base: #4c4c4c;
  --content-color-red: #ff3f3f;
  --content-color-gray: #b3b3b3;
  --content-color-pink: #ff99b1;
  --content-color-l_pink: #ffebeb;
  --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-size-sp: calc(24vw / 7.5);
  --font-base: "Zen Old Mincho", serif;
  --font-sans: "Noto Sans JP", sans-serif;
  --content-hover-speed: 0.3s;
  --content-shadow: 0 3px 0 0 rgba(0 0 0 / 20%);
  --content-arrow-right: url(../img/arrow_right.png);
  --content-arrow-down: url(../img/arrow_down.png);
  --content-border_s: 1px solid;
  --content-border_m: 2px solid;
  --content-border_l: 4px solid;
}
.nopc{
  display: none
}
.main{
  font-family: var(--font-base);
  font-size: var(--content-font-size);
  font-weight: bold;
  position: relative;
  color: var(--content-color-base);
  line-height: 1.5;
  background: #FFFDF4;
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
}
a{
  transition: var(--content-hover-speed);
}

.title__wrapper{
  width: 100%;
  height: 647px;
  background: url("../img/mvpc.png") no-repeat center top;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content__wrapper{
  padding-bottom: 60px;
}
.head-title{
  margin-bottom: 24px;
  font-size: 44px;
  text-align: center
}
.sub-title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.sub-title::before,
.sub-title::after{
  content: "";
  display: inline-block;
  width: 100px;
  height: 1px;
  background-color: var(--content-color-red);
  flex-grow: 1;
}
.sub-title>span{
  font-size: 28px;
  text-align: center;
}
.note__txt{
  font-size: 12px;
  padding-left: 1.0em;
  text-indent: -1.0em;
}
.is-red{
  color: var(--content-color-red)
}
.is-fit{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*** おすすめのお花見スポット ***/
.select__tab{
  display: flex;
  gap: 24px;
  margin-bottom: 60px;
}
.select__tab>li{
  width: calc((100% - 24px) / 2);
  border-radius: 8px;
  background: var(--content-color-gray);
  text-align: center;
  padding: 16px 0;
  color: #FFF;
  cursor: pointer
}
.select__tab>li.is-current{
  background: var(--content-color-red)
}
.tab__txt{
  font-size: 24px;
}
.tab__txt>small{
  display: block;
  font-size: 16px;
}
.select__content{
  display: none
}
.select__content.is-active{
  display: block;
}
.area__list{
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: center;
}
.area__list>li{
  flex: 0 0 1;
}
.area__list>li>a{
  border: var(--content-border_s);
  padding: 10px;
  background: #FFF;
  display: flex;
  gap: 8px;
  font-size: 20px;
  text-align: center;
  align-items: center
}
.area__list>li>a::after{
  content: "";
  background: var(--content-arrow-down) var(--bg-img-setting);
  width: 20px;
  height: 13px;
  display: block;
}
.area__list>li>a:hover{
  background: var(--content-color-l_pink)
}
.area__content+.area__content{
  margin-top: 80px;
}
.spot__content{
  position: relative
}
.spot__content+.spot__content{
  margin-top: 60px;
}
.spot__content:nth-child(odd)::before{
  content: "";
  background: url("../img/bg_sakura_lft.gif") no-repeat left top / contain;
  width: 464px;
  height: 380px;
  position: absolute;
  top: 0;
  left: -464px;
}
.spot__content:nth-child(even)::after{
  content: "";
  background: url("../img/bg_sakura_ryt.gif") no-repeat left top / contain;
  width: 464px;
  height: 380px;
  position: absolute;
  top: 0;
  right: -464px;
}
.spot__box{
  display: flex;
  gap: 24px;
}
.spot__img{
  width: 486px;
  height: 220px;
  background: url("../img/bg_photo.gif") repeat;
  padding: 8px;
}
.spot__item{
  flex: 1;
  display: flex;
  flex-direction: column;
}
.spot__name{
  font-size: 28px;
}
.spot__name>small{
  font-size: 60%;
}
.spot__copy{
  font-size: 18px;
  color: var(--content-color-red);
}
.copyright{
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: normal;
  color: var(--content-color-gray);
  margin-top: 4px;
}
.spot__data{
  background: #FFF;
  padding: 8px;
  margin-top: auto;
  font-family: var(--font-sans);
  font-weight: 400;
}
.spot__data>li{
  display: flex;
  gap: 8px;
  font-size: 12px;
}

/*** product__content ***/
.product__content{
  margin-top: 32px;
  font-family: var(--font-sans);
}
.item__linkbox{
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 24px auto 0;
}
.item__linkbox .item__link{
  max-width: 640px;
  flex-grow: 1;
}
.item__linkbox .item__link>a{
  display: block;
  background: var(--content-color-red);
  border-radius: 8px;
  padding: 10px 0;
  font-size: 16px;
  color: #FFF;
  text-align: center;
  position: relative
}
.item__linkbox .item__link>a::after{
  content: "";
  background: var(--content-arrow-right) var(--bg-img-setting);
  width: 14px;
  height: 21px;
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  margin: auto;
}
.item__linkbox .item__link>a:hover{
  opacity: .8
}

/*** 検索モジュール ***/
.content__wrapper.search{
  background: var(--content-color-l_pink);
  padding: 48px 0;
  font-family: var(--font-sans);
}

/*** 下層ページリンクボタン ***/
.dep__tab{
  display: flex;
  gap: 24px;
  margin-bottom: 60px;
}
.dep__tab>li{
  width: calc((100% - 24px) / 2);
}
.dep__tab>li>a{
  display: block;
  background: var(--content-color-red);
  border-radius: 8px;
  padding: 16px;
  font-size: 18px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
}
.dep__tab>li>a:hover{
  background: var(--content-color-pink)
}

/*** 見頃カレンダー ***/
.season-table{
  background: url("../img/bg_cal.gif") repeat;
  padding: 8px 8px 3px;
  margin-bottom: 5px;
}
.season-table *{
  font-family: var(--font-sans);
  font-weight: 700;
}
.season-table__upper{
  display: flex;
}
.spacebox{
  background: url("../img/bg_cal.gif") repeat;
  width: 195px;
  margin-right: 5px;
}
.month-cell{
  width: calc((100% - 200px - 10px) / 3);
  margin-right: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.month-cell:last-child{
  margin-right: 0
}
.month-cell dt{
  width: 100%;
  background: var(--content-color-gray);
  color: #FFF;
  text-align: center;
  line-height: 30px;
  margin-bottom: 5px
}
.month-cell dd{
  width: calc((100% - 6px) / 3);
  background: #FFF;
  text-align: center;
  line-height: 30px;
}
.season-table__main{
  margin-top: 5px;
}
.season-spot{
  display: flex;
}
.season-spot dt{
  width: 195px;
  flex-shrink: 0;
  background: #FFF;
  font-size: 16px;
  color: var(--content-color-red);
  text-align: center;
  line-height: 30px;
  margin-right: 5px;
  margin-bottom: 5px
}
.season-spot dd{
  width: calc((100% - 24px) / 9);
  flex-grow: 0;
  background: rgba(255 255 255 / 80%);
  margin-right: 5px;
  margin-bottom: 5px;
}
.season-spot dd:last-child{
  margin-right: 0;
}
.season-spot dd.best{
  background: var(--content-color-pink);
  position: relative
}
.season-spot dd.best::after{
  content: "";
  background: url("../img/ico_migoro.png") var(--bg-img-setting);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

/*** 桜の基本情報 ***/
.content__wrapper.info{
  background: #F7F6EB;
  padding-top: 60px;
}
.info__content+.info__content{
  margin-top: 80px;
}
.item__list{
  display: flex;
  gap: 20px;
}
.item__list>li{
  width: calc((100% - (20px * 2)) / 3);
}
.item__list.sakura__brand>li{
  padding-top: 230px;
  background: no-repeat center top / contain;
}
.item__list.sakura__brand>li.yoshino{
  background-image: url("../img/photo_someiyoshino.png")
}
.item__list.sakura__brand>li.shidare{
  background-image: url("../img/photo_shidarezakura.png")
}
.item__list.sakura__brand>li.yae{
  background-image: url("../img/photo_yaezakura.png")
}
.item__name{
  font-size: 28px;
}
.item__name>small{
  font-size: 60%;
}
.item__copy{
  font-size: 16px;
  color: var(--content-color-red)
}
.item__spot{
  margin-top: 16px;
  background: #FFF;
  padding: 8px;
  font-family: var(--font-sans);
  font-weight: normal;
}
.item__spot .is-red{
  display: inline-block;
  margin-right: 4px;
}

/*** FAQ ***/
.faq__list>li:not(:last-child){
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: var(--content-border_s) var(--content-color-gray);
}
.que__txt{
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 18px;
}
.que__txt::before{
  content: "Q.";
  font-size: 24px;
  color: var(--content-color-red);
  display: block;
}
.ans__txt{
  display: flex;
  gap: 8px;
  line-height: 1.25
}
.ans__txt::before{
  content: "A.";
  font-size: 18px;
  display: block;
}

/* 記事コンテンツ */
.post__list{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.post__list>li{
  width: calc((100% - (16px * 3)) / 4);
}
.post__list>li>a{
  display: block
}
.post__list>li>a:hover{
  opacity: 0.7
}
.post__title{
  margin-top: 4px;
  line-height: 1.25
}

.sakura-close-txt{
  font-size: 18px;
  text-align: center;
  margin: 20px auto 50px;
}