@charset "UTF-8";
* {
  box-sizing: border-box;
}

/*tabの形状*/
.tab {
  display: flex;
  flex-wrap: wrap;
}

.tab li {
  width: 50%;
}

.tab li a {
  display: block;
  background: #868686;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
  padding: 24px 0;
}
@media screen and (max-width: 768px) {
  .tab li a {
    padding: 18.5px 0;
    font-size: 13px;
  }
}

/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  background: #efefef;
  color: #000000;
}

/*エリアの表示非表示と形状*/
.area {
  display: none; /*はじめは非表示*/
  opacity: 0; /*透過0*/
  background: #fff;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
  display: block; /*表示*/
  -webkit-animation-name: displayAnime;
  animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#vacancy {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding-top: 93px;
  z-index: 102;
  overflow-y: scroll;
}
@media screen and (max-width: 768px) {
  #vacancy {
    padding-top: 35px;
    overflow-y: scroll;
  }
}

.c-search__title {
  text-align: center;
  font-size: 34px;
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .c-search__title {
    font-size: 26px;
  }
}
.c-search__vacancy {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5%;
}
.c-search__vacancyInner {
  width: 100%;
  max-width: 1090px;
  letter-spacing: 0.1em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
}
.c-search__main {
  margin-top: 55px;
  width: 100%;
  border: 2px solid #868686;
  background: #efefef;
}
@media screen and (max-width: 768px) {
  .c-search__main {
    margin-top: 24px;
  }
}

.c-search__accordion{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1090px;
  margin: 18px auto 0;
  cursor: pointer;
  border: 2px solid #C4002B;
  border-radius: 2px;
  font-size: 16px;
  letter-spacing: 0;
  width: 90%;
  + .c-form__bottomNav {
    margin-top: 18px;
  }
  @media screen and (max-width: 768px) {
    
    font-size: 13px;
  }
}
.c-search__accordion__header{
  color: #C4002B;
  font-weight: bold;
  width: 100%;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  @media screen and (max-width: 768px) {
    padding: 10px 14px;
  }
}
.c-search__accordion__icon{
  color: #FFF;
  width: 24px;
  height: 24px;
  display: inline-flex;
  background-color: #C4002B;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  position: relative;
  &::before,&::after{
    content: "";
    position: absolute;
    background-color: #FFF;
    width: 12px;
    height: 1px;
  }
  &::before{
    transform: rotate(90deg);
  }
}
.c-search__accordion.is-accordion_open .c-search__accordion__icon::before {
  transform: rotate(0deg);
}
.c-search__accordion__content{
  display: none;
  line-height: calc(48 / 28);
  text-align: left;
  padding: 0px 30px 20px ;
  color: #020202;
  @media screen and (max-width: 768px) {
    padding: 0px 18px 20px ;
  }
  a{
    text-decoration: underline;
  }
}

