@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;700&display=swap');

:root{
  --content-color-base: #333;
  --content-color-brown: #5f282b;
  --content-color-blue: #083869;
  --content-color-red: #D91313;
  --content-color-gray: #8a8582;
  --bg-img-setting: no-repeat center center / contain;
  --bg-cover-setting: no-repeat center top / auto;
  --bg-width-pc: max(100%, 1920px);
  --content-width: min((710vw / 7.5), 992px);
  --font-size-pc: 14px;
  --font-size-sp: calc(24vw / 7.5);
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --content-font-size: min(var(--font-size-sp), var(--font-size-pc));
  --content-hover-speed: 0.3s;
  --content-arrow-down: url(/cmn/icon/icon_arrow_down_white.svg);
  --content-arrow-right: url(../img/aro01.png);
  --content-arrow-right_over: url(../img/aro01_over.png);
  --content-border_s: 1px solid;
  --content-border_m: 2px solid;
}

.nosp{
  display: none
}
.main{
  font-family: var(--font-serif);
  font-size: var(--content-font-size);
  font-weight: 500;
  color: var(--content-color-base);
  position: relative;
  line-height: 1.0;
  background: url("../img/bg.png") repeat
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
  position: relative
}
.note__txt{
  font-size: calc(20vw / 7.5);
  padding-left: 1.0em;
  text-indent: -1.0em;
}

/*** MV・ナビ ***/
.title__wrapper{
  width: 100%;
}
.title__wrapper .inner{
  width: 100vw
}
.display_selected {
  width: 90vw;
  margin: auto;
  padding: calc(20vw / 7.5);
  background: var(--content-color-red);
  border-radius: calc(32vw/ 7.5);
  font-size: calc(30vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
  position: relative;
  cursor: pointer;
  z-index: 20
}
.display_selected::after {
  content: "";
  background: var(--content-arrow-down) var(--bg-img-setting);
  width: calc(48vw / 7.5);
  height: calc(48vw / 7.5);
  position: absolute;
  top: 0;
  right: calc(16vw / 7.5);
  bottom: 0;
  margin: auto;
}
.dep-select-zone {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  transition: all .5s;
  z-index: 50;
  background: rgba(0 0 0 / 80%);
  padding: calc(100vw / 7.5) calc(80vw / 7.5);
}
.dep-select li {
  cursor: default;
  padding: calc(20vw / 7.5);
  font-size: calc(30vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
}
.dep-select li:hover, .dep-select li.selected {
  background: #FFF;
  color: #000;
}
.close-button{
  margin: calc(40vw / 7.5) auto;
  width: 5em;
  padding: calc(10vw / 7.5);
  border: 1px solid;
  font-size: calc(30vw / 7.5);
  font-weight: bold;
  color: #FFF;
  text-align: center;
}

/*** .main__content ***/
.main__content{
  padding-top: calc(80vw / 7.5);
}
.main__bodycopy{
  font-size: calc(28vw / 7.5);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: calc(40vw / 7.5);
}
.nav__wrapper{
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: var(--content-color-brown);
}
.nav__list{
  display: flex;
  flex-wrap: wrap;
}
.nav__list>li{
  width: calc(100% / 2);
}
.nav__list>li:nth-child(odd){
  border-right: var(--content-border_s) #FFF;
}
.nav__list>li:nth-child(-n+2){
  border-bottom: var(--content-border_s) #FFF;
}
.nav__list>li>a{
  display: block;
  padding: calc(32vw / 7.5) 0 calc(48vw / 7.5);
  text-align: center;
  position: relative;
  color: #FFF;
}
.nav__list>li>a>span{
  font-size: calc(26vw / 7.5);
  font-weight: bold;
  position: relative;
}
.nav__list>li>a::after{
  content: "";
  background: var(--content-arrow-down) var(--bg-img-setting);
  width: calc(48vw / 7.5);
  height: calc(48vw / 7.5);
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.head-title{
  font-size: calc(40vw / 7.5);
  font-weight: bold;
  color: var(--content-color-blue);
  text-align: center;
}
.content__wrapper{
  padding: calc(80vw / 7.5) 0 calc(40vw / 7.5);
  background: var(--bg-cover-setting)
}

/* flexboxのitem */
.item__img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.item__midashi{
  font-size: calc(28vw / 7.5);
  font-weight: bold;
  color: var(--content-color-brown);
  line-height: 1.5
}
.item__txt{
  font-weight: bold;
  line-height: 1.4
}
.copyright{
  display: block;
  font-family: var(--font-sans);
  font-size: calc(20vw / 7.5);
  font-weight: normal;
}

/***** おすすめツアー *****/
.content__wrapper.tour{
  padding-bottom: calc(160vw / 7.5);
}
.head-title#tour{
  display: flex;
  justify-content: center;
  gap: calc(8vw / 7.5);
  margin-bottom: calc(32vw / 7.5);
}
.head-title#tour::before,
.head-title#tour::after{
  content: "";
  background: var(--bg-img-setting) url("../img/h2_deco.png");
  width: calc(42vw / 7.5);
  height: calc(41vw / 7.5);
  display: block;
}
.js-product-wrapper *{
  font-family: var(--font-sans);
}
.area00{
  display: none
}
.product-list{
  line-height: 1.4
}
.link__wrapper{
  display: flex;
  flex-direction: column;
  gap: calc(16vw / 7.5);
  justify-content: center;
  margin: calc(24vw / 7.5) auto;
}
.more__link{
  width: 90vw;
  margin: auto;
}
.more__link>a{
  display: block;
  font-size: calc(26vw / 7.5);
  font-weight: bold;
  color: var(--content-color-blue);
  text-align: center;
  border-radius: calc(42vw / 7.5);
  background: #FFF;
  position: relative;
  padding: calc(24vw / 7.5) 0;
  border: var(--content-border_m);
}
.more__link>a::after{
  content: "";
  background: var(--bg-img-setting);
  background-image: var(--content-arrow-right);
  width: calc(24vw / 7.5);
  height: calc(34vw / 7.5);
  position: absolute;
  top: 0;
  right: calc(16vw / 7.5);
  bottom: 0;
  margin: auto;
}

/*** お伊勢参り ***/
.content__wrapper.jingu{
  padding-top: 0
}
.jingu__title__box{
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: calc(140vw / 7.5) 0;
  background: url("../img/sp_ise_bg_top.png") no-repeat left top / 100% auto, url("../img/sp_ise_bg_bottom.png") no-repeat center bottom / 100% auto, #acdaff;
}
.head-title#jingu{
  width: calc(500vw / 7.5);
  position: absolute;
  top: calc(-115vw / 7.5);
  right: 0;
  left: 0;
  margin: auto
}
.jingu__text__box{
  width: var(--content-width);
  margin: auto;
  background: rgba(255 255 255 / 80%);
  padding: calc(16vw / 7.5);
}
.jingu__txt{
  font-family: var(--font-sans);
  font-size: calc(26vw / 7.5);
  line-height: 1.6;
}
.midashi__txt{
  display: block;
  margin-top: calc(16vw / 7.5);
  font-weight: bold
}
.access__list>li{
  font-family: var(--font-sans);
  font-weight: bold;
  line-height: 1.2
}
.jingu__list{
  display: flex;
  flex-direction: column;
  gap: calc(24vw/ 7.5);
  margin: calc(40vw / 7.5) auto;
}
.jingu__list>li{
  display: flex;
  gap: calc(20vw / 7.5);
}
.jingu__list>li .item__img{
  width: 36vw;
  box-shadow: 1px 1px 4px 0 rgba(0 0 0 / 80%)
}
.jingu__list>li .item__box{
  flex: 1
}

