@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: #2C2A29;
  --content-color-red: #801919;
  --content-color-pink: #E52237;
  --content-color-gray: #697180;
  --content-color-l_pink: #ffebeb;
  --bg-img-setting: no-repeat center center / contain;
  --content-width-sp: calc(336vw / 3.75);
  --content-width-pc: 1104px;
  --content-width: min(var(--content-width-sp), var(--content-width-pc));
  --content-bg-width-pc: max(100%, 1920px);
  --font-size-pc: 14px;
  --font-size-sp: calc(14vw / 3.75);
  --font-micho: "Zen Old Mincho", serif;
  --font-sans: "Noto Sans JP", sans-serif;
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --content-hover-speed: 0.3s;
  --content-arrow-down: url(/cmn/icon2/expand_more.svg);
  --content-arrow-up: url(/cmn/icon2/expand_less.svg);
  --content-arrow-right: url(/cmn/icon2/chevron_right.svg);
  --content-border-1: 1px solid;
  --content-border-2: 2px solid;
  --content-border-4: 4px solid;
}

.is-pc,
.is-tb{
  display: none
}
.main{
  font-family: var(--font-micho);
  font-size: var(--content-font-size);
  font-weight: bold;
  color: var(--content-color-base);
  line-height: 1.3;
  position: relative;
  background: #FFFFED;
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
  position: relative;
}
a{
  transition: var(--content-hover-speed);
}

