@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-purple: #2f1332;
  --content-color-violet: #866E89;
  --content-color-brown: #882607;
  --content-color-green: #00483a;
  --content-color-base: #000;
  --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-sans: 'Noto Sans JP', sans-serif;
  --font-serif: "Noto Serif JP", serif;
  --content-hover-speed: 0.3s;
  --content-shadow: 0 3px 0 0 rgba(0 0 0 / 20%);
  --content-arrow-down: url(../img/arrow01.png);
  --content-arrow-right: url(../img/arrow02.png);
  --content-border_s: 1px solid;
  --content-border_m: 3px solid;
  --content-border_dot: 1px dotted;
}

.nopc{
  display: none
}
.main{
  font-family: var(--font-serif);
  font-size: var(--content-font-size);
  font-weight: 500;
  position: relative;
  color: var(--content-color-base);
  line-height: 1.0
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
}
a{
  transition: var(--content-hover-speed);
}
.note__txt{
  font-size: 12px;
  padding-left: 1.0em;
  text-indent: -1.0em;
  display: block
}

.title__wrapper{
  background: url("../img/pc_ttl_bg.jpg") no-repeat center top;
  width: 100%;
  height: 460px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.title-logo{
  text-align: center;
}
.nav__wrapper {
  width: 100%;
  background: var(--content-color-purple);
}
.nav__list{
  width: 992px;
  margin: auto;
  display: flex;
}
.nav__list>li {
  width: calc(100% / 3);
  border-left: var(--content-border_s) #FFF;
  display: flex;
  flex-direction: column;  
}
.nav__list>li:last-child{
  border-right: var(--content-border_s) #FFF;
}
.nav__list>li>a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding: 16px 0 24px;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  line-height: 1.25;
  position: relative
}
.nav__list>li>a::after {
  content: "";
  background: var(--content-arrow-down) var(--bg-img-setting);
  width: 17px;
  height: 11px;
  position: absolute;
  bottom: 8px;
  right: 0;
  left: 0;
  margin: auto
}
.nav__list>li>a:hover{
  background: var(--content-color-violet)
}

.main__content{
  background: url("../img/bg.jpg") repeat;
}
.content__wrapper{
  width: 100%;
  padding: 60px 0
}
.head-title{
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFF;
}
.title__maintxt{
  font-size: 48px;
}
.title__subtxt{
  display: block;
  font-size: 28px;
}
.sub-title{
  font-size: 24px;
  font-weight: bold;
  color: var(--content-color-purple);
  text-align: center;
  margin-bottom: 16px;
}

/*** tour ***/
.head-title#tour>span{
  color: var(--content-color-green);
}
.product__content+.product__content{
  margin-top: 60px
}
.product-list{
  line-height: 1.4;
  font-family: var(--font-sans);
}
.item__link{
  width: 490px;
  margin: 24px auto 0;
}
.item__link>a{
  display: block;
  border-radius: 6px;
  background: var(--content-color-purple);
  box-shadow: var(--content-shadow);
  padding: 16px;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  position: relative
}
.item__link>a::after{
  content: "";
  background: var(--content-arrow-right) var(--bg-img-setting);
  width: 11px;
  height: 17px;
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  margin: auto;
}
.item__link>a:hover{
  background: var(--content-color-violet)
}

/*** 出雲大社 ***/
.content__wrapper.izumo{
  background: var(--content-color-violet);
}
.content__box{
  display: flex;
  gap: 16px;
}
.content__box+.content__box{
  margin-top: 60px;
  flex-direction: row-reverse
}
.content__item{
  flex: 1;
}
.content__item .sub-title{
  text-align: left;
  font-size: 30px;
  color: #FFF;
}
.content__item .sub-title small{
  font-size: 80%;
}
.content__txt{
  font-size: 16px;
  color: #FFF;
  line-height: 1.6;
}
.event__list{
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  padding: 16px;
  background: #FFF;
}
.event__list>li{
  padding-bottom: 8px;
  border-bottom: var(--content-border_dot);
}
.event__list>li:last-child{
  border: none;
  padding-bottom: 0
}
.event__name{
  font-size: 18px;
  margin-bottom: 8px;
}
.event__name>small{
  font-size: 12px;
}
.event__txt{
  line-height: 1.4
}
.event__list:empty{
  display: none
}
.content__img{
  width: 480px;
  height: 340px;
}
.content__img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}
.other__content{
  margin-top: 60px;
}
.other__content .sub-title{
  color: #FFF;
}

/*** 観光スポット ***/
.content__wrapper.spot{
  background: var(--content-color-green);
}
.head-title#spot span small{
  display: block;
}
.spot__list{
  display: flex;
  flex-wrap: wrap;
  gap: 24px 16px;
}
.spot__list>li{
  width: calc((100% - (16px * 2)) / 3);
  display: flex;
  flex-direction: column;
  background: #FFF;
}
.spot__img{
  width: 100%;
  height: 225px;
  position: relative;
}
.spot__img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}
.spot__box{
  padding: 8px 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.spot__name{
  font-size: 20px;
  font-weight:  bold;
  color: var(--content-color-brown);
  margin-bottom: 8px;
}
.spot__txt{
  line-height: 1.4;
  margin-bottom: 8px;
}
.spot__address{
  margin-top: auto;
  display: block;
  font-size: 12px;
  line-height: 1.2;
}
.spot__list>li:nth-child(7) .spot__address{
  display: none
}
