@charset "UTF-8";
/* box-sizing: border-box;を設定 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* フォントサイズの拡大を防ぐ */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  word-break: break-word;
}

/* リストのスタイルを削除、これはデフォルトのスタイルが削除されることを示唆します */
ul,
ol {
  list-style: none;
}

/* 見出しやインタラクティブ要素のline-heightを設定 */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: inherit;
}

/* 見出しのテキスト折り返しをbalanceに設定 */
/* 画像の扱いを簡単にする */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

/* inputやbuttonなどのfontは継承 */
input,
button,
textarea,
select {
  font: inherit;
}

table {
  border-collapse: collapse;
}

body,
button,
input,
textarea {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

html,
body {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  min-height: 100vh;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 120px;
  overflow-y: scroll;
}

body {
  font-size: 16px;
  line-height: 1.6875;
  color: #383A3A;
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: relative;
}

body.no-scroll {
  overflow: hidden;
  max-height: 100vh;
}

:where(body, button, input, textarea, select) {
  color: #2F2B29;
  font-size: inherit;
  line-height: inherit;
}

label,
select,
input[type=checkbox],
input[type=radio],
button {
  cursor: pointer;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

.mb110 {
  margin-bottom: 110px;
}

.mb120 {
  margin-bottom: 120px;
}

.mb125 {
  margin-bottom: 125px;
}

.mb130 {
  margin-bottom: 130px;
}

.mb140 {
  margin-bottom: 140px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb160 {
  margin-bottom: 160px;
}

.mb170 {
  margin-bottom: 170px;
}

.mb180 {
  margin-bottom: 180px;
}

.mb190 {
  margin-bottom: 190px;
}

.mb200 {
  margin-bottom: 200px;
}

.centerBox {
  max-width: 1082px;
  margin-inline: auto;
  padding-inline: 25px;
}

html::-webkit-scrollbar {
  width: 12px;
}

html::-webkit-scrollbar-track {
  width: 12px;
  background-color: #eee;
}

html::-webkit-scrollbar-thumb {
  background-color: #ccc;
}
p {
  font-weight: 500;
}

/*-----------------------
        First view
------------------------*/
.fv {
  width: 100%;
  height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  flex-direction: column;
  margin-bottom: 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.fv.office {
  background-image: url(../images/fv_office_bg.png);
}
.fv.office .fv_title_en {
  width: 187px;
}
.fv.voice {
  background-image: url(../images/fv_voice_bg.png);
}
.fv.voice .fv_title_en {
  width: 170px;
}
.fv.requirement {
  background-image: url(../images/fv_requirement_bg.png);
}
.fv.requirement .fv_title_en {
  width: 83px;
}
.fv.entry {
  background-image: url(../images/fv_entry_bg.png);
}
.fv.entry .fv_title_en {
  width: 100px;
}
.fv .fv_title_en {
  display: block;
}
.fv .fv_title_jp {
  font-size: 42px;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  width: fit-content;
}

/*-----------------------
      Main outer
------------------------*/
.main_content {
  width: 100%;
  max-width: 1132px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 50px;
}
.main_content.news_main {
  position: relative;
  background-color: rgba(241, 237, 237, 0.5);
  padding: 120px 40px;
}
.main_content.news_main::before, .main_content.news_main::after {
  position: absolute;
  content: "";
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(241, 237, 237, 0.5);
}
.main_content.news_main::before {
  left: 100%;
}
.main_content.news_main::after {
  right: 100%;
}
.main_content.news_article {
  position: relative;
  background-color: rgba(241, 237, 237, 0.5);
  padding: 60px 64px 120px;
  border-radius: 25px;
}

/*-----------------------
      Common tags
------------------------*/
.bold {
  font-weight: bold;
}

.center {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.mq1200 {
  display: none;
}

.tb {
  display: none;
}

.sp {
  display: none;
}

.sp_not {
  display: block;
}

/*
.font{
  font-family: "Josefin Sans", serif;
  font-family: "Montserrat", sans-serif;
  font-family: 'BIZ UDPGothic', sans-serif;
  font-family: "Yu Gothic", sans-serif;
  font-family: 'DINBEK', sans-serif;
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Zen Kurenaido', sans-serif;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
*/
.header_height {
  width: 100%;
  height: 90px;
}

.header {
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: rgba(255, 255, 255, 0.4509803922);
}
.header.indexpage {
  background: linear-gradient(to bottom, rgba(52, 52, 52, 0.6117647059) 0%, rgba(83, 83, 83, 0.0549019608) 100%);
}

.header_inner {
  height: 100%;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_logo_flex {
  display: flex;
  justify-content: left;
  align-items: end;
  gap: 15px;
}

.header_logo {
  position: relative;
  z-index: 9999;
  width: 210px;
  height: 51px;
}

.header_logo_recruit {
  position: relative;
  width: 86px;
  height: 24px;
  line-height: 22px;
  border: solid 1px #343434;
  border-radius: 11px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  transition: background-color 0.3s;
}
.header_logo_recruit:hover {
  background-color: #f0f0f0;
}

.header_nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 53px;
}

.header_nav_li {
  font-size: 18px;
  font-weight: 500;
}
.header_nav_li.entry {
  width: 120px;
  height: 28px;
  border-radius: 13px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  background: linear-gradient(135deg, #FCAC51 0%, #FCAC51 30%, #E60012 70%, #E60012 100%);
  background-size: 200% auto;
  background-position: center;
  transition: background-position 0.3s;
  position: relative;
}
.header_nav_li.entry:hover {
  background-position: right 80% center;
}
.header_nav_li.entry::before {
  position: absolute;
  content: "";
  top: calc(50% - 2px);
  left: 26px;
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 3px;
}

#hamburger_area * {
  display: none;
}

/* Toggle Button */
.hamburger_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 24px;
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 999;
  cursor: pointer;
}

.hamburger_menu span {
  position: absolute;
  width: 100%;
  height: 3px;
  transition: 0.3s;
}
.hamburger_menu span:first-of-type {
  top: 0;
}
.hamburger_menu span:nth-of-type(2) {
  top: 50%;
}
.hamburger_menu span:last-of-type {
  top: 100%;
}

.hamburger_menu.active span:first-of-type {
  top: 50%;
  transform: rotate(225deg);
}
.hamburger_menu.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger_menu.active span:last-of-type {
  top: 50%;
  transform: rotate(-225deg);
}

#bar_color.hamburger_menu span {
  background-color: #444;
}

#bar_color.hamburger_menu.active span {
  background-color: #444;
}

.hbg_menu_text {
  font-size: 12px;
  color: #4D5878;
  position: absolute;
  top: 120%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

/* Slide Menu */
.slide_menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: right 0.3s ease-in-out;
  z-index: 99;
  transform: translateX(100%);
  transition: 0.3s;
}
.slide_menu .hbg_ul {
  list-style: none;
  height: fit-content;
  margin-top: 160px;
}
.slide_menu a {
  display: block;
  width: fit-content;
  text-decoration: none;
  /*color: #FFF9F3;*/
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  margin-left: 50px;
  margin-bottom: 38px;
  position: relative;
}
.slide_menu a::before {
  position: absolute;
  content: "";
  width: 10px;
  aspect-ratio: 1/1;
  top: calc(50% - 5px);
  left: -19px;
  background-color: #E60012;
  border-radius: 5px;
}

.slide_menu.active {
  transform: translateX(0);
  box-shadow: -2px 0 2px rgba(0, 0, 0, 0.2);
}

.footer {
  width: 100%;
  max-width: 1492px;
  margin-left: auto;
  margin-right: auto;
}

/*-----------------------
      Inquiry part
------------------------*/
.footer_entry_link_outer {
  width: 100%;
  padding: 0 16px;
}

.footer_entry_link {
  margin-top: 180px;
  display: block;
  width: 100%;
  max-width: 1428px;
  aspect-ratio: 1428/377;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  background-image: url(../images/entry_link.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 21px;
  position: relative;
}
.footer_entry_link.top {
  display: none;
}
.footer_entry_link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: inherit;
  transition: background-color 0.3s;
  z-index: 2;
}
.footer_entry_link:hover::after {
  background-color: rgba(255, 255, 255, 0.062745098);
}
.footer_entry_link:hover .footer_entry_link_arrow {
  animation: fbtnArrowSlide 0.3s ease-out forwards;
}

.footer_entry_link_arrow {
  position: absolute;
  display: block;
  width: 15%;
  top: 50%;
  transform: translateX(0);
  right: 3.8%;
  transition: transform 0.5s;
  z-index: 3;
}

@keyframes fbtnArrowSlide {
  0% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0);
  }
}
/*-----------------------
      Footer part
------------------------*/
.footer_main {
  margin-top: 60px;
  width: 100%;
  padding: 0 50px 50px;
}

