@charset "utf-8";
/* CSS Document */
:root{
	--font-sans: 'Noto Sans 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-orange: #fa4b09;
	--content-color-yellow: #f6c531;
	--content-color-green: #4e7c05;
	--content-color-courseA: #a46a14;
	--content-color-courseB: #8c3b3b;
	--bg-color-beige1: #fbf9df;
	--bg-color-beige2: #f5f2c6;
}
.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;
    }
}

/*------------------------------------------------
	メインビジュアル
--------------------------------------------------*/
#mainvisual {
	width: 100%;
	height: 460px;
	background: url("../img/main-bg-pc.jpg") no-repeat top center;
	& .inner {
		position: relative;
		text-align: center;
		& .title {
			padding-top: 5px;
			margin-bottom: 40px;
		}
		& .kikan {
			width: 364px;
			margin: 0 auto;
		}
	}
}

/*------------------------------------------------
	発地切り替え
--------------------------------------------------*/
.display_selected {
	width: 130px;
	height: 62px;
	padding: 16px 0;
	background: var(--default-color-black);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 0;
	&::after {
		content: "";
		display: inline-block;
		width: 25px;
		height: 25px;
		background: url(/cmn/icon/icon_arrow_down_white.svg) no-repeat center center / contain;
		position: absolute;
		right: 0;
		left: 0;
		bottom: 0;
		margin: auto;
	}
}
.dep-select-zone {
	display: none;
	width: 130px;
	background: #fff;
	position: absolute;
	right: 0;
	top: 62px;
	z-index: 30;
	border: 1px solid #ccc;
	& .dep-select li {
		cursor: default;
		padding: 3px 10px;
		text-align: center;
		& a {
			color: inherit;
		}
		&:hover,
		&.selected {
			color: #fff;
			background: #ff6622;
		}
	}
	& .close-button{
		display: none;
	}
}
/*------------------------------------------------
	導入/共通特典背景
--------------------------------------------------*/
#intro {
	width: 100%;
	background-image:url("../img/intro-bg.jpg");
	padding: 0 0 96px;
}
/*------------------------------------------------
	導入
--------------------------------------------------*/
#lead {
	background: url("../img/lead-map-pc.png") no-repeat top right;
	padding: 120px 0 0;
	min-height: 460px;
	& .text {
		width: 500px;
		font-size: 18px;
		line-height: 1.8;
		text-align: justify;
  }:last-of-type {
    margin-top: 24px;
  }
}
/*------------------------------------------------
	共通特典
--------------------------------------------------*/
#discount {
  margin-top: 80px;
  & h2 {
    width: 562px;
    margin: 0 auto -40px;
  }
  & .inner {
    width: 100%;
    height: 326px;
    background-image: url("../img/illust-mega.png"), url("../img/illust-coupon.png"), url("../img/discount-bg-pc.jpg");
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: top 88px left 140px, top 64px right 156px, top center;
    padding: 56px 104px 0;
    text-align: center;
    & .title-text {
      display: inline-block;
      font-size: 42px;
      font-weight: 900;
      color: var(--content-color-orange);
      margin-bottom: 24px;
      background: linear-gradient(transparent 70%, var(--content-color-yellow) 0%);
      & span:nth-child(1) {
        color: var(--default-color-black);
        font-size: 0.8em;
      }
    }
    .coupon {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      text-align: center;
      & .sub {
        font-size: 20px;
        font-weight: 700;
      }
      & .point {
        font-size: 60px;
        line-height: 1.3;
        font-weight: 900;
        color: var(--content-color-red);
        margin-bottom: 32px;
        & span {
          font-size: 0.6em;
        }
        & mark {
          background: linear-gradient(transparent 70%, #ffe900 0%);
          color: inherit;
          & span {
            font-size: 0.6em;
          }
          & :first-child {
            color: var(--default-color-black);
            margin-right: 8px;
          }
        }
      }
    }
    & .detail {
      width: 100%;
      font-size: 14px;
      padding-top: 8px;
      & a {
        color: #1079bb;
        &:hover {
          text-decoration: underline;
        }
      }
    }
  }
}

