@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;
}
.nopc {
  display: none
}
.main {
  font-family: var(--font-sans);
  line-height: 1.5;
  font-size: var(--font-size-pc);
  color: var(--default-color-black);
  -webkit-text-size-adjust: none; /*ipad safari対策*/
  & a {
    text-decoration: none;
    &:hover {
      opacity: 0.8;
      transition: all 0.6s ease;
    }
  }
  & img {
    max-width: 100%;
  }
  & .inner {
    width: var(--content-width-pc);
    max-width: 100%;
    margin: 0 auto;
  }
  & p, ul {
    font-weight:500;
  } 
}
/*------------------------------------------------
	メインビジュアル
--------------------------------------------------*/
#mainvisual {
  width: 100%;
  height: 500px;
  background: url("../img/main-bg-pc.jpg") no-repeat top center;
  & .inner {
    position: relative;
    text-align: center;
    & .title {
      padding-top: 22px;
    }
  }
}
/*------------------------------------------------
	ナビ
--------------------------------------------------*/
#navi {
  width: 100%;
  background: var(--content-color-darkblue);
  & ul {
    width: var(--content-width);
    display: flex;
    margin: auto;
    & li {
      text-align: center;
      width: calc(100% / 6);
      display: flex;
      justify-content: center;
      & a {
        font-family: var(--font-serif);
        font-weight: bold;
        color: #fff;
        line-height: 1.3;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 24px 0 28px;
        width: 100%;
        height: 100%;
        transition: color 0.3s ease, opacity 0.3s ease;
        & span {
          font-size: 0.8em;
        }
        &::after {
          content: "";
          display: block;
          width: 20px;
          height: 20px;
          background: url(/cmn/icon/icon_arrow_down_white.svg) no-repeat center center / contain;
          position: absolute;
          bottom: 5px;
          left: 50%;
          transform: translateX(-50%);
          transition: background-image 0.1s ease;
        }
        &:hover {
          opacity: 0.8;
        }
      }
    }
  }
}
/*ナビ固定時*/
.fix-navi:has(.fixed) {
	height: 82px;
}
#navi.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 0;
  & li {
    & a {
      padding: 8px 0 16px;
      &.active {
        color: #ffec00;
        &::after {
          background-image: url(../img/icon_arrow_down_yellow.svg);
        }
      }
      &::after {
        bottom: 0;
      }
      &:hover {
        opacity: 0.8;
      }
    }
  }
}

/*------------------------------------------------
	ツアー内容
--------------------------------------------------*/
/*背景*/
.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: 80px 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
  &::before, &::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 358px; /* PC向けの値 */
    background-image: url('../img/bg-dec-pc.png'); /* PC向けの画像 */
    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: 20px;
    padding: 40px 40px 72px;
    margin-bottom: 64px;
  }
  & h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
  }
  & h4 {
    font-size: 20px;
    font-weight: 900;
  }
  & .item-list {
    & .item {
      display: flex;
      flex-wrap: wrap;
      gap: 0 32px;
      & .ph {position: relative}
      & .text {flex: 1;}
      & .location {margin-right: 16px;}
      & .tag {
        display: inline-block;
        background: #7471A7;
        padding: 4px 8px;
        color: #fff;
        font-weight: bold;
        font-size: 14px;
        line-height: 1;
      }
      & .orange {
        background: #DF3601;
        border-radius: 4px;
      }
    }
  }
}

#special .text, #taiken .text {
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  justify-content: center;  
}

/*偶数番目左右入れ替え*/
#special .item:nth-child(even) .ph, #taiken .item:nth-child(even) .ph {
	order: 2;	
}
#special .item:nth-child(even) .copy-box, #taiken .item:nth-child(even) {
	order: 1;	
}

