@charset "utf-8";
/* CSS Document */ :root {
  --font-sans: 'Noto Sans JP', serif;
  --font-serif: 'Noto Serif JP', serif;
  --content-width-pc: 1104px;
  --content-width-sp: calc(675vw / 7.5);
  --content-width: min(var(--content-width-sp), var(--content-width-pc));
  --font-size-pc: 16px;
  --font-size-sp: calc(28vw / 7.5);
  --default-color-black: #2C2A29;
  --content-color-red: #dc0e0e;
  --content-color-darkblue: #002975;
  --content-color-blue: #1363aa;  
  --content-color-lightblue: #00abeb;
  --content-color-orange: #f25800;
  --content-color-purple: #89328a;
  --content-color-airline: #d6001d;
}
.nosp {
  display: none
}
.main {
  font-family: var(--font-sans);
  line-height: 1.5;
  font-size: var(--font-size-sp);
  color: var(--default-color-black);
  & a {
    text-decoration: none;
  }
  & img {
    width: 100%;
  }
  & .inner {
    width: var(--content-width-sp);
    margin: 0 auto;
  }
  & p, ul {
    font-weight:500;
  }   
}
/*------------------------------------------------
	メインビジュアル
--------------------------------------------------*/
#mainvisual {
  width: 100%;
  height: calc(560vw / 7.5);
  background: url("../img/main-bg-sp.jpg") no-repeat top center;
  background-size: 100%;
  position: relative;
  & .inner {
    width: 100%;
    & .title {
      padding-top: 3.2vw;
      width: 100%;
      margin: 0 auto;
    }
  }
}
/*------------------------------------------------
	ナビ
--------------------------------------------------*/
#navi {
  width: 100%;
  background: var(--content-color-darkblue);
  & ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    & li {
      text-align: center;
      width: 50%;
      height: 16vw;
      border-right: 1px solid #fff;
      border-bottom: 1px solid #fff;
      display: flex;
      justify-content: center;
      &:nth-child(2n) {
        border-right: none;
      }
      &:nth-last-child(-n+2) {
        border-bottom: none;
      }
      & a {
        font-family: var(--font-serif);
        font-weight: bold;
        font-size: 3.6vw;
        color: #fff;
        line-height: 1.3;
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-bottom: 1.8vw;
        & span {
          font-size: 3.2vw;
        }
        &::after {
          content: "";
          display: block;
          width: 4.4vw;
          height: 4.4vw;
          background: url(/cmn/icon/icon_arrow_down_white.svg) no-repeat center center / contain;
          position: absolute;
          bottom: 0;
          left: 50%;
          transform: translateX(-50%);
        }
        & .fix-br {
          display: none;
        }
        & .normal-br {
          display: none;
        }
      }
    }
  }
}

/*ナビ固定時*/
.fix-navi:has(.fixed) {
	height: 13vw;
}
#navi {
  &.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    ul {
      width: 100%;
      display: flex;
      flex-wrap: nowrap;
      border-top: none;
      li {
        width: 100%;
        border-right: solid 1px #fff;
        border-bottom: none;
        &:last-child {
          border-right: none;
        }
        img {
          display: none;
        }
        span {
          display: block;
        }
        a {
          font-size: 3vw;
          line-height: 1.3;
          padding: .2vw 0 3vw;
          height: 100%;
          &::after {
            font-size: 2.8vw;
          }
          &.active {
            color: #ffec00;
            &::after {
              background-image: url(../img/icon_arrow_down_yellow.svg);
            }
          }
          & span {
            font-size: 0.87em;
          }
          & .fix-br {
            display: block;
          }
          & .normal-br {
            display: block;
          }
        }
      }
    }
  }
}

/*------------------------------------------------
	共通
--------------------------------------------------*/
/*背景*/
.tour-contents {
  background-image:
    url('../img/noise-pattern.png'),
    linear-gradient(to bottom, #cef3fc, #93bbf1, #c7bcf5);
  background-repeat:
    repeat,
    no-repeat;
  background-position:
    0 0,
    0 0;
  background-size:
    auto,
    100% 100%;
  padding: 10vw 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
  &::before, &::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 26vw;
    background-image: url('../img/bg-dec-sp.png');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100%;
    mix-blend-mode: multiply;
    z-index: -1;
  }
  &::before {
      top: 0;
  }
  &::after {
    bottom: 0;
    transform: rotate(180deg);
    transform-origin: center center;
  }
}