/*------------------------------------------------
	エリアナビ
--------------------------------------------------*/
#area-navi {
	width: 100%;
	background-color: var(--content-color-green);
	padding: 40px 0;
	margin-top: -1px;/*ipad調整*/
	
	& ul {
		width: var(--content-width-pc);
		margin: 0 auto;
		display: flex;
		justify-content: center;
		& li {
			width: 280px;
			margin: 0 16px;
			font-size: 18px;
			font-weight: 700;
			text-align: center;
			& a {
				display: block;
				color: inherit;
				padding: 20px 0;
				background-color: #fff;
				border-radius: 50px;
				position: relative;
				&::after {
					content: "";
					display: inline-block;
					width: 25px;
					height: 25px;
					background: url(/cmn/icon/icon_arrow_down.svg) no-repeat center center / contain;
					position: absolute;
					right: 10px;
				}
				&:hover {
					background-color: var(--content-color-yellow);
					opacity: 1;
				}
			}
		}
	}
}

/*------------------------------------------------
　ツアー　枠・キャンペーン内容
--------------------------------------------------*/
#tour {
	width: 100%;
	background-color: var(--bg-color-beige1);
	& .area {
		padding: 64px 0 96px;
		#yakushima& {
			background-color: var(--bg-color-beige2);
		}
	}
  & .note {
    display: block;
    font-size: 16px;
    margin-top: 2px;
  }
}
#tour .area-title {
	height: 230px;
	text-align: center;
	padding-top: 65px;
	background-repeat: no-repeat;
	background-position: top center;
	#amami & {background-image: url("../img/tour-amami-bg-pc.png");}
	#yakushima & {background-image: url("../img/tour-yakushima-bg-pc.png");}
	#other & {background-image: url("../img/tour-other-bg-pc.png");}
	& p {
		font-size: 26px;
		font-weight: 700;
		color: var(--content-color-green);
		margin-bottom: 10px;
	}
	& h2 {
		font-size: 46px;
		font-weight: 700;
		letter-spacing: 0.1em;
	}
}
#tour .course-title {
	background-color: var(--content-color-orange);
	color: #fff;
	font-size: 30px;
	font-weight: 900;
	text-align: center;
	padding: 16px 0 24px;
	& span {
		font-size: 1.3em;
	}
  & .tag {
		font-size: .8em;
    background: #fff;
    display: inline-block;
    padding: 2px 8px;
    margin-bottom: 4px;
    color: var(--content-color-orange);
    border-radius: 4px;
	}
}
#tour .area-cpn {
	background-color: #fff;
	padding: 40px 48px 48px;
	& h4 {
		font-size: 38px;
		font-weight: 900;
		padding: 0 0 16px;
		display: flex;
		align-items: center;
		& img {
			width: 90px;
			margin-right: 16px;
		}
		& .text {
			width: calc(100% - 106px);
			& .small {
				font-size: 0.7em;
				display: inline-block;
				transform: translateY(-4px);
			}
			& .color-a {
				color: var(--content-color-courseA);
			}
			& .color-b {
				color: var(--content-color-courseB);
			}
		}
	}
}

.course-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 40px;
  align-items: center;
  /*共通のスタイル*/
  & h5 {
    font-size: 20px;
    font-weight: 700;
    padding-left: 8px;
    &::before {
      content: "";
      display: inline-block;
      width: 24px;
      height: 24px;
      background: url("../img/star.svg") no-repeat center center / contain;
      transform: translateY(3px);
      margin-right: 4px;
    }
  }
  & p {
    padding-left: 8px;
  }
  /* フルサイズのスタイル */
  & li {
    display: grid;
    gap: 4px 8px;
    align-items: flex-start;
    grid-template-columns: 240px 240px 1fr;
    grid-template-rows: auto 1fr;
    /* 1列目2列目を画像に3列目をテキスト用に設定 */
    & img:first-of-type {
      grid-column: 1;
      grid-row: 1 / span 2;
    }
    & img:last-of-type {
      grid-column: 2;
      grid-row: 1 / span 2;
    }
    & h5 {
      grid-column: 3;
      grid-row: 1;
    }
    & p {
      grid-column: 3;
      grid-row: 2;
    }
  }
  /* ハーフサイズのスタイル */
  & .half {
    width: calc(50% - 47px);
    display: grid;
    gap: 4px 8px;
    align-items: flex-start;
    grid-template-columns: 240px 1fr;
    grid-template-rows: auto 1fr;
    /* 1列目を画像に2列目をテキスト用に設定 */
    & h5 {
      grid-column: 2;
      grid-row: 1;
    }
    & p {
      grid-column: 2;
      grid-row: 2;
    }
    & img {
      grid-column: 1;
      grid-row: 1 / span 2;
    }
  }
}
.course-list.half-wrap {
  gap: 32px 0;
  justify-content: flex-start;
  align-items: flex-start; 
  & .icon-or {
  padding: 50px 8px 50px 0;
  }
}
.area-cpn .aori {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  & mark {
    color: var(--content-color-orange);
    background: linear-gradient(transparent 70%, #ffe900 0%);
  }
}
/*ドットライン*/
.area-cpn .course-list:first-of-type::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: url("../img/dotline.png") no-repeat center center;
}
#amami .area-cpn ul.course-list:first-of-type::after {
  content: none;
}