/*----------------------------------------------
	添乗員同行ツアー
------------------------------------------------*/
/*商品*/
#imp {
  & h2 {
    font-size: 42px;
    text-align: center;
    line-height: 1.3;
    color: var(--content-color-darkblue);
    margin: 0 auto;
    margin-bottom: 32px;
    & span {
      font-size: 0.8em;
    }
  }
  & .product {
    margin-bottom: 16px;
    & li {
      border: solid 1px #a9a5a2;
      background: #fff;
      box-shadow: 0 2px 3px 1px #cac6c6;
      & a {
        color: var(--default-color-black);
        display: flex;
        padding: 16px 24px 16px 16px;
      }
      & .image {
        width: 220px;
        img {
          width: 100%;
          display: block;
        }
      }
      & .textwrap {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        padding-left: 24px;
      }
      & .sub {
        margin-bottom: 2px;
      }
      & .title {
        font-size: 22px;
        font-weight: 700;
        line-height: 1.3em;
        margin-bottom: 20px;
      }
      & .price {
        text-align: right;
        font-size: 24px;
        font-weight: 700;
        color: #f00;
        & .dep {
          font-size: 0.7em;
          color: var(--default-color-black);
          font-weight: 500;
          margin-right: 16px;
        }
      }
      & .fuel {
        font-size: 12px;
        line-height: 1.0em;
        text-align: right;
      }
    }
  }
  & .btn {
    width: 600px;
    display: block;
    color: #fff;
    background: #bc0000;
    text-align: center;
    border-radius: 30px;
    padding: 8px 0;
    margin-top: 8px;
    position: relative;
    margin: 10px 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;
    gap: 0 16px;
    & .schedule {
      flex-grow: 1;
      margin-top: 32px;
      & li {
        display: flex;
        column-gap: 12px;
        margin-bottom: 24px;
        & .day {
          display: inline-block;
          font-weight: 900;
          color: #0068b7;
        }
        & .schedule-detail {
          font-size: 14px;
          flex: 1;
          padding-top: 2.4px;
          font-weight: 500;
        }
      }
    }
    & img {
      width: 444px;
    }
    & .note {
      font-size: 12px;
      font-weight: 500;
    }
  }
}


/*----------------------------------------------
	特別企画
------------------------------------------------*/
#special {
  & h2 {
    position: relative;
    background: var(--content-color-lightblue);
    padding: 8px 80px;
    margin-bottom: 56px;
    text-align: center;
    font-size: 40px;
    color: #fff;
    &::before,
    &::after {
        content: '';
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100px;
        height: 77px;
        background-image: url('../img/special-title-dec.svg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
    &::before {left: 8px;}
    &::after {
        right: 8px;
        transform: translateY(-50%) scaleX(-1);
    }
    & span {
      display: inline-block;
      position: relative;
      &::after {
        content: '';
        position: absolute;
        bottom: -28px;
        left: 50%;
        transform: translateX(-50%);
        border-width: 30px 38px 0 38px;
        border-style: solid;
        border-color: var(--content-color-lightblue) transparent transparent transparent;
      }
    }
  }
  & h3 {
    color: var(--content-color-lightblue);
  }
  & .item-list {
    & .title-wrap {
      width: 100%;
      margin-bottom: 24px;
    }
    & .point01 {
      margin-bottom: 64px;
      & h3 {
        font-size: 36px;
      }
      & .text {
        display: flex;
        flex-direction: column;
      }
      & .ph {
        width: 512px;
      }
    }
    & .point02 {
      & h3 {
        font-size: 30px;
        margin-bottom: 8px;
      }
      & .ph {
        width: 390px;
      }
    }
  }
}
/*館長ご案内*/
#special {
  & .guide {
    background: #d6eff9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 22px;
    margin-top: auto;
    & img {
      width: 154px;
    }
    & p {
      font-family: var(--font-serif);
      font-size: 20px;
      font-weight: 600;
      line-height: 1.5;
    }
  }
}

/*----------------------------------------------
	体験・絶景
------------------------------------------------*/
/*共通*/
#taiken-zekkei {
  & h2 {
    font-size: 40px;
    color: var(--content-color-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 32px 0;
    &::before, &::after {
      content: "";
      display: inline-block;
      width: 94px;
      height: 37px;
      background: url("../img/taiken-title-dec01.svg") no-repeat center center / contain;
      margin: 0 10px;
      transform: translateY(5px);
    }
    &::after {
      transform: translateY(5px) scaleX(-1);
    }
    & mark {
      background: linear-gradient(transparent 70%,#fafb81 70%);
      color: var(--content-color-blue);
      padding: 0 8px;
    }
  }
  & 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: 40px;    
    color: transparent;
    margin-bottom: 24px;
    &::before, &::after {
      content: "";
      display: inline-block;
      width: 40px;
      height: 40px;
      background: url("../img/taiken-title-dec02.svg") no-repeat center center / contain;
      margin: 0 10px;
      transform: translateY(3px);
    }
  }
}

