@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

/* CSS Document */
:root{
  --content-color-blue: #398ebf;
  --content-color-pink: #d65e90;
  --content-color-t_orange: rgba(241 200 160 / 20%);
  --bg-img-setting: no-repeat center center / cover;
  --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-family-sans: 'Noto Sans JP', sans-serif;
  --content-hover-speed: 0.3s;
  --content-nav-shadow: 0 3px 10px rgb(0 0 0 / 50%);
  --content-card-shadow: 4px 4px 0 rgba(128 128 128 / 100%); 
  --content-arrow-down: url(../img/arrow01.png);
  --content-arrow-right: url(/cmn/icon/icon_arrow_right_white.svg);
  --content-border_s: 4px solid;
}

.nopc {
  display: none;
}
.main {
  font-family: var(--font-family-sans);
  font-size: var(--content-font-size);
  font-weight: 500;
  color: #333;
  line-height: 1.6;
  position: relative;
}
.main *{
  box-sizing: border-box;
}
.inner{
  width: var(--content-width);
  margin: auto;
}

/***** MV・ナビ *****/
#slider {
  width: 100%;
  height: 500px;
  position: relative
}
#slider .main-title img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto
}
.nav__wrapper {
  width: 100%;
}
/*ナビ固定*/
.nav-box.is-fix{
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
  background: #FFF;
  box-shadow: var(--content-nav-shadow);
  border-bottom: var(--content-border_s) var(--content-color-pink)
}
.nav-box>.inner{
  width: var(--content-width);
  display: flex;
  margin: auto;
}
.nav-list {
  width: calc(100% - 120px);
  margin: auto;
  display: flex;
}
.nav-list>li {
  width: calc(100% / 5);
  text-align: center
}
.nav-list>li>a {
  display: block;
  font-size: 24px;
  font-weight: bold;
  color: var(--content-color-pink);
  position: relative;
  padding: 16px 0 0 32px;
  background: no-repeat 4px center / 48px auto;
}
.nav-list>li>a span {
  font-size: 60%;
  font-weight: 400;
  color: inherit;
  display: block
}
.nav-list>li>a:hover {
  background-color: var(--content-color-blue);
  color: #FFF;
}
.display_selected {
  background: var(--content-color-blue);
  width: 120px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #FFF;
  position: relative;
  cursor: pointer;
}
.display_selected::before{
  content: "出発地";
  display: block;
  font-size: 12px;
}
.display_selected::after {
  content: "";
  background: var(--bg-img-setting) var(--content-arrow-down);
  width: 12px;
  height: 9px;
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  margin: auto
}
.dep-select-zone {
  display: none;
  width: 120px;
  position: absolute;
  z-index: 30;
  border: 1px solid var(--content-color-blue);
  border-top: none;
  background: #FFF;
  line-height: 1.5
}
.dep-select li {
  cursor: default;
  padding: 4px 8px;
  text-align: center;
  font-weight: bold;
}
.dep-select li:hover,
.dep-select li.selected {
  background: var(--content-color-blue);
  color: #FFF;
}
.close-button{
  display: none
}


/* .main__content */
.content__wrapper{
  padding-top: 60px;
}
.content__wrapper:not(.intro){
  padding: 48px 0;
  margin-bottom: 4px;
  border-top: var(--content-border_s) var(--content-color-pink);
  border-bottom: var(--content-border_s) var(--content-color-blue);
}
.head-title{
  text-align: center;
  font-size: 45px;
  font-weight: bold;
  color: var(--content-color-pink);
  margin-bottom: 20px;
}
.head-title>span{
  font-size: 60%;
  color: inherit;
}

/* イントロ */
.catch__copy {
  margin: 0 auto 20px;
  font-size: 28px;
  font-weight: bold;
  color: var(--content-color-pink);
  text-align: center;
  position: relative;
  padding-top: 60px;
}
.catch__copy::before {
  content: "";
  background: url("../img/logo_cm.png") var(--bg-img-setting);
  width: 200px;
  height: 47px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.body__copy {
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px
}
.catch__copy>a,
.body__copy>a {
  color: var(--content-color-blue);
  text-decoration: underline
}
.catch__copy>a:hove,
.body__copy>a:hove {
  text-decoration: none
}
.link_about{
  width: 480px;
  margin: auto;
  background-color: var(--content-color-blue);
}
.link_about>a {
  display: flex
}
.link_about>a :hover {
  opacity: 0.7
}
.link_about-img{
  width: 120px;
  height: 80px;
  overflow: hidden
}
.link_about-img>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}
.link_about-txt{
  flex: 1;
  font-size: 20px;
  color: #FFF;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative
}
.link_about-txt::after {
  content: "";
  background: var(--content-arrow-down) var(--bg-img-setting);
  width: 21px;
  height: 23px;
  position: absolute;
  top: 0;
  right: 0.5em;
  bottom: 0;
  margin: auto;
}