/*奄美 共通特典*/
#amami .all {
	background-color: #f1f1f1;
	border-radius: 8px;
	padding: 32px 56px 48px;
  margin: 72px auto 56px;
	& .title {
		font-size: 30px;
		font-weight: 900;
		display: flex;
		align-items: center;
		margin-bottom: 16px;
		& img {
			width: 80px;
			margin-right: 8px;
		}
	}
  & .course-list {
    gap: 4px;
    margin-bottom: 0;
    & li {
    display: grid;
    gap: 0 24px;
    /* 左側をテキストエリアと右側を写真エリア */
    grid-template-columns: 1fr 240px;
      & h5 {
        grid-column: 1;
        grid-row: 1;
      }
      & p {
        grid-column: 1;
        grid-row: 2;
      }
      & img {
        grid-column: 2;
        grid-row: 1 / span 2;
        margin-top: -32px;
      }
    }    
  }
}

/*その他の離島*/
#other {
  & .course-title {
    padding: 8px 0;
  }
  & .yoronto {
  margin-bottom: 64px;
    & .course-list {
      gap: 0;
      margin-bottom: 0;
      & span {
        color: var(--content-color-orange);
      }
    }
    & ::after {
      content: none;
    }
  }
}
/*gift*/
#other .egift {
	padding: 0 0 0 150px;
	display: flex;
	justify-content: space-between;
	position: relative;
	& .illust {
		position: absolute;
		top: 0;
		left: 0;
	}
	& .text {
		width: 70%;
		font-size: 18px;
		font-weight: 700;
		& span {
			font-size: 0.7em;
			font-weight: 500;
		}
		& a {
			display: block;
			width: 260px;
			text-align: center;
			font-size: 14px;
			font-weight: 500;
			background-color: var(--default-color-black);
			color: #fff;
			border-radius: 20px;
			padding: 5px 0 7px;
			margin-top: 16px;
			position: relative;
			&::after {
				content: "";
				display: inline-block;
				width: 20px;
				height: 20px;
				background: url(/cmn/icon/icon_arrow_right_white.svg) no-repeat center center / contain;
				position: absolute;
				right: 8px;
				top: 6px;
			}
		}
	}
	& .ph {
		width: 28%;
	}
}

/*レンタル*/
/*#yakushima .rental {
	background-color: #f1f1f1;
	border-radius: 8px;
	padding: 24px 24px 24px 230px;
	display: flex;
	justify-content: space-between;
	position: relative;
	margin: 40px 0;
	& .title {
		position: absolute;
		top: -20px;
		left: -20px;
		width: 220px;
	}
	& dl {
		width: 63%;
		& dt {
			font-size: 24px;
			font-weight: 700;
			color: #607500;
			margin-bottom: 10px;
		}
		& dd {
			& span {
				font-size: 0.8em;
			}
		}
	}
	& .ph {
		width: 35%;
	}
}*/