/*共通レイアウト*/
.tour-contents {
  & .box {
    background: #fff;
    border-radius: 10px;
    padding: 3.4vw 3.4vw 12vw 3.4vw;
    margin-bottom: 8vw;
  }
  & h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
  }  
  & h4 {
    font-size: 4.2vw;
    font-weight: 900;
  }
  & .item-list {
    & .item {
      display: flex;
      flex-wrap: wrap;
      gap: 2vw 0;
      & .ph {position: relative}
      & .location {
        display: inline-block;
        margin-bottom: 0.4vw;
      }
      & .tag {
        display: inline-block;
        background: #7471A7;
        padding: 1vw 2vw;
        color: #fff;
        font-weight: bold;
        font-size: 3vw;
        line-height: 1;
      }
      & .orange {
        background: #DF3601;
        border-radius: 4px;
      }
    }
  }  
}

/*----------------------------------------------
	添乗員同行ツアー
------------------------------------------------*/
#imp {
  & h2 {
    font-size: 6vw;
    text-align: center;
    line-height: 1.3;
    color: var(--content-color-darkblue);
    margin: 4vw auto;
    & span {
      font-size: 0.7em;
    }
  }
  & .product {
    & li {
      border: solid 1px #a9a5a2;
      margin-bottom: 20px;
      background: #fff;
      box-shadow: 0 2px 3px 1px #cac6c6;
      & a {
        color: var(--default-color-black);
        display: block;
        padding: 0;
        width: 100%;
        height: 100%;
      }
      & .image {
        img {
          height: 50vw;
        }
      }
      & .textwrap {
        display: flex;
        flex-direction: column;
        padding: 3vw;
      }
      & .sub {
        font-size: 3.2vw;
        margin-bottom: 1.2vw;
        line-height: 1.3;
      }
      & .title {
        font-size: 4.2vw;
        font-weight: 700;
        line-height: 1.3em;
        margin-bottom: 2vw;
      }
      & .price {
        text-align: right;
        font-size: 4.4vw;
        font-weight: 700;
        color: #f00;
        & .dep {
          font-size: 0.7em;
          color: var(--default-color-black);
          font-weight: 500;
          margin-right: 2vw;
        }
      }
      & .fuel {
        font-size: 12px;
        line-height: 1.0em;
        text-align: right;
      }
      & .course__link {
        width: 100%;
        margin-left: auto;
        
        & > a {
          display: block;
          text-align: center;
          font-size: 16px;
          line-height: 2.5em;
          border-radius: 25px;
          text-decoration: none;
          background-color: var(--content-color-darkblue, #0076a3);
          color: #fff;
          &:hover {
            background-color: #016ba0;
          }
        }
      }
    }
  }
  & .btn {
    width: 100%;
    display: block;
    color: #fff;
    font-size: 3.6vw;
    background: #bc0000;
    text-align: center;
    border-radius: 30px;
    padding: 2vw 0 2.2vw;
    margin-top: 8px;
    position: relative;
    margin: 4vw auto 0;
    &::after {
      content: "";
      background: url(/cmn/icon/icon_arrow_right_white.svg) no-repeat center center / contain;
      width: 20px;
      height: 20px;
      position: absolute;
      top: 0;
      right: 3%;
      bottom: 0;
      margin: auto;
    }
  }
}

/*スケジュール*/
#imp {
  & .plan-detail {
    display: flex;
    flex-wrap: wrap;
    & .schedule {
      & li {
        display: flex;
        column-gap: 2vw;
        margin-bottom: 2.8vw;
        & .day {
          display: inline-block;
          font-weight: 900;
          color: #0068b7;
        }
        & .schedule-detail {
          font-size: 3.4vw;
          flex: 1;
          padding-top: .4vw;
          font-weight: 500;
        }
      }
    }
    & .note {
      font-size: 2.8vw;
      font-weight: 500;
    }
  }
}

