@charset "utf-8";
/* CSS Document */
/*エラーメッセージ*/
.message{
    background: #dfdfdf;
    padding: 1.5rem;
}
.message p{
    max-width: 1100px;
    margin: auto;
    padding: 1rem;
    background: #FFF;
    font-weight: bold;
}
.message p.info{
    border: solid #004e90 3px;
    color: #0078cc;
}
.message p.caution{
    border: solid #f19401 3px;
    color: #f19401;
}
.message p.error{
    border: solid #eb0414 3px;
    color: #ff0012;
}
p.text.error.attention {
    text-align: center;
    width: calc(1100px - 2rem);
    margin: 0 auto;
}
p.text.error.attention a{
        color: #ff0012;
    text-decoration: none;
    font-size: 20px;
}
/*検索窓*/
.search-area{
    background: url("../img/top/topimg_back.jpg") no-repeat;
    background-size: cover;
}
.search-area .base{
    max-width: 1100px;
    margin: auto;
    padding: 2.5rem 0;
}
.search-area .base .box{
    display: flex;
    margin: 1.1rem 0 0;
    align-items: flex-start;
    flex-wrap: wrap;
        width: 1100px;
}
.search-area .base .left{
background: #dfdfdf;
    border-radius: 10px;
    box-shadow: 7px 0px 4px -6px #777777;
    width: 41%;
    /* width: 100%; */
    margin-right: 1.05rem;
    padding: 1rem 0.6rem;
}
.search-area .base .right{
    background: #FFF;
/*    width: 100%;*/
        width: 52.2%;
    padding: 2.5rem 1.2rem;
}
.search-area .base .left .inner{
    display: flex;
    margin-bottom: 0.9375rem;
    align-items: center;
}
.search-area .base .left .inner .item-label{
    width: 5.05rem;
}
.search-area .base .left .inner .item-label.first{
    padding-top: 2rem;
}
.search-area .base .left .inner .item-data.area{
    display: flex;
}
.search-area .base .left .sch-btn{
    width: 18rem;
    margin: auto;
}
.search-area .base .left .sch-btn a{
    background: #33b381;
    color: #FFF;
    display: block;
    text-align: center;
    padding: 1rem;
    font-size: 1.25rem;
    text-decoration: none;
    border-radius: 5px;
}
.search-area .base .left .sch-btn a:hover,
ul.jal-btm a:hover{
    opacity: 0.8;
}
.search-area .base .right .midashi{
/*    color: #f15656;*/
    font-size: 1.6rem;
    text-align: center;
/*    border-bottom: solid 4px #ef3b3b;*/
    padding-bottom: 1rem;
}
.search-area .base .right .content{
    display: flex;
    margin-top: 1.5rem;
}
.search-area .base .right .content .text{
    font-size: 1rem;
    margin-top: 1.5rem;
        line-height: 150%;
}
.search-area .base .left .inner .item-data.area label{
    text-align: center;
}
.search-area .base .left .inner .item-data.area label .midashi{
    margin-bottom: 0.3125rem;
    display: block;;
}
.search-area .base .left .inner .item-data.area label a{
    display: block;
}
.search-area .base .left .select{
    position: relative;
}
.search-area .base .left .select::after {
    position: absolute;
    width: 0.5rem;
    height: 0.5rem;
    top: calc(50% - 5px);
    right: 0.8rem;
    border-right: 1px solid #4A4A4A;
    border-bottom: 1px solid #4A4A4A;
    box-sizing: border-box;
    content: "";
    transform: rotate(45deg);
    transition: top 0.4s ease-out, transform 0.4s ease-out;
}
input[type="text"] {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.search-area .base .left input[type="text"]{
    background: #FFF;
    font-size: 1rem;
    border-radius: 5px;
    padding: 0.625rem;
    cursor:pointer;
/*    width: 10rem;*/
    width: 9.2rem;
    position: relative;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
/*空港選択*/
label.form-item.airport{
    margin-right: 1.25rem;
}
label.form-item.airport:nth-child(even) {
    margin-right: 0;
}
.airport-area .btn-air-toggle{
    font-size: 1.25rem;
    font-weight: bold;
    border-bottom: solid 2px #d22525;
    padding: 0.4rem 0.625rem 0.52rem;
    width: 95%;
    display: block;
    color: #515151;
    position: relative;
}
.airport-area .btn-air-toggle::before,.airport-area .btn-air-toggle::after {
  content: "";
    position: absolute;
    right: 1.25em;
    top: 0.8em;
    width: 2px;
    height: 0.75em;
    background-color: #999;
    transition: all 0.3s;
}
.airport-area .btn-air-toggle.active::after,.airport-area .btn-air-toggle.active::before  {
  transform: rotate(90deg);
}
.airport-area .btn-air-toggle::before {
    transform: rotate(90deg);
}
.airport-area .airport_list{
    display: none;
    animation: fadeIn 0.5s ease;
}
.airport-area .airport_list.open{
    animation: fadeIn 0.5s ease;
    display: flex;
    flex-wrap: wrap;
    margin: 1.25rem auto;
    width: 31.25rem;
}
.airport-area .airport_list li{
    width: calc(9.5rem - 0.625rem);
    padding: 5px;
    margin-bottom: 0.625rem;
}
.airport-area .airport_list li a{
    font-size: 1.125rem;
    color: #4a4a4a;
    text-decoration: none;
    display: block;
}
/*旅行人数*/
#room-count-box{
    color: #4a4a4a;
}
#room-count-box .midashi{
    background: #f1f1f1;
    text-align: center;
    font-size: 0.875rem;
}
/*宿泊期間*/
.period{
    margin-bottom: 0.625rem;
    margin-left: 5.3125rem;
}
.period .acd-label{
  display: inline-block;
  margin-bottom: 1px;
  cursor: pointer;
    position: relative;
}
input[type=checkbox] {
    display: none;
}
.period .acd-content{
  height: 0;
  opacity: 0;
  padding: 0 0.625rem;
  transition: .5s;
  visibility: hidden;
}
.acd-check:checked + .acd-label + .acd-content{
  height: auto;
  opacity: 1;
  padding: 0.625rem;
  visibility: visible;
}
.acd-check:checked + label::after {
    opacity: 1;
}
.period .acd-label{
    position: relative;
    padding-left: 1.875rem;
}
.period .acd-label::before {
    content: '';
    display: inline-block;
    position: absolute;
    width: 1.25rem;
    padding-top: 1.25rem;
    top: 0;
    left: 0;
    border: 1px solid #B7B7B7;
    background: #FFF;
}
.period .acd-label::after {
    content: '';
    display: inline-block;
    position: absolute;
    width: 0.625rem;
    padding-top: 0.3125rem;
    top: 0.375rem;
    left: 0.375rem;
    border-left: 2px solid #ef3b3b;
    border-bottom: 1px solid #ef3b3b;
    transform: rotate(-45deg);
    opacity: 0;
}
/*宿泊地*/
label.form-item.lodging{
    margin-right: 1.25rem;
}
.lodging-area .btn-lodging-toggle{
    font-size: 1.25rem;
    font-weight: bold;
    border-bottom: solid 2px #d22525;
    padding: 0.4rem 0.625rem 0.52rem;
    width: 95%;
    display: block;
    color: #4a4a4a;
    position: relative;
}
.lodging-area .btn-lodging-toggle::before,.lodging-area .btn-lodging-toggle::after {
  content: "";
    position: absolute;
    right: 1.25em;
    top: 0.8em;
    width: 2px;
    height: 0.75em;
    background-color: #999;
    transition: all 0.3s;
}
.lodging-area .btn-lodging-toggle.active::after,.lodging-area .btn-lodging-toggle.active::before  {
  transform: rotate(90deg);
}
.lodging-area .btn-lodging-toggle::before {
    transform: rotate(90deg);
}
.lodging-area .searchArea-item,.lodging-area .btn-lodging-toggle ul{
    display: none;
    animation: fadeIn 0.5s ease;
}
.lodging-area .searchArea-item.open,.lodging-area .btn-lodging-toggle ul.open{
    animation: fadeIn 0.5s ease;
    display: flex;
    flex-wrap: wrap;
    margin: 1.25rem auto;
    width: 31.25rem;
}
/*モーダル*/
.up-modal .modal-t{
    font-weight: bold;
    font-size: 1.375rem;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
}
.up-modal .mdClose{
    top: 0.9375rem;
    right: 0.9375rem;
    position: absolute;
    z-index: 10001;
    cursor: pointer;
}
.up-modal .mdClose img{
    width: 2rem;
    height: auto;
}
/*
html.isModalOpen {
    overflow: hidden;
}
*/
/*人数*/
p.stxt{
        font-size: 12px;
        font-weight: bold;
    }