/*体験*/
#taiken {
  margin-bottom: 96px;
  & .item-list {
    & .ph {
      width: 450px;
    }
    & .point01 {
      margin-bottom: 64px;
    }
    & .point02 {
      & img {
        &:last-of-type {
          width: 140px;
          position: absolute;
          bottom: -20px;
          left: -24px;
        }
      }
    }
    & .title-wrap {
      margin-bottom: 16px;
      & h4 {
        font-size: 26px;
        color: var(--content-color-blue);
        line-height: 1.5;
        margin-bottom: 2px;
        & span {
          color: var(--default-color-black);
          margin-right: 2px;
        }
      }
    }
  }
}

/*絶景*/
#zekkei {
  & .item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 56px 32px;
    & .item {
      width: calc((100% - (32px * 2)) / 3);
      flex-direction: column;
      & h4 {
        color: var(--content-color-blue);
        & span {
          font-size: 16px;
          line-height: 1.5;
          color: var(--default-color-black);
          display: block;
          margin: 8px 0 2px;
        }
        & ruby {
          display: flex;
          align-items: center;
          & rt {
            font-size: 14px;
          }
        }
      }
      & .tag {
        position: absolute;
        right: 0;
        top: 0;
      }
    }
  }
}

/*冬の北海道の服装*/
#clothes {
  position: relative;
  border-radius: 20px;
  background: #f1f1f1;
  margin-top: 72px;
  background-image: 
    url('../img/clothes-illust.png');
  background-repeat: no-repeat;
  background-position: calc(100% - 80px) center;
  background-size: 164px auto; 
  padding: 48px 236px 48px 96px;
  & h3 {
    width: 296px;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    margin: 0;
    text-align: center;
  }
  & dl {
    & div {
      &:first-of-type {
        margin-bottom: 8px;
      }
    }
    & dt {
      color: var(--content-color-blue);
      font-size: 18px;
      font-weight: 900;
      &::before {
        content: "";
        display: inline-block;
        width: 18px;
        height: 18px;
        background: url("../img/check-icon.svg") no-repeat center center / contain;
        transform: translateY(3px);
        margin-right: 5px;
      }
    }
    & dd {
      font-weight: 500;
    }
  }
  & .note {
    font-size: 14px;
    margin-top: 16px;
  }
}

/*----------------------------------------------
	食事・宿泊
------------------------------------------------*/
/*共通*/
#meal h2, #stay h2 {
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  & img {
    margin-right: 16px;  
  }
}
.day-number {
  color: #fff;
  font-weight: 700;
  padding: 0 0 2px 2px;
}

/*食事*/
#meal {
  & h2 {
    color: var(--content-color-orange);
  }
  & .item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 32px;
    & .item {
      width: calc((100% - (32px * 2)) / 3);
      flex-direction: column;
      & h4 {
        color: var(--content-color-orange);
        margin: 8px 0 2px;
      }
      & .note {
        font-size: 14px;
        display: block;
        line-height: 1.5;
        margin: 2px 0;
      }
      & .day-number {
        background: #d34500;
      }
    }
    & .point01 {
      & img {
        &:last-of-type {
          width: 186px;
          position: absolute;
          bottom: -16px;
          right: -20px;
        }
      }
    }
  }
}
/*宿泊*/
#stay {
  margin-bottom: 0;
  & h2 {
    color: var(--content-color-purple);
  }
  & .item-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 56px;
    & .item {
      width: calc((100% - 56px) / 2);
      flex-direction: column;
      & h4 {
        color: var(--content-color-purple);
        margin-top: 8px;
      }
      & .note {
        font-size: 14px;
        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: 14px;
        padding-bottom: 8px;
        margin-top: 8px;
        & dt {
          background-color: var(--content-color-purple);
          color: #fff;
          display: inline-block;
          padding: 2px 10px 3px 8px;
          margin-bottom: 4px;
        }
        & dd {
          padding: 0 16px;
        }
      }
    }
  }
}

/*------------------------------------------------
	FDA
--------------------------------------------------*/
#fda {
  padding: 80px 0;
  background: #ecf4f7;
  & h2 {
    font-size: 42px;
    color: var(--content-color-airline);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 900;
    margin-bottom: 40px;
    & span {
      font-size: 0.6em;
      color: var(--default-color-black);
    }
  }
}

