html {
  font-size: 1px;
  overflow-x: hidden;
}
html.lock {
  overflow-y: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  max-width: 100vw;
  min-height: 100vh;
  color: #333333;
  font-size: 16rem;
  overflow: hidden;
  font-weight: 400;
}

select,
input,
textarea,
button {
  font: inherit;
}

img,
svg {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-text-decoration: underline transparent;
          text-decoration: underline transparent;
  transition: 0.3s linear;
}
a.underline {
  text-decoration: underline;
}

main {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  box-sizing: border-box;
}

.font_serif {
  font-family: "Noto Serif JP", serif;
}

.font_lora {
  font-family: "Lora", serif;
}

.notes {
  font-size: 12rem;
}

.inner {
  width: 960rem;
  margin-left: auto;
  margin-right: auto;
}

.s_inner {
  width: 820rem;
  margin-left: auto;
  margin-right: auto;
}

.mt_l {
  margin-top: 100rem;
}

.mt_m {
  margin-top: 60rem;
}

.mt_s {
  margin-top: 20rem;
}

.fz_l {
  font-size: 1.2em;
}

.fz_s {
  font-size: 0.8em;
}

.ta_center {
  text-align: center;
}

.ta_right {
  text-align: right;
}

.fwb {
  font-weight: bold;
}

.fw500 {
  font-weight: 500;
}

.c_ttl_wrap .ttl {
  font-size: 40rem;
  line-height: 1.4;
}
.c_ttl_wrap .ttl_small {
  font-size: 16rem;
  margin-top: 3rem;
}

.txt_indent {
  text-indent: -1em;
  padding-left: 1em;
}

.scroll_target.fade_in {
  opacity: 0;
  transition: 1.5s;
}
.scroll_target.fade_in.on {
  opacity: 1;
}
.scroll_target.fade_up {
  transform: translate(0, 20rem);
}
.scroll_target.fade_up.on {
  transform: translate(0, 0);
}
.scroll_target.fade_left {
  transform: translate(20rem, 0);
}
.scroll_target.fade_left.on {
  transform: translate(0, 0);
}
.scroll_target.fade_right {
  transform: translate(-20rem, 0);
}
.scroll_target.fade_right.on {
  transform: translate(0, 0);
}
.scroll_target.fade_blur {
  animation-duration: 2s;
  animation-fill-mode: both;
  opacity: 0;
}
.scroll_target.fade_blur.on {
  animation-name: fade_Blur;
  opacity: 1;
  transition: 0.8s;
}
.scroll_target.fade_corner {
  clip-path: polygon(0 10%, 93% 10%, 93% 100%, 0% 100%);
  animation-duration: 1.7s;
  animation-fill-mode: both;
}
.scroll_target.fade_corner.on {
  animation-name: fade_corner;
  transition: 1.7s;
}

.lang_btn {
  position: absolute;
  right: 30rem;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}

.lang_change {
  letter-spacing: 1rem;
  color: #fff;
  position: relative;
}
.lang_change a {
  color: inherit;
}
.lang_change .select_lang_btn {
  padding-right: 25rem;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  cursor: pointer;
}
.lang_change .select_lang_btn img {
  width: 23rem;
}
.lang_change .select_lang_btn::after {
  content: "";
  display: block;
  position: absolute;
}
.lang_change .select_lang_btn::after {
  top: 40%;
  right: 0;
  width: 10rem;
  height: 10rem;
  box-sizing: border-box;
  border-bottom: 1px solid #5A5A5A;
  border-left: 1px solid #5A5A5A;
  transform: translateY(-35%) rotate(-45deg);
  transition: 0.3s;
}
.lang_change .select_lang_btn.is_on::after {
  top: 60%;
  transform: translateY(-35%) rotate(135deg);
}
.lang_change .select_lang_list {
  position: absolute;
  bottom: -15rem;
  left: -75rem;
  transform: translateY(100%);
  display: none;
}
.lang_change .select_lang_list ul {
  gap: 0;
}
.lang_change .select_lang_list ul li + li {
  border-top: 1px solid #555;
}
.lang_change .select_lang_list ul li a {
  background-color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150rem;
  height: 54rem;
  color: #fff;
}
.lang_change .select_lang_list ul li a:hover {
  color: #000;
  background-color: #fff;
}