.title-wrapper{
  width: 100%;
  height: calc(186vw / 3.75);
  background: url("../img/mvsp.png") no-repeat center top / cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-title>img{
  width: calc(180vw / 3.75);
  height: auto;
}

.main-container{
  padding-top: calc(64vw / 3.75)
}
.head-title{
  margin-bottom: calc(24vw / 3.75);
  font-size: 28px;
  text-align: center
}
.sub-title{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(8vw / 3.75);
}
.sub-title::before,
.sub-title::after{
  content: "";
  display: inline-block;
  width: 4vw;
  height: 1px;
  background-color: var(--content-color-pink);
  flex-grow: 1;
}
.sub-title>span{
  font-size: 24px;
  text-align: center;
}
.note-txt{
  display: block;
  padding-left: 1.0em;
  text-indent: -1.0em;
  font-size: 12px;
}
.is-fit{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.is-pink{
  color: var(--content-color-pink)
}

/*** おすすめのお花見スポット ***/
.content-wrapper.spot{
  padding-bottom: calc(64vw / 3.75)
}
.select-tab{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(16vw / 3.75);
  margin-bottom: calc(40vw / 3.75);
}
.select-tab>li{
  border-radius: 8px;
  background: var(--content-color-gray);
  text-align: center;
  padding: calc(8vw / 3.75) 0;
  color: #FFF;
  cursor: pointer
}
.select-tab>li.is-current,
.select-tab>li:hover{
  background: var(--content-color-pink)
}
.tab-txt{
  font-size: 18px;
}
.tab-txt>small{
  display: block;
  font-size: 12px;
}
.select-content{
  display: none
}
.select-content.is-active{
  display: block;
}
.area-list{
  display: flex;
  gap: calc(8vw / 3.75);
  width: var(--content-width);
  margin: 0 auto calc(40vw / 3.75);
  justify-content: center;
  position: relative;
  z-index: 30
}
.area-list>li{
  flex: 0 0 auto;
}
.area-list>li>a{
  border: var(--content-border-1);
  padding: calc(8vw / 3.75) calc(4vw / 3.75);
  background: #FFF;
  display: flex;
  font-size: 14px;
  text-align: center;
  align-items: center
}
.area-list>li>a::after{
  content: "";
  background: var(--content-arrow-down) var(--bg-img-setting);
  width: calc(18vw / 3.75);
  height: calc(18vw / 3.75);
  display: block;
}
.area-list>li>a:hover{
  background: var(--content-color-l_pink)
}
.area-content+.area-content{
  margin-top: calc(96vw / 3.75)
}
.area-content{
  position: relative
}
.area-content::before{
  content: "";
  background: url("../img/bg_sakura_lft.gif") no-repeat calc(-120vw / 3.75) top / cover;
  width: calc(240vw / 3.75);
  height: calc(196vw / 3.75);
  position: absolute;
  top: calc(-80vw / 3.75);
  left: 0;
  z-index: 0
}
.area-content::after{
  content: "";
  background: url("../img/bg_sakura_ryt.gif") no-repeat left top / contain;
  width: calc(240vw / 3.75);
  height: calc(196vw / 3.75);
  position: absolute;
  bottom: calc(-100vw / 3.75);
  right: 0;
  z-index: 0
}
.area-content>.inner{
  position: relative;
  z-index: 30
}
.area-content>.inner .sub-title{
  margin-bottom: calc(24vw / 3.75)
}
.spot-box{
  display: grid;
  gap: calc(16vw / 3.75);
  align-items: flex-start;
  margin-bottom: calc(24vw / 3.75)
}
.spot-img{
  width: 100%;
  height: calc(200vw / 3.75);
  background: url("../img/bg_photo.gif") repeat;
  padding: calc(8vw / 3.75);
}
.spot-item{
  display: grid;
  gap: calc(4vw / 3.75);
}
.spot-name{
  font-size: 28px;
}
.spot-name>small{
  font-size: 60%;
}
.spot-copy{
  font-size: 18px;
  color: var(--content-color-pink);
}
.spot-txt{
  font-size: 14px;
  line-height: 1.5
}
.copyright{
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: normal;
  color: var(--content-color-gray);
  margin-top: calc(4vw / 3.75);
}
.spot-data{
  background: rgba(255 255 255 / 80%);
  padding: calc(8vw / 3.75);
  margin-top: auto;
  font-family: var(--font-sans);
  font-weight: normal;
}
.spot-data>li{
  display: grid;
  grid-template-columns: 4em 1fr;
  gap: calc(4vw / 3.75);
  font-size: 12px;
  font-weight: bold;
  line-height: 1.5
}

/*** product__content ***/
.product-content{
  font-family: var(--font-sans);
}
.product-list.card-style .item-txt__point{
  font-weight: normal
}
.link-button{
  display: grid;
  gap: calc(24vw / 3.75);
  margin: calc(24vw / 3.75) auto 0;
}
.link-button>li {
  width: 100%;
  flex-grow: 1;
}
.link-button>li>a {
  display: block;
  background: var(--content-color-pink);
  border-radius: 100px;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  padding: calc(16vw / 3.75);
  position: relative;
}
.link-button>li>a::after {
  content: "";
  -webkit-mask: var(--bg-img-setting) var(--content-arrow-right);
  mask: var(--bg-img-setting) var(--content-arrow-right);
  background: #FFF;
  width: calc(24vw / 3.75);
  height: calc(24vw / 3.75);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.link-button>li>a:hover{
  background: var(--content-color-red);
}

/*** 検索モジュール ***/
.content-wrapper.search{
  background: var(--content-color-l_pink);
  padding: calc(40vw / 3.75) 0;
  font-family: var(--font-sans);
}
.content-wrapper.search .inner{
  width: 100vw;
}
.content-wrapper.search .inner .sub-title{
  margin-bottom: calc(24vw / 3.75)
}
.myBlockSearch {
  padding: 56px 0 88px;
}
.main .rn-searchMod__input:checked + .rn-searchMod__checkBox::after {
  width: 12px;
  height: 6px;
  top: 3px!important;
  left: 4px;
}

/*** 扉ページ ***/
.top .content-wrapper{
  padding-bottom: calc(40vw / 3.75);
}
.top .content-wrapper .inner{
  display: grid;
  gap: calc(32vw / 3.75);
}
.top .content-wrapper .head-title{
  margin-bottom: 0;
}
.dep-tab{
  display: flex;
  gap: calc(24vw / 3.75);
  justify-content: center;
}
.dep-tab>li>a{
  display: block;
  width: 100%;
  border-radius: 8px;
  background: var(--content-color-pink);
  font-size: 20px;
  color: #FFF;
  text-align: center;
  padding: 16px
}
.dep-tab>li>a:hover{
  background: var(--content-color-red);
}

/*** 見頃カレンダー ***/
.season-table-wrap{
  width: 100vw;
  background: url("../img/bg_cal.gif") repeat;
  padding: calc(20vw / 7.5) calc(20vw / 7.5) calc(10vw / 7.5) ;
  margin: 0 calc(50% - 50vw) calc(10vw / 7.5);
  overflow-x: auto;
}
.season-table{
  width: calc(1020vw / 7.5);
  position: relative
}
.season-table *{
  font-family: var(--font-sans);
  font-size: calc(20vw / 7.5);
  font-weight: 700;
}
.season-table__upper{
  display: flex;
  gap: calc(5vw / 7.5);
}
.spacebox{
  background: url("../img/bg_cal.gif") repeat;
  width: calc(195vw / 7.5);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 30
}
.spacebox::before{
  content: "";
  background: url("../img/bg_cal.gif") repeat;
  width: calc(20vw / 7.5);
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(-20vw / 7.5)
}
.month-cell{
  width: calc((100% - (195vw / 7.5) - (5vw / 7.5) * 2) / 3);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: calc(5vw / 7.5);
}
.month-cell dt{
  width: 100%;
  background: var(--content-color-gray);
  color: #FFF;
  text-align: center;
}
.month-cell dd{
  width: calc((100% - ((5vw / 7.5) * 2)) / 3);
  background: #FFF;
  text-align: center;
}
.season-table__main{
  margin-top: calc(5vw / 7.5);
}
.season-spot{
  display: flex;
  position: relative;
  z-index: 20;
  gap: calc(5vw / 7.5);
  margin-bottom: calc(5vw / 7.5);
}
.season-spot::after{
  content: "";
  background: url("../img/bg_cal.gif") repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}
.season-spot dt{
  width: calc(195vw / 7.5);
  flex-shrink: 0;
  background: #FFF;
  color: var(--content-color-red);
  text-align: center;
  padding:  calc(5vw / 7.5) 0;
  position: sticky;
  left: 0;
  z-index: 30;
}
.season-spot dt:before{
  content: "";
  background: url("../img/bg_cal.gif") repeat;
  width: calc(20vw / 7.5);
  height: 100%;
  position: absolute;
  top: 0;
  left: calc(-20vw / 7.5)
}
.season-spot dd{
  width: calc((100% - (195vw / 7.5) - (5vw / 7.5) * 8) / 9);
  flex-grow: 0;
  background-color: rgba(255 255 255 / 80%);
  position: relative;
  z-index: 20
}
.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: calc(36vw / 7.5);
  height: calc(36vw / 7.5);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.info-content{
  display: grid;
  gap: calc(16vw / 3.75);
}
.item-list{
  display: grid;
  gap: calc(16vw / 3.75)
}
.item-list>li{
  display: grid;
  gap: 8px;
  grid-row: span 4;
}
.sakura-brand{
  display: flex;
  overflow: scroll;
  align-items: flex-start;
}
.sakura-brand>li{
  flex: 0 0 85%;
  padding-top: calc(230vw / 3.75);
  background: no-repeat center top / contain;
  display: grid;
  gap: calc(8vw / 3.75);
  align-items: flex-start;
}
.sakura-brand>li.yoshino{
  background-image: url(../img/photo_someiyoshino.png);
}
.sakura-brand>li.shidare{
  background-image: url(../img/photo_shidarezakura.png);
}
.sakura-brand>li.yae{
  background-image: url(../img/photo_yaezakura.png);
}
.sakura-best>li{
  display: grid;
  grid-template-columns: 40vw 1fr;
  gap: calc(8vw / 3.75);
}
.sakura-best>li .item-name{
  font-size: 18px;
}
.sakura-best>li  .item-img{
  aspect-ratio: 550 / 400;
  height: 30vw
}

.item-img{
  width: 100%;
  height: calc(230vw / 3.75);
}
.item-name{
  font-size: 20px;
}
.item-copy{
  font-size: 14px;
  color: var(--content-color-pink);
}
.item-txt{
  line-height: 1.5;
}
.item-spot{
  background: #FFF;
  padding: 8px;
  font-family: var(--font-sans);
  font-weight: normal;
}
.faq-list{
  display: grid;
  gap: calc(16vw / 3.75);
}
.que-txt{
  background: var(--content-color-l_pink);
  padding: calc(16vw / 3.75);
  border-radius: 8px;
  display: flex;
  position: relative;
  cursor: pointer
}
.que-txt:hover{
  background: #e9ecf2;
}
.que-txt>span{
  display: flex;
  gap: calc(8vw / 3.75);
  font-weight: bold;
  line-height: 1.5;
  flex: 1;
}
.que-txt>span::before{
  content: "Q";
  color: var(--content-color-pink);
  display: inline-block;
}
.que-txt::after{
  content: "";
  background: var(--bg-img-setting);
  background-image: var(--content-arrow-down);
  width: calc(24vw / 3.75);
  height: calc(24vw / 3.75);
  margin: auto;
}
.que-txt.is-open{
  border-radius: 8px 8px 0 0;
}
.que-txt.is-open::after{
  background-image: var(--content-arrow-up);
}
.ans-txt{
  display: none;
  background: #FFF;
  border: var(--content-border-2) #E9ECF2;
  border-radius: 0 0 8px 8px;
  border-top: none;
  padding: calc(16vw / 3.75);
  line-height: 1.5;
}

.post-list{
  display: grid;
  gap: calc(16vw / 3.75);
}
.post-list>li:hover{
  opacity: .8;
}
.post-list>li>a{
  display: grid;
  grid-template-columns: 40vw 1fr;
  gap: calc(8vw / 3.75);
}
.post-img{
  aspect-ratio: 3 / 2;
}