/* トピックス */
.content__wrapper.topics {
  background: url("../img/bg_topic.jpg") center top no-repeat;
  width: 100%;
  height: 832px;
  border-top: none
}
.topics .head-title {
  margin: 0 auto 30px;
  position: relative;
  text-align: center;
}
.topics .head-title::before {
  content: "";
  background: url("../img/bg_ttl_event_lft.png") var(--bg-img-setting);
  width: 272px;
  height: 110px;
  position: absolute;
  top: 0;
  left: 0;
}
.topics .head-title::after {
  content: "";
  background: url("../img/bg_ttl_event_ryt.png") var(--bg-img-setting);
  width: 275px;
  height: 112px;
  position: absolute;
  top: 0;
  right: 0;
}
.topics .head-title .title__sub {
  font-size: 28px;
  font-weight: bold;
  color: var(--content-color-blue);
  display: inline-block;
}
.topics .head-title .title__sub::before,
.topics .head-title .title__sub::after{
  content: "/";
  display: inline-block;
}
.topics .head-title .title__sub::before{
  transform: scaleX(-1)
}
.topics .head-title .title__main {
  display: block;
  font-size: 45px;
  font-weight: bold;
  color: var(--content-color-pink);
}
.topicbox {
  margin: auto;
  display: flex;
  gap: 20px;
}
.topicbox__left {
  flex: 1;
  padding-left: 20px; 
}
.topic__title {
  position: relative;
  padding-left: 84px;
  margin-bottom: 20px;
}
.topic__title>span {
  display: inline-block;
  font-size: 28px;
  font-weight: bold;
  color: var(--content-color-blue);
  border-bottom: dotted 4px var(--content-color-pink);
}
.topic__title::before {
  content: "";
  background: url("../img/icon_event01.png") var(--bg-img-setting);
  width: 72px;
  height: 84px;
  position: absolute;  
  top: 5px;
  left: 0;
}
.topic__txt {
  font-size: 16px;
  margin-bottom: 20px;
}
.topic__data {
  background: var(--content-color-t_orange);
  border-radius: 10px;
  padding: 10px 20px;
}
.topic__data>li {
  font-size: 20px;
  font-weight: bold;
  color: var(--content-color-pink);
}
.topic__data>li>small {
  display: inline-block;
  font-size: 14px;
  font-weight: normal;
  color: #333;
}

/* メインメニュー */
.content__wrapper.menu{
  background: url("../img/sand-bg_cont.jpg") repeat-y;
}
.content__wrapper.menu .head-title {
  font-size: 45px;
  font-weight: bold;
  text-align: center;
  color: var(--content-color-blue);
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content__wrapper.menu .head-title::before {
  content: "";
  background: var(--bg-img-setting);
  width: 291px;
  height: 135px;
  margin-right: 10px;
  display: inline-block;
}
#active.head-title::before {
  background-image: url("../img/icon_ttl_activity.png")
}
#food.head-title::before {
  background-image: url("../img/icon_ttl_food.png")
}
#stay.head-title::before {
  background-image: url("../img/icon_ttl_stay.png")
}
.content__wrapper.menu .inner+.inner{
  margin-top: 80px;
}
.content_inbox {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.content_inbox+.content_inbox{
  margin-top: 80px;
}
.left-size,
.right-size{
  width: calc((100% - 20px) / 2)
}
.left-size{
  order: 1;
}
.right-size {
  order: 2;
}
.full-size {
  width: 100%
}
.content__title {
  font-size: 28px;
  font-weight: bold;
  color: var(--content-color-pink);
  margin-bottom: 20px;
}
.content__txt{
  font-size: 16px;
}
.content__txt span {
  color: var(--content-color-pink);
}
.content__txt>a {
  color: var(--content-color-blue);
  text-decoration: underline
}
.content__txt>a:hover {
  text-decoration: none;
}
.content__list {
  margin: 20px auto;
}
.content__list>li {
  background: var(--content-color-t_orange);
  border-radius: 10px;
  padding: 10px 20px;
}
.content__list>li+li {
  margin-top: 10px;
}
.list__title {
  font-size: 20px;
  font-weight: bold;
  color: var(--content-color-pink);
}
.note-txt {
  display: block;
  font-size: 12px;
  font-weight: normal;
  padding-left: 1.0em;
  text-indent: -1.0em
}

/* アクセス */
.content__wrapper.access {
  background: url("../img/bg_access.jpg") repeat;
}
.access-data {
  margin-top: 32px;
}
.access-data .access-area {
  font-size: 20px;
}
.access-data .access-time {
  font-size: 28px;
  font-weight: bold;
  color: var(--content-color-pink);
}
.access-data .access-time .vehicle {
  color: #333;
}
.access-data .access-time small {
  font-weight: 400;
  font-size: 14px;
  color: #333;
}

/* ツアー */
.content__wrapper.tour {
  background: url("../img/bg_tour.jpg") repeat;
}
.head-title#tour{
  margin-bottom: 8px;
  font-size: 32px;
}
.product__content{
  display: none
}
.link__button{
  width: 800px;
  margin: 24px auto 0;
}
.link__button>a{
  display: block;
  background: var(--content-color-pink);
  padding: 16px;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  text-align: center;
  position: relative
}
.link__button>a::after{
  content: "";
  background: var(--bg-img-setting) var(--content-arrow-right);
  width: 32px;
  height: 32px;
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  margin: auto;
}
.link__button>a:hover{
  opacity: .8
}