/*------------------------------------------------
　ツアー　商品
--------------------------------------------------*/
.area00{
  display: none;
	&.is-display{
	  display: block;
	}
}
#tour {
	& .product {
		padding: 64px 0 0;
		& h3 {
			text-align: center;
			margin-bottom: 24px;
			font-size: 36px;
			font-weight: 900;
		}
		& .outsales-txt {
			text-align: center;
			margin: 30px auto;
			font-size: 16px;
			&:empty {
				display: none
			}
		}
		& .other-link {
			width: 700px;
			margin: 30px auto 0;

			& a {
				display: block;
				margin: 0 auto;
				font-size: 18px;
				color: #fff;
				background: var(--default-color-black);
				text-align: center;
				border-radius: 30px;
				padding: 16px 0;
				position: relative;

				&::after {
					content: "";
					background: url(/cmn/icon/icon_arrow_right_white.svg) no-repeat center center / contain;
					width: 30px;
					height: 30px;
					position: absolute;
					top: 0;
					right: 3%;
					bottom: 0;
					margin: auto;
				}
			}
		}
	}
}

/*------------------------------------------------
	商品部分調整・ページ用アイコン
--------------------------------------------------*/
.product-list.card-style > li .product-list__item .item-photo__wrapper .item-txt__port {
	position: static;
	margin-top: -1px;/*ios用調整*/
}
.item-label.courseA::after{
	display: block;
	content: "コースA";
	background-color: var(--content-color-courseA);
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	text-align: center;
}
.item-label.courseB::after{
	display: block;
	content: "コースB";
	background-color: var(--content-color-courseB);
	font-size: 12px;
	font-weight: 700;
	color: #fff;
	text-align: center;
}
/*------------------------------------------------
	関東のみチャーターバナーリンク
--------------------------------------------------*/
#charter .area00 {
	width: 100%;
	background-color: #fffbd4;
	padding: 64px 0;
	text-align: center;
	& .text-area {
		text-align: center;
		margin-bottom: 16px;
		& p:nth-child(1){
			font-size: 24px;
			font-weight: 700;
		} 
		& p:nth-child(2){
			font-size: 36px;
			font-weight: 900;
		} 
		& p:nth-child(3){
			font-size: 18px;
		} 
	}
	& .note {
		text-align: left;
		font-size: 14px;
		margin-top: 16px;
		padding-left: 70px;
	}
}

/*------------------------------------------------
	観光局リンク
--------------------------------------------------*/
#pr {
	width: 100%;
	background-color: #f4f4f4;
	padding: 40px 0;
	text-align: center;
	& a {
		display: block;
		width: 700px;
		margin: 0 auto;
		color: #fff;
		background-color: var(--content-color-green);
		font-size: 18px;
		border-radius: 30px;
		padding: 16px 0;
		position: relative;
		
		&::after {
			content: "";
			background: url(/cmn/icon/icon_launch_white.svg) no-repeat center center / contain;
			width: 24px;
			height: 24px;
			position: absolute;
			top: 0;
			right: 20px;
			bottom: 0;
			margin: auto;
		}
	}
}

/*------------------------------------------------
	おすすめバナー
--------------------------------------------------*/
#recobnr {
	width: 100%;
	background-color: #fff;
	padding: 40px 0 64px;
	
	& 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(.area00.is-display ul li:nth-child(1):empty) {
		display: none;
	}
}
/*------------------------------------------------
	検索ボックス調整
--------------------------------------------------*/
#searchArea {
    background: url("../img/search-bg.jpg") no-repeat center center;
	background-size: cover;
    padding: 40px 0;
}
.rn-searchMod__inputField, .rn-searchMod__select {
	font-size: 14px!important;
	color: #222;
}
/*------------------------------------------------
	クーポンコード
--------------------------------------------------*/
.coupon-code-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #dcdce5;
  padding: 16px;
  gap: 8px;
}
.coupon-code-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}
.coupomsgBoardn-code-txt {
  font-size: 20px;
  font-weight: 700;
}
.coupon-code {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  background: #f2f2f2;
  padding: 5px 30px 5px 24px;
  cursor: pointer;
  position: relative;
}
.coupon-code::after {
  content: "";
  background: url("/cmn/icon/icon_copy.svg") no-repeat center center / cover;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 3px;
  right: 3px;
}
.msgBoard {
  width: 100%;
  font-size: 12px;
  text-align: center;
  display: none;
}
/*----------------------------------------------
	終了
------------------------------------------------*/
#close {
    padding: 100px 0;
    background-color: #f9f6e3;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
  & a {
    color: var(--default-color-black);
    text-decoration: underline;    
  }
}

/*----------------------------------------------
ページトップ
------------------------------------------------*/
.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;
		}
	}
}