header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
header .header_inner {
  height: 100rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 48rem;
  padding-right: 125rem;
}
header .header_inner .header_logo {
  line-height: 1;
  width: 440rem;
}
header .header_inner .gnav_wrap {
  display: flex;
  align-items: center;
  gap: 62rem;
  height: 100%;
}
header .header_inner .gnav_wrap nav ul {
  display: flex;
  align-items: center;
  gap: 50rem;
}
header .header_inner .gnav_wrap nav ul li a {
  color: #333333;
  position: relative;
  letter-spacing: 0.02em;
  transition: 0.3s;
  display: block;
}
header .header_inner .gnav_wrap nav ul li a::after {
  content: "";
  display: block;
  width: 1px;
  height: 20rem;
  background-color: #9D9D9D;
  position: absolute;
  bottom: -27rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}
header .header_inner .gnav_wrap nav ul li a.active::after {
  opacity: 1;
}
header .header_inner .gnav_wrap nav ul li a:hover {
  opacity: 0.7;
}
header .header_inner .gnav_wrap .nav_contact {
  height: 100%;
}
header .header_inner .gnav_wrap .nav_contact a {
  text-align: center;
  color: #fff;
  width: 165rem;
  height: 100%;
  background-color: #104362;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  letter-spacing: 0.1em;
  padding-top: 18rem;
}
header .header_inner .gnav_wrap .nav_contact a::before {
  content: "";
  display: block;
  width: 24rem;
  height: 24rem;
  background: url(../img/ico_nav_mail.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 21rem;
  left: 50%;
  transform: translateX(-50%);
}
header .header_inner .gnav_wrap .nav_contact a:hover {
  opacity: 0.7;
}

footer {
  margin-top: 95rem;
  background-color: #104362;
  padding-top: 10rem;
  padding-bottom: 100rem;
}
footer .f_inner {
  color: #fff;
  text-align: center;
}
footer .f_inner .company {
  font-size: 18rem;
  font-weight: 500;
  margin-top: 80rem;
}
footer .f_inner .info {
  margin-top: 20rem;
}
footer .f_inner .business {
  margin-top: 25rem;
}
footer .f_inner .f_link {
  padding: 0 30rem;
  width: 100%;
}
footer .f_inner .f_link ul {
  display: flex;
  justify-content: flex-end;
  gap: 0 20rem;
  flex-wrap: wrap;
}

.mv {
  height: 860rem;
  position: relative;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}
.mv::after {
  content: "";
  display: block;
  width: 100%;
  height: 512rem;
  background: linear-gradient(to bottom, rgba(169, 200, 219, 0) 0%, rgba(125, 181, 214, 0.92) 100%);
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.mv .img_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mv .img_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv .txt_wrap {
  position: absolute;
  bottom: 190rem;
  left: 50%;
  transform: translateX(-50%);
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.mv .txt_wrap .txt_main {
  font-size: 80rem;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(20rem);
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.7s;
}
.mv .txt_wrap .txt_sub {
  font-size: 28rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 10rem;
  opacity: 0;
  transform: translateY(20rem);
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0.7s;
}
.mv .btn_recruit {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 10;
}
.mv .btn_recruit a {
  padding: 30rem 38rem;
  position: relative;
  background: url(/assets/img/bg_mv_recruit.jpg) no-repeat center;
  background-size: cover;
  width: 480rem;
  height: 180rem;
  display: block;
  color: #fff;
  transition: 0.3s;
}
.mv .btn_recruit a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #2F0D0D 0%, rgba(47, 13, 13, 0.49) 25%, rgba(47, 13, 13, 0) 60%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.mv .btn_recruit a .wrapper {
  position: relative;
  z-index: 2;
}
.mv .btn_recruit a .wrapper .ttl {
  font-size: 20rem;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.mv .btn_recruit a .wrapper .desc {
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 4rem;
  line-height: 1.4;
}
.mv .btn_recruit a .wrapper .ico_arrow {
  margin-top: 11rem;
  width: 22rem;
}
.mv .btn_recruit a:hover {
  opacity: 0.7;
}

.aboutus_top {
  position: relative;
  padding-top: 155px;
  overflow: hidden;
}
.aboutus_top .bg {
  position: absolute;
  top: -175rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1920rem;
}
.aboutus_top .content_inner {
  position: relative;
  z-index: 1;
}
.aboutus_top .content_inner .content_wrap {
  margin-top: -25rem;
  display: flex;
  justify-content: space-between;
}
.aboutus_top .content_inner .content_wrap .catch_txt {
  margin-top: 52rem;
  font-size: 34rem;
  font-weight: 500;
  width: 375rem;
}
.aboutus_top .content_inner .content_wrap .box {
  margin-right: -65rem;
  padding: 55rem;
  background-color: rgba(255, 255, 255, 0.6);
  width: 647rem;
}
.aboutus_top .content_inner .content_wrap .box p {
  line-height: 2.9;
  letter-spacing: 0.02em;
}
.aboutus_top .aboutus_image {
  position: relative;
  z-index: 1;
  margin-top: 100rem;
  width: 1920rem;
  left: 50%;
  transform: translateX(-50%);
}

.company_top {
  background: url(/assets/img/bg_company_top.jpg) no-repeat center top;
  background-size: 1920rem;
  padding-bottom: 130rem;
  position: relative;
}
.company_top::after {
  content: "";
  display: block;
  width: 100%;
  height: 685rem;
  background: url(/assets/img/bg_top_grade.png) no-repeat center bottom;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.company_top .content_inner {
  padding-top: 65rem;
  position: relative;
  z-index: 1;
}
.company_top .content_inner .c_ttl_wrap {
  text-align: center;
}
.company_top .content_inner .table_wrap {
  margin-top: 45rem;
}
.company_top .content_inner .table_wrap table {
  width: 100%;
}
.company_top .content_inner .table_wrap table tr th,
.company_top .content_inner .table_wrap table tr td {
  padding: 18rem 0;
}
.company_top .content_inner .table_wrap table tr th {
  border-bottom: 1px solid #333333;
  width: 210rem;
  text-align: center;
}
.company_top .content_inner .table_wrap table tr td {
  border-bottom: 1px solid #AAAAAA;
  padding-left: 45rem;
}

.service_top .c_ttl_wrap {
  text-align: center;
}
.service_top .content_wrap {
  width: 100%;
  max-width: 1660rem;
  margin-top: 40rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 50rem;
  padding-right: 20rem;
}
.service_top .content_wrap .img_box {
  width: calc(100% - 520rem);
  height: 460rem;
}
.service_top .content_wrap .img_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}
.service_top .content_wrap .txt_box {
  width: 430rem;
  letter-spacing: 0.02em;
}
.service_top .content_wrap .txt_box .txt1 {
  margin-top: 22rem;
  font-size: 32rem;
  font-weight: 500;
}
.service_top .content_wrap .txt_box .txt2 {
  margin-top: 6rem;
  font-size: 16rem;
  font-weight: 500;
}
.service_top .content_wrap .txt_box .desc {
  margin-top: 28rem;
  line-height: 2;
}
.service_top .content_wrap .txt_box .more {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 52rem;
  padding-right: 35rem;
  position: relative;
}
.service_top .content_wrap .txt_box .more::after {
  content: "";
  display: block;
  width: 12rem;
  height: 12rem;
  background: url(/assets/img/ico_outer.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.service_top .content_wrap + .content_wrap {
  margin-top: 160rem;
  padding-right: 0;
  padding-left: 20px;
}
.service_top .content_wrap.reverse {
  flex-direction: row-reverse;
}
.service_top .content_wrap.reverse .img_box img {
  -o-object-position: left;
     object-position: left;
}
.service_top .content_wrap.reverse .txt_box {
  padding-right: 0;
}
.service_top .content_wrap.sorano .txt_box .logo {
  width: 215rem;
}
.service_top .content_wrap.nexthotel .txt_box .logo {
  width: 280rem;
}
.service_top .content_wrap.berewery .img_box img {
  -o-object-position: center;
     object-position: center;
}
.service_top .content_wrap.berewery .txt_box .logo {
  width: 200rem;
}

.recruit_top {
  margin-top: 200rem;
}
.recruit_top .catch_area {
  position: relative;
}
.recruit_top .catch_area .bg {
  height: 680rem;
}
.recruit_top .catch_area .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit_top .catch_area::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #2F0D0D 0%, rgba(47, 13, 13, 0.49) 25%, rgba(47, 13, 13, 0) 60%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.recruit_top .catch_area .txt_wrap {
  z-index: 2;
  position: absolute;
  width: 100%;
  padding: 0 145rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.recruit_top .catch_area .txt_wrap .c_ttl_wrap .ttl {
  font-size: 34rem;
  letter-spacing: 0.1em;
}
.recruit_top .catch_area .txt_wrap .lead {
  margin-top: 75rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-size: 34rem;
  font-weight: 500;
}
.recruit_top .catch_area .txt_wrap .desc {
  line-height: 2.3;
  margin-top: 22rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.rct_content {
  margin-top: 80rem;
  max-width: 1440rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20rem;
}
.rct_content .p-recruit__requirements-content {
  display: grid;
  gap: 140rem;
}
.rct_content .p-recruit__requirements-block {
  display: grid;
  gap: 30rem;
}
.rct_content .p-recruit__requirements-heading {
  margin: 0;
}
.rct_content .p-recruit__requirements-heading-text {
  font-size: 36rem;
}
.rct_content .recruit-tabs-nav {
  display: flex;
  gap: 20rem;
}
.rct_content .recruit-tab-button {
  font-weight: 700;
  width: 689rem;
  height: 70rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid #104362;
  font-size: 20rem;
  position: relative;
  color: #104362;
}
.rct_content .recruit-tab-button.is-current {
  background-color: #104362;
  color: #fff;
}
.rct_content .recruit-tab-button.is-current::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-color: #104362 transparent transparent;
  border-style: solid;
  border-width: 10rem 8rem 0;
  transform: translate(-50%, 100%);
}
.rct_content .recruit-tab-panels {
  padding-top: 57rem;
}
.rct_content .recruit-tab-panel {
  display: none;
}
.rct_content .recruit-tab-panel.is-show {
  display: block;
}
.rct_content .p-recruit__requirements-type-item {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  border-bottom: 1px solid #AAAAAA;
}
.rct_content .p-recruit__requirements-type-item.is-open .p-recruit__requirements-type-item-header-icon-2 {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}
.rct_content .p-recruit__requirements-type-item-header {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  text-align: left;
  border: 0;
  cursor: pointer;
}
.rct_content .p-recruit__requirements-type-item-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
}
.rct_content .p-recruit__requirements-type-item-heading-main {
  font-size: 20rem;
  margin-right: 20rem;
}
.rct_content .p-recruit__requirements-type-item-heading-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5988c6;
  font-size: 12rem;
  padding: 8rem;
  height: 30rem;
  color: #fff;
}
.rct_content .p-recruit__requirements-type-item-header-icon {
  position: relative;
  flex: 0 0 20rem;
  width: 20rem;
  height: 20rem;
}
.rct_content .p-recruit__requirements-type-item-header-icon-1,
.rct_content .p-recruit__requirements-type-item-header-icon-2 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #18364a;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.rct_content .p-recruit__requirements-type-item-header-icon-2 {
  transform: translate(-50%, -50%) rotate(90deg);
}
.rct_content .p-recruit__requirements-type-item-body {
  display: none;
}
.rct_content .p-recruit__requirements-type-item-body-inner {
  margin-top: 15rem;
}
.rct_content .p-recruit__requirements-type-text {
  margin: 0 0 20px;
}
.rct_content .p-recruit__requirements-type-table {
  overflow-x: auto;
  background: #f4f2ef;
  padding: 20rem 40rem;
}
.rct_content .p-recruit__requirements-type-table table tr:last-child th,
.rct_content .p-recruit__requirements-type-table table tr:last-child td {
  border-bottom: none;
}
.rct_content .c-table {
  width: 100%;
  border-collapse: collapse;
}
.rct_content .c-table__row th,
.rct_content .c-table__row td {
  border-bottom: 1px solid #AAAAAA;
  padding: 18rem 12rem;
}
.rct_content .c-table__heading {
  width: 330rem;
  text-align: left;
  vertical-align: top;
}
.rct_content .c-table__desc {
  vertical-align: top;
  line-height: 1.5;
}
.rct_content .recruitment_method {
  margin-top: 140rem;
}
.rct_content .recruitment_method .ttl {
  font-size: 36rem;
}
.rct_content .recruitment_method .lead_txt {
  margin-top: 20rem;
}
.rct_content .recruitment_method .lead_notes {
  margin-top: 12rem;
}
.rct_content .recruitment_method .box_wrap {
  margin-top: 45rem;
  display: flex;
  justify-content: space-between;
}
.rct_content .recruitment_method .box_wrap .box {
  background-color: #F7F7F7;
  max-width: 690rem;
  height: 294rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(50% - 10rem);
}
.rct_content .recruitment_method .box_wrap .box .txt_wrap {
  text-align: center;
}
.rct_content .recruitment_method .box_wrap .box .txt_wrap .heading {
  font-size: 26rem;
  letter-spacing: 0.02em;
}
.rct_content .recruitment_method .box_wrap .box .txt_wrap .txt {
  line-height: 1.5;
  margin-top: 15rem;
}
.rct_content .recruitment_method .box_wrap .box .txt_wrap .btn_contact {
  margin-top: 8rem;
}
.rct_content .recruitment_method .box_wrap .box .txt_wrap .btn_contact a {
  width: 360rem;
  height: 60rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #104262;
  color: #fff;
  font-size: 18rem;
  position: relative;
  transition: 0.3s;
}
.rct_content .recruitment_method .box_wrap .box .txt_wrap .btn_contact a::after {
  content: "";
  display: block;
  width: 19rem;
  height: 19rem;
  background: url(/assets/img/ico_arrow_white.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 20rem;
  transform: translateY(-50%);
}
.rct_content .recruitment_method .box_wrap .box .txt_wrap .btn_contact a:hover {
  opacity: 0.7;
}
.rct_content .recruitment_method .notes_list {
  margin-top: 19rem;
}

.link_area {
  margin-top: 60rem;
  text-align: center;
}
.link_area p + p {
  margin-top: 2em;
}

.under_page .under_mv {
  height: 200rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0b2e45, #104362, #1a5c85);
  margin-top: 100rem;
}
.under_page .under_mv .mv_ttl {
  font-size: 32rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.02em;
}

@media screen and (min-width: 681px) {
  .sp_block {
    display: none !important;
  }
}
@media screen and (max-width: 1279px) {
  html {
    font-size: 0.0781860829vw;
  }
}
@media screen and (max-width: 680px) {
  .sp_none {
    display: none !important;
  }
  html {
    font-size: 0.2666666667vw;
  }
  body {
    line-height: 1.6;
    font-size: 13rem;
  }
  img {
    width: 100%;
  }
  .inner {
    width: 335rem;
  }
  .s_inner {
    width: 335rem;
  }
  .mt_l {
    margin-top: 80rem;
  }
  .mt_m {
    margin-top: 40rem;
  }
  .mt_s {
    margin-top: 16rem;
  }
  .c_ttl_wrap .ttl {
    font-size: 28rem;
  }
  .c_ttl_wrap .ttl_small {
    font-size: 14rem;
  }
  .lang_btn {
    right: 62rem;
  }
  .lang_change {
    margin-left: auto;
  }
  .lang_change .select_lang_btn {
    padding-right: 18rem;
  }
  .lang_change .select_lang_btn img {
    width: 22rem;
  }
  .lang_change .select_lang_btn::after {
    width: 8rem;
    height: 8rem;
    margin-top: -1rem;
  }
  header .header_inner {
    padding: 0 15rem 0 10rem;
    height: 65rem;
    position: relative;
  }
  header .header_inner .sp_overlay {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(125, 181, 214, 0.85);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    transition: 0.5s;
  }
  header .header_inner .header_logo {
    width: 235rem;
  }
  header .header_inner .gnav_wrap {
    background-color: #fff;
    position: fixed;
    top: 0;
    right: 0;
    width: 325rem;
    height: 100%;
    margin-left: 0;
    border-radius: 0;
    display: block;
    padding: 65rem 32rem;
    box-shadow: none;
    transform: translateX(100%);
    z-index: 1;
  }
  header .header_inner .gnav_wrap nav ul {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 15rem;
  }
  header .header_inner .gnav_wrap nav ul li {
    width: 100%;
  }
  header .header_inner .gnav_wrap nav ul li a {
    padding: 14rem 5rem;
    font-size: 14rem;
    width: 100%;
    line-height: 1.4;
    border-bottom: 1px solid #104262;
    text-align: left;
  }
  header .header_inner .gnav_wrap nav ul li a::after {
    width: 14rem;
    height: 2px;
    top: 50%;
    bottom: auto;
    left: -20rem;
    transform: translateY(-50%);
  }
  header .header_inner .gnav_wrap nav ul li a::before {
    content: none !important;
  }
  header .header_inner .gnav_wrap .nav_contact a {
    width: 80%;
    height: 45rem;
    margin: 35rem auto 0;
    font-size: 14rem;
    padding-top: 0;
  }
  header .header_inner .gnav_wrap .nav_contact a::before {
    width: 20rem;
    top: 50%;
    left: 20rem;
    transform: translateY(-50%);
  }
  header .header_inner .icons {
    width: 30rem;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }
  header .header_inner .icons .hamburger {
    width: 30rem;
    height: 100%;
    background-color: transparent;
    border-color: transparent;
    padding: 0;
  }
  header .header_inner .icons .hamburger span {
    width: 100%;
    height: 1px;
    background-color: #000;
    position: relative;
    transition: ease 0.5s;
    display: block;
  }
  header .header_inner .icons .hamburger span + span {
    margin-top: 10rem;
  }
  header.open .header_inner .sp_overlay {
    pointer-events: all;
    opacity: 1;
  }
  header.open .header_inner .gnav_wrap {
    transform: translate(0);
  }
  header.open .header_inner .icons .hamburger span {
    margin-top: 0;
  }
  header.open .header_inner .icons .hamburger span:nth-child(1) {
    top: 0rem;
    transform: rotate(45deg);
  }
  header.open .header_inner .icons .hamburger span:nth-child(2) {
    display: none;
  }
  header.open .header_inner .icons .hamburger span:nth-child(3) {
    top: 0rem;
    transform: rotate(-45deg);
  }
  footer {
    margin-top: 80rem;
    padding-bottom: 70rem;
  }
  footer .f_inner .f_link {
    width: 100%;
    padding: 0 20rem;
  }
  footer .f_inner .f_link ul {
    gap: 15rem;
    justify-content: flex-end;
    font-size: 11rem;
  }
  footer .f_inner .company {
    font-size: 16rem;
    margin-top: 60rem;
  }
  footer .f_inner .info {
    margin-top: 28rem;
  }
  .mv {
    height: 580rem;
  }
  .mv::after {
    height: 375rem;
  }
  .mv .txt_wrap {
    bottom: 185rem;
  }
  .mv .txt_wrap .txt_main {
    font-size: 44rem;
    line-height: 1.4;
  }
  .mv .txt_wrap .txt_sub {
    font-size: 17rem;
    margin-top: 18rem;
  }
  .mv .btn_recruit a {
    padding: 15rem;
    width: 225rem;
    height: 115rem;
  }
  .mv .btn_recruit a::after {
    background: linear-gradient(to right, #2F0D0D 0%, rgba(47, 13, 13, 0.49) 40%, rgba(47, 13, 13, 0) 90%);
  }
  .mv .btn_recruit a .wrapper .ttl {
    font-size: 16rem;
  }
  .mv .btn_recruit a .wrapper .desc {
    font-size: 12rem;
    line-height: 1.6;
  }
  .mv .btn_recruit a .wrapper .ico_arrow {
    margin-top: 0;
    width: 15rem;
  }
  .aboutus_top {
    padding-top: 70rem;
  }
  .aboutus_top .bg {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: none;
  }
  .aboutus_top .bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .aboutus_top .content_inner .c_ttl_wrap {
    text-align: center;
  }
  .aboutus_top .content_inner .content_wrap {
    flex-direction: column;
    gap: 25rem;
  }
  .aboutus_top .content_inner .content_wrap .catch_txt {
    width: 100%;
    font-size: 21rem;
    text-align: center;
  }
  .aboutus_top .content_inner .content_wrap .box {
    width: 100%;
    padding: 20rem;
  }
  .aboutus_top .content_inner .content_wrap .box p {
    line-height: 2;
  }
  .aboutus_top .aboutus_image {
    width: 100%;
    margin-top: 50rem;
  }
  .company_top {
    padding-bottom: 40rem;
  }
  .company_top .content_inner .table_wrap {
    margin-top: 30rem;
  }
  .company_top .content_inner .table_wrap table tr th,
  .company_top .content_inner .table_wrap table tr td {
    padding: 0 16rem 12rem;
    text-align: left;
    display: block;
    width: 100%;
  }
  .company_top .content_inner .table_wrap table tr th {
    font-weight: 700;
    border-bottom: none;
    padding-bottom: 2rem;
    margin-top: 16rem;
  }
  .service_top {
    margin-top: 40rem;
  }
  .service_top .content_wrap {
    width: 100%;
    flex-direction: column;
    padding-right: 0;
    gap: 30rem;
    margin-top: 30rem;
  }
  .service_top .content_wrap .img_box {
    width: 100%;
    height: 230rem;
  }
  .service_top .content_wrap .txt_box {
    width: 90%;
    margin: 0 auto;
  }
  .service_top .content_wrap .txt_box .txt1 {
    margin-top: 10rem;
    font-size: 22rem;
  }
  .service_top .content_wrap .txt_box .txt2 {
    margin-top: 5rem;
    font-size: 14rem;
  }
  .service_top .content_wrap .txt_box .desc {
    margin-top: 22rem;
  }
  .service_top .content_wrap .txt_box .more {
    margin-top: 15rem;
  }
  .service_top .content_wrap + .content_wrap {
    margin-top: 60rem;
    padding-left: 0;
  }
  .service_top .content_wrap.reverse {
    flex-direction: column;
    padding-left: 0;
  }
  .service_top .content_wrap.sorano .txt_box .logo {
    width: 167rem;
  }
  .service_top .content_wrap.nexthotel .txt_box .logo {
    width: 217rem;
  }
  .service_top .content_wrap.berewery .txt_box .logo {
    width: 156rem;
  }
  .recruit_top {
    margin-top: 100rem;
  }
  .recruit_top .catch_area::after {
    background: linear-gradient(to right, rgba(47, 13, 13, 0.6) 1%, rgba(47, 13, 13, 0.6) 25%, rgba(47, 13, 13, 0) 100%);
  }
  .recruit_top .catch_area .bg {
    height: 610rem;
  }
  .recruit_top .catch_area .txt_wrap {
    padding: 0 20rem;
  }
  .recruit_top .catch_area .txt_wrap .c_ttl_wrap .ttl {
    font-size: 28rem;
  }
  .recruit_top .catch_area .txt_wrap .lead {
    font-size: 18rem;
    margin-top: 30rem;
    line-height: 1.8;
  }
  .recruit_top .catch_area .txt_wrap .desc {
    margin-top: 30rem;
    line-height: 2;
  }
  .rct_content .recruit-tab-button {
    font-size: 14rem;
    line-height: 1.4;
  }
  .rct_content .p-recruit__requirements-heading-text {
    font-size: 20rem;
  }
  .rct_content .recruit-tab-panels {
    padding-top: 40rem;
  }
  .rct_content .c-table__row th,
  .rct_content .c-table__row td {
    display: block;
    width: 100%;
    padding: 0 0 12rem;
    text-align: left;
  }
  .rct_content .c-table__row .c-table__heading {
    font-weight: 700;
    border-bottom: none;
    padding-bottom: 2rem;
    margin-top: 20rem;
  }
  .rct_content .c-table__row .c-table__desc {
    line-height: 1.8;
    margin-top: 6rem;
    border-bottom: 1px solid #AAAAAA;
  }
  .rct_content .p-recruit__requirements-content {
    gap: 80rem;
  }
  .rct_content .recruitment_method {
    margin-top: 80rem;
  }
  .rct_content .recruitment_method .ttl {
    font-size: 20rem;
  }
  .rct_content .p-recruit__requirements-block {
    gap: 0;
  }
  .rct_content .p-recruit__requirements-type-item-heading-sub {
    height: 24rem;
  }
  .rct_content .p-recruit__requirements-type-table {
    padding: 15rem 20rem;
  }
  .rct_content .recruitment_method .box_wrap {
    margin-top: 30rem;
    flex-direction: column;
    gap: 10rem;
  }
  .rct_content .recruitment_method .box_wrap .box {
    width: 100%;
    height: 210trm;
  }
  .rct_content .recruitment_method .box_wrap .box .txt_wrap .heading {
    font-size: 20rem;
  }
  .rct_content .recruitment_method .box_wrap .box .txt_wrap .btn_contact a {
    width: 250rem;
    height: 50rem;
    font-size: 14rem;
    margin-top: 20rem;
  }
  .under_page .under_mv {
    height: 150rem;
    margin-top: 65rem;
  }
  .under_page .under_mv .mv_ttl {
    font-size: 22rem;
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade_Blur {
  0% {
    opacity: 0;
    filter: blur(15rem);
  }
  100% {
    opacity: 1;
    filter: blur(0rem);
  }
}/*# sourceMappingURL=style.css.map */