@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

/* CSS Document */
:root{
  --content-color-base: #2C2A29;
  --content-color-red: #EC2A29;
  --content-color-blue: #2D4480;
  --content-color-green: #01776B;
  --content-color-beige: #F2F0DA;
  --content-grade-blue: linear-gradient(to right, var(--content-color-green) 0%, var(--content-color-blue) 100%);
  --bg-img-setting: no-repeat center center / contain;
  --bg-width-pc: max(100%, 1920px);
  --content-width: min((335vw / 3.75), 1104px);
  --font-size-pc: 16px;
  --font-size-sp: calc(16vw / 3.75);
  --font-sans: 'Noto Sans JP', serif;
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --content-hover-speed: 0.3s;
  --content-border-s: 1px solid
}

.nosp{
  display: none
}
.main{
  font-family: var(--font-sans);
  font-size: var(--content-font-size);
  color: var(--content-color-base);
  position: relative;
  line-height: 1.3
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
}
a{
  transition: var(--content-hover-speed);
}

/***** MV・ナビ *****/
.title-wrapper {
  width: 100%;
}
.title-wrapper>.inner{
  width: 100vw
}
.nav-wrapper{
  width: 100%;
  background-color: var(--content-color-sky);
  padding: 0 calc(8vw / 3.75);
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  position: relative;
  z-index: 10
}
.navigation-list{
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
.navigation-list>li{
  width: calc(100% / 3);
  padding: calc(8vw / 3.75) 0;
}
.navigation-list>li:nth-child(n+4){
  width: calc(100% / 2)
}
.navigation-list>li:nth-child(-n+3){
  border-bottom: var(--content-border-s) #C0C5CC;
}
.navigation-list>li>a{
  display: block;
  border-right: var(--content-border-s) #C0C5CC;
  text-align: center;
}
.navigation-list>li:nth-child(3n)>a,
.navigation-list>li:last-child>a{
  border-right: none
}
.navigation-list>li>a>span{
  display: inline-block;
  font-weight: bold;
}

/***** メインコンテンツ *****/
.main-container{
  position: relative;
  background: linear-gradient(90deg, transparent 0%, #C4F2AE 30%, #92E5E1 70%, transparent 100%)
}
.main-wrapper{
  background: url("../img/bg_grid.png") repeat;
  padding-top: calc(40vw / 3.75);
}
.content-wrapper{
  width: 100%;
  padding-bottom: calc(40vw / 3.75)
}
.content-wrapper.is-white{
  background: #FFF;
  padding-top: 0;
}
.content-wrapper>.inner{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.head-title{
  font-size: calc(28vw / 3.75);
  text-align: center;
}
.content-wrapper.is-white .head-title{
  height: calc(58vw / 3.75);
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--content-grade-blue);
  font-size: calc(28vw / 3.75);
  color: #FFF;
  line-height: 1.0;
  margin-bottom: calc(20vw / 3.75);
}
.content-wrapper.is-white .head-title>small{
  font-size: calc(16vw / 3.75);
}
.bodycopy{
  font-size: calc(18vw / 3.75);
  text-align: center;
}
.flexbox{
  display: flex;
  flex-direction: column;
}
.is-blue{
  color: var(--content-color-blue);
}
.is-green{
  color: var(--content-color-green);
}
.is-red{
  font-weight: bold;
  color: var(--content-color-red);
}
.bg-blue{
  background-color: var(--content-color-blue);
}
.bg-green{
  background-color: var(--content-color-green);
}
.is-fit{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/** マップ **/
.content-wrapper.map>.inner{
  gap: 0
}
.map-img{
  text-align: center;
}
.area-list{
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  grid-template-columns: repeat(2, calc((100% - (8vw / 3.75)) / 2));
  direction: rtl;
  gap: calc(8vw / 3.75);
}
.area-list>li{
  width: 100%;
  background: #FFF;
  border-radius: 100px;
  box-shadow: 0 0 4px rgba(0 0 0 / 25%);
  line-height: calc(44vw / 3.75);
  display: flex;
  flex-direction: row-reverse;
  gap: calc(4vw / 3.75);
  align-items: center;
  padding-left: calc(12vw / 3.75);
}
.area-list>li>span{
  flex: 1;
  display: inline-block;
  font-weight: bold;
  text-align: center;
}
.area-list>li:nth-child(-n+5){
  color: var(--content-color-blue)
}
.area-list>li:nth-child(n+6){
  color: var(--content-color-green)
}
.area-list>li::before{
  content: "";
  width: calc(12vw / 3.75);
  height: calc(26vw / 3.75);
  display: block;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}
.area-list>li:nth-child(-n+5)::before{
  background-color: var(--content-color-blue)
}
.area-list>li:nth-child(n+6)::before{
  background-color: var(--content-color-green)
}
.area-list>li:first-child::before{
  -webkit-mask-image: url("../img/ico_A.svg");
  mask-image: url("../img/ico_A.svg")
}
.area-list>li:nth-child(2)::before{
  -webkit-mask-image: url("../img/ico_B.svg");
  mask-image: url("../img/ico_B.svg")
}
.area-list>li:nth-child(3)::before{
  -webkit-mask-image: url("../img/ico_C.svg");
  mask-image: url("../img/ico_C.svg")
}
.area-list>li:nth-child(4)::before{
  -webkit-mask-image: url("../img/ico_D.svg");
  mask-image: url("../img/ico_D.svg")
}
.area-list>li:nth-child(5)::before{
  -webkit-mask-image: url("../img/ico_E.svg");
  mask-image: url("../img/ico_E.svg")
}
.area-list>li:nth-child(6)::before{
  -webkit-mask-image: url("../img/ico_F.svg");
  mask-image: url("../img/ico_F.svg")
}
.area-list>li:nth-child(7)::before{
  -webkit-mask-image: url("../img/ico_G.svg");
  mask-image: url("../img/ico_G.svg")
}
.area-list>li:nth-child(8)::before{
  -webkit-mask-image: url("../img/ico_H.svg");
  mask-image: url("../img/ico_H.svg")
}
.area-list>li:nth-child(9)::before{
  -webkit-mask-image: url("../img/ico_I.svg");
  mask-image: url("../img/ico_I.svg")
}
.area-list>li:last-child::before{
  -webkit-mask-image: url("../img/ico_J.svg");
  mask-image: url("../img/ico_J.svg")
}
.area-list>li:hover{
  background: var(--content-grade-blue);
  color: #FFF;
}
.area-list>li:hover::before{
  background-color: #FFF;
}

/** ポイント **/
.content-wrapper.point{
  display: flex;
  flex-direction: column;
  gap: calc(40vw / 3.75)
}
.inner.point{
  gap: calc(40vw / 3.75);
}
.point-title-wrapper{
  width: var(--content-width);
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(20vw / 3.75);
}
.point-container.point3 .point-title-wrapper{
  padding-bottom: calc(20vw /3.75);
  border-bottom: var(--content-border-s)
}
.point-title-wrapper::before{
  content: "";
  background: var(--bg-img-setting);
  width: calc(88vw / 3.75);
  aspect-ratio: 158 / 68;
  display: block;
}
.point-container.point1 .point-title-wrapper::before{
  background-image: url("../img/ico_point1.svg")
}
.point-container.point2 .point-title-wrapper::before{
  background-image: url("../img/ico_point2.svg")
}
.point-container.point3 .point-title-wrapper::before{
  background-image: url("../img/ico_point3.svg")
}
.point-title{
  font-size: calc(24vw / 3.75);
  font-weight: 900;
  text-align: center;
}
.point-copy{
  width: fit-content;
  margin: auto;
  padding-top: calc(10vw / 3.75);
  font-size: calc(18vw / 3.75);
  text-align: center;
  border-top: var(--content-border-s)
}
.flexbox.point1{
  gap: 24px;
}
.flexbox.point1 .point-title-wrapper{
  flex: 1
}
.by-note-txt{
  background: #FFF;
  padding: calc(4vw / 3.75) calc(10vw / 3.75);
  font-size: calc(14vw / 3.75);
  font-weight: bold;
  text-align: center;
  width: 100%;
  line-height: 1.5
}

.point-container.point2,
.point-container.point3{
  display: flex;
  flex-direction: column;
  gap: calc(40vw / 3.75);
}
.spot-content.tne01,
.spot-content.kum01{
  position: relative;
  margin-bottom: calc(80vw / 3.75)
}
.spot-content.tne01::after,
.spot-content.kum01::after{
  content: "";
  background: no-repeat center / contain;
  width: 100%;
  aspect-ratio: 1104 / 100;
  position: absolute;
  right: 0;
  bottom: calc(-80vw / 3.75);
  left: 0;
  margin: auto
}
.spot-content.tne01::after{
  background-image: url("../img/txt_tane.png") 
}
.spot-content.kum01::after{
  background-image: url("../img/txt_yaku.png") 
}

.spot-content .flexbox .spotbox{
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
}
.spotbox.is-left{
  padding-bottom: 54vw;
}
.spotbox.is-right{
  padding-top: 54vw;
}
.spotbox::after{
  content: "";
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-size: contain;
  background: no-repeat center / contain;
  width: 100vw;
  aspect-ratio: 960 / 638;
  z-index: 5;
  display: block;
  margin: 0 calc(50% - 50vw);
  position: absolute;
}
.spotbox.is-left::after{
  -webkit-mask-position: left top;
  mask-position: left top;
  -webkit-mask-image: url("../img/bg_mask01.svg");
  mask-image: url("../img/bg_mask01.svg");
  bottom: 0;
  left: 0;
}
.spotbox.is-right::after{
  -webkit-mask-position: right top;
  mask-position: right top;
  -webkit-mask-image: url("../img/bg_mask02.svg");
  mask-image: url("../img/bg_mask02.svg");
  top: 0;
  right: 0;
}
.spot-content.tne01 .spotbox.is-left::after{
  background-image: url("../img/photo/ph_JAXA_garage.webp");
}
.spot-content.tne01 .spotbox.is-right::after{
  background-image: url("../img/photo/ph_JAXA_observatory.webp");
}
.spot-content.tne02 .spotbox.is-left::after{
  background-image: url("../img/photo/ph_JAXA_rcc.webp");
}
.spot-content.tne02 .spotbox.is-right::after{
  background-image: url("../img/photo/ph_JAXA_museum.webp");
}
.spot-content.kum01 .spotbox.is-left::after{
  background-image: url("../img/photo/ph_yaku_land.webp");
}
.spot-content.kum01 .spotbox.is-right::after{
  background-image: url("../img/photo/ph_yaku_kigensugi.webp");
}
.spot-content.kum02 .spotbox.is-left::after{
  background-image: url("../img/photo/ph_yaku_shiratani.webp");
}
.spot-content.kum02 .spotbox.is-right::after{
  background-image: url("../img/photo/ph_yaku_ohko_taki.webp");
}

.spot-txtbox{
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10
}
.spot-img{
  width: calc(207vw / 3.75);
  aspect-ratio: 207 / 30;
  margin-bottom: calc(8vw / 3.75)
}
.spot-title>span{
  display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
  font-size: calc(24vw / 3.75);
  color: #FFF;
  background: var(--content-grade-blue);
  line-height: 1.8;
  text-align: center;
}
.spot-title>span>small{
  display: block;
  width: fit-content;
  background: var(--content-grade-blue);
  font-size: calc(14vw / 3.75);
  font-weight: bold;
  color: #FFF;
}
.spot-name{
  width: fit-content;
  font-size: calc(20vw / 3.75);
  color: #FFF;
  background: #000;
  text-align: center;
}
.spot-txt{
  text-align:justify;
}
.spot-txt>span{
  display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
  background: #FFF;
  font-size: calc(16vw / 3.75);
  line-height: 2.0
}
.spotbox.is-left .spot-name{
  order: 2
}
.spotbox.is-left .spot-txt{
  order: 1
}
.spot-note>li{
  font-size: calc(14vw / 3.75);
  padding-left: 1.0em;
  text-indent: -1.0em;
}

/** ホテル **/
.hotel-list{
  gap: calc(20vw / 3.75);
}
.hotel-list>li{
  display: flex;
  flex-direction: column;
  gap: calc(10vw / 3.75);
}
.hotel-img{
  width: 100%;
  aspect-ratio: 550 / 400;
  position: relative
}
.hotel-label{
  font-size: calc(28vw / 3.75);
  color: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 calc(4vw / 3.75);
  text-align: center;
}
.hotel-item{
  display: flex;
  flex-direction: column;
  gap: calc(8vw / 3.75);
}
.hotel-name{
  font-size: calc(20vw / 3.75);
  text-align: center;
}
.hotel-txt{
  font-size: calc(16vw / 3.75);
}
.recommend-hotel{
  background: var(--content-color-beige);
  border-radius: calc(30vw / 3.75);
  padding: calc(20vw / 3.75);
  display: flex;
  flex-direction: column;
  gap: calc(10vw / 3.75);
}
.recommend-title-wrapper{
  display: flex;
  flex-direction: column;
  gap: calc(8vw / 3.75)
}
.recommend-title{
  text-align: center
}
.recommend-title .hotel-label{
  position: static;
  display: inline-flex;
  margin-right: calc(8vw / 3.75)
}
.recommend-title-txt{
  display: inline;
  font-size: calc(24vw / 3.75)
}
.recommend-content{
  display: flex;
  flex-direction: column;
  gap: calc(10vw / 3.75)
}
.recommend-img{
  display: grid;
  grid-template-rows: repeat(2, auto);
}
.note-txt{
  font-size: calc(14vw / 3.75);
}

/** FDA **/
.inner.fda{
  gap: calc(20vw / 3.75);
  align-items: center
}
.fda-content{
  gap: calc(20vw / 3.75);
  align-items: center;
  justify-content: center
}
.fda-content::before{
  content: "";
  background: url("../img/img_fda.png") var(--bg-img-setting);
  width: calc(335vw / 3.75);
  aspect-ratio: 404 / 197;
  display: block;
}
.schedule-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(12vw / 3.75);
}
.schedule-item::before{
  content: "";
  background: url("../img/logo_fda.png") var(--bg-img-setting);
  width: calc(145vw / 3.75);
  aspect-ratio: 145 / 62;
  display: block;
}
.schedule-midashi{
  font-size: calc(28vw / 3.75);
  font-weight: bold;
}
.schedule-list>li{
  font-weight: bold;
  line-height: 1.5
}
.seat-txt{
  font-size: calc(18vw / 3.75);
  font-weight: bold;
  text-align: center;
  margin-bottom: calc(12vw / 3.75);
}
.seat-txt>small{
  display: block;
  font-size: calc(16vw / 3.75);
  font-weight: normal
}
.seat-img{
  text-align: center
}
.notice-midashi{
  font-size: calc(18vw / 3.75);
  font-weight: bold;
}

/** フッター **/
.content-wrapper.footer{
  background: var(--content-color-beige);
  padding: calc(40vw / 3.75) 0;
}
/** 特集バナー **/
.top-bnr{
  margin: 0 auto calc(16vw / 3.75);
  text-align: center
}
.bnr-list{
  display: flex;
  flex-wrap: wrap;
  gap: calc(20vw / 3.75);
  justify-content: center;
}
.tokushu-bnr{
  width: calc((100% - (20vw / 3.75)) / 2)
}
.tokushu-bnr>a>img{
  border-radius: 8px
}
div[class*="-bnr"]>a{
  display: block;
}