.c-form__wrapper {
  width: 100%;
  max-width: 945px;
  margin: 0 auto;
}
.c-form__validation {
  display: none;
  width: 100%;
  border-radius: 5px;
  padding: 16.5px 25px;
  border: 2px solid #d34b49;
  background: #fceced;
  margin-bottom: 29px;
}
@media screen and (max-width: 768px) {
  .c-form__validation {
    padding: 10px 15px 10px 15px;
  }
}
.c-form__validationText {
  font-size: 14px;
  font-weight: bold;
  color: #d34b49;
  letter-spacing: 0.1em;
  line-height: 1;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-form__validationText {
    font-size: 13px;
  }
}
.c-form__validationText:nth-child(2) {
  margin-top: 8.5px;
}
.c-form__validationText::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  background: url(../img/icon_caution.png) no-repeat;
  background-size: contain;
  position: relative;
  top: -1px;
  margin-right: 6px;
}
.c-form__common {
  display: flex;
}
@media screen and (max-width: 768px) {
  .c-form__common {
    flex-wrap: wrap;
  }
}
.c-form__common:nth-child(2) {
  margin-top: 17.15px;
}
@media screen and (max-width: 768px) {
  .c-form__common:nth-child(2) {
    margin-top: 14.2px;
  }
}
.c-form__item {
  width: 40%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.c-form__title {
  font-size: 13px;
  margin-bottom: 11.85px;
}
.c-form__checkin {
  width: 100%;
  max-width: 380px;
}
@media screen and (max-width: 768px) {
  .c-form__checkin {
    max-width: 100%;
    margin-bottom: 14.2px;
  }
}
.c-form__checkin input {
  border-radius: 5px;
  height: 48px;
  border: 0;
}
@media screen and (max-width: 768px) {
  .c-form__checkin input {
    height: 45px;
  }
}
.c-form__checkin2 {
  width: 100%;
  max-width: 285px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .c-form__checkin2 {
    max-width: 100%;
    margin-bottom: 14.2px;
    margin-top: 14.2px;
  }
}
.c-form__checkin2 input {
  border-radius: 5px;
  height: 48px;
  border: 0;
}
@media screen and (max-width: 768px) {
  .c-form__checkin2 input {
    height: 45px;
  }
}
.c-form__select1 {
  width: 100%;
  max-width: 272px;
  margin-left: 10.5px;
}
@media screen and (max-width: 768px) {
  .c-form__select1 {
    margin: 0;
    max-width: calc(50% - 5px);
  }
}
.c-form__select1 select {
  width: 100%;
  border: none;
  height: 48px;
  padding-left: 20.4px;
  border-radius: 5px;
  border: 0;
}
@media screen and (max-width: 768px) {
  .c-form__select1 select {
    height: 45px;
  }
}
.c-form__select2 {
  width: 100%;
  max-width: 200px;
}
.c-form__select2:nth-child(n + 2) {
  margin-left: 10.5px;
}
@media screen and (max-width: 768px) {
  .c-form__select2 {
    margin: 0;
    max-width: calc(50% - 5px);
  }
  .c-form__select2:nth-child(n + 2) {
    margin-left: 0;
  }
}
.c-form__select2 select {
  width: 100%;
  border: none;
  height: 48px;
  padding-left: 20.4px;
  border-radius: 5px;
  border: 0;
}
@media screen and (max-width: 768px) {
  .c-form__select2 select {
    height: 45px;
  }
}
.c-form__select3 {
  width: 100%;
  max-width: 120px;
}
.c-form__select3:nth-child(n + 2) {
  margin-left: 10.5px;
}
@media screen and (max-width: 768px) {
  .c-form__select3 {
    margin: 0;
    max-width: calc(50% - 5px);
  }
  .c-form__select3:nth-child(n + 2) {
    margin-left: 0;
  }
  .c-form__select3:nth-child(n + 3) {
    margin-top: 14.2px;
  }
}
.c-form__select3 select {
  width: 100%;
  border: none;
  height: 48px;
  padding-left: 20.4px;
  border-radius: 5px;
  border: 0;
}
@media screen and (max-width: 768px) {
  .c-form__select3 select {
    height: 45px;
  }
}
.c-form__select4 {
  width: 100%;
  max-width: 320px;
}
.c-form__select4:nth-child(n + 2) {
  margin-left: 10.5px;
}
@media screen and (max-width: 768px) {
  .c-form__select4 {
    margin: 0;
    max-width: 100%;
  }
  .c-form__select4:nth-child(n + 2) {
    margin-left: 0;
    margin-top: 14.2px;
  }
}
.c-form__select4 select {
  width: 100%;
  border: none;
  height: 48px;
  padding-left: 20.4px;
  border-radius: 5px;
  border: 0;
}
@media screen and (max-width: 768px) {
  .c-form__select4 select {
    height: 45px;
  }
}
.c-form__inputWrapper {
  position: relative;
}
.c-form__inputWrapper::after {
  content: "";
  pointer-events: none;
  display: inline-block;
  background: url(../img/icon_calender.png) no-repeat;
  background-size: contain;
  width: 13px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.c-form__selctWrapper {
  position: relative;
}
.c-form__selctWrapper::after {
  content: "";
  pointer-events: none;
  display: inline-block;
  background: url(../img/icon_triangle.png) no-repeat;
  background-size: contain;
  width: 10px;
  height: 5px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.c-form__submit {
  width: 100%;
  max-width: 270px;
  height: 48px;
  align-self: flex-end;
  margin-left: auto;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-form__submit {
    margin-left: auto;
    margin-top: 25.5px;
    max-width: 100%;
  }
}
.c-form__bottomNav {
  width: 100%;
  max-width: 1090px;
  margin: 35px auto 0;
  display: flex;
}
@media screen and (max-width: 768px) {
  .c-form__bottomNav {
    flex-wrap: wrap;
  }
}
.c-form__bottomNavFirst {
  width: 100%;
  max-width: 320px;
  background-color: #868686;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .c-form__bottomNavFirst {
    max-width: 100%;
    height: 80px;
  }
}
.c-form__bottomNavItem {
  width: 100%;
  max-width: 190px;
  border: 1px solid #888888;
  border-right: none;
  height: 120px;
}
@media screen and (max-width: 768px) {
  .c-form__bottomNavItem {
    max-width: 33.333%;
    height: 80px;
    padding-bottom: 18.3px;
    border-top: none;
  }
}
@media screen and (max-width: 768px) {
  .c-form__bottomNavItem:nth-child(2) {
    border-left: none;
  }
}
.c-form__bottomNavItem:nth-child(4) {
  border-right: 1px solid #888888;
}
@media screen and (max-width: 768px) {
  .c-form__bottomNavItem:nth-child(4) {
    padding-bottom: 8.3px;
    border-right: none;
  }
}
.c-form__bottomNavItem:last-child {
  border-right: 1px solid #888888;
  margin-left: 11px;
}
@media screen and (max-width: 768px) {
  .c-form__bottomNavItem:last-child {
    margin-left: 0;
    max-width: 100%;
    border-top: none;
    padding-bottom: 0;
    height: 48.5px;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
}
@media screen and (max-width: 768px) {
  .c-form__bottomNavItem:last-child a {
    align-items: center;
  }
}
.c-form__bottomNavItem a {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.1em;
  font-size: 13px;
  color: #000000;
  justify-content: center;
  align-items: flex-end;
  transition: background 0.3s;
}
.c-form__bottomNavItem a span {
  padding-bottom: 34px;
}
@media screen and (max-width: 768px) {
  .c-form__bottomNavItem a span {
    padding-bottom: 0;
  }
}
.c-form__bottomHead {
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 1.55;
  font-family: "Noto Serif JP", serif;
  margin-top: 17px;
}
@media screen and (max-width: 768px) {
  .c-form__bottomHead {
    margin-top: 13.2px;
  }
}
.c-form__bottomLink {
  display: flex;
  justify-content: center;
  height: auto !important;
  font-size: 12px;
  text-align: center;
  color: #ffffff;
  margin-top: 5px;
  padding-left: 5px;
  position: relative;
}
.c-form__bottomLink span {
  transition: opacity 0.3s;
}
.c-form__bottomLink span:hover {
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .c-form__bottomLink {
    margin-top: 7px;
  }
}
.c-form__bottomLink::before {
  content: "";
  display: inline-block;
  background: url(../img/icon_question.png) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: relative;
  left: -7px;
  bottom: 3px;
}
.c-form__subWrapper {
  padding: 50px 0 35px;
  background: #efefef;
}
@media screen and (max-width: 768px) {
  .c-form__subWrapper {
    padding: 28.5px 0 27.7px;
  }
}
.c-form__travelItems {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 1060px) {
  .c-form__travelItems {
    flex-direction: column;
  }
}
.c-form__travelItem {
  width: 100%;
  padding-bottom: 40px;
  position: relative;
}

/* ▼ 2023.11.11 レンタカー追加 */
.airplaneBox {
  padding-right: 10px;
}

.trainBox {
  padding: 0 10px;
}
/* ▼  2023.11.11 レンタカー追加 */

 @media screen and (max-width: 1060px) {
  .c-form__travelItem {
    padding: 0 25px;
  }
}
.c-form__travelItem:first-child,
.c-form__travelItem:nth-child(2) {
  border-right: 1px solid #888888;
}
@media screen and (max-width: 1060px) {
  .c-form__travelItem:first-child,
  .c-form__travelItem:nth-child(2){
    border-right: none;
    padding-bottom: 26px;
    border-bottom: 1px solid #868686;
  }
}
.c-form__travelItem:last-child {
  position: relative;
  /*transform: translateX(50px);*/
}
/*@media screen and (max-width: 1060px) {
  .c-form__travelItem:last-child {
    transform: none;
  }
}*/
@media screen and (max-width: 1060px) {
  .c-form__travelItem:last-child {
    padding-bottom: 0;
    margin-top: 22.5px;
  }
}
.c-form__travelTitle {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 22.3px;
  position: relative;
}
.c-form__travelButton {
  width: 100%;
  max-width: 420px;
  height: 54px;
}
.c-form__travelButton a {
  display: inline-block;
  background-color: #000000;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  font-size: 13px;
  color: #fff;
  text-align: center;
  line-height: 54px;
  text-decoration: none;
  font-weight: bold;
}

.trainBox .c-form__travelButton {
  margin-top: 102px;
}

@media screen and (max-width: 1060px) {
  .trainBox .c-form__travelTitle {
    margin-top: 25px;
  }
  .trainBox .c-form__travelButton {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .c-form__travelCaptionInner {
    padding: 0 40px;
  }
}
.c-form__travelCaption {
  display: block;
  font-size: 13px;
  text-align: right;
  padding-right: 36.5px;
  margin-top: 30px;
  line-height: 1.61;
}
@media screen and (max-width: 768px) {
  .c-form__travelCaption {
    padding-right: 0;
    text-align: left;
    padding-left: -1em;
    text-indent: -1em;
  }
}
.c-form__close {
  width: 61px;
  height: 61px;
  background: #efefef;
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .c-form__close {
    width: 54px;
    height: 54px;
  }
}
.c-form__closeWrapper {
  width: 100%;
  height: 100%;
}
.c-form__closeWrapper::before {
  content: "";
  display: inline-block;
  background: url(../img/icon_close.png) no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.icon_member::before {
  content: "";
  display: inline-block;
  width: 18.865px;
  height: 20px;
  background: url(../img/icon_member.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .icon_member::before {
    top: 20%;
  }
}

.icon_login::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/icon_login.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 24%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .icon_login::before {
    top: 20%;
  }
}

.icon_reservation::before {
  content: "";
  display: inline-block;
  width: 23.385px;
  height: 19.405px;
  background: url(../img/icon_reservation.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 27%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .icon_reservation::before {
    top: 20%;
  }
}

@media screen and (max-width: 768px) {
  .icon_company {
    display: flex;
    line-height: 2em;
  }
}

.icon_company::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 21px;
  background: url(../img/icon_company.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .icon_company::before {
    position: relative;
    top: 1px;
    left: 0;
  }
}

.form-area {
  background: #efefef;
  padding: 30px 3% 50px;
}
@media screen and (max-width: 768px) {
  .form-area {
    padding: 22.2px 25px 25px;
  }
}

select {
  -webkit-appearance: none; /* ベンダープレフィックス(Google Chrome、Safari用) */
  -moz-appearance: none; /* ベンダープレフィックス(Firefox用) */
  appearance: none; /* 標準のスタイルを無効にする */
  position: relative;
}

input[type="text"] {
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  padding-left: 20.4px;
}

.airplane {
  position: relative;
}
.airplane::before {
  content: "";
  display: inline-block;
  width: 23.73px;
  height: 23.73px;
  background: url(../img/icon_airplane.png) no-repeat;
  background-size: contain;
  margin-right: 15px;
  position: relative;
  top: 5px;
}

.train {
  position: relative;
}
.train::before {
  content: "";
  display: inline-block;
  width: 23.73px;
  height: 23.73px;
  background: url(../img/icon_train.png) no-repeat;
  background-size: contain;
  margin-right: 15px;
  position: relative;
  top: 5px;
}

.rentalCar{
	position: relative;
}

.rentalCar::before {
  content: "";
  display: inline-block;
  width: 23.73px;
  height: 23.73px;
  background: url(../img/icon_car.svg) no-repeat;
  background-size: contain;
  margin-right: 15px;
  position: relative;
  top: 5px;
}

/* .tab li a .tab-text__traffic{
	margin-left: 22px
} */

.tab li a .tab-text__traffic::before{
	content: "";
	display: inline-block;
	width: 20px;
	height: 21px;
	background: url(../img/icon_traffic-white.svg) no-repeat;
	background-size: contain;
	/* position: absolute;
	left: -27px;
	top: -2px; */
	padding-right: 10px;
}

/* .tab li a .tab-text__hotel{
	margin-left: 22px
} */

.tab li a .tab-text__hotel::before{
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	background: url(../img/icon_hotel-white.svg) no-repeat;
	background-size: contain;
	/* position: absolute;
	left: -25px; */
	padding-right: 10px;
}

.tab li.active a .tab-text__traffic::before{
	background: url(../img/icon_traffic.svg) no-repeat;
	background-size: contain;
}

.tab li.active a .tab-text__hotel::before{
	background: url(../img/icon_hotel.svg) no-repeat;
	background-size: contain;
}

@media screen and (max-width: 768px) {
  .u-mgt__right10 {
    margin-right: 10px;
  }
  .u-mgt__top10 {
    margin-top: 14.2px;
  }
}
.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.submit_btn {
  height: 100%;
  border: none;
  background: #000000;
  border-radius: 5px;
  position: relative;
  z-index: 10;
  outline: none;
  /*アニメーションの指定*/
  transition: ease 0.1s;
  overflow: hidden;
}
.submit_btn span {
  color: #fff;
  position: relative;
  border-radius: 5px;
  z-index: 6;
}
.submit_btn::before {
  content: "";
  display: inline-block;
  background: #dd9738;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  border-radius: 5px;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

.submit_btn:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.commonItem::after {
  content: "";
  display: inline-block;
  background: #f8f8f8;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
  z-index: -1;
}

.commonItem:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

@media screen and (max-width: 768px) {
  .ml-auto {
    margin-left: auto !important;
  }
}

@media screen and (max-width: 768px) {
  .portal-form.c-form__common {
    margin-top: 0 !important;
  }
}

.c-hotel__link {
  width: 100%;
  max-width: 420px;
  height: 54px;
  border-radius: 5px;
  border: none;
  position: relative;
}
.c-hotel__link::after {
  content: "";
  pointer-events: none;
  display: inline-block;
  background: url(../img/icon_triangle.png) no-repeat;
  background-size: contain;
  width: 10px;
  height: 5px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.c-hotel__link select {
  border: none;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  padding-left: 29.5px;
}

input,
select {
  background-color: #fff;
}

.c-form__bottomLink {
  color: #fff !important;
}
.c-form__bottomLink span {
  border-bottom: 1px solid #fff;
} /*# sourceMappingURL=modal.css.map */

@media screen and (max-width: 768px) {
  #vacancy select {
    font-size: 13px;
    color: #000;
  }

  #checkin_date {
    font-size: 13px;
  }
}

.airticketSearch {
  margin-top: 26px;
}
.carticketSearch {
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .airticketSearch {
    margin-top: 13px;
  }
  .carticketSearch {
    margin-top: 13px;
  }
}

#sub-form {
  width: 100%;
  max-width: 940px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 780px) {
  #sub-form {
    max-width: 500px;
  }
}
@media screen and (max-width: 480px) {
  #sub-form {
    max-width: 300px;
  }
}