/*----------------------------------------------
	特別企画
------------------------------------------------*/
#special {
  & h2 {
    position: relative;
    background: var(--content-color-lightblue);
    padding: 2vw;
    margin-bottom: 4vw;
    text-align: center;
    font-size: 6vw;
    color: #fff;
    &::before,
    &::after {
      content: '';
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 12vw;
      height: 10vw;
      background-image: url('../img/special-title-dec.svg');
      background-size: cover;
      background-repeat: no-repeat;
    }
    &::before {left: -1vw;}
    &::after {
      right: -1vw;
      transform: translateY(-50%) scaleX(-1);
    }
    & span {
      display: inline-block;
      position: relative;
      &::after {
        content: '';
        position: absolute;
        bottom: -6vw;
        left: 50%;
        transform: translateX(-50%);
        border-width: 5.2vw 6vw 0 6vw;
        border-style: solid;
        border-color: var(--content-color-lightblue) transparent transparent transparent;
      }
    }
  }
  & h3 {
    color: var(--content-color-lightblue);
    line-height: 1.3;
  }
  & .item-list {
    & .title-wrap {
      width: 100%;
    }
    & .point01 {
      margin-bottom: 12vw;
      & h3 {
        font-size: 5.8vw;
      }
      & .text {
        display: flex;
        flex-direction: column;
      }
      & .ph {
        width: 100%;
      }
    }
    & .point02 {
      & h3 {
        font-size: 5.4vw;
        margin-bottom: 2vw;
      }
      & .ph {
        width: 90vw;
      }
    }
  }
  & .guide {
    background: #d6eff9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2vw;
    margin-top: 4vw;
    & img {
      width: 28vw;
    }
    & p {
      font-family: var(--font-serif);
      font-size: 3.8vw;
      font-weight: 600;
      line-height: 1.5;
    }
  }
}

/*----------------------------------------------
	体験・絶景
------------------------------------------------*/
/*共通*/
#taiken-zekkei {
  & h2 {
    font-size: 4.8vw;
    color: var(--content-color-blue);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 4vw 0 7vw;
    position: relative;
    &::before, &::after {
      content: "";
      display: inline-block;
      width: 16vw;
      height: 6vw;
      background: url("../img/taiken-title-dec01.svg") no-repeat center center / contain;
      transform: translateY(1.2vw);
      position: absolute;
      bottom: 1.2vw;
    }
    &::before {left: 6vw;}
    &::after {
      right: 6vw;
      transform: scaleX(-1);
    }
    & mark {
      font-size: 6.4vw;
      background: linear-gradient(transparent 70%,#fafb81 70%);
      color: var(--content-color-blue);
      padding: 0 2vw;
    }
  }
  & h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to bottom, #00abeb, #1363aa);
    background-image: linear-gradient(to bottom, #00abeb, #1363aa);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 6vw;
    color: transparent;
    margin-bottom: 4vw;
    &::before, &::after {
      content: "";
      display: inline-block;
      width: 7vw;
      height: 7vw;
      background: url("../img/taiken-title-dec02.svg") no-repeat center center / contain;
      margin: 0 2vw;
    }
  }
}

/*体験*/
#taiken {
  margin-bottom: 12vw;
  & .item-list {
    & .ph {
      width: 100%;
    }
    & .point01 {
      margin-bottom: 10vw;
    }
    & .point02 {
      & img {
        &:last-of-type {
          width: 26vw;
          position: absolute;
          top: -5vw;
          left: -2vw;
        }
      }
    }
    & .title-wrap {
      margin-bottom: 1.2vw;
      & h4 {
        color: var(--content-color-blue);
        font-weight: 900;
        line-height: 1.5;
        & span {
          color: var(--default-color-black);
          margin-right: 0.5vw;
        }
      }
    }
  }
}

/*絶景*/
#zekkei {
  & .item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6vw 3vw;
    & .item {
      width: calc((100% - 3vw) / 2);
      flex-direction: column;
      & .text {
        & h4 {
          color: var(--content-color-blue);
          margin-bottom: 0.5vw;
          & span {
            font-size: 3.2vw;
            line-height: 1.3;
            color: var(--default-color-black);
            display: block;
          }
          & ruby {
            display: flex;
            align-items: center;
            & rt {
              font-size: 3vw;
            }
          }
        }
        & p {
          font-size: 3.5vw
        }
      }
      & .tag {
        position: absolute;
        right: 0;
        top: 0;
      }
    }
  }
}