p.stxt{
    padding: 0.625rem;
    }
.cnt-field {
  display: flex;
    padding-bottom: 15px;
    padding-top: 15px;
    justify-content: center;
    position: relative;
}
.cnt-field p.room-h {
    position: absolute;
    left: 1rem;
    top: 1.25rem;
        font-size: 1rem;
}
input[type=text].inputtext {
    color: rgba(43, 32, 32, 0.76);
    font-size: 18px;
    border-left: 0;
    border-right: 0;
    width: 3.75rem;
    background: #fff;
    text-align: center;
    border: 1px solid #fff;
    padding: 0 10px;
    font-weight: bold;
}

.cnt-button {
  color: #d22525;
    font-size: 18px;
    cursor: pointer;
    padding: 8px 12px;
    background-color: white;
    border: 1px solid #D7DBDD;
    border-radius: 0;
    outline: 0;
    border-radius: 45px;
    font-weight: bold;
}
.room-box {
    border-bottom: 1px solid #ccc;
  display: flex;
  flex-wrap: wrap;
font-size: 16px;
    padding-top: 15px;
    padding-bottom: 15px;
}
.room-box p{
    margin: 0 20px 0 0;
    padding: 0;
    }
.room-box p.room-h {
    padding-top: 8px;
}
.cnt-h {
  width: 150px;
  display: inline-block;
}
.room-box .cnt-h {
  width: 140px;
  display: inline-block;
}
.room-box .cnt-h +span{
    padding-right: 5px;
}
.room-box select {
    -webkit-appearance: none;
    　-moz-appearance: none;
    　appearance: none;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 9px;
  padding: 7px 5px;
  margin-bottom: 6px;
width: 65px;
    /* vertical-align: top; */
    display: inline-block;
margin-right:5px;
padding: 2.5% 15px 2.5% 10px;
border-radius: 5px;
position: relative;
background-image: url(../img/top/arrow.svg);
background-position: right 10px center;
background-repeat: no-repeat;
background-size: 15px;
height: 36px;
color: #4a4a4a;
font-size: 1rem;
}
.room-btn {
    background: #33b381;
    color: #fff;
    border: none;
    display: block;
    width: 16.875rem;
    margin: 8px auto;
    padding: 0.625rem;
    border-radius: 10px;
    font-size: 1.125rem;
    font-weight: bold;
    cursor: pointer;
}
.room-box {
    width: 100%;
}

