@charset "UTF-8";

*{
  overflow-wrap: break-word;
  word-wrap: break-word;
}
body{
 position:relative;
}

/*------------------------------
    HEADER
-----------------------------*/
header{
  position: fixed;
  top: 0;
  background: #FFF !important;
  width: 100%;
  z-index: 10;
}
.header-container{
  border-bottom: 1px solid #e3e3e3;
}
.header-main{
  display: flex;
  align-items: center;
  justify-content: initial;
  padding: .5em 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}
@media screen and (max-width: 560px) {
  .header-main{
    padding: .4em 0;
    max-width: inherit;
  }
}

/* じゃらんロゴ・キャッチコピー */
.header-main__title{
  width: 35%;
}
.header-main__title a{
  display: flex;
  align-items: center;
  justify-content: stretch;
}
.header-main__title .logo{
  width :70px;
}
.header-main__title .logo img{
  width: 60px;
  height: auto;
  vertical-align: bottom;
}
.header-main__catch .text{
  display: block;
  padding-bottom: .2em;
  font-size: 13px;
  font-weight: bold;
}
.header-main__catch img{
  height: 14px;
}
.header-main__title a .logo{
  -webkit-transition: all .3s;
  transition: all .3s;
}
.header-main__title a .logo:hover{
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  cursor: pointer;
}

@media screen and (max-width: 560px) {
  .header-main__title{
    width: 62%;
  }
  .header-main__title a{
/*     display: flex;
    align-items: center; */
    justify-content: flex-start;
  }
  .header-main__title .logo{
    margin-left: .5em;
    width: 4em;
  }
  .header-main__title .logo img{
    width: 3.5em;
    height: auto;
    vertical-align: bottom;
  }
  .header-main__catch .text{
    padding-bottom: 0;
    font-size: 3.2vw;
    font-weight: bold;
  }
  .header-main__catch img{
    height: 13px;
  }
}

/* ヘッダーの検索窓 */
.header-main__search{
  width: 37%;
  padding-right: 1em;
}
.header-main__search form,
.search-container{
  flex-grow: 1;
}
.search-container .search-container__input{
  position:relative;
  display: flex;
  align-items: center;
  height: 40px;
}
.search-container .search-container__input input{
  width: 100%;
  height: 100%;
  padding: 0 1em;
  border: none;
  border-radius: 155px;
  box-shadow: 0px 0px 3px rgba(111, 92, 66, 0.4);
}
.search-container .search-container__input input::-webkit-input-placeholder,
.search-container .search-container__input input::-ms-input-placeholder,
.search-container .search-container__input input::placeholder{
  font-size: 13px;
  line-height: 42px;
  color: #999;
}
.search-container .search-container__input [type="submit"] {
  position:absolute;
  right: .5em;
  top: .5em;
  background: transparent;
  border: none;
}
.search-container .search-container__input .icon-header__search:before{
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: bottom;
  background: url(/img/icon/icon-button__search.svg) 0 0 no-repeat;
  background-size: contain;
}


