@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
figure,
figcaption,
blockquote,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img,
picture {
  width: 100%;
  display: block;
  border: 0;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
input[type=submit],
input[type=button],
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  border: none;
  background-color: transparent;
}

* {
  margin: 0;
  padding: 0;
}

/* フォント設定 */
@font-face {
  font-family: font_Light;
  src: url(../font/AP-OTF-A1GothicStd-Light.otf);
}
@font-face {
  font-family: font_Medium;
  src: url(../font/AP-OTF-A1GothicStd-Medium.otf);
}
@font-face {
  font-family: font_Regular;
  src: url(../font/AP-OTF-A1GothicStd-Regular.otf);
}
@font-face {
  font-family: font_Bold;
  src: url(../font/AP-OTF-A1GothicStd-Bold.otf);
}
/* Sass変数 */
.f_cl_gr {
  color: #016D33;
}

.f_fam_bold {
  font-family: font_Bold;
}

.f_fam_medium {
  font-family: font_Medium;
}

.f_fam_regular {
  font-family: font_Regular;
}

.f_fam_light {
  font-family: font_Light;
}

.sec_ttl {
  width: 100%;
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 992px) {
  .sec_ttl {
    margin-bottom: 50px;
  }
}
.sec_ttl h2 {
  font-size: 50px;
  line-height: 40px;
  font-family: font_Bold;
  font-weight: normal;
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .sec_ttl h2 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 10px;
  }
}
.sec_ttl p {
  font-size: 30px;
  line-height: 30px;
  font-family: font_Medium;
}
@media screen and (max-width: 992px) {
  .sec_ttl p {
    font-size: 20px;
    line-height: 25px;
  }
}