/*** おかげ横丁・周辺観光スポット ***/
.content__wrapper.okage,
.content__wrapper.spot{
  background-color: #e2e1df;
}
.spot__title__box{
  margin-bottom: calc(32vw / 7.5)
}
.spot__title__box .head-title{
  display: flex;
  gap: calc(32vw / 7.5);
  align-items: center;
  justify-content: center;
  margin-bottom: calc(32vw / 7.5)
}
.content__wrapper.spot .spot__title__box .head-title{
  flex-direction: row-reverse
}
.spot__title__box .head-title>img{
  width: calc(303vw / 7.5);
}
.head-title#okage::after,
.head-title#spot::after{
  content: "";
  background: var(--bg-img-setting);
  width: calc(354vw / 7.5);
  height: calc(264vw / 7.5);
  display: block;  
}
.head-title#okage::after{
  background-image: url("../img/sp_okage_img.png")
}
.head-title#spot::after{
  background-image: url("../img/sp_iseshima_img.png")
}
.spot__title__box .bodycopy{
  font-size: calc(28vw / 7.5);
  font-weight: bold;
  line-height: 1.5
}
.item__list{
  display: flex;
  flex-wrap: wrap;
  gap: calc(20vw / 7.5)
}
.item__list>li{
  width: calc((100% - (20vw / 7.5)) / 2)
}
.item__list>li .item__img{
  margin-bottom: calc(8vw / 7.5)
}
.item__list>li .item__midashi{
  color: var(--content-color-blue);
  margin-bottom: calc(8vw / 7.5)
}

.foot.copyright{
  width: var(--content-width);
  margin: calc(60vw / 7.5) auto 0;
  font-weight: bold;
}