/* 新規会員登録・ログイン・マイページ */
.header-main__navi{
  width: 28%;
}
.header-main__navi ul{
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.header-main__navi li{
    padding: 0 .5em;
    text-align: right;
}

@media screen and (max-width: 560px) {
.header-main__navi ul{
  display: flex;
  align-items: initial;
  justify-content: flex-end;
}
  .header-main__navi{
    width: 36%;
  }
  .header-main__navi li{
    padding: 0 0 0 .5em;
    text-align: initial;
   }
  .header-main__navi li.mypage{
    padding: 0;
   }
}

.header-main__item.regist{
  width: 55%;
}
.header-main__item.login{
  width: 45%;
}
.header-main__item.mypage{
  width: 45%;
}
@media screen and (max-width: 560px) {
  .header-main__item.mypage{
    width: auto;
  }
}



.button-header__mypage,
.button-header__regist,
.button-header__login,
.button-header__menu,
.button-header__close{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 80px;
  color: #FFF;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.button-header__mypage:hover,
.button-header__regist:hover,
.button-header__login:hover{
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
  cursor: pointer;
}
@media screen and (max-width: 560px) {
  .button-header__mypage:hover,
  .button-header__regist:hover,
  .button-header__login:hover{
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    cursor: pointer;
  }
}

.button-header__mypage .text,
.button-header__regist .text,
.button-header__login .text,
.button-header__menu .text,
.button-header__close .text{
  font-size: 13px;
  font-weight: bold;
}

.button-header__regist{
  background-image: linear-gradient(to right, #ff9526, #e83a19);
  border: 1px solid #ec8125;
}
.button-header__login,
.button-header__mypage{
  background-color: #FFF;
  border: 2px solid #ddd;
  color: #555;
}

.icon-header__mypage:before,
.icon-header__regist:before,
.icon-header__login:before,
.icon-header__menu:before,
.icon-header__close:before{
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: bottom;
}

.icon-header__mypage:before{
  background: url(/img/icon/icon-header__mypage.svg) 0 0 no-repeat;
  background-size: contain;
}
.icon-header__regist:before{
  background: url(/img/icon/icon-header__regist.svg) 0 0 no-repeat;
  background-size: contain;
}
.icon-header__login:before{
  background: url(/img/icon/icon-header__login.svg) 0 0 no-repeat;
  background-size: contain;
}


@media screen and (max-width: 560px) {
  .header-main__item a{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 3.4em;
    width: 3.5em;
    border-radius: 6px;
  }
  .header-main__item a>*{
    display:block;
    width: 100%;
    text-align: center;
  }
  .header-main__item a .text{
    font-size: 3vw;
    font-weight: bold;
  }
  .button-header__login{
    background-image: linear-gradient(to right, #ff9526, #e83a19);
    border: 1px solid #ec8125;
    color: #FFF;
  }
  .button-header__menu,
  .button-header__mypage{
    background-color: #FFF;
    border: 2px solid #ddd;
    color: #555;
  }
  .button-header__mypage{
    width: 4.5em !important;
  }
  .icon-header__mypage:before{
    content: "";
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: bottom;
  }
  .icon-header__menu:before{
    background: url(/img/icon/icon-header__menu.svg) 0 0 no-repeat;
    background-size: contain;
  }
  .icon-header__close:before{
    background: url(/img/icon/icon-header__close.svg) 0 0 no-repeat;
    background-size: contain;
  }
  .icon-header__login:before{
    background: url(/img/icon/icon-header__login__white.svg) 0 0 no-repeat;
    background-size: contain;
  }
}


/* グローバルナビ */
.header-global{
  margin-top: 4.8em;
  /* border-top: 1px solid #e3e3e3; */
  width: 100%;
}
.header-global__navi{
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content:space-evenly;
  width: 100%;
  max-width: 1200px;
}
.header-global__item{
  width: 12.5%;
}
.header-global__item a{
  display: flex;
  align-items: center;
  justify-content:center;
  height: 50px;
}
.header-global__item a:hover{
  opacity: .6;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}
.header-global__item a .text{
  font-size: 14px;
  color: #333;
}
@media screen and (max-width: 560px) {
  .header-global__navi{
    flex-wrap:wrap;
    max-width: 100%;
  }
  .header-global__item{
    width: 25%;
    border: 1px solid #e6e6e6;
    border-collapse: collapse;
  }
  .header-global__item a{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content:center;
    height: 50px;
  }
  .header-global__item a>*{
    display: block;
    width: 100%;
    text-align: center;
  }
  .header-global__item a:hover{
    opacity: 1
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
  }
  .header-global__item a .text{
    font-size: 3.5vw;
    color: #333;
  }
}

.icon-header__home:before,
.icon-header__onsen:before,
.icon-header__leisure:before,
.icon-header__gourmet:before,
.icon-header__michinoeki:before,
.icon-header__event:before,
.icon-header__hotel:before,
.icon-header__drive:before,
.icon-header__coupon:before{
  content: "";
  display: inline-block;
  width: 26px;
  height: 20px;
  vertical-align: bottom;
}

.icon-header__home:before{
  background: url(/img/icon/icon-header__home.svg) 0 0 no-repeat;
  background-size: contain;
}
.icon-header__onsen:before{
  background: url(/img/icon/icon-header__onsen.svg) 0 0 no-repeat;
  background-size: contain;
}
.icon-header__leisure:before{
  background: url(/img/icon/icon-header__leisure.svg) 0 0 no-repeat;
  background-size: contain;
}
.icon-header__gourmet:before{
  background: url(/img/icon/icon-header__gourmet.svg) 0 0 no-repeat;
  background-size: contain;
}
.icon-header__michinoeki:before{
  background: url(/img/icon/icon-header__michinoeki.svg) 0 0 no-repeat;
  background-size: contain;
}
.icon-header__event:before{
  background: url(/img/icon/icon-header__event.svg) 0 0 no-repeat;
  background-size: contain;
}
.icon-header__hotel:before{
  background: url(/img/icon/icon-header__hotel.svg) 0 0 no-repeat;
  background-size: contain;
}
.icon-header__drive:before{
  background: url(/img/icon/icon-header__drive.svg) 0 0 no-repeat;
  background-size: contain;
}
.icon-header__coupon:before{
  background: url(/img/icon/icon-header__coupon.svg) 0 0 no-repeat;
  background-size: contain;
}

@media screen and (max-width: 560px) {
  .icon-header__home:before,
  .icon-header__onsen:before,
  .icon-header__leisure:before,
  .icon-header__gourmet:before,
  .icon-header__michinoeki:before,
  .icon-header__event:before,
  .icon-header__hotel:before,
  .icon-header__drive:before,
  .icon-header__coupon:before{
    content: "";
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: bottom;
  }
}


/*------------------------------
    SP MENU
-----------------------------*/
.sp-menu {
  z-index: 1;
  height: 100vh;
  padding-bottom: 56px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.sp-menu-container {
  position: fixed;
  right: -100%;
  top: 4.35em;
  width: 100%;
  background-color: #fff;
  transition: ease 0.2s;
}
.sp-menu-container.show {
  right: 0;
}
.sp-menu .menu-section-title {
  padding: 1em;
  font-size: 4vw;
  font-weight: bold;
  background: #efedea;
}
.sp-menu .menu-section .menu-category {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* text-align: center; */
}
.sp-menu .menu-section .menu-category .menu-item {
  width: 100%;
  border-bottom: 1px solid #D5D5D5;
  background: url(/img/icon/icon-arrow__right.svg) 96% 50% no-repeat;
  background-size: 12px auto;
}
.sp-menu .menu-section .menu-category.col-2 .menu-item {
  width: 50%;
  border-bottom: 1px solid #D5D5D5;
  background: none;
}
.sp-menu .menu-section .menu-category.col-2 .menu-item:nth-child(even) {
  border-left: 1px solid #D5D5D5;
}
.sp-menu .menu-section .menu-category .menu-item a {
  display: block;
  width: 100%;
  padding: 1.2em;
  font-size: 4vw;
  font-weight: bold;
  color: #333;
}

.sp-menu .menu-banners {
  display: flex;
  margin: 1em 0 0;
  padding-bottom: 1em;
  border-bottom: 1px solid #ddd;
}
.sp-menu .menu-banners .menu-banner {
  padding: 0 7.5px;
  flex-basis: calc(100%/2);
}
.sp-menu .menu-banners img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sp-menu .menu-recommend .menu-item {
  border-bottom: 1px solid #D5D5D5;
}
.sp-menu .menu-recommend .menu-item a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1em;
  font-size: 3.6vw;
  color: #333;
}
.sp-menu .menu-recommend .menu-item a::after {
  position: absolute;
  right: 1em;
  width: 12px;
  height: 16px;
  background: url(../img/icon/icon-arrow-right.png) no-repeat center;
  content: " ";
}
.sp-menu .menu-sns {
  display: flex;
  justify-content: center;
  padding: 1em 1em 2em;
}

.menu-sns-content{
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  background: #FFFFFF 0% 0% no-repeat;
  box-shadow: 0px 0px 8px #6F5C4266;
  border: 1px solid #D6D6D6;
}