.title_flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer_logo {
  width: 510px;
}

.footer_nav {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 60px;
}

.address_flex {
  display: flex;
  justify-content: left;
  align-items: flex-end;
  gap: 17px;
}

.footer_address_map {
  width: 123px;
  height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 10px;
  padding-right: 15px;
  border: solid 1px #000;
  border-radius: 10px;
  transition: background-color 0.3s;
}
.footer_address_map:hover {
  background-color: #d4d4d4;
}
.footer_address_map .footer_map_text {
  font-size: 14px;
}

.footer_nav_ex {
  width: fit-content;
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 25px;
}

.footer_nav_ex_li_1 {
  width: 150px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  color: #E60012;
  border-radius: 8px;
  background-color: #fff;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: background-color 0.3s;
  border: solid 1px #E60012;
}
.footer_nav_ex_li_1:hover {
  background-color: #f0d3d6;
}

.footer_nav_ex_li_2 {
  width: 150px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  color: #fff;
  border-radius: 8px;
  background-color: #E60012;
  font-size: 16px;
  padding-left: 24px;
  position: relative;
  transition: background-color 0.3s;
}
.footer_nav_ex_li_2:hover {
  background-color: #f32b3c;
}
.footer_nav_ex_li_2::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
  left: 18px;
  background-image: url(../images/icon_letter.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.footer_link {
  display: block;
  font-size: 15px;
  width: fit-content;
  position: relative;
  margin-bottom: 10px;
}
.footer_link:hover::after {
  background-color: inherit;
}
.footer_link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #343434;
}
@media (max-width: 1200px){
  .fv {
    height: 320px;
  }
  .main_content {
    padding: 0 30px;
  }
  .mq1200 {
    display: block;
  }
  .header_nav {
    gap: 20px;
  }
  .footer_logo {
    width: 420px;
  }
  .footer_nav {
    gap: 30px;
  }
}
@media (max-width: 960px){
  .mb25 {
    margin-bottom: 15px;
  }
  .mb30 {
    margin-bottom: 20px;
  }
  .mb35 {
    margin-bottom: 25px;
  }
  .mb40 {
    margin-bottom: 25px;
  }
  .mb45 {
    margin-bottom: 35px;
  }
  .mb50 {
    margin-bottom: 30px;
  }
  .mb55 {
    margin-bottom: 30px;
  }
  .mb60 {
    margin-bottom: 30px;
  }
  .mb65 {
    margin-bottom: 35px;
  }
  .mb70 {
    margin-bottom: 35px;
  }
  .mb75 {
    margin-bottom: 35px;
  }
  .mb80 {
    margin-bottom: 40px;
  }
  .mb85 {
    margin-bottom: 40px;
  }
  .mb90 {
    margin-bottom: 45px;
  }
  .mb95 {
    margin-bottom: 50px;
  }
  .mb100 {
    margin-bottom: 50px;
  }
  .mb110 {
    margin-bottom: 55px;
  }
  .mb120 {
    margin-bottom: 60px;
  }
  .mb125 {
    margin-bottom: 65px;
  }
  .mb130 {
    margin-bottom: 60px;
  }
  .mb140 {
    margin-bottom: 60px;
  }
  .mb150 {
    margin-bottom: 60px;
  }
  .mb160 {
    margin-bottom: 70px;
  }
  .mb170 {
    margin-bottom: 70px;
  }
  .mb180 {
    margin-bottom: 70px;
  }
  .mb190 {
    margin-bottom: 70px;
  }
  .mb200 {
    margin-bottom: 70px;
  }
  .fv {
    height: 280px;
  }
  .main_content.news_main {
    padding: 80px 20px;
  }
  .main_content.news_article {
    padding: 60px 40px 100px;
  }
  .tb {
    display: block;
  }
  .header_height {
    height: 80px;
  }
  .header {
    height: 80px;
  }
  .header_inner {
    padding: 0 20px;
  }
  .header_nav {
    display: none;
  }
  .header_nav_li {
    font-size: 16px;
  }
  #hamburger_area * {
    display: block;
  }
  .footer_logo {
    width: 300px;
  }
  .footer_nav {
    gap: 20px;
  }
}
@media (max-width: 767px){
  body {
    font-size: 14px;
    text-align: justify;
  }
  .fv {
    height: 180px;
    gap: 0;
    margin-bottom: 80px;
  }
  .fv .fv_title_en {
    transform: scale(0.8);
  }
  .fv .fv_title_jp {
    font-size: 34px;
  }
  .main_content {
    padding: 0 20px;
  }
  .main_content.news_main {
    padding: 60px 20px;
  }
  .main_content.news_article {
    padding: 40px 20px 80px;
  }
  .sp {
    display: block;
  }
  .sp_not {
    display: none;
  }
  .header_logo {
    width: 180px;
    height: 44px;
  }
  .header_logo_recruit {
    width: 70px;
  }
  .hamburger_menu {
    top: 20px;
    right: 22px;
  }
  .footer_entry_link {
    margin-top: 90px;
    border-radius: 12px;
    aspect-ratio: 1428/550;
    background-position: left center;
  }
  .footer_entry_link .footer_entry_link_arrow {
    width: 80px;
  }
  .footer_main {
    padding: 0 20px 50px;
  }
  .footer_nav {
    display: none;
  }
  .address_flex {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
  .footer_nav_ex {
    gap: 16px;
  }
  .footer_nav_ex_li_1 {
    height: 42px;
    line-height: 42px;
  }
  .footer_nav_ex_li_2 {
    height: 42px;
    line-height: 42px;
  }
  .footer_link {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
@media print{
  body {
    width: 960px;
    margin: 0 auto;
  }
}