@charset "utf-8";
/* CSS Document */

:root {
  --bg-color: #eef9ef;
  --green-color: #2cb431;
  --navy-color: #1b3756;
}
/*---画像タイトル---*/
.cp_tokkyu h2 .titleImage {
  margin: 20px auto 0;
  width: 100%;
}
/*---タブ---*/
/*切り替え*/
.tab_area {
	display: none;
}
.tab_area.show {
	display: block;
}
/*見た目*/
.cp_tokkyu .tab_menu {
  width: 1000px;
  margin: 40px auto 20px;
  display: flex;
  justify-content: space-between;
}
.cp_tokkyu .tab_menu li {
  width: calc(100% / 4);
  height: 60px;
  border-bottom: 2px solid var(--navy-color);
  border-radius: 10px 10px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
  cursor: pointer;
}
.cp_tokkyu .tab_menu li.active {
  background: var(--green-color);
}
.cp_tokkyu .tab_menu li>img {
  width: auto;
  height: 35px;
}
.cp_tokkyu .tab_menu li .tab_img_on {
  position: absolute;
  opacity: 0;
  transition: opacity .2s;
}
.cp_tokkyu .tab_menu li.active .tab_img_on {
  opacity: 1;
}
.cp_tokkyu .tab_menu li.active .tab_img {
  opacity: 0;
}
.cp_tokkyu .tab_menu li>span {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--navy-color);
  margin: 0 auto;
  line-height: 1;
}
.cp_tokkyu .tab_menu li.soon>span {
  color: #b4b4b4;
}
.cp_tokkyu .tab_menu li.active>span {
  color: #fff;
}
.fw_normal {
  font-weight: normal;
}
/*ホバー効果はマウス操作デバイスに限定*/
@media (hover: hover) {
  .cp_tokkyu .tab_menu li:hover {
    background: var(--green-color);
  }
  .cp_tokkyu .tab_menu li:hover .tab_img_on {
    opacity: 1;
  }
  .cp_tokkyu .tab_menu li:hover .tab_img {
    opacity: 0;
  }
  .cp_tokkyu .tab_menu li:hover>span {
    color: #fff;
  }
}
/*comingsoon 解除する際は、htmlの.soonを削除する*/
.cp_tokkyu .tab_menu li.soon {
  pointer-events: none;
  position: relative;
}
.cp_tokkyu .tab_menu li.soon::before {
  content: "＼ coming soon... ／";
  position: absolute;
  display: inline-block;
  color: #b4b4b4;
  font-size: 1.2rem;
  font-weight: bold;
  top: -10px;
  letter-spacing: 0.3rem;
}
.cp_tokkyu .tab_menu li.soon .tab_img, .cp_tokkyu .tab_menu li.soon .tab_img_on {
  display: none;
}
/*---特急紹介コーナー---*/
.top_container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
/*画像スライダー*/
.top_container .ace-section:has(>.wrap_slide) {
  width: 40% !important;
  margin: 0 4% 0 0;
}
.top_container .wrap_slide {
  position: relative;
  display: flex;
  margin: 0 auto;
  border-radius: 10px;
  border: 2px solid var(--navy-color);
}
.top_container .wrap_slide .swiper {
  overflow: hidden;
  border-radius: 8px;
}
.top_container .wrap_slide .swiper .swiper-wrapper {
  margin: 0 auto;
}
.top_container .wrap_slide .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
}
.top_container .wrap_slide .swiper .swiper-pagination {
  bottom: -35px;
}
.top_container .wrap_slide .box_content {
  width: 100%;
  margin: 0 auto;
  border-radius: 10px;
}
.top_container .wrap_slide .box_content .fade {
  height: auto !important;
  aspect-ratio: 396 / 245;
}
.cp_tokkyu .swiper-pagination-bullet {
  background: var(--navy-color);
  width: 10px;
  height: 10px;
}
/*タイトル*/
.top_container .ttl_box .top .section h3 {
  font-size: 3.0rem;
  font-weight: bold;
  color: var(--navy-color);
  background: none;
  border-radius: 0;
  padding: 0;
  margin: 0 auto 0 0;
  letter-spacing: 0.3rem;
  position: relative;
}
.top_container .ttl_box .top .section.h3_kamuy h3 {
  letter-spacing: 0.1rem;
}
/*テキスト*/
.top_container .text_box {
  margin: 0 auto;
}
.text_box .route_text {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 5px auto;
  position: relative;
}
.text_box .route_text::before {
  content: "◆";
  color: var(--green-color);
  top: 0;
  left: 0;
  margin: 0 5px 0 0;
}
.season_box .season_title {
  background: var(--navy-color);
  width: 200px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 2px 0;
  margin: 15px auto 10px;
  border-radius: 16px;
}
.season_box .months {
  display: flex;
  justify-content: space-between;
}
.season_box .months>.month {
  font-size: 1.8rem;
  color: var(--navy-color);
  background: #e0e6ed;
  width: 60px;
  height: 50px;
  border-radius: 8px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.season_box .months>.month.active {
  color: #fff;
  font-weight: bold;
  background: var(--green-color);
}
/*---おすすめ宿ピックアップ---*/
/*背景*/
.cp_tokkyu .bg_color {
  background: var(--bg-color);
  margin: 60px auto 30px;
}
/*タイトル*/
.cp_tokkyu .top .section h4 {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--navy-color);
  padding: 75px 0 0;
  margin: 20px auto;
  letter-spacing: 0.3rem;
  line-height: 1.2;
  position: relative;
  text-align: center;
}
.cp_tokkyu .top .section.h4_ozora h4::before {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(/content/dam/jretravel/site/page/hokkaido/images/arujan_tokkyu/ic_261kei.png) no-repeat 0 0 / contain;
  width: 47px;
  height: 65px;
  top: 0;
  left: calc(50% - 24px);
}
.cp_tokkyu .top .section.h4_kamuy h4::before {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(/content/dam/jretravel/site/page/hokkaido/images/arujan_tokkyu/ic_789kei.png) no-repeat 0 0 / contain;
  width: 100px;
  height: 65px;
  top: 0;
  left: calc(50% - 50px);
}
/*カルーセル*/
.wrap_slide.hotel_clm4 {
  position: relative;
  display: flex;
  margin: 0 auto;
}
.wrap_slide.hotel_clm4 .swiper {
	overflow: hidden;
	position: relative;
	padding: 0 0 35px;
}
.wrap_slide.hotel_clm4 .swiper .swiper-pagination {
  bottom: 0;
}
.wrap_slide.hotel_clm4 .cmn_contents {
  margin: auto;
  height: 100%;
}
.base_prod {
  margin-bottom: 0;
  height: 100%;
}
.base_prod>div {
  height: 100%;
}
/*商品コンポーネントのページネーション*/
.box_content .base_prod .swiper-button-next,
.box_content .base_prod .swiper-button-prev,
.box_content .base_prod .swiper-pagination {
  display: none !important;
}
/*矢印*/
.wrap_slide.hotel_clm4>.swiper-button-prev, .wrap_slide.hotel_clm4>.swiper-button-next {
  content: "";
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  top: calc(50% - 15px);
  z-index: 2;
}
.wrap_slide.hotel_clm4>.swiper-button-prev::before, .wrap_slide.hotel_clm4>.swiper-button-next::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--navy-color);
  border-right: 2px solid var(--navy-color);
  transform: rotate(45deg);
  z-index: 2;
}
.wrap_slide.hotel_clm4>.swiper-button-prev.swiper-button-disabled::before, .wrap_slide.hotel_clm4>.swiper-button-next.swiper-button-disabled::before
{
  opacity: .35;
}
.wrap_slide.hotel_clm4>.swiper-button-prev {
  left: -40px;
  transform: rotate(180deg);
}
.wrap_slide.hotel_clm4>.swiper-button-next {
  right: -40px;
}
/*商品*/
.wrap_slide.hotel_clm4 .box_content {
  background: #fff;
  border: 1px solid var(--navy-color);
  border-radius: 10px;
}
.cp_tokkyu .details_box .txt {
  background: #e6eff9;
  border-radius: 4px;
  padding: 5px 10px;
}
.cp_tokkyu .base_prod .swiper-container-horizontal>.swiper-pagination-bullets {
  bottom: -35px;
}
.cp_tokkyu .swiper-container .swiper-button-next, .cp_tokkyu .swiper-container .swiper-button-prev {
  color: var(--navy-color);
}
.cp_tokkyu .swiper-container .swiper-button-prev {
  left: -35px;
}
.cp_tokkyu .swiper-container .swiper-button-next {
  right: -35px;
}
.cp_tokkyu .hotel>li>.outside_txt {
  line-height: 1.4;
}
/*ボタン*/
.cp_tokkyu .btn_box {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 40px auto;
}
.cp_tokkyu .btn_box>.freehtml {
  width: 320px !important;
}
.cp_tokkyu .btn_box>.freehtml .btn01>a {
  display: block;
  background: var(--green-color);
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  text-align: center;
  padding: 8px 0;
  border-radius: 30px;
  position: relative;
  transition: .2s;
}
.cp_tokkyu .btn_box>.freehtml .btn01>a:hover {
  text-decoration: none;
  background: var(--navy-color);
}
.cp_tokkyu .btn_box>.freehtml .btn01>a::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  top: calc(50% - 5px);
  right: 20px;
}
.cp_tokkyu .btn_box p:has(small) {
  line-height: 1.4;
  margin: 5px auto 0;
}
/*------PC------*/
@media screen and (min-width: 768px) {
  /*---特急紹介コーナー---*/
  .top_container .ttl_box {
  margin: 0 auto;
  }
  .top_container .ace-section:has(>.ttl_box), .top_container .ace-section:has(>.text_box) {
    width: 56% !important;
  }
  .top_container .ace-section:has(>.text_box) {
    position: absolute;
    top: 54px;
    left: 44%;
  }
}
/*------SP------*/
@media screen and (max-width: 767px) {
  /*---タブ---*/
  .cp_tokkyu .tab_menu {
    width: 94%;
    flex-wrap: wrap;
    margin: 20px auto 10px;
  }
  .cp_tokkyu .tab_menu li {
    width: calc((100% - 10px) / 2);
    height: 40px;
    border: none;
    border-radius: 5px;
  }
  .cp_tokkyu .tab_menu li.soon {
    background: #e1e1e1;
  }
  .cp_tokkyu .tab_menu li.soon::before {
    font-size: 0.8rem;
    top: -13px;
  }
  .cp_tokkyu .tab_menu li:nth-of-type(n+3) {
    margin-top: 20px;
  }
  .cp_tokkyu .tab_menu li>img {
    height: 20px;
  }
  .cp_tokkyu .tab_menu li>span {
    font-size: 1.6rem;
  }
  /*---特急紹介コーナー---*/
  .top_container {
    flex-direction: column;
    width: 94%;
    margin: 0 auto;
  }
  .top_container .ace-section:has(>.wrap_slide) {
    width: 100% !important;
    margin: 0 auto;
    order: 2;
  }
  .top_container .ace-section:has(>.ttl_box) {
    order: 1;
  }
  .top_container .ace-section:has(>.text_box) {
    order: 3;
    margin-top: 50px;
  }
  .top_container .ttl_box .top .section h3 {
    font-size: 2.2rem;
    margin: 0 auto 10px;
  }
  .ttl_box .top .section.h3_ozora h3::before, .ttl_box .top .section.h3_kamuy h3::before, .ttl_box .top .section.h3_kamuy h3::after {
    width: 41px;
    height: 38px;
    top: 0;
    left: calc(50% - 19px);
  }
  .ttl_box .top .section.h3_kamuy h3::before {
    left: calc(50% - 44px);
  }
  .ttl_box .top .section.h3_kamuy h3::after {
    left: calc(50% + 3px);
  }
  .cp_tokkyu .text_box .cmp-text {
    width: 100%;
  }
  .text_box .route_text {
    font-size: 1.6rem;
  }
  .season_box .season_title {
    margin: 15px auto 10px;
  }
  .season_box .months {
    flex-wrap: wrap;
    gap: 5px;
    width: 90%;
    margin: 0 auto;
  }
  .season_box .months>.month {
    font-size: 1.5rem;
    width: calc((100% - 15px) / 4);
    height: 35px;
    border-radius: 10px;
  }
  /*---おすすめ宿ピックアップ---*/
  .cp_tokkyu .bg_color {
    margin: 40px auto 30px;
  }
  .cp_tokkyu .top .section h4 {
    font-size: 2.0rem;
    padding: 50px 0 0;
    margin: 10px auto;
  }
  .cp_tokkyu .top .section.h4_ozora h4::before {
    width: 30px;
    height: 42px;
    left: calc(50% - 15px);
  }
  .cp_tokkyu .top .section.h4_kamuy h4::before {
    width: 65px;
    height: 42px;
    left: calc(50% - 33px);
  }
  .cp_tokkyu .wrap_slide.hotel_clm4 .box_content li {
    padding: 10px;
  }
  .cp_tokkyu .btn_box {
    flex-direction: column;
    gap: 15px;
    margin: 20px auto;
  }
  .cp_tokkyu .btn_box>.freehtml {
    width: 94% !important;
    margin: 0 auto !important;
  }
  .cp_tokkyu .btn_box>.freehtml .btn01>a {
    width: 100%;
  }
}