/* clubmedについて */
.content__wrapper.about {
  background-color: var(--content-color-blue);
}
.head-title#about {
  text-align: center;
  position: relative;
  padding-top: 40px;
}
.head-title#about::before {
  content: "";
  background: url("../img/logo_cm_w.png") var(--bg-img-setting);
  width: 184px;
  height: 34px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.head-title#about>span {
  font-size: 45px;
  font-weight: bold;
  color: #FFF;
  display: inline-block;
}
.head-title#about>span::before,
.head-title#about>span::after {
  content: "“";
  display: inline-block;
  color: var(--content-color-pink);
}
.head-title#about>span::after{
  transform: scaleX(-1)
}
.content__wrapper.about .content_box+.content_box{
  margin-top: 80px
}
.about .content__title{
  font-size: 28px;
  font-weight: bold;
  color: #FFF;
  margin-bottom: 10px;
}
.about .content__title>span{
  display: block;
  width: 6.5em;
  background: var(--content-color-pink);
  font-size: 24px;
  font-weight: bold;
  color: #FFF;
  position: relative;
  line-height: 40px;
  padding: 0 20px 0 10px;
}
.about .content__title>span::after {
  content: "";
  position: absolute;
  border: 20px solid transparent;
  border-right: 20px solid var(--content-color-blue);
  top: 0;
  bottom: 0;
  right: 0;
}
.about .content__txt {
  color: #FFF;
  font-size: 16px;
}
.about .content__txt>span{
  color: #FFF;
} 
.item__include{
  background: #FFF;
  padding: 10px;
  margin-top: 20px;
}
.include_title {
  font-size: 28px;
  font-weight: bold;
  color: var(--content-color-pink);
  text-align: center;
  margin-bottom: 10px;
}
.include_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.include_list>li {
  width: calc((100% - (10px * 2)) / 3);
  position: relative;
}
.include_txt {
  display: inline-block;
  background: var(--content-color-pink);
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  padding: 2px 10px;
  line-height: 1.2;
  position: absolute;
  bottom: 0;
  left: 0;
}
.include_txt::after {
  content: "";
  border-width: 21px 20px 21px 0;
  border-color: var(--content-color-pink) transparent;
  border-style: solid;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
}

/* 動画 */
#movie__wrapper{
  width: var(--content-width);
  margin: 64px auto 0;
  position: relative;
  text-align: center;
  height: calc((var(--content-width) * 9) / 16);
  min-height: 100%;
}
#loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
  font-family: var(--font-sans);
  font-size: 40px;
  font-weight: bold;
  color: #FFF;
}
#youtube {
  position: absolute;
  top: 0;
  left: 0;
  height: calc((var(--content-width) * 9) / 16);
  min-height: 100%;
  min-width: 100%;
}
#youtube-mask{
  position: absolute;
  z-index: 2;
  top:0;
  width:100%;
  height: 100%;
}