@charset "utf-8";
.nopc {
    display: none!important;
}
.contents {
    font-family: "Noto Sans JP", serif;
    color: #333;
    font-size: 15px;
    line-height: 1.5em;
}
.contents .inner {
    width: 992px;
    margin: 0 auto;
}

/*------------------------------------------------
	メインビジュアル
--------------------------------------------------*/
#mainvisual {
	width: 100%;
	height: 250px;
	text-align: center;
    background: url("../images/main-bg-pc.jpg") no-repeat top center;
}
#mainvisual .inner {
    height: 100%;
    position: relative;
}
#mainvisual img{
    height: 250px;
    width: auto;
}

/*------------------------------------------------
	ページナビ
--------------------------------------------------*/
#navi {
    width: 100%;
    background: #32abd1;
	padding: 8px 0;
}
#navi .menu {
	width: 992px;
	height: 50px;
	margin: 0 auto;
    display: flex;
    justify-content: center;
	align-items: center;
	color: #fff;
    font-size: 18px;
	font-weight: bold;
}
#navi .menu > li {
	width: 50%;
	height: 100%;
    text-align: center;
	position: relative;
    border-left: 1px solid #fff;
}
#navi .menu > li .subopen {
	display: block;
	cursor: pointer;
	padding-top: 17px;
	height: 100%;
}
#navi .menu > li > a {
	display: flex;
	justify-content: center;
	align-items: center;
    color: inherit;
    text-decoration: none;
	width: 100%;
	height: 100%;
}
#navi .menu > li:nth-child(1) {
    border-left: none;
}
#navi .menu > li:nth-child(2) {
    border-right: 1px solid #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
#navi .menu > li .submenu {
	position: absolute;
	top: 60px;
	width: 100%;
	background-color: #ff3b4a;
	color: #fff;
	padding: 1px;
	display: none;
}
#navi .menu > li .submenu li {
	width: 100%;
	border-top: solid 1px #fff;
}
#navi .menu > li .submenu li > a {
	display: block;
    color: inherit;
    text-decoration: none;
	padding: 7px 0;
}
#navi .menu > li > a:hover {
	opacity: 0.8;
    transition: all 0.6s ease;
}
#navi .menu > li .submenu li > a:hover {
	color: #32abd1;
	background-color: #fff;
	transition: all 0.3s ease;
}
#navi .menu li a:after {
    font-family: FontAwesome;
    content: "\f107";
	margin-left: 10px;
}
#navi.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0px 1px 2px 0px rgb(0 0 0 / 30%);
}
#navi.fixed .menu li a.active:after {
        position: absolute;
        bottom: 2px;
        content: "";
        width: 80%;
        height: 2px;
        margin: 0 auto;
        background-color: #fff;
}
#navi.fixed .menu li a:after {
        content: none;
}