header {
  width: 100%;
  height: 54px;
  position: fixed;
  z-index: 100;
  padding-top: 50px;
  opacity: 1;
  transition: all 0.5s;
  visibility: visible;
}
header.dont_scroll {
  opacity: 0;
  visibility: hidden;
}
header:hover {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 992px) {
  header {
    background-color: #016D33;
    padding: 0;
    height: 60px;
  }
}
header .header_content {
  width: 85%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  overflow: visible;
  /* .header_logo */
  /* ハンバーガーメニューボタン */
  /* ハンバーガーメニューボタン */
  /* 薄い黒バック */
  /**/
}
header .header_content .header_logo {
  align-self: center;
}
header .header_content .header_logo a img {
  width: clamp(65px, 6.5vw, 70px);
}
@media screen and (max-width: 992px) {
  header .header_content .header_logo a img {
    width: 90px;
  }
}
header .header_content .header_menu_pc {
  width: clamp(650px,50%,1000px);
}
header .header_content .header_menu_pc ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
header .header_content .header_menu_pc ul li {
  font-size: clamp(23px, 2.2vw, 26px);
  line-height: 76px;
  font-family: font_Medium;
  /* 通常の色(薄いグレー) */
}
header .header_content .header_menu_pc ul li a {
  color: rgb(220, 220, 220);
  /* 現在いるページの色(メインカラー緑) */
  /* ホバー時の色(濃いグレー) */
}
header .header_content .header_menu_pc ul li a.is-active {
  color: #016D33;
}
header .header_content .header_menu_pc ul li a:hover {
  color: rgb(170, 170, 170);
}
header .header_content .header_followbar_pc {
  position: fixed;
  top: 20%;
  left: 50px;
  width: 50px;
  height: 450px;
}
header .header_content .header_followbar_pc ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
header .header_content .header_followbar_pc ul li {
  width: 45px;
}
header .header_content .header_followbar_pc ul li a {
  display: block;
  width: 100%;
}
header .header_content .header_followbar_pc ul li a img {
  width: 100%;
}
header .header_content .header_followbar_pc ul li:first-of-type {
  position: relative;
  left: 12px;
}
header .header_content .header_followbar_pc ul li:first-of-type img {
  width: auto;
  height: 200px;
}
header .header_content .hamburgerBtn {
  width: 50px;
  height: 60px;
  position: relative;
  z-index: 102;
  /* ハンバーガーメニューボタン変化エリア */
  /* ハンバーガーメニューボタン変化エリア */
}
header .header_content .hamburgerBtn .hamburgerBtn_TransArea {
  width: 40%;
  height: 40px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .header_content .hamburgerBtn .hamburgerBtn_TransArea:hover {
  cursor: pointer;
}
header .header_content .hamburgerBtn .hamburgerBtn_TransArea span {
  display: block;
  content: "";
  width: 30px;
  height: 2px;
  background-color: #fff;
  margin: 0 auto;
  transition: all 0.5s;
}
header .header_content .hamburgerBtn .hamburgerBtn_TransArea span:nth-of-type(1) {
  position: absolute;
  top: 15px;
  transform: rotate(0);
}
header .header_content .hamburgerBtn .hamburgerBtn_TransArea span:nth-of-type(2) {
  position: absolute;
  top: 25px;
  transform: rotate(0);
}
header .header_content .hamburgerBtn .hamburgerBtn_TransArea.is-active {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .header_content .hamburgerBtn .hamburgerBtn_TransArea.is-active span:nth-of-type(1) {
  transform: rotate(45deg) translateY(7px);
}
header .header_content .hamburgerBtn .hamburgerBtn_TransArea.is-active span:nth-of-type(2) {
  transform: rotate(-45deg) translateY(-7px);
}
header .header_content .hamburgerMenu_back {
  display: none;
}
header .header_content .hamburgerMenu_back.is-active {
  display: block;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 100;
  right: 0;
}
header .header_content .hamburgerMenu {
  width: 350px;
  height: 100vh;
  background-color: #016D33;
  position: fixed;
  z-index: 101;
  right: -350px;
  transition: all 0.5s;
}
header .header_content .hamburgerMenu.is-active {
  right: 0;
}
header .header_content .hamburgerMenu .hamburgerMenu_content {
  width: 80%;
  margin: 0 auto;
}
header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 100px;
}
header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li + li {
  padding-top: 10px;
  border-top: 1px solid #fff;
  margin-top: 10px;
}
header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li {
  font-family: font_Medium;
}
header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li a {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-size: 18px;
  padding: 10px 0;
}
header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenuList li a img {
  width: 8px;
  align-self: center;
}
header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenu_Contact {
  width: clamp(150px,60%,200px);
  margin: 100px auto 0;
  display: flex;
  flex-direction: column;
}
header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenu_Contact h2 img {
  width: 100%;
}
header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenu_Contact ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenu_Contact ul li {
  width: 100%;
  display: flex;
}
header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenu_Contact ul li a {
  display: block;
  width: 60%;
}
header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenu_Contact ul li a img {
  width: 100%;
}
header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenu_Contact ul li:nth-of-type(1) a {
  margin-right: auto;
}
header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenu_Contact ul li:nth-of-type(2) a {
  margin: 0 auto;
}
header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenu_Contact ul li:nth-of-type(3) a {
  margin-left: auto;
}

footer {
  width: 100%;
  margin-top: 292px;
  background-image: url(../img/common/footer/footer.png);
  background-size: cover;
}
@media screen and (max-width: 992px) {
  footer {
    background-image: url(../img/common/footer/sp_footer.png);
  }
}
footer .footer_content {
  width: 85%;
  height: 400px;
  padding-top: 150px;
  border-bottom: 1px solid #fff;
  margin: 0px auto 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
}
@media screen and (max-width: 992px) {
  footer .footer_content {
    height: 650px;
    padding-bottom: 40px;
  }
}
footer .footer_content h2 {
  width: 40%;
  margin-bottom: 20px;
}
footer .footer_content h2 img {
  width: 140px;
}
@media screen and (max-width: 992px) {
  footer .footer_content h2 {
    width: clamp(120px, 40%, 150px);
    margin: 0 auto 60px;
    order: 1;
  }
  footer .footer_content h2 img {
    width: 100%;
  }
}
footer .footer_content .fotter_address {
  width: 40%;
  margin-bottom: 60px;
  font-size: 20px;
  color: #fff;
  line-height: 25px;
  font-family: font_Medium;
}
@media screen and (max-width: 992px) {
  footer .footer_content .fotter_address {
    order: 3;
    width: 81%;
    margin: 0 auto 30px;
    text-align: center;
    height: auto;
    font-size: 17px;
  }
}
footer .footer_content .footer_contact {
  position: relative;
  top: -30px;
  width: 175px;
  height: 20%;
  display: flex;
  justify-content: space-between;
}
footer .footer_content .footer_contact li {
  width: clamp(30px,2.5vw,35px);
}
footer .footer_content .footer_contact li a {
  display: block;
  width: 100%;
}
footer .footer_content .footer_contact li a img {
  width: 35px;
}
@media screen and (max-width: 992px) {
  footer .footer_content .footer_contact {
    order: 2;
    width: clamp(150px, 45%, 170px);
    margin: 0 auto;
    height: auto;
  }
  footer .footer_content .footer_contact li {
    width: 40px;
  }
}
footer .footer_content .fotter_menu {
  width: clamp(550px,50%,1000px);
  height: 100%;
  display: flex;
  flex-direction: row;
}
footer .footer_content .fotter_menu li {
  width: 25%;
  font-size: 17px;
  text-align: center;
  font-family: font_Medium;
}
footer .footer_content .fotter_menu li a {
  color: #fff;
}
@media screen and (max-width: 992px) {
  footer .footer_content .fotter_menu {
    order: 4;
    width: 90%;
    height: auto;
    margin: 0 auto;
    flex-direction: column;
  }
  footer .footer_content .fotter_menu li {
    width: 100%;
    padding: 20px 0;
  }
  footer .footer_content .fotter_menu li a {
    display: flex;
    justify-content: space-between;
  }
  footer .footer_content .fotter_menu li a img {
    width: 8px;
    align-self: center;
  }
}
footer .copyright {
  width: 85%;
  padding-bottom: 80px;
  margin: 0 auto;
  color: #fff;
  font-size: 20px;
  font-family: font_Medium;
}
@media screen and (max-width: 992px) {
  footer .copyright {
    text-align: center;
    font-size: 15px;
  }
}

body {
  width: 100%;
  /**/
  /* contain */
  /* contain */
}
body .loading {
  width: 100%;
  height: 100vh;
  background-color: #016D33;
  position: fixed;
  z-index: 999;
  /* 初回のローディング以外は非表示 */
  /* .loading_content */
  /* 待機中のX */
}
body .loading.hidden {
  opacity: 0;
  visibility: hidden;
}
body .loading .loading_content {
  width: auto;
  font-size: 40px;
  font-family: font_Medium;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: bold;
  display: flex;
  opacity: 1;
  /* loading JIMA */
  /* JIMAXの最後のフェードイン"X" */
}
body .loading .loading_content .slidefade_text {
  display: block;
  color: transparent;
  letter-spacing: 5px;
  line-height: 1.4;
  -webkit-background-clip: text;
          background-clip: text;
  background-size: 300% 300%;
}
body .loading .loading_content .character1_fadein_text {
  display: block;
  letter-spacing: -3px;
  line-height: 1.4;
  -webkit-background-clip: text;
          background-clip: text;
  background-size: 300% 300%;
  overflow: hidden;
  display: flex;
}
body .loading .loading_content .character1_fadein_text div {
  overflow: hidden;
  letter-spacing: 5px;
}
body .loading .loading_content .character1_fadein_text div span {
  display: inline-block;
  -webkit-background-clip: text;
          background-clip: text;
  background-size: 300% 300%;
  background-position: left 100% center; /* 背景を右に隠しておく */
  color: transparent; /* 背景だけ表示するために文字は透明に */
}
body .loading .loading_content .loading_content_wait {
  opacity: 0;
  position: absolute;
  left: 45%;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.4;
}
body .loading .loading_content .loading_fin_logo {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
}
body .contain {
  width: 100%;
  opacity: 0;
  /* main */
  /* main */
}
body .contain main {
  /**/
  /**/
  /* Abou Us */
  /* Abou Us */
}
body .contain main .vidual_Area {
  width: 100%;
  height: 100vh;
  background-image: url(../img/top/mv_pc.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-position: 0 -100px;
}
@media screen and (max-width: 992px) {
  body .contain main .vidual_Area {
    background-image: url(../img/top/スクリーンショット\ 2025-03-23\ 16.10.43.png);
  }
}
body .contain main .vidual_Area .vidual_Area_cotent {
  position: absolute;
  top: 75%;
  left: 7.5%;
}
body .contain main .vidual_Area .vidual_Area_cotent h2 {
  color: #fff;
  font-family: font_Medium;
  font-weight: normal;
  font-size: 60px;
  line-height: 75px;
  opacity: 0;
  transform: translateY(30px);
}
body .contain main .vidual_Area .vidual_Area_cotent h2.is-active {
  opacity: 1;
  transform: translateY(-20px);
  transition: all 1s;
}
body .contain main .vidual_Area .vidual_Area_cotent p {
  color: #fff;
  font-size: 28px;
  line-height: 30px;
  opacity: 0;
  transform: translateY(30px);
  font-family: font_Medium;
}
body .contain main .vidual_Area .vidual_Area_cotent p.is-active {
  opacity: 1;
  transform: translateY(0px);
  transition: all 1s;
}
@media screen and (max-width: 992px) {
  body .contain main .vidual_Area .vidual_Area_cotent {
    top: clamp(380px, 58%, 535px);
  }
  body .contain main .vidual_Area .vidual_Area_cotent h2 {
    font-size: clamp(33px, 10vw,40px);
    line-height: 48px;
  }
  body .contain main .vidual_Area .vidual_Area_cotent p {
    font-size: 20px;
    line-height: 28px;
  }
}
body .contain main .WhatsNew {
  width: 100%;
}
body .contain main .WhatsNew .WhatsNew_Content {
  width: 85%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 992px) {
  body .contain main .WhatsNew .WhatsNew_Content {
    width: 90%;
  }
}
body .contain main .WhatsNew .WhatsNew_Content .WhatsNew_Ttl {
  margin-top: 150px;
  text-align: initial;
}
@media screen and (max-width: 992px) {
  body .contain main .WhatsNew .WhatsNew_Content .WhatsNew_Ttl {
    margin-bottom: 0px;
    margin-top: 0px;
  }
}
body .contain main .WhatsNew .WhatsNew_Content .WhatsNew_Ttl h2 {
  /* "-"を擬似要素で */
}
body .contain main .WhatsNew .WhatsNew_Content .WhatsNew_Ttl h2 .ttl_line {
  display: inline-block;
  content: "";
  width: 30px;
  height: 3px;
  background-color: #016D33;
  vertical-align: middle;
}
body .contain main .WhatsNew .WhatsNew_Content .NewsArchieve_Contain {
  width: 90%;
  margin: 0 auto 200px;
  position: relative;
}
@media screen and (max-width: 992px) {
  body .contain main .WhatsNew .WhatsNew_Content .NewsArchieve_Contain {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  body .contain main .WhatsNew .WhatsNew_Content .NewsArchieve_Contain {
    margin: 50px auto 150px;
  }
}
body .contain main .WhatsNew .WhatsNew_Content .NewsArchieve_Contain .ArchieveBack {
  position: absolute;
  content: "";
  display: block;
  background-color: #016D33;
  width: 100%;
  top: 30px;
  left: -30px;
  z-index: -1;
}
@media screen and (max-width: 992px) {
  body .contain main .WhatsNew .WhatsNew_Content .NewsArchieve_Contain .ArchieveBack {
    top: 10px;
    left: -10px;
  }
}
body .contain main .WhatsNew .WhatsNew_Content .NewsArchieve_Contain .NewsArchieve {
  padding: 100px;
  width: 100%;
  background-color: rgb(234, 234, 234);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 992px) {
  body .contain main .WhatsNew .WhatsNew_Content .NewsArchieve_Contain .NewsArchieve {
    padding: 40px 15px;
  }
}
body .contain main .WhatsNew .WhatsNew_Content .NewsArchieve_Contain .NewsArchieve li {
  width: 90%;
  margin: 0 auto;
  color: #016D33;
  font-family: font_Medium;
  display: flex;
}
body .contain main .WhatsNew .WhatsNew_Content .NewsArchieve_Contain .NewsArchieve li time {
  font-size: 18px;
  line-height: 25px;
  margin-right: 50px;
}
@media screen and (max-width: 992px) {
  body .contain main .WhatsNew .WhatsNew_Content .NewsArchieve_Contain .NewsArchieve li time {
    font-size: 15px;
    line-height: 20px;
    margin-right: 40px;
  }
}
body .contain main .WhatsNew .WhatsNew_Content .NewsArchieve_Contain .NewsArchieve li a {
  font-size: 18px;
  line-height: 25px;
  color: #016D33;
}
@media screen and (max-width: 992px) {
  body .contain main .WhatsNew .WhatsNew_Content .NewsArchieve_Contain .NewsArchieve li a {
    font-size: 15px;
    line-height: 20px;
  }
}
body .contain main .WhatsNew .WhatsNew_Content .NewsArchieve_Contain .NewsArchieve li a span {
  color: red;
  font-size: 18px;
  line-height: 25px;
  margin-right: 10px;
}
@media screen and (max-width: 992px) {
  body .contain main .WhatsNew .WhatsNew_Content .NewsArchieve_Contain .NewsArchieve li a span {
    font-size: 15px;
    line-height: 20px;
  }
}
body .contain main .WhatsNew .WhatsNew_Content .NewsArchieve_Contain .NewsArchieve li a:hover {
  color: rgb(170, 170, 170);
}
body .contain main .WhatsNew .WhatsNew_Content .NewsArchieve_Contain .NewsArchieve li + li {
  padding-top: 25px;
  border-top: 1px solid #016D33;
  margin-top: 25px;
}
body .contain main .About_Us {
  width: 100%;
  margin-bottom: 700px;
}
@media screen and (max-width: 992px) {
  body .contain main .About_Us {
    margin-bottom: 550px;
  }
}
body .contain main .About_Us .About_Us_Content {
  width: 85%;
  margin: 0 auto;
  position: relative;
}
body .contain main .About_Us .About_Us_Content .About_Us_Ttl {
  margin-top: 50px;
  text-align: initial;
}
@media screen and (max-width: 992px) {
  body .contain main .About_Us .About_Us_Content .About_Us_Ttl {
    margin-bottom: 0px;
  }
}
body .contain main .About_Us .About_Us_Content .About_Us_Ttl h2 {
  /* "-"を擬似要素で */
}
body .contain main .About_Us .About_Us_Content .About_Us_Ttl h2 .ttl_line {
  display: inline-block;
  content: "";
  width: 30px;
  height: 3px;
  background-color: #016D33;
  vertical-align: middle;
}
body .contain main .About_Us .About_Us_Content .see_more {
  position: absolute;
  top: 50%;
  right: 10%;
  font-size: 20px;
  padding-bottom: 3px;
  border-bottom: 1px solid #016D33;
  font-family: font_Medium;
}
body .contain main .About_Us .About_Us_Content .see_more:hover {
  border-bottom: 1px solid rgb(170, 170, 170);
}
body .contain main .About_Us .About_Us_Content .see_more:hover a {
  color: rgb(170, 170, 170);
}
@media screen and (max-width: 992px) {
  body .contain main .About_Us .About_Us_Content .see_more.mb {
    position: absolute;
    top: clamp(370px, 90vw, 550px);
    right: 0%;
    font-size: 16px;
    display: inline;
  }
  body .contain main .About_Us .About_Us_Content .see_more.mb a {
    color: #016D33;
  }
}
body .contain main .About_Us .About_Us_Content .BusinessAchievement_Slider {
  width: 100vw !important;
  margin-top: 80px;
  margin: 60px auto 0px;
  position: absolute;
  left: -8.8%;
}
@media screen and (max-width: 992px) {
  body .contain main .About_Us .About_Us_Content .BusinessAchievement_Slider {
    margin: 40px auto 0px;
  }
}
body .contain main .About_Us .About_Us_Content .BusinessAchievement_Slider .BusinessAchievementList_Slider_Slick {
  width: 100%;
}
body .contain main .About_Us .About_Us_Content .BusinessAchievement_Slider .BusinessAchievementList_Slider_Slick .slick-track {
  display: flex;
}
body .contain main .About_Us .About_Us_Content .BusinessAchievement_Slider .BusinessAchievementList_Slider_Slick .slick-slide {
  height: auto !important;
}
body .contain main .About_Us .About_Us_Content .BusinessAchievement_Slider .BusinessAchievementList_Slider_Slick .slick-prev, body .contain main .About_Us .About_Us_Content .BusinessAchievement_Slider .BusinessAchievementList_Slider_Slick .slick-next, body .contain main .About_Us .About_Us_Content .BusinessAchievement_Slider .BusinessAchievementList_Slider_Slick .slick-arrow {
  display: none;
}
@media screen and (max-width: 992px) {
  body .contain main .About_Us .About_Us_Content .BusinessAchievement_Slider .BusinessAchievementList_Slider_Slick .slick-prev, body .contain main .About_Us .About_Us_Content .BusinessAchievement_Slider .BusinessAchievementList_Slider_Slick .slick-next, body .contain main .About_Us .About_Us_Content .BusinessAchievement_Slider .BusinessAchievementList_Slider_Slick .slick-arrow {
    display: block;
  }
}
@media screen and (max-width: 992px) {
  body .contain main .About_Us .About_Us_Content .BusinessAchievement_Slider .BusinessAchievementList_Slider_Slick .slick-arrow {
    display: block;
    width: 20px;
  }
  body .contain main .About_Us .About_Us_Content .BusinessAchievement_Slider .BusinessAchievementList_Slider_Slick .slick-prev {
    position: absolute;
    top: 44%;
    left: 7%;
    z-index: 100;
  }
  body .contain main .About_Us .About_Us_Content .BusinessAchievement_Slider .BusinessAchievementList_Slider_Slick .slick-next {
    position: absolute;
    top: 43%;
    right: 7%;
    z-index: 100;
  }
}
body .contain main .About_Us .About_Us_Content .BusinessAchievement_Slider .BusinessAchievementList_Slider_Slick .BusinessAchievementList {
  background-color: rgb(244, 242, 242);
  overflow: hidden;
  margin: 0 20px;
  position: relative;
  transform: scale(0.97);
  transition: all 0.3s;
}
body .contain main .About_Us .About_Us_Content .BusinessAchievement_Slider .BusinessAchievementList_Slider_Slick .BusinessAchievementList.slick-center {
  box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.6);
}
body .contain main .About_Us .About_Us_Content .BusinessAchievement_Slider .BusinessAchievementList_Slider_Slick .BusinessAchievementList > img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ------------------------------------------------
共通
------------------------------------------------ */
/* Sass変数 */
/* -- 共通スタイル -- */
.pc {
  display: none;
}
@media screen and (min-width: 992px) {
  .pc {
    display: block;
  }
}

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

/* アニメーション */
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 0.5;
    transform: translateX(0px);
  }
}
.fadeRightTrigger {
  opacity: 0;
}