.room-box p.room-h {
    padding-left: 10px;
}
/*おすすめツアー*/
.osusume{
    background: #dfdfdf;
    padding: 3.75rem 0 2.25rem;
    text-align: center;
}
.osusume h2{
    font-size: 1.875rem;
    margin-bottom: 1.875rem;
}
.osusume ul{
    max-width: 1100px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}
.osusume ul li{
    background: #FFF;
    margin-right: 1.2rem;
    box-shadow: 1px 1px 3px -1px #777777;
    text-align: center;
    width: 32%;
    margin-bottom: 30px;
}
.osusume ul li:nth-child(3n),
.osusume ul li:last-child{
    margin-right: 0;
}
.osusume ul li .photo img{
    width: 100%;
    height: auto;
    max-height: 217px;
    object-fit: cover;
}
.osusume ul li .in{
    padding: 1rem;
}
.osusume ul li a{
    text-decoration: none;
    color: #000000;
}
.osusume ul li a:hover{
    opacity: 0.8;
}
.osusume ul li .area{
    font-size: 19px;
}
.osusume ul li .price{
    color: #e40c0c;
    font-size: 1.48rem;
    margin: 1rem 0 0.3rem;
    font-weight: bold;
}
.osusume ul li .text{
    font-size: 0.875rem;
}

.banner-area {
    background: #fff5d4;
}
.faq-area {
    background: #efefef;
}
.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
}
.question, .answer {
    display: flex;
    padding: 20px 10px 20px;
}