/*冬の北海道の服装*/
#clothes {
  position: relative;
  border-radius: 8px;
  background: #f1f1f1;
  margin-top: 12vw;
  background-image:
    url('../img/clothes-illust.png');
  background-repeat: no-repeat;
  background-position: calc(100% - 4vw) calc(100% - 3vw);
  background-size: 18vw auto;
  padding: 14vw 4vw 17vw;
  & h3 {
    width: 64vw;
    position: absolute;
    top: -5vw;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    margin: 0;
    text-align: center;
  }
  & dl {
    & div {
      &:first-of-type {
        margin-bottom: 3vw;
      }
    }
    & dt {
      color: var(--content-color-blue);
      font-size: 4vw;
      font-weight: 900;
      &::before {
        content: "";
        display: inline-block;
        width: 4.5vw;
        height: 4.5vw;
        background: url("../img/check-icon.svg") no-repeat center center / contain;
        transform: translateY(0.7vw);
        margin-right: 1.25vw;
      }
    }
    & dd {
      font-weight: 500;
    }
  }
  & .note {
    font-size: 3vw;
    margin-top: 3vw;
  }
}

/*----------------------------------------------
	食事・宿泊
------------------------------------------------*/
/*共通*/
#meal h2, #stay h2 {
  font-size: 6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5vw 0 6vw;
  line-height: 1.3;
  & img {
  width: 15vw;
  margin-right: 2vw;
  }
}
.day-number {
  color: #fff;
  font-weight: 700;
  padding: .5vw 0 1vw 1vw;
}

/*食事*/
#meal {
  & h2 {
    color: var(--content-color-orange);
  }
  & .item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8vw 0;
    & .item {
      width: 100%;
      flex-direction: column;
      gap: 0;
      & h4 {
        color: var(--content-color-orange);
        margin: 2vw 0 0;
      }
      & .note {
        font-size: 3vw;
        display: block;
        line-height: 1.5;
      }
      & .day-number {
        background: #d34500;
      }
    }
    & .point01 {
      & img {
        &:last-of-type {
          width: 42vw;
          position: absolute;
          bottom: -3vw;
          right: -2vw;
        }
      }
    }
  }
}
/*宿泊*/
#stay {
  margin-bottom: 0;
  & h2 {
    color: var(--content-color-purple);
  }
  & .item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10vw 0;
    & .item {
      width: 100%;
      flex-direction: column;
      gap: 0;
      & h4 {
        color: var(--content-color-purple);
        margin-top: 2vw;
      }
      & .note {
        font-size: 3vw;
        display: block;
        line-height: 1.3;
      }
      & .day-number {
        background: var(--content-color-purple);
      }
      & .ph {
        display: flex;
        width: 50%;
      }
      & .hotel-data {
        border: 1px solid #898989;
        font-size: 3vw;
        padding-bottom: 2vw;
        margin-top: 2vw;
        & dt {
          background-color: var(--content-color-purple);
          color: #fff;
          display: inline-block;
          padding: .2vw 2vw .3vw 1vw;
          margin-bottom: 1vw;
        }
        & dd {
          padding: 0 2vw;
        }
      }
    }
  }
}

/*------------------------------------------------
	FDA
--------------------------------------------------*/
#fda {
  padding: 12vw 0;
  background: #ecf4f7;
  & h2 {
    font-size: 6vw;
    color: var(--content-color-airline);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 900;
    margin-bottom: 6vw;
    & span {
      font-size: 0.6em;
      color: var(--default-color-black);
    }
  }
}

#fda {
  & .schedule {
    border: 6px double var(--content-color-airline);
    background: #FFF;
    padding: 6vw 4vw 4vw;
    margin-bottom: 8vw;
    position: relative;
    & h3 {
      text-align: center;
      margin-bottom: 6vw;
      & span {
        display: inline-block;
        font-size: 5vw;
        font-weight: 900;
        color: var(--content-color-airline);
        position: relative;
        padding: 0 3vw 0 30vw;
        &::before {
          content: "";
          background: url("../img/logo_fda.png");
          background-size: cover;
          width: 28vw;
          height: 13vw;
          position: absolute;
          top: 0;
          bottom: 0;
          left: 0;
          margin: auto;
        }
      }
    }
    & .schedule-inbox {
      display: flex;
      flex-wrap: wrap;
    }
    & .schedule-list {
      & li {
        font-size: 4.4vw;
        font-weight: 900;
        margin-bottom: 2vw;
        & span {
          color: var(--content-color-airline);
          display: inline-block;
          margin-right: 2vw;
        }
        & small {
          font-size: 3.4vw;
          display: block;
          padding-left: 8vw;
        }
      }
    }
    & .feature-list {
      background: #fdf2f3;
      border-radius: 8px;
      padding: 2.4vw 3vw;
      margin-top: 2.4vw;
      & li {
        font-weight: 900;
        font-size: 3.4vw;
        margin-bottom: 1vw;
        line-height: 1.3;
      }
    }
  }
}