/*------------------------------------------------
	商品
--------------------------------------------------*/
#kor,#hkg,#gum,#hkt,#aus {
    background: #fffadd;
}
h2 {
    text-align: center;
    padding: 100px 0 35px 0;
}
h2 .heading{
    position: relative;
    display: inline-block;
   /* padding-left: 1.3em;*/
    font-size: 40px;
    line-height: 1;
	font-weight: bold;
}
h2 .heading-text{
    font-size: 16px;
    text-align: center;
    margin-bottom: 9px;
    display: block;
    line-height: 1.5em;
	color: #ff4848;
	font-weight: bold;
}
h2 .heading-icon{
    position: absolute;
    display: inline-block;
    width: 38px;
    top: 0px;
    left: -50px;
}
.product__list {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 10px);
    margin-left: -10px;
    margin-top: -15px;
}
.product__list > li:empty {
    display: none;
}
.product__list > li:hover {
    opacity: 0.7;
    transition: all 0.6s ease;
}
.product__list--item {
    width: 240px;
    margin-left: 10px;
    margin-top: 15px;
    letter-spacing: .5px;
    list-style: none;
    border: 1px solid rgba(0, 0, 0, .23);
    position: relative;
}
.product__list--item:empty{
	display: none;
}
.product__list--data {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product__list--image img {
    width: 100%;
    vertical-align: bottom;
}
.product__list--type {
    font-size: 12px;
    color: #fff;
    background: #191919;
    padding: 4px 4px 3px 4px;
    text-align: center;
}
/*
.product__list--type.port-type::after {
    content: "発着";
}
*/
.product__list--text-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.product__list--title {
    font-size: 15px;
    margin: 8px 0;
    font-weight: bold;
    line-height: 1.3em;
}
.product__list--itemtxet {
    background: #eee;
	padding: 10px!important;
	margin-top: 10px;
}
.product__list--texts > [class*="product__list--"]:not(.product__list--type) {
    padding: 0 10px;
}
.product__list--detail {
    line-height: 1.5;
}
.product__list--inner {
    background: #fff;
    color: inherit;
    text-decoration: none;
    display: flex;
    font-size: 12px; 
    flex-direction: column;
    height: 100%;    
}
.product__list--inner:hover {
    opacity: 0.7;
    transition: all 0.6s ease; 
}
.product__list--price > :not(.product__list--point):not(.product__list--notes) {
    padding-left: 4px;
}
.product__list--dep {
    font-size: 11px;
    margin-top: 2px;
    letter-spacing: 0.2px;
    color: #333;
    margin-bottom: 2px;
}
@media (max-width: 1020px) and (min-width: 768px) {
    .product__list--dep {
        letter-spacing: 0;
    }
}
.product__list--dep .js-split-departure::after,
.product__list--dep span[id*="dep_"]::after{
  content: "出発";
}
.product__list--dep .js-split-departure:empty::after,
.product__list--dep span[id*="dep_"]:empty::after{
  display: none;
}
.product__list--minmax {
    font-size: 18px;
    color: #e90000;
    font-weight: bold;    
}
.product__list--minmax .minmax-new:not(:empty) + .minmax-old,
.product__list--dep .js-split-departure:not(:empty) + span,
.product__list--type .js-split-airport:not(:empty) + span {
    display: none;
}
.product__list--texts {
    display: flex;
    flex-direction: column;
}
.product__list--price {
    padding: 20px 4px 10px;
    margin-top: auto;
}

/*icon*/
.icon{
    width: 100%;
}
.product__list--label {
    position: absolute;
    top: 0;
    left: 0;
    flex-direction: column;
    min-width: 90px;
}
.product__list--label > [class*="product__list--label--"]:empty {
    display: none;
}
.product__list--label {
    display: flex;
    flex-wrap: wrap;
}
.product__list--label > [class*="product__list--label--"] {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 1;
    height: 25px;
    font-size: 12px;
    font-weight: bold!important;
    padding: 0 5px;
    background: #f31e1f;
}

.product__list--label--sup {
    background: url(../images/icon_crown00_yellow3.svg) no-repeat top left;
    height: min((30vw / 5.5), 14px);
    margin: 3px 0 0 12px;
}

.product__list--label--dlx {
    background: url(../images/icon_crown00_yellow4.svg) no-repeat top left;
    height: min((30vw / 5.5), 14px);
    margin: 3px 0 0 12px;
}

.product__list--label--lux {
    background: url(../images/icon_crown00_yellow5.svg) no-repeat top left;
    height: min((30vw / 5.5), 14px);
    margin: 3px 0 0 12px;
}


.product__list--label--other {
    background: #f31e1f;
    width: auto;
    padding: 0 8px;
    color: #fff!important;
}

.more-btn{
    width: 800px;
    margin: 50px auto 0;
    padding-bottom: 60px;
}
.more-btn a {
	font-size: 18px;
    color: #fff;
    font-weight: bold;
	padding: 18px 20px;
    background-color: #32abd1e8;
	text-align: center;
	border-radius: 50px;
	box-shadow: 4px 4px 0 rgba(0 0 0 / 20%);
    display: inline-flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    width: 48%;
    margin-left: 1%;
}
.more-btn  a:hover {
	transition: all 0.6s ease;
	background-color:#32abd1;
}
.more-btn  a:after {
    font-family: FontAwesome;
    content: "\f105";
	padding-left: 10px;
}
.price_note {
    font-size: 14px;
    margin-top: 30px;
}


/*----------------------------------------------
	検索ボックス
------------------------------------------------*/

#searchArea {
padding: 50px 0 30px;
    background: url("../images/search-photo.jpg") no-repeat center top;
}

.rn-searchMod__formTitle{
    padding: 3px 0;
}