@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

:root{
  --content-color-sky: #c5f2ff;
  --content-color-blue: #00b7f0;
  --content-color-gray: #DBDEE0;
  --content-color-gray_t: rgba(40 40 40 / 65%);
  --content-color-black_t: rgba(0 0 0 / 40%);
  --bg-width-sp: max(100%, 100vw);
  --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-family-sans: 'Noto Sans JP', sans-serif;
  --bg-wide-setting: no-repeat center top / var(--bg-width-sp);
  --bg-img-setting: no-repeat center center / cover;
  --content-hover-speed: 0.3s;
  --content-shadow: 2px 2px 10px rgb(0 0 0 / 30%);
  --content-arrow-right: url(../img/icon_arrow_right_blue.svg);
  --content-arrow-right_w: url(../img/icon_arrow_right_white.svg);
  --content-border_dot: 2px dotted var(--content-color-gray);
}

.nosp{
  display: none
}
.main{
  font-family: var(--font-family-sans);
  font-size: var(--content-font-size);
  font-weight: 500;
  position: relative;
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
}

/***** MV・ナビ *****/
.mv__container {
  width: 100%;
  height: calc(600vw / 7.5);
  background: url(../images/sp_mv.jpg) var(--bg-wide-setting);
  position: relative;
  padding: 0;
}
.mv__container::before{
  content: "";
  width: 100%;
  height: 100%;
  background: var(--content-color-black_t);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.title-logo{
  margin: auto;
}
.title-logo>img {
  width: calc(600vw / 7.5);
  position: absolute;
  top: calc(30vw / 7.5);
  right: 0;
  left: 0;
  margin: auto;
}
.read__copy {
  width: 94vw;
  font-weight: 700;
  color: #FFF;
  margin: auto;
  padding-bottom: calc(20vw / 7.5);
  text-align: center;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

.nav-wrapper {
  width: 100%;
  background: #000;
}
.nav__box {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
}
.nav__box>li{
  width: calc(100% / 2);
  padding: calc(20vw / 7.5) 0;
}
.nav__box>li:nth-child(odd){
  border-right: 1px solid #FFF
}
.nav__box>li:nth-child(n+3){
  border-top: 1px solid #FFF
}
.nav__box>li>a {
  display: block;
  padding-bottom: calc(20vw / 7.5);
  font-size: calc(26vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
  position: relative;
  transition: var(--content-hover-speed);
}
.nav__box>li>a::after {
  content: "";
  background: var(--bg-img-setting);
  background-image: url(../images/nav_arrow.png);
  width: calc(21vw / 7.5);
  height: calc(14vw / 7.5);
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.nav__box>li:hover {
  background: var(--content-color-blue);
}
.nav__box>li:hover>a::after {
  background-image: url(../images/nav_arrow_over.png)
}

/*****メインコンテンツ *****/
.content-wrapper{
  padding: calc(50vw / 7.5) 0
}
.inner__box{
  width: 94vw;
  margin: auto
}
.head-title{
  margin-bottom: calc(30vw / 7.5);
  text-align: center;
}
.head-title>span{
  display: inline-block;
  font-size: calc(48vw / 7.5);
  font-weight: 900;
  padding: 0 calc(20vw / 7.5);
  position: relative
}
.head-title>span::before,
.head-title>span::after{
  content: "";
  background: url(../images/mark01r.png) var(--bg-img-setting);
  width: calc(40vw / 7.5);
  height:calc(59vw / 7.5);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.head-title>span::before{
  left: calc(-40vw / 7.5);
}
.head-title>span::after{
  right: calc(-40vw / 7.5);
  transform: scale(-1, 1);
}
.head-title>span>small{
  display: block;
  font-size: calc(32vw / 7.5);
}

/*** theme__container ***/
.theme__container {
  background: var(--content-color-sky);
}
.read__txt {
  text-align: center;
  margin-bottom: calc(20vw / 7.5);
}
.content__container{
  margin-bottom: calc(50vw / 7.5);
}
.content__container:last-child{
  margin-bottom: 0;
}
.content__box{
  display: flex;
  flex-wrap: wrap;
  gap: calc(20vw / 7.5);
  position: relative;
  padding: calc(20vw / 7.5);
  margin: 0 auto calc(20vw / 7.5);
  background: #FFF;
}
.theme-title{
  width: 100%;
  order: 1;
  font-size: calc(32vw / 7.5);
  font-weight: 700;
  color: var(--content-color-blue);
  position: relative
}
.theme-title>span{
  display: block;
  font-size: 70%;
  color: inherit
}
.theme-title::after {
  content: "";
  display: block;
  background: url(../images/line01.png) repeat;
  width: 100%;
  height: 5px;
  margin-top: calc(10vw / 7.5);
}
.theme-txtbox{
  width: 100%;
  order: 3
}
.theme-img{
  width: 100%;
  height: calc(360vw / 7.5);
  order: 2
}
.theme-img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.theme-target{

  background: var(--content-color-gray);
  margin-top: calc(20vw / 7.5);
  padding: 2.0em calc(10vw / 7.5) calc(10vw / 7.5);
  position: relative
}
.theme-target::before{
  content: "【こんな方におすすめ】";
  font-size: calc(22vw / 7.5);
  position: absolute;
  top: calc(10vw / 7.5);
  left: calc(10vw / 7.5);
}
.theme-target>li{
  font-size: calc(22vw / 7.5);
  padding-left: 1.0em;
  position: relative
}
.theme-target>li::before{
  content: "★";
  position: absolute;
  top: 0;
  left: 0;
}

/*** product__container ***/
.product-title{
  margin-bottom: calc(20vw / 7.5);
  text-align: center;
  display: flex;
  align-items: center;
}
.product-title>span{
  display: block;
  font-size: calc(36vw / 7.5);
  font-weight: 700;
  color: var(--content-color-blue);
  padding: 0 calc(30vw / 7.5);
}
.product-title::before,
.product-title::after{
  content: "";
  display: block;
  width: 10vw;
  height: 1px;
  background: var(--content-color-blue);
  flex-grow: 1
}
.more-link{
  width: 90vw;
  margin: calc(30vw / 7.5) auto;
  display: flex;
  flex-wrap: wrap;
  row-gap: calc(20vw / 7.5)
}
.more-link>a{
  display: block;
  font-size: calc(26vw / 7.5);
  font-weight: 700;
  text-align: center;
  border: 3px solid;
  padding: calc(20vw / 7.5);
  position: relative;
  flex-grow: 1;
  transition: var(--content-hover-speed);
}
.more-link>a::after{
  content: "";
  background: var(--bg-img-setting);
  background-image: url(/cmn/icon/icon_arrow_right_black.svg);
  width: calc(40vw / 7.5);
  height: calc(40vw / 7.5);
  position: absolute;
  top: 0;
  right: 0.5em;
  bottom: 0;
  margin: auto;
}
.more-link>a:hover{
  background: #000;
  color: #FFF
}
.more-link>a:hover::after{
  background-image: url(/cmn/icon/icon_arrow_right_white.svg); 
}
.more-link+.product-title{
  margin-top: calc(50vw / 7.5)
}
#bnrData{
  margin-top: calc(100vw / 7.5)
}
/* search__container */
.search__container {
  background: url("../images/sp_search_photo.jpg") repeat center top;
}

/* point__container */
.point-list{
  display: flex;
  flex-wrap: wrap;
  gap: calc(20vw / 7.5);
}
.point-list>li{
  width: calc((100% - (20vw / 7.5)) / 2);
  display: flex;
  flex-direction: column;
}
.point__title{
  height: 2.8em;
  font-size: calc(30vw / 7.5);
  font-weight: 700;
  color: var(--content-color-blue);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2
}
.point__txt{
  flex-grow: 1;
  margin-bottom: calc(20vw / 7.5);
}

/* spot__container */
.spot__container {
  background: url(../images/sp_bg_spot.png) var(--bg-wide-setting);
  background-position: center bottom;
  background-color: #ccfae1;
}
.spot-list{
}
.spot-list>li{
  background: #FFF;
}
.spot__photo{
  background: no-repeat center top / cover;
  height: calc(400vw / 7.5);
}
.spot__name{
  padding: calc(10vw / 7.5);
  font-size: calc(40vw / 7.5);
  font-weight: 700;
  color: #FFF;
  background: var(--content-color-black_t);
}
.spot__name>small{
  font-size: calc(24vw / 7.5);
}
.spot__txt{
  padding: calc(16vw / 7.5);
}