@charset "utf-8";
/* CSS Document */

body{
  font-family: "Noto Sans JP", "Yu Gothic", "YuGothic", sans-serif;
  font-size: 14px;
  line-height: calc(20 / 14);
}
a{
  text-decoration: none;
  color: #333
}
a:hover{
  opacity: 0.7
}
.nopc{
  display: none
}
.mv-wrapper{
  width: 100%;
  height: 400px;
  background: url("../img/mv_photo.jpg") no-repeat center center;
  position: relative;
}
.title-logo img{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto
}

.main-content{
  padding: 50px 0
}
.inner{
  width: 992px;
  margin: auto;
  justify-content: space-between;
}

/*** 海外・国内タブ ***/
.select-tab{
  display: flex;
  margin: 0 auto 50px;
  justify-content: space-between;
}
.select-tab>li{
  width: calc(98% / 2);
  border-radius: 6px;
  font-size: 30px;
  font-weight: bold;
  color: #FFF;
  padding: 10px;
  text-align: center;
  position: relative
}
.select-tab>li.is-dom{
  background:#0abe01; 
}
.select-tab>li.is-ovs{
  background:#336699; 
}
.select-tab>li.active.is-dom::after,
.select-tab>li.active.is-ovs::after{
  content: "";
  width: 0;
  height: 0;
  position: absolute;
  right: 0;
  bottom: -40px;
  left: 0;
  margin: auto;
  border: 20px solid transparent;
}
.select-tab>li.active.is-dom::after{
  border-top: 20px solid #0abe01;
}
.select-tab>li.active.is-ovs::after{
  border-top: 20px solid #336699;
}
.select-tab>li:hover{
  opacity: 0.7
}