.banner-area h2,
.faq-area h2,
.jal-about h2{
    text-align: center;
    font-size: 1.875rem;
    line-height: 140%;
    margin-bottom: 1.875rem;
}
.banner-area,
.faq-area,
.jal-about{
    padding: 5.75rem 0;
}
.banner-area ul,
.jal-box,
.faq-box,
ul.jal-btm{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.banner-area ul.slidenone{
    display: flex;
}
.banner-area ul.slidenone li {
    width: 31.5%;
    margin-right: 2%;
     box-shadow: 2px 3px 4px rgba(0,0,0,0.2);
}
.banner-area ul.slidenone li a{
line-height: 0;
    font-size: 0;
        display: block;
}
.banner-area ul.slidenone li img{
    max-width: 100%;
    width: 360px
}
.jal-box,
ul.jal-btm{
    display: flex;
    flex-wrap: wrap;
}

ul.jal-btm li {
    width: 32.5%;
    margin-right: 1%;
}
ul.jal-btm li:last-child{
    margin-right: 0;
}
.jal-box .jal-item {
        width: 30.6%;
    text-align: center;
    border-radius: 10px;
    border: 2px solid #ccc;
    margin-right: 12px;
    margin-bottom: 16px;
    padding: 0.5rem;
    font-size: 18px;
    font-weight: bold;
}
.jal-box .jal-item:nth-child(3n),
.jal-box .jal-item:last-child{
    margin-right: 0
}
ul.jal-btm a {
    background: #e13747;
    display: block;
    color: #fff;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    padding: 20px 10px;
    font-size: 22px;
    font-weight: bold;
/*    margin-right: 10px;*/
    position: relative;
}
ul.faq-btm a {
    width: 430px;
    background: #e13747;
    display: block;
    color: #fff;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    padding: 20px 10px;
    font-size: 22px;
    font-weight: bold;
/*    margin-right: 10px;*/
    position: relative;
}
.jal-box .jal-item:last-child{
    margin-right: 0;
}
.jal-box p.text.one01 {
    margin-top: 10px;
    font-size: 20px;
}
.jal-box p.text.one {
    margin-top: 20px;
    font-size: 20px;
}
.jal-box .jal-item p.img {
    width: 150px;
    margin: 0 auto;
}
.jal-box .jal-item p.img img{
    max-width: 100%;
}
.faq-box .btn-toggle::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 20px;
    height: 2px;
    transform: rotate(90deg);
    transition: all .3s ease-in-out;
}
ul.faq-btm {
    display: flex;
    width: 1100px;
    margin: 0 auto;
}
ul.faq-btm li {
    margin: 20px 50px;
}
ul.faq-btm a:after,
ul.jal-btm a:after{
    content: '';
    display: inline-block;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #fff;
    display: inline-block;
    width: 0;
    height: 0;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.faq-box .btn-toggle::before, .faq-box .btn-toggle::after {
    background: #e13747;
}
.faq-box .btn-toggle.active::before {
    transform: rotate(180deg);
}
.faq-box .btn-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    width: 20px;
    height: 2px;
    transition: all .2s ease-in-out;
}
.question{
    cursor: pointer;
    padding-right: 50px;
}
.question span{
    font-size: 20px;
    font-weight: bold;
}
.question span.icon {
    color: #e13747;
    padding: 0 5px 0px 20px;
}
.answer span.icon{
    padding: 0 5px 0px 20px;
    color: #e13747;
    font-size: 20px;
    font-weight: bold;
}

.answer {
    border-top: 2px solid #efefef;
    font-size: 18px;
    display:none;
}
.question,
.answer-inner {
    display: flex !important;
    position: relative;
}
.answer-inner .icon+span {
    padding-right: 30px;
}
p.text.error.attention a:hover,
.banner-area ul li a:hover{
    opacity: 0.8
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    transform: translateY(-10px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/*PC用デザイン*/
@media screen and (min-width: 768px) {
/*モーダル*/
#mdOverlay {
    top: 0;
    left: 0;
    width: 100%;
    position: fixed;
    z-index: 9700;
    background: #000;
    display: none;
    height: 100vh !important;
}
#mdWindow iframe {
	border: none;
}
#mdWindow>.mdClose {
	top: 15px;
	right: 15px;
	position: absolute;
	z-index: 10001;
	cursor: pointer;
}
#mdWindow>.mdClose img{
    width: 2rem;
    height: auto;
}
#contWrap {
    margin: 15px auto;
    padding: 0 20px;
    width: 100%;
    height: 410px;
    box-sizing: border-box;
    overflow-y: auto;
}
/*
#mdWindow {
	top: 15rem;
    left: 46rem;
    width: 39rem;
    z-index: 10000;
	height: 450px;
	position: fixed;
	z-index: 10000;
	background: #fff;
	display: none;
	border-radius: 10px;
	transform: translate(-10%, 10%);
}
*/
#mdWindow {
    left: 50% !important;
    top: 50% !important;
    transform: translateX(-50%) translateY(-50%);
    animation: none;
    width: 39rem;
    z-index: 10000;
    height: 450px;
    position: fixed;
    z-index: 10000;
    background: #fff;
    display: none;
    border-radius: 10px;
