/* 空室検索バナー ---------------------------*/
.c-vacantBanner {
  background-color: #EFF2F3;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  position: fixed;
  bottom: auto;
  right: 60px;
  z-index: 102;
  width: 400px;
  height: auto;
  border-radius: 2.5px;
  cursor: pointer;
  display: block;
  overflow: hidden;
}
.c-vacantBanner.ref {
  bottom: auto;
  right: auto;
  top: 20px;
  left: 20px;
}
.c-vacantBanner.hotel {
  bottom: auto;
  top: 10px;
  right: 10px;
}
.c-vacantBanner.lequ {
  bottom: 40px;
  right: auto;
  left: 16px;
}
.c-vacantBanner.inn {
  bottom: 20px;
  right: 60px;
}
.c-vacantBanner.campana {
  bottom: 10px;
  right: 16px;
}
.c-vacantBanner.campana.-top {
  bottom: 100px;
  right: 16px;
}
.c-vacantBanner__inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 11px 15px;
}
.c-vacantBanner__top {
  background-color: #888888;
  padding: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
}
.c-vacantBanner__top .topText{
  position: relative;
}
.c-vacantBanner__top .topText::before {
  content: '';
  position: absolute;
  top: 0%;
  left: -10px;
  width: 7px;
  height: 11px;
  background: transparent;
  border-left: 1px dotted #fff;
  transform: rotate(-30deg);
}
.c-vacantBanner__top .topText::after {
  content: '';
  position: absolute;
  top: 0%;
  right: -6px;
  width: 7px;
  height: 11px;
  background: transparent;
  border-right: 1px dotted #fff;
  transform: rotate(30deg);
}
.c-vacantBanner__text {
  color: #666666;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  border-bottom: double 3px #666666;
  padding-bottom: 5px;
}

.c-vacantBanner__date {
  background-color: #FFFFFF;
  color: #000000;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-left: 16px;
  height: 40px;
  width: 175px;
  border: 1px solid #DFDFDF;
  border-right: none;
  border-radius: 2.5px 0 0 2.5px;
  display: flex;
  align-items: center;
  padding-left: 40px;
  position: relative;
}

.c-vacantBanner__date::before {
  content: "";
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.001' height='13' viewBox='0 0 13.001 13'%3E%3Cpath id='シェイプ_1' data-name='シェイプ 1' d='M994.027,753A1.028,1.028,0,0,1,993,751.973v-9.579a1.027,1.027,0,0,1,1.027-1.026h2.395v-1.027a.342.342,0,0,1,.684,0v2.738a.342.342,0,1,1-.684,0v-1.027h-2.395a.342.342,0,0,0-.342.342v2.737h9.237a.342.342,0,0,1,0,.684h-9.237v6.158a.342.342,0,0,0,.342.342h10.947a.343.343,0,0,0,.343-.342v-9.579a.343.343,0,0,0-.343-.342h-.684a.342.342,0,0,1,0-.684h.684a1.027,1.027,0,0,1,1.027,1.026v9.579a1.028,1.028,0,0,1-1.027,1.027Zm7.868-9.921v-1.027h-3.079a.342.342,0,1,1,0-.684h3.079v-1.027a.342.342,0,0,1,.685,0v2.738a.342.342,0,0,1-.685,0Z' transform='translate(-993 -740)' fill='%23888'/%3E%3C/svg%3E%0A");
  height: 14px;
  width: 13px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
}

.c-vacantBanner__btn {
  background-color: #888888;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  height: 40px;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #DFDFDF;
  border-radius: 0 2.5px 2.5px 0;
}

@media screen and (max-width: 1024px) {
  .c-vacantBanner {
    display: none;
  }
}

/* 空室検索モーダルの中身 ---------------------------*/
/*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: 100vw;
  height: 100%;
  background-color: #fff;
  padding-top: 93px;
  z-index: 102;
  overflow-y: scroll;
  padding-bottom: 90px;
  /* display: none; */
}
@media screen and (max-width: 768px) {
  #vacancy {
    padding-top: 35px;
    overflow-y: scroll;
	padding-bottom: 35px;
  }
}

