@charset "UTF-8";


/*************************
******* tab_wrapper ******
**************************/

.tab_block{
	width: 100%;
	padding: 0 0 50px;
}

/*タブ切り替え全体のスタイル*/
.tab_wrapper {
  /* background-color: #F8F8F8; */
  width: 100%;
  margin: 0 auto 0;
  padding: 0 0;
  max-width: 900px;
}

.tab_h2{
  margin: 0 auto;
  padding: 0 0 30px;
  font-size: 3rem;
  color: var(--color-brand-primary);
  text-align: center;
  font-weight: bold;
}

.tab_intro{
	font-size: 1.6rem;
	text-align: center;
	line-height: 1.8;
	margin: 0 auto 30px;
}

/*タブのスタイル*/
.tab_item {
  padding: 10px 10px;
  background-color: #A2A6B1;
  line-height: 1.6rem;
  font-size: 2rem;
  color: #fff;
  display: block;
  float: left;
  text-align: center;
  font-weight: normal;
  margin: 0 0 -1px;
  border-left: 2px solid #fff;
  position:relative;
  height:auto;
  box-sizing:border-box;
	line-height: 1.6;
	/* min-height: 90px; */
}

.tab_item:first-of-type {
  border-left: none;
  padding: 10px 10px;
}
.tab_item:hover {
  opacity: 0.75;
  cursor: pointer;
}

.tab1{
  width:50%;
}
.tab2{
  width:50%;
}


label.tab1:after{
  left: 47%;
}

label.tab2:after{
  left: 45%;
}


@media  screen and (max-width: 1220px) and (min-width: 768px){
	.tab_item:first-of-type {
		border-left: none;
		padding: 10px 10px;
	}
}

@media  screen and (max-width: 1199px) and (min-width: 992px){
  .tab_item {
    font-size: 18px;
  }
  
}

@media screen and (max-width: 991px) and (min-width: 768px){
  
  .tab_item {
    font-size: 16px;
  }
  
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  padding: 30px 30px;
  clear: both;
  overflow: auto;
  border: 1px solid var(--color-brand-primary);
  background-color: #fff;
}


/*選択されているタブのコンテンツのみを表示*#access:checked ~ #access_content,*/
#resort_tab:checked ~ #resort_tab_content,
#point_tab:checked ~ #point_tab_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tab_wrapper input:checked + .tab_item {
  background-color: var(--color-brand-primary);
  color: #fff;
  min-height: unset;
}

@media  screen and (max-width: 991px) and (min-width: 768px){

  .tab_content {
    display: none;
    padding: 20px 20px;
    clear: both;
    overflow: auto;
    border: 1px solid var(--color-brand-primary);
  }
  
  /*選択されているタブのコンテンツのみを表示
  #access:checked ~ #access_content,*/
  #resort_tab:checked ~ #resort_tab_content,
  #point_tab:checked ~ #point_tab_content {
    display: block;
  }

  /*選択されているタブのスタイルを変える*/
  .tab_wrapper input:checked + .tab_item {
    background-color: var(--color-brand-primary);
    color: #fff;
  }
  
}


@media  screen and (max-width: 767px) {
	.tab_block{
		width: 100%;
		padding: 0 0 30px;
		margin: 0 auto;
	}

  .tab_wrapper{
    width: 100%;
    padding: 0;
    margin: 0 auto 0;
  }

  .tab_h2{
    margin: 0 auto;
    padding: 0 0 20px;
    font-size: 3rem;
    color: var(--color-brand-primary);
    text-align: center;
    font-weight: bold;
  }

	.tab_intro{
		font-size: 1.4rem;
		text-align: center;
		line-height: 1.8;
		margin: 0 auto 30px;
	}
  
  .tab1{
    width:50%;
  }
  .tab2{
    width:50%;
  }

  .tab_content{
    padding: 15px;
  }
  
  .tab_item {
    background-color: #A2A6B1;
    line-height: 1.4;
    font-size: 1.6rem;
    color: #fff;
    display: block;
    float: left;
    text-align: center;
    font-weight: normal;
    margin: 0 0 -1px;
    border-left: 2px solid #fff;
    position:relative;
    height:auto;
    padding: 10px;
		min-height: unset;
  }

	.tab_item:first-of-type {
    border-left: none;
    padding: 10px 10px;
    min-height: unset;
	}
}