/*    transform: translate(-10%, 10%);*/
}
p.acd-midashi {
    display: inline-block;
}
.up-modal {
    position: absolute;
    top: 350px;
    left: 0;
    display: none;
    opacity: 0;
    z-index: 1000;
    background-color: #ffffff;
    -webkit-box-shadow: 0em 0.25em 1em 0em rgba(0, 0, 0, 0.16);
    box-shadow: 0em 0.25em 1em 0em rgba(0, 0, 0, 0.16);
    padding: 1.875rem;
    border-radius: 0.5rem;
    box-sizing: border-box;
}
.up-modal[data-id=airport] {
    left: 50% !important;
    top: 50% !important;
        position: fixed;
    transform: translateX(-50%) translateY(-50%);
    width: 39rem;
    z-index: 10000;
}
.up-modal[data-id=lodging] {
    top: 47rem;
    left: 43rem;
    width: 39rem;
    z-index: 10000;
}
.up-modal[data-id=room-count-box] {
    left: 50% !important;
    top: 50% !important;
    position: fixed;
    transform: translateX(-50%) translateY(-50%);
    width: 29rem;
    z-index: 10000;
}
.airport-bt .airport-bt-in{
    position: static;
}
.airport-area .scroll-block{
    height: 23.75rem;
    overflow-y: scroll;
}
.airport-area .scroll-block::-webkit-scrollbar {
  background: #000;
}
.airport-area .scroll-block::-webkit-scrollbar {
  background: #FFF;
  width: 5px;
  height: 5px;
  border-radius: 5px;
}
.airport-area .scroll-block::-webkit-scrollbar-thumb {
  background-color: #CACACA;
  border-radius: 5px;
}
/*
form{
    height: 23.75rem;
    overflow-y: scroll;
}
form::-webkit-scrollbar {
  background: #000;
}
form::-webkit-scrollbar {
  background: #FFF;
  width: 5px;
  height: 5px;
  border-radius: 5px;
}
form::-webkit-scrollbar-thumb {
  background-color: #CACACA;
  border-radius: 5px;
}
*/
/*人数*/
section#room-count-box {
    background: #fff;
}
.room-box {
    width: auto;
}
.room-box:after{
    content: "";
    display: block;
      border-bottom: 1px solid #ccc;  
    }
div#room-top {
    max-height: initial;
        border-bottom: 1px solid #ccc;
}
.cnt-field p.room-h {
    left: 0.625rem;
    top: 1.5rem;
}
/*出発空港*/
.airport-area .airport_list li:hover{
    background: #DC4647;
    border-radius: 5px;
    display: block;
}
.airport-area .airport_list li a:hover{
    color: #FFF;
}
/*人数*/
#room-count-box .room-container .scroll-block{
    height: 36rem;
    overflow-y: scroll;
}
#room-count-box .room-container .scroll-block::-webkit-scrollbar {
  background: #000;
}
#room-count-box .room-container .scroll-block::-webkit-scrollbar {
  background: #FFF;
  width: 5px;
  height: 5px;
  border-radius: 5px;
}
.search-area .base .left input[type="text"].item2{
    width: 23rem;
}
label.form-item.room input#room-count_text_id {
    width: 21rem;
}
    .flatpickr-box .sch-box .stay{
           font-size: 0.8rem; 
    }
.flatpickr-box .sch-box {
    display: flex;
    position: relative;
    background: #fff url(../img/top/calendar.svg) no-repeat 19.5rem !important;
    background-size: 1.8rem !important;
    border-radius: 5px;
    box-sizing: border-box;
    margin-right: 15px !important;
    width: 22.1rem !important;
    margin-top: 0 !important;
}
#flatpickr-box2.flatpickr-box .sch-box {
    display: flex;
    position: relative;
    background: #FFF url(../img/top/calendar.svg) no-repeat 14.28rem !important;
    background-size: 1.8rem !important;
    border-radius: 5px;
    box-sizing: border-box;
    margin-right: 0 !important;
    width: 16.8rem !important;
    margin-top: 0 !important;
}
.flatpickr-wrapper.parent .flatpickr-calendar.static {
    position: fixed;
    /* top: 13vh; */
    /* top: calc(100% - 17px); */
    /* left: -200px; */
    /* left: 18vw; */
    position: fixed;
    left: 50% !important;
    top: 50% !important;
    transform: translateX(-50%) translateY(-50%);
    animation: none;
}
/*追加*/
.point-item {
    border-right: 1px solid #ccc;
    padding-right: 8px;
    padding-left: 8px;
}
.point-item:last-child {
    border-right: none;
}
.raku-point {
    display: flex;
}
.raku-point img{
    max-width: 100%;
    }
.raku-point p.img {
        text-align: center
    }
.raku-point p.img img {
    width: 170px;
}
.raku-point p.point-midashi {
    color: #f15656;
    font-size: 19px;
    font-weight: bold;
	text-align: center;
}
.search-area .base .right .raku-point .text {
    font-size: 0.88rem;
        margin-top: 0.8rem;
}
.message{
        padding: 1.5rem 0;
    }
.osusume,
.message,
.search-area{
    min-width: 1100px;
}
p.meyasu-text {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}
.banner-area,
.faq-area,
.jal-about{
    min-width: 1100px;
}
.search-area .base .right {
    padding: 4rem 1.2rem;
}
#freeword{
width: 21rem !important;display: block;cursor: auto;
}

    
/*safari*/
_::-webkit-full-page-media, _:future, :root .flatpickr-box .sch-box input[type=text][readonly] {
    width: 6.2rem !important;
        background: transparent !important;
}