ul {
  list-style-type: none;
}

.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/reservation/icon_caution.png) no-repeat;
  background-size: contain;
  position: relative;
  top: -1px;
  margin-right: 6px;
}
.c-form__common {
  display: flex;
  flex-wrap: wrap;
}
@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/reservation/icon_calender.png) no-repeat;
  background-size: contain;
  width: 13px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.c-form__inputWrapper:has(input:disabled)::after {
  opacity: 0.5;
}
.c-form__selctWrapper {
  position: relative;
}
.c-form__selctWrapper::after {
  content: "";
  pointer-events: none;
  display: inline-block;
  background: url(../img/reservation/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%;
    order: 1;
  }
}
.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: #E68213;
  transition: opacity 0.3s;
  position: relative;
  padding: 16px 4px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .c-form__bottomNavFirst {
    max-width: 100%;
    padding: 16px 4px;
    height: auto;
  }
}
.c-form__bottomNavFirst::before {
  content: "";
  position: absolute;
  border: 1px solid #fff;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .c-form__bottomNavFirst::before {
    content: "";
    position: absolute;
    border: 1px solid #fff;
    top: 3px;
    bottom: 3px;
    left: 3px;
    right: 3px;
  }
}
.c-form__bottomNavItem {
  width: 100%;
  max-width: 190px;
  border: 1px solid #888888;
  border-right: none;
  height: auto;
}
@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: 0;
  font-weight: 600;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .c-form__bottomHead {
    /* margin-top: 13.2px; */
    font-size: 18px;
    line-height: 1.55;
  }
}
.c-form__bottomPointWrap {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .c-form__bottomPointWrap {
    gap: 5px;
  }
}
.c-form__bottomPoint {
  font-size: 12px;
  padding: 6px 8px;
  color: #E68213;
  font-weight: 700;
  background-color: #fff;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .c-form__bottomPoint {
    font-size: 13px;
    padding: 6px 12px;
  }
}
.c-form__bottomLink {
  display: flex;
  justify-content: center;
  height: auto !important;
  font-size: 12px;
  text-align: center;
  color: #ffffff;
  margin-top: 12px;
  padding-left: 5px;
  position: relative;
  text-decoration: underline;
}
.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: 8px;
  }
}
.c-form__bottomLink::before {
  content: "";
  display: inline-block;
  background: url(../img/reservation/icon_question_white.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: 768px) {
  .c-form__travelItems {
    flex-direction: column;
  }
}
.c-form__travelItem {
  width: 100%;
  padding-bottom: 40px;
  position: relative;
}
@media screen and (max-width: 1060px) {
  .c-form__travelItem {
    padding: 0 25px;
  }
}
.c-form__travelItem:first-child {
  border-right: 1px solid #888888;
}
@media screen and (max-width: 768px) {
  .c-form__travelItem:first-child {
    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: 768px) {
  .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;
}
@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/reservation/icon_close.png) no-repeat;
  background-size: contain;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.c-form__noDateWrap {
  /*display: flex;*/
  margin-top: 10px;
  margin-bottom: 20px;
}
.c-form__noDate {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-direction: row-reverse;
  cursor: pointer;
}
.c-form__noDate input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #000;
}
@media screen and (max-width: 768px) {
  .c-form__noDateWrap {
    display: flex;
  }
  .c-form__noDate input[type="checkbox"] {
    width: 24px;
    height: 24px;
  }
}
.c-form__noDateTitle {
  font-size: 12px;
  font-weight: 700;
  color: #868686;
  cursor: pointer;
}
.c-form__caption {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 8px;
  width: 100%;
}
.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;
}

@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);
}

input[type="text"]:disabled {
  background-color: #ccc;
  opacity: 0.5;
}