#fda {
  & .schedule {
    border: 6px double var(--content-color-airline);
    background: #FFF;
    padding: 28px 40px;
    margin-bottom: 32px;
    position: relative;
    & h3 {
      text-align: center;
      margin-bottom: 8px;
      & span {
        display: inline-block;
        font-size: 30px;
        font-weight: 900;
        color: var(--content-color-airline);
        position: relative;
        padding-left: 160px;
        &::before {
          content: "";
          background: url("../img/logo_fda.png");
          width: 145px;
          height: 62px;
          position: absolute;
          top: 0;
          bottom: 0;
          left: 0;
          margin: auto;
        }
      }
    }
    & .schedule-inbox {
      display: flex;
      align-items: center;
      justify-content: space-between;  
    }
    & .schedule-list {
      & li {
        font-size: 22px;
        font-weight: 900;
        & span {
          color: var(--content-color-airline);
          display: inline-block;
          margin-right: 8px;
        }
        & small {
          font-size: 16px;
        }
      }
    }
    & .feature-list {
      background: #fdf2f3;
      border-radius: 8px;
      padding: 18px 26px;
      & li {
        font-weight: 900;
      }
    }
  }
}

#fda {
  & .seat{
  background: #FFF;
  padding-bottom: 48px;
  text-align: center;
    & .seat-midashi{
      background: var(--content-color-airline);
      color: #fff;
      font-weight: 900;
      padding: 4px;
      font-size: 30px;
      font-weight: 900;
    }
    & .seat-txt{
      font-size: 20px;
      font-weight: 900;
      margin: 32px auto;
      & .txt__red{
        color: var(--content-color-red);
        font-size: 1.3em;
      }
      & small{
        font-size: 14px;
        font-weight: 500
      }
    }
    & .seat-note {
      text-align: left;
      padding: 0 40px;
      & .title {
        background: #d34500;
        padding: 4px 8px;
        margin: 16px 0 4px;
        display: inline-block;
        color: #fff;
        line-height: 1;
      }
      & li {
        font-size: 14px;
      }
    }
  }
}

/*------------------------------------------------
	ツアー追随バナー
--------------------------------------------------*/
#fix-bnr {
  position: fixed;
  right: 10px;
  bottom: 80px;
  z-index: 100;
  display: none;
  & p {
    width: 120px;
    height: 120px;
    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 {
    color: #fff;
    text-decoration: none;
    line-height: 1.3;
    text-align: center;
    &:hover {
      opacity: 1;
    }
  }
  & .close {
    position: absolute;
    right: 4px;
    top: 4px;
    & a {
      display: block;
      width: 25px;
      height: 25px;
      background-color: #e3e3e3;
      border-radius: 50%;
      text-align: center;
      font-size: 16px;
      font-weight: bold;
      line-height: 25px;
      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: 26px;
    height: 26px;
    position: absolute;
    bottom: 6px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    margin: 0;
  }
}
@media screen and (max-width: 1200px) {
	#fix-bnr {
		right: 0;
	}
}


/*------------------------------------------------
	おすすめバナー
--------------------------------------------------*/
#recobnr {
	width: 100%;
	background-color: #fff;
	padding: 48px 0 24px;
	
	& h2 {
		text-align: center;
		font-size: 28px;
		font-weight: 700;
		margin-bottom: 30px;
	}
	& .bnr-list {
		width: var(--content-width-pc);
		max-width: 100%;
		margin: 0 auto;
		display: flex;
		justify-content: center;
		gap: 0;
		& li {
			width: calc(88% / 6);
			margin: 0 1%;
			& img {
				width: 100%;
			}
			&:empty {
				display: none;
			}
		}
	}
	&:has(ul li:nth-child(1):empty) {
		display: none;
	}
}

/*------------------------------------------------
	検索ボックス調整
--------------------------------------------------*/
#searchArea {
  background: #e0eef6;
  padding: 40px 0;
  margin-top: 24px;
}
.rn-searchMod__inputField, .rn-searchMod__select {
  font-size: 14px !important;
  color: #222;
}
/*----------------------------------------------
	終了
------------------------------------------------*/
#close {
  padding: 100px 0;
  text-align: center;
  font-size: 18px;
  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;
    }
  }
}