/* LESS Document */
/* ハンバーガーメニュー */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/opensans/v35/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4gaVc.ttf) format('truetype');
}
@font-face {
  font-family: 'Pacifico';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/pacifico/v22/FwZY7-Qmy14u9lezJ-6H6Mw.ttf) format('truetype');
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
/********/
.sp_header {
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 50;
  height: 50px;
  width: 100%;
  background-color: rgba(213, 124, 0, 0.9);
  box-shadow: 0px 5px 12px 5px rgba(0, 0, 0, 0.5); /*左右　上下　ぼかし　広がり*/
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.sp_header .sponcer {
  padding: 8px 0 0 5px;
  width: 33.333%;
  position: relative;
  z-index: 50;
}
.sp_header .sponcer img {
  max-WIDTH: 45px;
  max-height: 45px;
}
.sp_head_logo {
  position: relative;
  z-index: 50;
  padding: 9px 0 0 0px;
  width: 33.333%;
  text-align: center;
}
.sp_head_logo img {
  max-width: 125px;
}
.sp_head_btn {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 11;
  width: 115px;
}
.sp_head_btn a {
  background: #A89177;
  font-size: 1.4rem;
  color: #fff;
  display: block;
  height: 50px;
  width: 100%;
  text-align: center;
  padding: 10px;
}
.sp_nav_info_ar {
  width: 100%;
  padding: 0px 0px;
  text-align: center;
  margin: 0px 0 0;
}
.sp_nav_info_ar .reserve a, .sp_nav_info_ar .sns a {
  display: block;
}
.sp_nav_info_ar .reserve a:hover, .sp_nav_info_ar .sns a:hover {
  text-decoration: none;
}
.sp_nav_info_ar .reserve a {
  background: #FFF;
  padding: 15px 20px;
  width: 260px;
  margin: 0 auto 30px;
  color: rgba(213, 124, 0, 4);
  border-radius: 10px;
  position: relative;
  z-index: 3;
  font-weight: 700;
}
.sp_nav_info_ar .reserve a:after {
  position: absolute;
  content: "";
  background: url("../images/shared/btn_arr_wh.svg") no-repeat center center/cover;
  width: 7px;
  height: 14px;
  right: 20px;
  top: 50%;
  transform: translate(0%, -50%);
}
.sp_nav_info_ar .sns {
  padding: 10px 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sp_nav_info_ar .sns .link {
  width: 25%;
}
.sp_nav_info_ar .sns a {
  display: block;
}
.sp_nav_info_ar .sns img {
  width: 40px;
}
/********/
.outer-menu {
  position: fixed;
  top: 0vh;
  right: 0px;
  z-index: 10;
}
.outer-menu .checkbox-toggle {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 2;
  cursor: pointer;
  width: 50px;
  height: 50px;
  opacity: 0;
}
/****バツアイコン****/
.outer-menu .checkbox-toggle:checked + .hamburger > div {
  transform: rotate(135deg);
  background: #fff;
}
.outer-menu .checkbox-toggle:checked + .hamburger > div:before, .outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
  background: #fff;
}
/****バツアイコン****/
.outer-menu .checkbox-toggle:checked + .hamburger > div:after {
  opacity: 0;
}
.outer-menu .checkbox-toggle:checked ~ .menu {
  pointer-events: auto;
  visibility: visible;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: 0.75s;
}
.outer-menu .checkbox-toggle:checked ~ .menu > div > div {
  opacity: 1;
  transition: opacity 0.4s ease 0.4s;
}
.outer-menu .checkbox-toggle:hover + .hamburger {}
.outer-menu .checkbox-toggle:checked + .hamburger {}
.outer-menu .checkbox-toggle:checked:hover + .hamburger > div {
  transform: rotate(225deg);
  background: #fff;
}
.outer-menu .hamburger {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
  width: 50px;
  height: 50px;
  padding: 0.5em 1em;
  cursor: pointer;
  transition: box-shadow 0.4s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .hamburger > div {
  position: relative;
  flex: none;
  width: 90%;
  height: 2px;
  background: #fff;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-menu .hamburger > div:before, .outer-menu .hamburger > div:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -7px;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  transition: all 0.4s ease;
}
.outer-menu .hamburger > div:after {
  top: 7px;
}
.outer-menu .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: 1px solid transparent;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow-y: auto;
  padding-bottom: 140px; /* フッター高さ分 */
  box-sizing: border-box;
  overflow: hidden;
}
.outer-menu .menu > div {
  width: 100vw;
  height: 100%;
  background-color: rgba(213, 124, 0, 1.0);
  border-radius: 0%;
  transition: all 0.4s ease;
  flex: none;
  transform: scale(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0px 0 0;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  /* iPhone下部の安全領域分だけ確保 */
  padding-bottom: calc(90px + env(safe-area-inset-bottom));
}
.outer-menu .menu > div:after {
  position: absolute;
  content: "";
  background: url("../images/top/top_con_01_bg01.webp") no-repeat center center/cover;
  width: 163px;
  height: 111px;
  right: -30px;
  bottom: 20vh;
}
.outer-menu .menu > div > div {
  text-align: center;
  width: 100vw;
  height: 120%;
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  flex: none;
  /*display: flex;
  align-items: center;
  justify-content: center;*/
}
.outer-menu .menu > div > div > ul {
  list-style: none;
  padding: 0 20px;
  margin: 15vh 0 0;
  display: block;
  height: 120%;
  text-align: left;
}
.outer-menu .menu > div > div > ul > li {
  padding: 0;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-align: center;
  display: block;
}
.outer-menu .menu > div > div > ul > li > a {
  position: relative;
  display: block;
  cursor: pointer;
  transition: 0.4s ease;
  padding: 5px 1em 7px;
  border-bottom: 1px dashed #fff;
  color: #fff;
  font-family: "Anton", sans-serif;
}
.outer-menu .menu > div > div > ul > li > a span {
  font-size: 1.3rem;
  font-weight: 500;
  font-family: "BIZ UDGothic", sans-serif;
  line-height: 1.1;
  padding: 0 0 0 10px;
}
.outer-menu .menu > div > div > ul > li:first-child > a {
  border-top: 1px dashed #b59948;
}
.outer-menu .menu > div > div > ul > li > a:hover {
  text-decoration: none;
}
.outer-menu .menu > div > div > ul > li.negotiation {
  background: url("images/shared/ico_next.svg") no-repeat right 10px center / 15px 15px;
}
.outer-menu .menu > div > div > ul > li.recruit {
  margin: 20px 0 0;
  background: #0F4AD6;
  border-radius: 20px;
  max-width: 150px;
  text-align: center;
}
.outer-menu .menu > div > div > ul > li.recruit a {
  color: #fff;
  display: block;
  padding: 5px 10px;
}
/*
.outer-menu .menu > div > div > ul > li > a:hover:after {
  width: 100%;
}
.outer-menu .menu > div > div > ul > li > a:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -0.15em;
  left: 0;
  width: 0;
  height: 2px;
  background: #e5e5e5;
  transition: width 0.4s ease;
}
*/