.pc-none{
    display: none;
}
}
@media screen and (max-height: 600px) {
	.modal {
		width: auto;
		position: relative;
	}

	#contWrap {
		height: 75vh;
	}

	div#mdWindow {
		top: 2vh;
		height: 86vh;
	}
}
/*SP用デザイン*/
@media screen and (max-width: 767px) {
html{
    touch-action: manipulation;
}
.message{
    font-size: 0.85rem;
    padding: 1.5rem 0.5rem;
}
p.text.error.attention {
    padding: 0.7rem 0.2rem;
}
p.text.error.attention a {
    font-size: 0.9rem;
}
/*検索窓*/
    #freeword{
        width: 14.5rem;
    }
.search-area{
    padding: 1.25rem;
}
.search-area .base .box{
    display: block;
}
.search-area .base h1 img{
    width: 100%;
    height: auto;
}
.search-area .base .left,.search-area .base .right{
    width: auto;
}

label.form-item.room input#room-count_text_id {
    width: 14.4rem;
}
.search-area .base .left{
    margin-right: 0;
    margin-bottom: 1.5625rem;
    border-radius: 0;
    padding: 0.625rem 0.425rem 2rem;
    font-size: 0.8125rem;
}
.search-area .base .left .inner{
    margin-bottom: 0.625rem;
}
.search-area .base .left .inner .item-label{
    width: 4rem;
}
.search-area .base .left .inner .item-data.area{
    width: 8rem;
}
.search-area .base .left input[type="text"]{
    width: 6.5rem;
    font-size: 0.8125rem;
    border-radius: 3px;
}
.search-area .base .left .inner .item-data.area label{
    margin-right: 0.8rem;
}

.period{
    margin-left: 4rem;
}
.search-area .base .left .select::after {
    width: 0.3125rem;
    height: 0.3125rem;
    top: calc(50% - 3px);
    right: 0.5rem;
}
.search-area .base .left .sch-btn a{
    padding: 0.5rem;
    font-size: 1rem;
    width: 14rem;
    margin: 1.2rem auto 0;
    border-radius: 3px;
}
.search-area .base .left input[type="text"].item2{
    width: 13.5rem;
}
.search-area .base .right{
    padding: 1rem;
}
.search-area .base .right .midashi{
    font-size: 1.15rem;
    padding-bottom: 0.5rem;
}
.search-area .base .right .content{
    margin-top: 1rem;
    display: block;
}
.search-area .base .right .content .img img{
    width: 100%;
    height: auto;
}
.search-area .base .right .content .text{
    font-size: 0.9rem;
/*    width: 26rem;*/
    margin: 0;
}
    
/*モーダル*/
html.isModalOpen .up-modal{
    position: relative;
    height: auto;
    overflow: visible;
    padding-top: 0;
    width: 100%;
    display: none;
    z-index: 10000;
    background-color: #ffffff;
}
.up-modal .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    font-weight: bold;
    font-size: 1.2rem;
    color: #4a4a4a;
    padding: 0.8rem 0;
    background: #FFF;
}
.up-modal .mdClose{
    top: 0.5rem;
}
.up-modal .mdClose img {
    width: 2rem;
    height: auto;
}
html.isModalOpen div#mdOverlay {
    display: none !important;
}
.airport-area .wrap{
    position: fixed;
    top: 0;
    background: #FFF;
    height: 100vh;
    width: 100%;
}
#room-count-box .room-container{
    position: fixed;
    top: 0;
    background: #FFF;
    height: 100vh;
    width: 100%;
}
.up-modal .modal-t{
    margin-bottom: 0;
    font-size: 1.2rem;
}
.airport-area .wrap .block,#room-count-box .room-container .block{
    padding-top: 3rem;
    overflow-y: scroll;
    height: 100vh;
}
.airport-area .airport_list,.airport-area .airport_list.open{
    width: auto;
    margin: 0;
}
.airport-area .airport_list li{
    border-bottom: 1px solid #B7B7B7;
    width: 100%;
    padding-left: 1.25rem;
    margin-bottom: 0;
}
.airport-area .airport_list li a{
    font-size: 0.875rem;
}
.airport-area .btn-air-toggle{
    background: #DCDCDC;
    color: #515151;
    width: auto;
    font-size: 1rem;
    border-bottom: solid 3px #FFF;
}
.airport-area .scroll-block,#room-count-box .room-container .scroll-block{
    padding-bottom: 10rem;
}
#room-count-box .midashi{
    padding: 0.4rem 0.625rem 0.52rem;
    text-align: left;
}
#room-count-box .midashi{
    background: #DCDCDC;
    color: #515151;
    width: auto;
    font-size: 1rem;
}
#mdOverlay {
	top: 0;
	left: 0;
	width: 100%;
	position: fixed;
	z-index: 97;
	background: none;
	display: none;
}