#fda {
  & .seat{
  background: #FFF;
  padding-bottom: 4vw;
  text-align: center;
    & .seat-midashi{
      background: var(--content-color-airline);
      color: #fff;
      font-weight: 900;
      padding: 2vw 0;
      font-size: 4.6vw;
      font-weight: 900;
    }
    & .seat-txt{
      font-size: 4vw;
      font-weight: 900;
      margin: 4vw auto;
      & .txt__red{
        color: var(--content-color-red);
        font-size: 1.3em;
      }
      & small{
        display: block;
        font-size: 3vw;
        font-weight: 500
      }
    }
    .seat-img {
      padding: 0 4vw;
    }
    & .seat-note {
      text-align: left;
      padding: 0 4vw;
      & .title {
        background: #d34500;
        padding: .8vw 2vw;
        margin: 4vw 0 1vw;
        display: inline-block;
        color: #fff;
        line-height: 1;
        font-size: 3.2vw;
      }
      & li {
        font-size: 3vw;
      }
    }
  }
}

/*--------------------------------------------
ツアー追随バナー
--------------------------------------------------*/
#fix-bnr {
  position: fixed;
  right: 1vw;
  bottom: 18vw;
  z-index: 100;
  display: none;
  & p {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #bc0000;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: center;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  & a {
    font-size: 11px;
    color: #fff;
    text-decoration: none;
    line-height: 1.3;
    text-align: center;
    paddin-bottom: 2px;
    &:hover {
      opacity: 1;
    }
  }
  & .close {
    position: absolute;
    right: 0px;
    top: -2px;
    & a {
      display: block;
      width: 20px;
      height: 20px;
      background-color: #e3e3e3;
      border-radius: 50%;
      text-align: center;
      font-size: 15px;
      font-weight: bold;
      line-height: 20px;
      color: #222;
    }
  }
  &:hover {
    transform: scale(1.05);
    transition: all 0.2s ease-in-out;
  }
  &.active {
    box-shadow: 0 0 0 5px rgba(0, 123, 255, 0.5);
  }
  &::after {
    content: "";
    background: url(/cmn/icon/icon_arrow_right_white.svg) no-repeat center center / contain;
    width: 16px;
    height: 16px;
    position: absolute;
    bottom: 4px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    margin: 0;
  }
}
@media (orientation: landscape){
	#fix-bnr {
		bottom: 10vw;
	}
}

/*------------------------------------------------
	おすすめバナー
--------------------------------------------------*/
#recobnr {
	width: 100%;
	background-color: #fff;
	padding: 8vw 0 0;
	
	& h2 {
		text-align: center;
		font-size: 5.0vw;
		font-weight: 700;
		line-height: 1.0;
		margin-bottom: 5vw;
	}
	
	& .bnr-list {
		width: var(--content-width-sp);
		margin: 0 auto;
		display: flex;
		flex-wrap: wrap;
		
		& li {
			width: 46%;
			margin: 0 2% 3.5vw;
			& img {
				width: 100%;
			}
			&:empty {
				display: none;
			}
		}
	}
	&:has(ul li:nth-child(1):empty) {
		display: none;
	}
}

/*------------------------------------------------
	検索ボックス調整
--------------------------------------------------*/
#searchArea .inner {
  width: 100%;
}
@media (orientation: landscape) {
  #searchArea {
    padding: 40px 0;
  }
}
.rn-searchMod__inputField, .rn-searchMod__select {
  font-size: 14px !important;
  color: #222;
}

/*----------------------------------------------
	終了
------------------------------------------------*/
#close {
  padding: 20vw 0;
  background-color: #f9f6e3;
  text-align: center;
  font-size: 4.0vw;
  line-height: 1.8;
  background-image:
    url('../img/noise-pattern.png'),
    linear-gradient(to bottom, #cef3fc, #93bbf1, #c7bcf5);
  background-repeat:
    repeat,
    no-repeat;
  background-position:
    0 0,
    0 0;
  background-size:
    auto,
    100% 100%; 
}
/*----------------------------------------------
ページトップ
------------------------------------------------*/
.goTop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  transform: translateZ(0);
  z-index: 200;
  & a {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(105, 113, 128, .5);
    width: 48px;
    height: 48px;
    & img {
      width: 24px;
      height: 24px;
    }
  }
}