/* ======================== */
/* スライダー全体のスタイル */
/* ======================== */
.slider {
  position: relative;
  overflow: hidden;
  visibility: hidden;
  margin: 0;
}

/* スライダーの表示領域 */
.slider-viewport {
  cursor: grab;
  -webkit-user-select: none;
          user-select: none;
}

/* スライドを横並びに配置 */
.slider-items {
  display: flex;
  pointer-events: none;
}

/* 各スライドを均等幅に設定 */
.slider-slide {
  flex: 1;
}

/* ======================== */
/* スライド内の画像のスタイル */
/* ======================== */
/* スライド内の画像を比率固定で表示 */
.slider-image {
  position: relative;
  aspect-ratio: 1480/832;
}
.slider-image img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ======================== */
/* スライドテキストのスタイル */
/* ======================== */
.slider-text p {
  line-height: 1.6;
  text-align: center;
	margin-top: 20px;
	font-size: 1.6rem;
}

.slider-text--bold{
	font-weight: bold;
  margin: 0 0 5px;
}

.slider-text--bold span{
	font-size: 2rem;
	display: inline-block;
  margin: 0 0 5px;
}

.slider-addition{
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  color: #fff;
  font-size: 1.6rem;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
}

@media screen and (max-width: 767px) {
  .slider-text p {
    margin-top: 15px;
    font-size: 1.5rem;
    line-height: 1.6;
    text-align: center;
  }

	.slider-text--bold{
		font-weight: bold;
		margin: 0 0 5px;
	}

	.slider-text--bold span{
		font-size: 1.8rem;
		display: inline-block;
		margin: 0 0 5px;
	}

  .slider-addition{
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 100;
    color: #fff;
    font-size: 1.2rem;
  }

}

/* ======================== */
/* スライド操作エリアのスタイル（ナビゲーション＋サムネイル） */
/* ======================== */
@media print, (min-width: 768px) {
  .slider-controls {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .slider-controls {
    margin-top: 0;
  }
}

.slider-controls-inner {
  position: relative;
}

/* ======================== */
/* 矢印ナビゲーションのスタイル */
/* ======================== */
/* 矢印ボタンのサイズ調整 */
.slider-nav button {
  display: block;
  position: absolute;
  top: 0;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
}
@media print, (min-width: 768px) {
  .slider-nav button {
    width: 40px;
  }
}
@media screen and (max-width: 767px) {
  .slider-nav button {
    width: 25px;
		display:none;
  }
}

/* 矢印アイコンのスタイル */
.slider-nav button::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  background: var(--color-accent-5);
  -webkit-mask: url(../images/slider_arrow.svg) 0 0/contain no-repeat;
          mask: url(../images/slider_arrow.svg) 0 0/contain no-repeat;
  transition: opacity 300ms cubic-bezier(.215, .61, .355, 1);
}
@media print, (min-width: 768px) {
  .slider-nav button::before {
    width: 25px;
    height: 20px;
    margin-top: -10px;
  }
}
@media screen and (max-width: 767px) {
  .slider-nav button::before {
    width: 19px;
    height: 15px;
    margin-top: -7.5px;
		content:none;
  }
}

/* 矢印ボタンのホバー・アクティブ状態のスタイル */
@media print, (min-width: 768px) {
  .slider-nav button:hover::before,
  .slider-nav button:active::before {
    opacity: 0.5;
  }
}