#mdWindow iframe {
    border: none;
}

#mdWindow {
	z-index: 1000;
	top: 0%;
	left: 0%;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100vh;
	position: fixed;
	z-index: 10000;
	background: #fff;
	display: none;
	border-radius: 0px;
}

#mdWindow>.mdClose img {
	width: 2rem;
}

#modalInclude {
	display: none;
}

#contWrap {
	width: 100%;
	box-sizing: border-box;
    min-height: 85vh;
}

#mdWindow>.mdClose.item2{
    position: absolute;
    right: 1rem;
    top: 0.5rem;
    z-index: 1000;
}
/*おすすめツアー*/
.osusume {
    padding: 1.5rem 0.45rem 1.25rem;
}
.osusume h2 {
    font-size: 1.2375rem;
    margin-bottom: 20px;
    margin-top: 0;
}
.osusume ul li {
    width: calc(50% - 4px);
    margin-right: 0.5rem;
    margin-bottom: 1.5625rem;
    margin-right: 8px;
}
.osusume ul li:nth-child(3n){
        margin-right: 0.5rem; 
    }
.osusume ul li:nth-child(even),
.osusume ul li:last-child{
        margin-right: 0
    }
.osusume ul{
/*    display: block;*/
}
.osusume ul li .in {
    padding: 0.2rem;
}
.osusume ul li .area {
    font-size: 0.75rem;
}
    
.osusume ul li .price {
    color: #e40c0c;
    font-size: 0.98rem !important;
    margin: 0.1rem 0 0.1rem;
    font-weight: bold;
}
.osusume ul li .text {
    font-size: 0.575rem;
    line-height: 150%;
}
 
/* 追加*/
.search-area .base .right .midashi img {
    width: 39%;
} 
.banner-area, .faq-area, .jal-about {
padding: 3rem 0.75rem;
}
    .search-area .base .box{
        width: 100%;
    }
p.text.error.attention {
    width: auto;
    margin: 0 auto;
}
.search-area .base .left .inner .item-data.area label {
    margin-right: 0.5rem;
}
.flatpickr-box .sch-box {
    display: flex;
    position: relative;
    background: #fff url(../img/top/calendar.svg) no-repeat 14.4rem;
    background-size: 1.1rem;
    border-radius: 5px;
    box-sizing: border-box;
    margin-right: 0 !important;
    width: 16.15rem;
    margin-top: 0 !important;
}
#flatpickr-box2.flatpickr-box .sch-box {
    display: flex;
    position: relative;
    background: #FFF url(../img/top/calendar.svg) no-repeat 11rem;
    background-size: 1.1rem;
    border-radius: 5px;
    box-sizing: border-box;
    margin-right: 0 !important;
    width: 12.5rem;
    margin-top: 0 !important;
}
.search-area .base .left #flatpickr-box2.flatpickr-box input[type="text"] {
    background: transparent;
    padding: 0.625rem 0.625rem 0.625rem 0.3rem;
    }
.acd-check:checked + .acd-label + .acd-content {
    height: auto;
    opacity: 1;
    padding: 0.625rem 0;
    visibility: visible;
}
p.acd-midashi {
    display: inline-block;
}
.jal-box .jal-item {
    width: auto;
    display: flex;
    margin-right: 0;
    padding: 0.5rem 0.3rem;
    align-items: center;
}
.jal-box, ul.jal-btm {
    display: block;
    width: auto;
}
ul.jal-btm li {
    width: auto;
    margin-right: 0;
    margin-bottom: 12px;
}
ul.jal-btm a {
    padding: 13px 10px;
font-size: 0.9rem;
    }
.point-item {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
padding-top: 10px;
    border-bottom: 2px solid #efefef;
    padding-bottom: 10px;
}
.point-item:last-child{
         border-bottom: none;
    padding-bottom: 0;
    }
.raku-point p.point-midashi {
    color: #f15656;
    font-size: 2rem;
    font-weight: bold;
	text-align: center;
}
.jal-box .jal-item {
    font-size: 0.8rem;
    line-height: 150%
}
.jal-box p.text.one01,
.jal-box p.text.one{
    font-size: 0.85rem;
        margin-top: 0;
}
.jal-box .jal-item p.img{
margin: 0; 
    width: 30%;
    }

    .jal-box .jal-item .text{
        text-align: left;
    }
.slick-slide img {
    max-width: 100%;
}
.raku-point .point-item p.img {
    width: 33%;
}
.raku-point .point-inner {
    width: 65%;
    padding: 3px;
    box-sizing: border-box;
}
.raku-point p.point-midashi {
    color: #f15656;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: left;
}
.banner-area ul{
    width: calc(100% - 70px);
    margin: 0 auto;
}
.banner-area h2, .faq-area h2, .jal-about h2{
    font-size: 1.2375rem;
    }