/*** ナビメニュー ***/
.item-list{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.item-list>li{
  width: calc((992px - 30px) / 3);
  background: #FFF;
  margin-right: 10px;
  margin-bottom: 10px;
  box-shadow: 1px 1px 4px #858585;
  position: relative;
  outline-width: 2px;
  outline-style: dotted;
  outline-offset: -6px;
  text-align: center;
}
.item-list>li.is-dom{
  outline-color: #0abe01;
}
.item-list>li.is-ovs{
  outline-color: #336699;
}
.item-list>li.is-pass{
 outline-color: #bd9139;
}
.item-list>li.is-other{
  outline-color: #622f71;
}
/*.item-list>li:nth-child(4n+2){
  margin-right: 0
}*/
.item-list>li>a{
  display: block;
  width: 100%;
  height: 100%;
  min-height: 120px;
  padding: 10px 10px 20px 10px;
  position: relative;
}
.item-list>li>a::after{
  content: "";
  background: url("/cmn/icon/icon_arrow_down.svg") no-repeat center center / contain;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  margin: auto;
}
.list-title{
  padding: 4px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  line-height: 1.0;
  letter-spacing: -0.02em
}
.item-list>li.is-dom .list-title{
  background: #0abe01;
}
.item-list>li.is-ovs .list-title{
  background: #336699;
}
.item-list>li.is-pass .list-title{
  background: #bd9139;
}
.item-list>li.is-all .list-title{
  background: #ffaa44;
}
.item-list>li.is-other .list-title{
  background: #622f71;
}
.type{
  display: block;
  font-size: 11px;
  font-weight: normal;
  margin-bottom: 3px;
  letter-spacing: normal
}
.list-disp{
  padding: 6px 3px
}
.list-txt__sub{
  font-size: 13px;
  font-weight: bold;
  color: #333;
  line-height: 1.2
}
.list-txt__main{
  margin-top: 5px;
  font-size: 30px;
  font-weight: bold;
  color: #ff0000;
  line-height: 1.2;
  letter-spacing: -0.06em;
}
.list-txt__main.ss{
  font-size: 16px
}
.list-txt__main.mm{
  font-size: 22px;
  line-height: 1.4
}

/*ナビサイズ変更*/
.item-list>li.is-wide{
  width: calc((992px - 10px) / 2);
}

/* 導線バナー */
.bnr-area{
  margin: 20px auto 100px;
  /*display: flex;
  justify-content: space-between;*/
}
.bnr-area>li{
  text-align: center;
  /*width: calc(98% / 2);*/
}
.bnr-area>a{
  width: 100%;
  display: block;
}
.bnr-area>li a img{
  max-width: 100%;
}
.bnr-area>a:hover{
  opacity: 0.7
}

/*** コンテンツ部分 ***/
.select-content{
  display: none
}
.select-content.active{
  display: block;
  margin-bottom: 100px;
}
.content-wrapper{
  position: relative;
    width: calc((100% - 16px) / 2);
    border: 4px solid;
    border-top: none;
    background: #FFF;
}
/*
.content-wrapper+.content-wrapper{
  margin-top: 100px
}
*/
.is-pass.content-wrapper{
  border-color: #bd9139;  
}
.is-tour.content-wrapper{
  border-color: #009999;  
}
.is-op.content-wrapper{
  border-color: #021c4c;  
}
.is-imp.content-wrapper{
  border-color: #f56322;  
}

.item-headline{
    font-size: 18px;
    font-weight: bold;
    color: #FFF;
    text-align: center;
    padding: 8px;
}
.is-dom .item-headline{
  background: #0abe01;
}
.is-tour .item-headline{
  background: #009999;
}
.is-pass .item-headline{
  background: #bd9139;
}
.is-op .item-headline{
  background: #021c4c;
}
.is-imp .item-headline{
  background: #f56322;
}
.is-all .item-headline{
  background: #ffaa44;
}

.is-gakusei .item-headline{
  background: #ff6600;
}
.content-box{
  background: #FFF;
  border: 6px solid;
  border-top: none;
  padding: 20px;
}
.item-main{
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 4px dashed;
  /*text-align: center;*/
  padding: 10px;
}
.is-dom .content-box,
.is-dom .item-main{
  border-color: #0abe01;
}
.is-ovs .content-box,
.is-ovs .item-main{
  border-color: #336699;
}
.is-pass .content-box,
.is-pass .item-main{
  border-color: #bd9139;
}
.is-other .content-box,
.is-other .item-main{
  border-color: #a56bd0;
}
.is-all .content-box,
.is-all .item-main{
  border-color: #ffaa44;
}
.catch{
  font-size: 16px;
  display: block;
  color: #3f2401;
}
.small{
  font-size: 16px;
    font-weight: normal;
    color: #3f2401;
    display: block;
}
.title-main{
  font-size: 26px;
    font-weight: bold;
    color: #3f2401;
    /* background: linear-gradient(transparent 70%, #ffff00 70%); */
    line-height: 1.2;
}
.title-main>sup{
  font-size: 14px;
  vertical-align: baseline
}
.title-main .ss{
  font-size: 16px
}
.item-period{
  font-size: 24px;
  font-weight: bold;
  color: #e43347;
  margin-top: 4px
}
.item-period::before{
  content: "新規予約期間:";
  display: inline-block
}
.is-passe .item-period::before,
.is-other .item-period::before{
  content: "期間:";
  display: inline-block
}
.coupon-wrapper{
  display: flex;
  margin: 0 auto 10px;
  flex-wrap: wrap;
}
.copy-txt{
  width: 100%;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.coupon-item{
  width: calc((100% - 10px) / 2);
  text-align: center;
  border: 2px dashed #3f2401;
  padding: 10px;
  flex-grow: 1;
  position: relative
}
.coupon-item.sold-out::before{
  content: "";
  background: rgba(0 0 0 / 60%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20
}
.soldout{
  margin: 5px auto 20px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #FFF;
  position: relative;
  z-index: 50
}
.coupon-item:nth-child(3){
  flex-grow: 0
}
.coupon-wrapper.is-ovs .coupon-item{
  background: #e2f3fd;
}
.coupon-wrapper.is-dom .coupon-item{
  background: #E0FCD3;
}
.coupon-wrapper.is-pass .coupon-item{
  background: #FDF1F5;
}
.coupon-wrapper.is-other .coupon-item{
  background: #ECDFF5;
}
.coupon-item:nth-child(even){
  margin-left: 10px;
}
.coupon-item:nth-child(n+3){
  margin-top: 10px;
}
.coupon-name{
  font-size: 18px;
  font-weight: bold;
  color: #3f2401;
}
.coupon-price{
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #EB3228;
  line-height: 1.2;
  letter-spacing: -0.05em
}
.price-L{
  font-size: 60px;
}
.price-S{
  font-size: 50%;
}
.coupon-condition{
  font-size: 14px;
}
.coupon-item input {
  width: 100%;
  border: 2px solid;
  padding: 1rem;
  font-size: 28px;  
  font-weight: bold;
  text-align: center;
  color: #3f2401;
  margin: 0 auto 10px;
  display: block;
  word-break: break-all;
}
.coupon-item button {
  font-size: 15px;
  text-align: center;
  color: #FFF;
  border: none;
  border-radius: 10px;
  line-height: 48px;
  padding: 0 8px;
  background: #666
}
.item-disp{
  background: #F2F2F2;
  padding: 10px;
}
.item-detail+.item-detail{
  margin-top: 10px;
}
.item-sub{
  font-size: 14px;
  /*font-weight: bold;*/
  padding-left: 1.2em;
  border-left: 4px solid;
  padding-left: 4px;
  margin-bottom: 4px;
}
/*
.item-sub::before{
  content: "◆";
  position: absolute;
  top: 0;
  left: 0
}
*/
.item-txt>li{
  font-weight: bold;
  position: relative;
}
.notice-txt{
  display: block;
    position: relative;
    padding-left: 1.0em;
    font-size: 12px;
    font-weight: normal;
}
.notice-txt::before{
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.item-txt>li::before{
  position: absolute;
  top: 0;
  left: 0;
}
.dot,
.item-txt.note>li{
  padding-left: 1.0em
}
/*
.dot::before,
.item-txt.note>li::before{
  content: "・";
}
*/
.sub-item-txt>li{
  font-weight: bold;
  padding-left: 0.5em;
}
/*
.howto-shop{
  padding-left: 13em;
}

.howto-shop::before{
  content: "店舗・コールセンター予約：";
}
.howto-ol{
  padding-left: 8em;
}
.howto-ol::before{
  content: "オンライン予約：";
}
*/
.dom-product,
.ovs-product{
  padding-left: 5em
}
.dom-product::before{
  content: "国内旅行："
}
.ovs-product::before{
  content: "海外旅行："
}
.item-txt>li a{
  text-decoration: underline;
  color: #1a0dab;
}

.link-button{
  margin: 70px auto 16px;
  display: flex;
  justify-content: space-between
}
.plan__details .link-button{
  margin: 30px auto 16px; 
}
.link-button>a{
  width: 800px;
  margin: auto;
  display: block;
  background: #ffe600;
  border-radius: 100px;
  box-shadow: 0px 3px 0px 0px rgb(0 0 0 / 23%);
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-align: center;
  padding: 10px 40px;
  min-height: 42px;
  position: relative;
}
.link-button>a+a{
  margin-left: 20px;
  flex-grow: 1;
}
.link-button>a::after{
  content: "";
  background: url("/cmn/icon/icon_arrow_right_black.svg") center center / contain;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 0;
  right: 3%;
  bottom: 0;
  margin: auto;
}

/***** 海外特典用 *****/
.ovs-wrapper{
  background: #e2f3fd;
  padding: 6px;
  margin: 4px auto 10px;
}
/* オセ用 */
.oce-icon{
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  color: #FFF;
  background: #336699;
  padding: 0 3px;
}
.oce-tokuten+.oce-icon{
  margin-top: 10px;
}
.oce-tokuten>li{
  font-weight: bold;
  padding-left: 1.2em;
  position: relative
}
.oce-tokuten>li>span{
  color: #e43347;
}
.oce-tokuten>li::before{
  position: absolute;
  top: 0;
  left: 0;
  color: #e43347;
}
.oce-tokuten>li:first-child::before{
  content: "A."
}
.oce-tokuten>li:nth-child(2)::before{
  content: "B."
}
.oce-tokuten>li:nth-child(3)::before{
  content: "C."
}

.ovs-list>li{
  font-weight: bold;
  font-size: 14px;
}
.ovs-list>li>span{
  color: #e43347;
}

.flex__content{
    display: flex;
    flex-wrap: wrap;
    gap: 24px 16px;
    align-items: flex-start;
}

.is-pass .content-wrapper {
    border: solid 4px #bd9139;
}
.plan__dspbox{
    padding: 10px;
    min-height: 210px;
}
.item-titlebox{
    font-weight: bold;
    padding: 8px;
    margin-bottom: 8px;
}
.is-pass .item-titlebox{
    background-color: #f6efe3;
}
.is-tour .item-titlebox {
    background-color: #e0f3f3;
}
.is-op .item-titlebox {
    background-color: #e8ebef;
}
.is-imp .item-titlebox {
    background-color: #feefe8;
}
/** アコーディオン **/
.accordion__button{
  width: 218px;
  margin: auto auto 16px;
  border-radius: 24px;
  border: 1px solid #333;
  font-size: 16px;
  text-align: center;
  padding: 8px;
  position: relative
}
.accordion__button::after{
  content: "";
  background: no-repeat center center / cover;
  background-image: url("../img/ico_open.svg");
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto
}
.accordion__button.is-open::after{
  background-image: url("../img/ico_close.svg");
}
.plan__details{
  padding: 10px;
  display: none;
  font-weight: bold;
}
.plan__details>.plan__items:first-child{
  margin-top: 0
}
.plan__details .item-sub{
    font-weight: bold;
}
.term__list{
    font-weight: bold;
}
.detail__txt.howto>li>span {
    display: inline-block;
    background: #333;
    font-size: 12px;
    color: #FFF;
    padding: 0 4px 4px;
}
.item-txt.note>li {
    font-size: 12px;
    font-weight: normal;
    padding-left: 1.0em;
    text-indent: -1.0em;
}
.op__box{
    background: #f2f2f2;
    padding: 8px;
    margin-top: 8px;
}
.op__box .detail__txt{
    font-weight: bold;
    word-wrap: break-word;
}
.op__box .detail__txt a{
    color: #0000ee;
    font-weight: normal;
    text-decoration-line: underline;
}
.sp-on{
	display: none;
}