/* 左矢印ボタンのスタイル */
.slider-nav button:nth-child(1) {
  left: 0;
}
.slider-nav button:nth-child(1)::before {
  left: 0;
  transform: scaleX(-1);
}

/* 右矢印ボタンのスタイル */
.slider-nav button:nth-child(2) {
  right: 0;
}
.slider-nav button:nth-child(2)::before {
  right: 0;
}

/* ======================== */
/* サムネイルのスタイル */
/* ======================== */
.slider-thumbnails {
  overflow: hidden;
}
@media print, (min-width: 768px) {
  .slider-thumbnails {
    width: 670px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .slider-thumbnails {
    margin: 0 0;
  }
}

/* 中央のサムネイル1つ分の表示枠 */
.slider-thumbnails-center {
  width: 20%;
  margin: 0 auto;
}

/* サムネイルを横並びに配置 */
.slider-thumbnails-items {
  display: flex;
}

/* 各サムネイルを均等幅に設定 */
.slider-thumbnails-slide {
  flex: 1;
}
@media print, (min-width: 768px) {
  .slider-thumbnails-slide {
    padding: 0 5px;
  }
}
@media screen and (max-width: 767px) {
  .slider-thumbnails-slide {
    padding: 0 3px;
  }
}

/* サムネイルのボタンスタイル */
.slider-thumbnails-slide button {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1480/832;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  line-height: 1;
  cursor: pointer;
  -webkit-appearance: none;
          appearance: none;
  transition: opacity 300ms cubic-bezier(.215, .61, .355, 1);
}

.slider-thumbnails-slide button::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 2px solid var(--color-accent-5);
  opacity: 0;
  transition: opacity 300ms cubic-bezier(.215, .61, .355, 1);
}

.slider-thumbnails-slide button img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* サムネイルのホバー・アクティブ状態 */
@media print, (min-width: 768px) {
  .slider-thumbnails-slide button:hover,
  .slider-thumbnails-slide button:active {
    opacity: 0.5;
  }
}

/* 現在のスライドを示すサムネイルのスタイル */
.slider-thumbnails-slide.is-current button {
  pointer-events: none;
}
.slider-thumbnails-slide.is-current button::before {
  opacity: 1;
}

/* ======================== */
/* グラブカーソルの設定 */
/* ======================== */
/* フリック操作中のカーソル変更 */
.slider.is-grabbing .slider-viewport,
.slider.is-grabbing .slider-viewport * {
  cursor: grabbing !important;
}

/* ======================== */
/* サムネイルが5個以下のときのレイアウト調整 */
/* ======================== */
.slider.is-lte5 .slider-controls {
  display: flex;
  justify-content: center;
}
@media print, (min-width: 768px) {
  .slider.is-lte5 .slider-nav button:nth-child(1) {
    left: -35px;
  }
}
@media print, (min-width: 768px) {
  .slider.is-lte5 .slider-nav button:nth-child(2) {
    right: -35px;
  }
}
@media print, (min-width: 768px) {
  .slider.is-lte5 .slider-thumbnails {
    width: auto;
  }
}
.slider.is-lte5 .slider-thumbnails-center {
  width: auto;
}
.slider.is-lte5 .slider-thumbnails-track-wrapper {
  width: auto !important;
}
.slider.is-lte5 .slider-thumbnails-track-offset {
  transform: none !important;
}
.slider.is-lte5 .slider-thumbnails-track {
  transform: none !important;
}
.slider.is-lte5 .slider-thumbnails-items {
  transform: none !important;
}
.slider.is-lte5 .slider-thumbnails-slide {
  flex: none;
}
@media print, (min-width: 768px) {
  .slider.is-lte5 .slider-thumbnails-slide {
    width: 170px;
  }
}
@media screen and (max-width: 767px) {
  .slider.is-lte5 .slider-thumbnails-slide {
    width: 100px;
  }

  #resort_tab_content .slider.is-lte5 .slider-thumbnails-slide {
    width: 64px;
  }
}