ul.slick-dots {
    width: 100%;
}
.slick-dots li button:before {
    font-size: 12px !important;
    }
.slick-dots li button:before {
    color: #e2dada !important;
    opacity: 1 !important;
    }
.slick-dots li.slick-active button:before {
    color: #fff !important;}
.slick-next {
    right: -35px !important;
        z-index: 100;
height: 30px;
    width: 30px;
}
.slick-prev {
    z-index: 100;
height: 30px;
    width: 30px;
    left: -35px !important;
}
.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: 0;
}
    .jal-box{
        display: block;
    }
ul.faq-btm {
    display: block;
    width: auto;
    margin: 0 auto;
}
.answer-inner .icon+span {
    padding-right: 30px;
    font-size: 0.8rem;
    line-height: 160%;
}
ul.jal-btm,
ul.faq-btm{
    margin: 15px;
}
ul.faq-btm li {
    margin: 5px 5px 12px;
}
ul.faq-btm a {
    width: auto;
    padding: 13px 10px;
font-size: 0.9rem;
    }
.question span,
.answer span.icon{
    font-size: 0.9rem;
    }
    
.question span.icon,
.answer span.icon{
        padding: 0 5px 0px 10px;
    }
.slick-next:before{
    content: "";
    background: url("../img/top/next.png") no-repeat;
    height: 32px;
    display: block;
    width: 32px;
    background-size: 32px;
}
.slick-prev:before{
    content: "";
    background: url("../img/top/prev.png") no-repeat;
    height: 32px;
    display: block;
    width: 32px;
    background-size:32px;
}
#calendar-btn1,
#calendar-btn2{
    display: none;
}
.flatpickr-wrapper #flat-bg1,
.flatpickr-wrapper #flat-bg2{
display: none
    }
.flatpickr-wrapper.parent #flat-bg1,
.flatpickr-wrapper.parent #flat-bg2{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    background: #000;
    opacity: 0.2;
}
.flatpickr-wrapper.parent + span + input + .calendar-t +#calendar-btn .calendar-btn, .flatpickr-wrapper.parent .calendar-btn {
    display: inline-block
    }
.flatpickr-wrapper.parent #calendar-btn1,
.flatpickr-wrapper.parent #calendar-btn2{
    display: block;
    width: 100%;
    text-align: right;
}
.flatpickr-wrapper.parent .flatpickr-box {
    display: none;
}
.flatpickr-wrapper.parent+span+input+.calendar-h3+#calendar-btn,.flatpickr-wrapper.parent #calendar-btn1,
.flatpickr-wrapper.parent+span+input+.calendar-h3+#calendar-btn,.flatpickr-wrapper.parent #calendar-btn2{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    -webkit-box-shadow: 0em -0.0625em 0.375em 0em rgb(0 0 0 / 16%);
    box-shadow: 0em -0.0625em 0.375em 0em rgb(0 0 0 / 16%);
    background-color: #ffffff;
    box-sizing: border-box;
    z-index: 10000;
    top: auto;
    padding-bottom: 55px;
    display: block;
    text-align: center;
}
.flatpickr-calendar.rangeMode.animate.multiMonth.arrowTop.arrowLeft.open{
    padding-top: 72px !important;
    }
.flatpickr-wrapper.parent .calendar-t {
    font-weight: bold;
    font-size: 1.2rem;
    color: #4a4a4a;
    margin: 0;
    text-align: center;
    border-bottom: 1px solid #B7B7B7;
    padding-bottom: 14px;
    display: block;
    position: fixed;
    width: 100%;
    background: #fff;
    z-index: 2;
    top: 0;
    padding-top: 25px;
}
.flatpickr-wrapper.parent #calendar-btn1 .calendar-btn,
.flatpickr-wrapper.parent #calendar-btn2 .calendar-btn {
    width: 15rem;
    border: none;
    height: 2.75rem;
    border-radius: 0.1875rem;
    margin: 0 auto;
    text-align: center;
    font-size: 1rem;
    background-color: #0aab7c;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-box-shadow: 0em 0.25em 0.5em 0em rgb(0 0 0 / 16%);
    box-shadow: 0em 0.25em 0.5em 0em rgb(0 0 0 / 16%);
    color: #ffffff;
    border-radius: 0.5rem;
    transition: background-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
    box-sizing: border-box;
}
p.meyasu-text {
    text-align: left;
}
.banner-area ul.slidenone.sp-none{
    display: none;
}
.sp-none{
    display: none;
}

}

@media screen and (max-width: 360px) {
    .search-area {
        padding: 1.25rem 0.5rem;
    }
}