.fadeRight {
  animation: fadeRightAnime 0.7s linear forwards;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation: fadeUpAnime 1s linear forwards;
}

@keyframes CONTAIN_APPER {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.contain.is-active {
  animation: CONTAIN_APPER 2s linear forwards;
}

@keyframes LOADING_HIDDEN {
  0% {
    opacity: 1;
    visibility: visible;
    background: none;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.loading_hidden {
  animation: LOADING_HIDDEN 1s linear forwards;
}

@keyframes LOADING_FIN_IMG {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.logo_appear {
  animation: LOADING_FIN_IMG 0.7s linear forwards;
}

@keyframes JIMA_toRight {
  0% {
    background-position: left 100% center;
    opacity: 1;
  }
  100% {
    background-position: left -200% center;
    opacity: 0;
  }
}
.to__right {
  background-image: linear-gradient(#fff 50%, #016D33); /* 背景のグラデーション */
  background-position: left 100% center;
  animation: JIMA_toRight 0.5s linear forwards;
}

@keyframes LOADING_BACKCOLOR_TRANS {
  from {
    background-color: #016D33;
  }
  to {
    background-color: #fff;
  }
}
.backcolor_gradation {
  animation: LOADING_BACKCOLOR_TRANS 0.8s linear forwards;
}

@keyframes glow_anime_on {
  0% {
    opacity: 0.2;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
  50% {
    opacity: 0.8;
    text-shadow: 0 0 10px #fff, 0 0 15px #fff;
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
}
.shine {
  animation: glow_anime_on 1.5s ease-out forwards;
  animation-delay: 1s;
}

@keyframes load_wait_anime {
  0% {
    opacity: 1;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 0 #fff, 0 0 0 #fff;
  }
}
.load_wait {
  animation: load_wait_anime 2s ease-out infinite;
}

body {
  color: #3C3232;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 17px;
  font-size: 0.75rem;
}
body.is-fixed {
  overflow: hidden;
}

body {
  width: 100%;
  /* main */
  /* main */
}
body main {
  /* Top_Message */
  /* Top_Message */
  /* Business_details */
  /* Business_details */
  /* Company_Overview */
  /* Company_Overview */
}
body main .LowerLayer_vidual_Area {
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 991px) {
  body main .LowerLayer_vidual_Area {
    width: 90%;
  }
}
body main .LowerLayer_vidual_Area .vidual_Area_cotent {
  width: 92%;
  padding-top: 250px;
  margin-left: auto;
  display: flex;
}
@media screen and (max-width: 991px) {
  body main .LowerLayer_vidual_Area .vidual_Area_cotent {
    flex-direction: column;
    width: 100%;
    padding-top: 150px;
    margin: auto;
  }
}
body main .LowerLayer_vidual_Area .vidual_Area_cotent .vidual_Area_text {
  width: 40%;
  align-self: anchor-center;
}
@media screen and (max-width: 991px) {
  body main .LowerLayer_vidual_Area .vidual_Area_cotent .vidual_Area_text {
    width: 100%;
    margin-left: 30px;
    margin-bottom: 40px;
  }
}
body main .LowerLayer_vidual_Area .vidual_Area_cotent .vidual_Area_text h2 {
  font-size: 70px;
  line-height: 85px;
  font-family: font_Bold;
  font-weight: normal;
}
@media screen and (max-width: 991px) {
  body main .LowerLayer_vidual_Area .vidual_Area_cotent .vidual_Area_text h2 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 10px;
  }
}
body main .LowerLayer_vidual_Area .vidual_Area_cotent .vidual_Area_text p {
  font-size: 38px;
  line-height: 40px;
  font-family: font_Medium;
}
@media screen and (max-width: 991px) {
  body main .LowerLayer_vidual_Area .vidual_Area_cotent .vidual_Area_text p {
    font-size: 20px;
    line-height: 25px;
  }
}
body main .LowerLayer_vidual_Area .vidual_Area_cotent .vidual_Area_img {
  width: 60%;
  height: 300px;
  overflow: hidden;
}
body main .LowerLayer_vidual_Area .vidual_Area_cotent .vidual_Area_img img {
  position: relative;
  top: -130px;
}
@media screen and (max-width: 991px) {
  body main .LowerLayer_vidual_Area .vidual_Area_cotent .vidual_Area_img {
    width: 100%;
  }
  body main .LowerLayer_vidual_Area .vidual_Area_cotent .vidual_Area_img img {
    top: 0;
  }
}
body main .Top_Message {
  width: 100%;
}
body main .Top_Message .Top_Message_container {
  width: clamp(930px,80%,1300px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 991px) {
  body main .Top_Message .Top_Message_container {
    width: 90%;
  }
}
body main .Top_Message .Top_Message_container .Top_Message_Ttl {
  width: 100%;
  text-align: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 991px) {
  body main .Top_Message .Top_Message_container .Top_Message_Ttl {
    margin-bottom: 50px;
  }
}
body main .Top_Message .Top_Message_container .Top_Message_cotent {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
body main .Top_Message .Top_Message_container .Top_Message_cotent .ArchieveBack_2 {
  position: absolute;
  content: "";
  display: block;
  background-color: #016D33;
  width: 100%;
  top: 30px;
  left: -30px;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  body main .Top_Message .Top_Message_container .Top_Message_cotent .ArchieveBack_2 {
    top: 10px;
    left: -10px;
  }
}
body main .Top_Message .Top_Message_container .Top_Message_cotent .Top_Message_cotent_Area {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 120px 0;
  background-color: rgb(234, 234, 234);
}
@media screen and (max-width: 991px) {
  body main .Top_Message .Top_Message_container .Top_Message_cotent .Top_Message_cotent_Area {
    padding: 30px 0;
  }
}
body main .Top_Message .Top_Message_container .Top_Message_cotent .Top_Message_cotent_Area h2 {
  width: 100%;
  margin: 0 auto 50px;
  text-align: center;
  font-size: 30px;
  font-family: font_Medium;
  font-weight: normal;
}
body main .Top_Message .Top_Message_container .Top_Message_cotent .Top_Message_cotent_Area .Top_Message_cotent_TextAndImg {
  width: 95%;
  margin: 30px auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  body main .Top_Message .Top_Message_container .Top_Message_cotent .Top_Message_cotent_Area .Top_Message_cotent_TextAndImg {
    flex-direction: column;
    width: 85%;
  }
}
body main .Top_Message .Top_Message_container .Top_Message_cotent .Top_Message_cotent_Area .Top_Message_cotent_TextAndImg .Top_Message_cotent_detail {
  width: 48%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  body main .Top_Message .Top_Message_container .Top_Message_cotent .Top_Message_cotent_Area .Top_Message_cotent_TextAndImg .Top_Message_cotent_detail {
    width: 100%;
    margin: 0 auto;
    order: 2;
  }
}
body main .Top_Message .Top_Message_container .Top_Message_cotent .Top_Message_cotent_Area .Top_Message_cotent_TextAndImg .Top_Message_cotent_detail p {
  margin: 50px 0 30px;
  font-size: 18px;
  line-height: 30px;
  font-family: font_Regular;
  text-align: justify;
  color: #000;
}
@media screen and (max-width: 991px) {
  body main .Top_Message .Top_Message_container .Top_Message_cotent .Top_Message_cotent_Area .Top_Message_cotent_TextAndImg .Top_Message_cotent_detail p {
    margin: 50px 0 20px;
    font-size: clamp(14px, 1.9vw, 18px);
    letter-spacing: -1px;
  }
}
body main .Top_Message .Top_Message_container .Top_Message_cotent .Top_Message_cotent_Area .Top_Message_cotent_TextAndImg .Top_Message_cotent_detail img {
  width: 130px;
}
@media screen and (max-width: 991px) {
  body main .Top_Message .Top_Message_container .Top_Message_cotent .Top_Message_cotent_Area .Top_Message_cotent_TextAndImg .Top_Message_cotent_detail img {
    width: 120px;
    margin-left: auto;
  }
}
body main .Top_Message .Top_Message_container .Top_Message_cotent .Top_Message_cotent_Area .Top_Message_cotent_TextAndImg .Top_Message_cotent_img {
  width: 47%;
  position: relative;
  overflow: visible;
}
@media screen and (max-width: 991px) {
  body main .Top_Message .Top_Message_container .Top_Message_cotent .Top_Message_cotent_Area .Top_Message_cotent_TextAndImg .Top_Message_cotent_img {
    width: 100%;
    margin: 0 auto;
    order: 1;
  }
  body main .Top_Message .Top_Message_container .Top_Message_cotent .Top_Message_cotent_Area .Top_Message_cotent_TextAndImg .Top_Message_cotent_img h2 {
    position: absolute;
    top: clamp(60px, 16vw, 155px);
    left: clamp(10px, 2vw, 40px);
    font-size: clamp(14px, 4vw, 40px);
    line-height: clamp(20px, 7vw, 60px);
    font-weight: normal;
    text-align: start;
  }
  body main .Top_Message .Top_Message_container .Top_Message_cotent .Top_Message_cotent_Area .Top_Message_cotent_TextAndImg .Top_Message_cotent_img h3 {
    position: absolute;
    bottom: 0;
    font-size: 32px;
    font-weight: normal;
  }
}
body main .Top_Message .Top_Message_container .Top_Message_cotent .Top_Message_cotent_Area .Top_Message_cotent_TextAndImg .Top_Message_cotent_img img {
  height: 100%;
  overflow: visible;
}
body main .Top_Message .Top_Message_container .Top_Message_cotent .Top_Message_cotent_Area .Top_Message_cotent_TextAndImg .Top_Message_cotent_img h3 {
  position: absolute;
  bottom: clamp(15px, 5vw,45px);
  right: 0;
  font-size: clamp(32px, 9vw,80px);
  white-space: nowrap;
  opacity: 0.5;
  font-family: font_Medium;
  font-weight: normal;
  letter-spacing: 2px;
  color: #fff !important;
}
body main .Business_details {
  width: 100%;
  margin: 300px 0;
}
@media screen and (max-width: 991px) {
  body main .Business_details {
    margin: 150px 0;
  }
}
body main .Business_details .Business_details_container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
body main .Business_details .Business_details_container .Business_details_content {
  width: 95%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 991px) {
  body main .Business_details .Business_details_container .Business_details_content {
    width: 100%;
  }
}
body main .Business_details .Business_details_container .Business_details_content .Business_details_content_block + .Business_details_content_block {
  margin-top: 100px;
}
@media screen and (max-width: 991px) {
  body main .Business_details .Business_details_container .Business_details_content .Business_details_content_block + .Business_details_content_block {
    margin-top: 30px;
  }
}
body main .Business_details .Business_details_container .Business_details_content .Business_details_content_block:nth-of-type(2) .Business_details_content_img img {
  position: relative;
  top: -170px;
}
@media screen and (max-width: 991px) {
  body main .Business_details .Business_details_container .Business_details_content .Business_details_content_block:nth-of-type(2) .Business_details_content_img img {
    top: 0;
  }
}
body main .Business_details .Business_details_container .Business_details_content .Business_details_content_block:nth-of-type(3) .Business_details_content_img img {
  position: relative;
  top: -120px;
}
@media screen and (max-width: 991px) {
  body main .Business_details .Business_details_container .Business_details_content .Business_details_content_block:nth-of-type(3) .Business_details_content_img img {
    top: 0;
  }
}
body main .Business_details .Business_details_container .Business_details_content .Business_details_content_block:nth-of-type(4) .Business_details_content_img img {
  position: relative;
  top: -100px;
}
@media screen and (max-width: 991px) {
  body main .Business_details .Business_details_container .Business_details_content .Business_details_content_block:nth-of-type(4) .Business_details_content_img img {
    top: 0;
  }
}
body main .Business_details .Business_details_container .Business_details_content .Business_details_content_block {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  body main .Business_details .Business_details_container .Business_details_content .Business_details_content_block {
    flex-direction: column;
  }
  body main .Business_details .Business_details_container .Business_details_content .Business_details_content_block h3 {
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: normal;
    font-family: font_Medium;
  }
}
body main .Business_details .Business_details_container .Business_details_content .Business_details_content_block .Business_details_content_img {
  width: 50%;
  height: 400px;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  body main .Business_details .Business_details_container .Business_details_content .Business_details_content_block .Business_details_content_img {
    width: 100%;
    height: auto;
    overflow: visible;
  }
}
body main .Business_details .Business_details_container .Business_details_content .Business_details_content_block .Business_details_content_text {
  width: 45%;
}
body main .Business_details .Business_details_container .Business_details_content .Business_details_content_block .Business_details_content_text h3 {
  font-size: 30px;
  line-height: 50px;
  font-family: font_Medium;
}
@media screen and (max-width: 991px) {
  body main .Business_details .Business_details_container .Business_details_content .Business_details_content_block .Business_details_content_text h3 {
    font-size: 23px;
  }
}
body main .Business_details .Business_details_container .Business_details_content .Business_details_content_block .Business_details_content_text p {
  font-size: 18px;
  line-height: 30px;
  white-space: normal;
  font-family: font_Medium;
}
@media screen and (max-width: 991px) {
  body main .Business_details .Business_details_container .Business_details_content .Business_details_content_block .Business_details_content_text p {
    font-size: 15px;
  }
}
@media screen and (max-width: 991px) {
  body main .Business_details .Business_details_container .Business_details_content .Business_details_content_block .Business_details_content_text {
    width: 100%;
  }
  body main .Business_details .Business_details_container .Business_details_content .Business_details_content_block .Business_details_content_text p {
    font-size: 20px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 991px) and (max-width: 991px) {
  body main .Business_details .Business_details_container .Business_details_content .Business_details_content_block .Business_details_content_text p {
    font-size: 15px;
  }
}
body main .Company_Overview {
  width: 100%;
}
body main .Company_Overview .Company_Overview_table {
  position: relative;
  width: clamp(900px,75%,1300px);
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  body main .Company_Overview .Company_Overview_table {
    width: 90%;
  }
}
body main .Company_Overview .Company_Overview_table .ArchieveBack {
  position: absolute;
  content: "";
  display: block;
  background-color: #016D33;
  width: 100%;
  position: absolute;
  top: 30px;
  left: -30px;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  body main .Company_Overview .Company_Overview_table .ArchieveBack {
    top: 10px;
    left: -10px;
  }
}
body main .Company_Overview .Company_Overview_table table {
  position: relative;
  width: 100%;
  padding: 80px 0;
  margin: 50px auto;
  background: rgb(234, 234, 234);
}
@media screen and (max-width: 991px) {
  body main .Company_Overview .Company_Overview_table table {
    padding: 45px 0;
    margin: 25px auto;
  }
}
body main .Company_Overview .Company_Overview_table table tr + tr {
  padding-top: 50px;
  border-top: 1px solid #016D33;
  margin-top: 50px;
}
@media screen and (max-width: 991px) {
  body main .Company_Overview .Company_Overview_table table tr + tr {
    padding-top: 25px;
    margin-top: 25px;
  }
}
body main .Company_Overview .Company_Overview_table table tr {
  width: 80%;
  margin: 0 auto;
  display: flex;
  font-size: 15px;
  line-height: 20px;
}
@media screen and (max-width: 991px) {
  body main .Company_Overview .Company_Overview_table table tr {
    width: 90%;
  }
}
body main .Company_Overview .Company_Overview_table table tr th {
  width: 25%;
  text-align: start;
  font-family: font_Bold;
  font-weight: normal;
}
body main .Company_Overview .Company_Overview_table table tr td {
  width: 75%;
  font-family: font_Regular;
}
body main .Company_Overview .Company_Overview_table table tr td a {
  text-decoration: underline;
  font-family: font_Medium;
}
body main .Company_Overview .Company_Overview_table table tr td a:hover {
  color: rgb(170, 170, 170);
}
body main .Company_Overview .Company_Overview_table table tr td iframe {
  width: 100%;
}
@media screen and (max-width: 991px) {
  body main .Company_Overview .Company_Overview_table table tr td iframe {
    height: 250px;
    border-radius: 10px;
  }
}

/* body */
body {
  width: 100%;
  /* main */
}
body main {
  /* Recruit_Message */
  /* Recruit_Message */
  /* Staff_Interview */
  /* Staff_Interview */
  /* Details_of_the_Recruiment */
  /* Details_of_the_Recruiment */
}
body main .Recruit_Message {
  margin: 50px 0;
}
body main .Recruit_Message .Recruit_Message_cotent {
  width: 85%;
  margin: 0 auto;
  font-size: 20px;
  line-height: 40px;
  text-align: justify;
  text-align: center;
}
@media screen and (max-width: 991px) {
  body main .Recruit_Message .Recruit_Message_cotent {
    font-size: 16px;
    line-height: 30px;
  }
}
body main .Staff_Interview {
  width: 100%;
  margin: 300px 0;
}
@media screen and (max-width: 991px) {
  body main .Staff_Interview {
    margin: 150px 0;
  }
}
body main .Staff_Interview .Staff_Interview_container {
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  body main .Staff_Interview .Staff_Interview_container {
    width: 90%;
  }
}
body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider {
  width: 100%;
}
body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick {
  /* slick-centerのひとつ前の兄弟要素 */
}
body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .slick-prev, body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .slick-next, body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .slick-arrow {
  display: none;
}
@media screen and (max-width: 991px) {
  body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .slick-prev, body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .slick-next, body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .slick-arrow {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .slick-arrow {
    display: block;
    width: 20px;
  }
  body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .slick-prev {
    position: absolute;
    top: 50%;
    left: 7%;
    z-index: 100;
  }
}
@media screen and (max-width: 991px) and (max-width: 991px) {
  body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .slick-prev {
    top: 31%;
    left: 1%;
  }
}
@media screen and (max-width: 991px) {
  body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .slick-next {
    position: absolute;
    top: 48%;
    right: 7%;
    z-index: 100;
  }
}
@media screen and (max-width: 991px) and (max-width: 991px) {
  body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .slick-next {
    top: 30%;
    right: 1%;
  }
}
body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .Staff_InterviewList:has(+ .slick-center) {
  transform: scale(1);
}
@media screen and (max-width: 991px) {
  body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick {
    left: 0;
  }
}
body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .slick-list .slick-track {
  position: relative;
  left: 30%;
}
@media screen and (max-width: 991px) {
  body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .slick-list .slick-track {
    left: 0;
  }
}
body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .Staff_InterviewList {
  width: 45%;
  display: flex;
  flex-direction: column;
  transform: scale(0.75);
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .Staff_InterviewList {
    width: auto;
    margin: 0 20px;
    transform: scale(1);
  }
}
body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .Staff_InterviewList.slick-center .next_staff_arrow {
  opacity: 1;
}
@media screen and (max-width: 991px) {
  body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .Staff_InterviewList.slick-center .next_staff_arrow {
    opacity: 0;
  }
}
body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .Staff_InterviewList .next_staff_arrow {
  width: 170px;
  margin-bottom: 30px;
  opacity: 0;
  transition: all 1s;
}
body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .Staff_InterviewList .staff_prof {
  width: 100%;
  height: 30%;
  position: relative;
  margin-bottom: 30px;
}
body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .Staff_InterviewList .staff_prof img {
  width: 100%;
  border-radius: 10px;
}
body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .Staff_InterviewList .staff_prof .staff_detail {
  width: 80%;
  position: absolute;
  bottom: -20px;
  right: -30px;
  background-color: #016D33;
  padding: 20px 30px;
  border-radius: 10px;
}
@media screen and (max-width: 991px) {
  body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .Staff_InterviewList .staff_prof .staff_detail {
    width: 90%;
    position: absolute;
    bottom: -20px;
    right: -10px;
    background-color: #016D33;
    padding: 15px 30px;
    border-radius: 10px;
  }
}
body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .Staff_InterviewList .staff_prof .staff_detail p {
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  font-family: font_Medium;
}
@media screen and (max-width: 991px) {
  body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .Staff_InterviewList .staff_prof .staff_detail p {
    line-height: 25px;
  }
}
body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .Staff_InterviewList .staff_message {
  width: 100%;
  margin: 0 auto;
  font-size: 18px;
  line-height: 25px;
  font-family: font_Medium;
}
@media screen and (max-width: 991px) {
  body main .Staff_Interview .Staff_Interview_container .Staff_Interview_Slider .Staff_InterviewList_Slider_Slick .Staff_InterviewList .staff_message {
    font-size: 16px;
  }
}
body main .Details_of_the_Recruiment {
  width: 100%;
}
body main .Details_of_the_Recruiment .Details_of_the_Recruiment_table {
  width: clamp(900px,75%,1300px);
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 991px) {
  body main .Details_of_the_Recruiment .Details_of_the_Recruiment_table {
    width: 90%;
  }
}
body main .Details_of_the_Recruiment .Details_of_the_Recruiment_table .ArchieveBack {
  position: relative;
  content: "";
  display: block;
  background-color: #016D33;
  width: 100%;
  position: absolute;
  top: 30px;
  left: -30px;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  body main .Details_of_the_Recruiment .Details_of_the_Recruiment_table .ArchieveBack {
    top: 10px;
    left: -10px;
  }
}
body main .Details_of_the_Recruiment .Details_of_the_Recruiment_table table {
  position: relative;
  width: 100%;
  padding: 80px 0;
  margin: 50px auto;
  background: rgb(234, 234, 234);
}
@media screen and (max-width: 991px) {
  body main .Details_of_the_Recruiment .Details_of_the_Recruiment_table table {
    padding: 50px 0;
    margin: 25px auto;
  }
}
body main .Details_of_the_Recruiment .Details_of_the_Recruiment_table table tr + tr {
  padding-top: 50px;
  border-top: 1px solid #016D33;
  margin-top: 50px;
}
@media screen and (max-width: 991px) {
  body main .Details_of_the_Recruiment .Details_of_the_Recruiment_table table tr + tr {
    padding-top: 25px;
    margin-top: 25px;
  }
}
body main .Details_of_the_Recruiment .Details_of_the_Recruiment_table table tr {
  width: 80%;
  margin: 0 auto;
  display: flex;
  font-size: 15px;
  line-height: 20px;
}
@media screen and (max-width: 991px) {
  body main .Details_of_the_Recruiment .Details_of_the_Recruiment_table table tr {
    width: 90%;
  }
}
body main .Details_of_the_Recruiment .Details_of_the_Recruiment_table table tr th {
  width: 25%;
  text-align: start;
  font-family: font_Bold;
  font-weight: normal;
  margin-right: 12px;
}
body main .Details_of_the_Recruiment .Details_of_the_Recruiment_table table tr td {
  width: 75%;
  font-family: font_Medium;
}
body main .Details_of_the_Recruiment .Details_of_the_Recruiment_table table tr td a {
  color: #016D33;
  text-decoration: underline;
}

body {
  width: 100%;
}
body .forforeigner_page {
  /* main */
}
body .forforeigner_page main {
  /* Recruit_Message */
  /* Details_of_the_Recruiment */
  /* Details_of_the_Recruiment */
}
body .forforeigner_page main .vidual_Area {
  width: 100%;
  height: 100vh;
  background-image: url(../img/top/スクリーンショット\ 2025-03-23\ 15.56.00.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-position: 0 -100px;
}
@media screen and (max-width: 991px) {
  body .forforeigner_page main .vidual_Area {
    background-image: url(../img/top/スクリーンショット\ 2025-03-23\ 16.10.43.png);
  }
}
body .forforeigner_page main .vidual_Area .vidual_Area_cotent {
  position: absolute;
  top: 75%;
  left: 7.5%;
}
body .forforeigner_page main .vidual_Area .vidual_Area_cotent h2 {
  color: #fff;
  font-family: font_Medium;
  font-weight: normal;
  font-size: 60px;
  line-height: 75px;
  opacity: 0;
  transform: translateY(30px);
}
body .forforeigner_page main .vidual_Area .vidual_Area_cotent h2.is-active {
  opacity: 1;
  transform: translateY(-20px);
  transition: all 1s;
}
body .forforeigner_page main .vidual_Area .vidual_Area_cotent p {
  color: #fff;
  font-size: 28px;
  line-height: 30px;
  opacity: 0;
  transform: translateY(30px);
  font-family: font_Medium;
}
body .forforeigner_page main .vidual_Area .vidual_Area_cotent p.is-active {
  opacity: 1;
  transform: translateY(0px);
  transition: all 1s;
}
@media screen and (max-width: 991px) {
  body .forforeigner_page main .vidual_Area .vidual_Area_cotent {
    top: clamp(380px, 58%, 535px);
  }
  body .forforeigner_page main .vidual_Area .vidual_Area_cotent h2 {
    font-size: clamp(33px, 10vw,40px);
    line-height: 48px;
  }
  body .forforeigner_page main .vidual_Area .vidual_Area_cotent p {
    font-size: 20px;
    line-height: 28px;
  }
}
@media screen and (max-width: 991px) {
  body .forforeigner_page main .Business_details {
    margin-top: 0px;
  }
}
body .forforeigner_page main .Business_details .Business_details_container .about_us_ttl {
  width: 95%;
  margin: 0 auto;
  font-size: 80px;
  line-height: 90px;
  color: #016D33;
  font-family: font_Bold;
  opacity: 0.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  body .forforeigner_page main .Business_details .Business_details_container .about_us_ttl {
    font-size: 60px;
  }
}
body .forforeigner_page main .Business_details .Business_details_Ttl {
  width: 95%;
  margin: 0 auto;
  text-align: initial;
}
@media screen and (max-width: 991px) {
  body .forforeigner_page main .Business_details .Business_details_Ttl {
    margin-bottom: 0px;
  }
}
body .forforeigner_page main .Business_details .Business_details_Ttl h2 {
  /* "-"を擬似要素で */
}
body .forforeigner_page main .Business_details .Business_details_Ttl h2 .ttl_line {
  display: inline-block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #016D33;
  vertical-align: middle;
}
body .forforeigner_page main .Company_Overview .Company_Overview_Ttl {
  width: 85%;
  margin: 0 auto;
  margin-top: 150px;
  text-align: initial;
}
@media screen and (max-width: 991px) {
  body .forforeigner_page main .Company_Overview .Company_Overview_Ttl {
    margin-bottom: 0px;
  }
}
body .forforeigner_page main .Company_Overview .Company_Overview_Ttl h2 {
  /* "-"を擬似要素で */
}
body .forforeigner_page main .Company_Overview .Company_Overview_Ttl h2 .ttl_line {
  display: inline-block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #016D33;
  vertical-align: middle;
}
@media screen and (max-width: 991px) {
  body .forforeigner_page main .Company_Overview .Company_Overview_Ttl h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 460px) {
  body .forforeigner_page main .Company_Overview .Company_Overview_table table tr th {
    margin-right: 20px;
  }
}
body .forforeigner_page main .Staff_Interview .Staff_Interview_Ttl {
  width: 85%;
  margin: 0 auto;
  margin-top: 150px;
  text-align: initial;
}
@media screen and (max-width: 991px) {
  body .forforeigner_page main .Staff_Interview .Staff_Interview_Ttl {
    margin-bottom: 0px;
  }
}
body .forforeigner_page main .Staff_Interview .Staff_Interview_Ttl h2 {
  /* "-"を擬似要素で */
}
body .forforeigner_page main .Staff_Interview .Staff_Interview_Ttl h2 .ttl_line {
  display: inline-block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #016D33;
  vertical-align: middle;
}
body .forforeigner_page main .Recruit_Message {
  margin-top: 300px;
}
body .forforeigner_page main .Recruit_Message .Recruit_Message_container .Recruit_ttl {
  width: 85%;
  margin: 0 auto;
  font-size: 80px;
  line-height: 90px;
  color: #016D33;
  font-family: font_Bold;
  opacity: 0.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  body .forforeigner_page main .Recruit_Message .Recruit_Message_container .Recruit_ttl {
    font-size: 60px;
  }
}
body .forforeigner_page main .Recruit_Message .Recruit_Message_container .Recruit_Message_Ttl h2 {
  font-size: 50px;
  margin-top: 60px;
}
@media screen and (max-width: 991px) {
  body .forforeigner_page main .Recruit_Message .Recruit_Message_container .Recruit_Message_Ttl h2 {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 10px;
  }
}
body .forforeigner_page main .Recruit_Message .Recruit_Message_container .Recruit_Message_cotent {
  width: 85%;
}
body .forforeigner_page main .Staff_Interview .Staff_Interview_container .Staff_Interview_Ttl h2 {
  position: relative;
  left: -80px;
}
@media screen and (max-width: 991px) {
  body .forforeigner_page main .Staff_Interview .Staff_Interview_container .Staff_Interview_Ttl h2 {
    left: -22px;
  }
}
body .forforeigner_page main .Details_of_the_Recruiment {
  width: 100%;
}
body .forforeigner_page main .Details_of_the_Recruiment .Details_of_the_Recruiment_Ttl {
  width: 85%;
  margin: 0 auto;
  margin-top: 150px;
  text-align: initial;
}
@media screen and (max-width: 991px) {
  body .forforeigner_page main .Details_of_the_Recruiment .Details_of_the_Recruiment_Ttl {
    margin-bottom: 0px;
  }
}
body .forforeigner_page main .Details_of_the_Recruiment .Details_of_the_Recruiment_Ttl h2 {
  /* "-"を擬似要素で */
}
body .forforeigner_page main .Details_of_the_Recruiment .Details_of_the_Recruiment_Ttl h2 .ttl_line {
  display: inline-block;
  content: "";
  width: 40px;
  height: 3px;
  background-color: #016D33;
  vertical-align: middle;
}
@media screen and (max-width: 991px) {
  body .forforeigner_page main .Details_of_the_Recruiment .Details_of_the_Recruiment_Ttl h2 .space_div {
    display: inline-block;
    margin-left: 70px;
  }
}
body .forforeigner_page main .Details_of_the_Recruiment .Details_of_the_Recruiment_table {
  width: clamp(900px,75%,1300px);
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 991px) {
  body .forforeigner_page main .Details_of_the_Recruiment .Details_of_the_Recruiment_table {
    width: 90%;
  }
}
body .forforeigner_page main .Details_of_the_Recruiment .Details_of_the_Recruiment_table .ArchieveBack_2 {
  position: relative;
  content: "";
  display: block;
  background-color: #016D33;
  width: 100%;
  position: absolute;
  top: 30px;
  left: -30px;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  body .forforeigner_page main .Details_of_the_Recruiment .Details_of_the_Recruiment_table .ArchieveBack_2 {
    top: 10px;
    left: -10px;
  }
}
@media screen and (max-width: 440px) {
  body .forforeigner_page main .Details_of_the_Recruiment .Details_of_the_Recruiment_table table tr th {
    margin-right: 25px;
  }
}
body .forforeigner_page .header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenu_Contact ul li:nth-of-type(2) a {
  margin-right: 0 auto;
  position: relative;
  right: 3px;
}
body .forforeigner_page .header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenu_Contact ul li:nth-of-type(3) a {
  margin: 0 auto;
  position: relative;
  left: 3px;
}
body .forforeigner_page .header .header_content .hamburgerMenu .hamburgerMenu_content .hamburgerMenu_Contact ul li:nth-of-type(4) a {
  margin-left: auto;
}
body .forforeigner_page .footer .footer_content .footer_contact {
  width: 220px;
}
@media screen and (max-width: 991px) {
  body .forforeigner_page .footer .footer_content .footer_contact {
    width: clamp(170px, 52%, 190px);
  }
}
body .forforeigner_page .footer .footer_content .footer_contact li {
  display: flex;
}
body .forforeigner_page .footer .footer_content .footer_contact li a {
  width: auto;
}
body .forforeigner_page .footer .footer_content .footer_contact li:nth-of-type(2) a {
  margin: 0 auto;
  position: relative;
}
body .forforeigner_page .footer .footer_content .footer_contact li:nth-of-type(3) a {
  margin: 0 auto;
  position: relative;
}
body .forforeigner_page .footer .footer_content .footer_contact li:nth-of-type(4) a {
  margin-left: auto;
}/*# sourceMappingURL=style.css.map */