@charset "UTF-8";
:root {
  --main_color: #2e2e2e;
  --accent_color: #002B68;
  --font_Ja: "M PLUS 1p";
  --sub_font: "Josefin Sans", sans-serif;
  --full_width: 1920px;
  --main_width: 1440px;
}

@media (min-width: 769px) {
  .sp {
    display: none;
  }
}
.section_title {
  position: relative;
  display: flex;
  flex-direction: column-reverse;
  text-align: center;
  margin: 20px auto;
  padding: 80px 0 40px 0;
}
@media (max-width: 767px) {
  .section_title {
    margin: 0 auto;
    padding: 35px 0 30px;
  }
}
.section_title h2 {
  font-size: clamp(20px, -6.6666666667px + 3.4722222222vw, 60px);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--main_color);
}
@media (max-width: 767px) {
  .section_title h2 {
    font-size: 20px;
  }
}
.section_title h4 {
  font-size: clamp(13px, -1.6666666667px + 1.9097222222vw, 35px);
  font-weight: 400;
  color: var(--accent_color);
  font-family: var(--sub_font);
}
@media (max-width: 767px) {
  .section_title {
    font-size: 13px;
  }
}

.banner_link {
  position: relative;
  display: flex;
  justify-content: center;
  justify-items: center;
  width: 335px;
  height: 48px;
  background: linear-gradient(#002b68 0%, #001634 100%);
}
.banner_link a {
  position: relative;
  width: 100%;
  padding: 0 20px;
  text-align: center !important;
  line-height: 48px;
  font-size: 17px;
}
@media (max-width: 767px) {
  .banner_link a {
    font-size: 13px !important;
    font-weight: 700;
  }
}
.banner_link a .link_text {
  position: relative;
  color: #ffffff;
  width: 100%;
}
.banner_link a .link_text::before, .banner_link a .link_text::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 12px;
  height: 2px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 1px) 50%;
}
.banner_link a .link_text::before {
  transform: rotate(50.5deg);
}
.banner_link a .link_text::after {
  transform: rotate(-50.5deg);
}
.banner_link.to_instagram {
  margin: 0 auto;
  margin-top: 40px;
  bottom: 30px;
}
@media (max-width: 767px) {
  .banner_link.to_instagram {
    width: calc(100% - 40px);
    max-width: 335px;
    margin-top: 50px;
  }
}
.banner_link.to_recruit_page {
  margin-top: 50px;
  margin-left: auto;
}
@media (max-width: 767px) {
  .banner_link.to_recruit_page {
    width: 100%;
    max-width: 335px;
    margin: 50px auto 0;
  }
}
.banner_link.to_contact_page {
  margin: 120px auto 40px;
}
@media (max-width: 767px) {
  .banner_link.to_contact_page {
    width: 100%;
    margin: 50px auto 0;
  }
}

.top, .ud {
  position: fixed;
  width: 100%;
  z-index: 1000;
}
.top.change, .ud.change {
  background-color: rgba(0, 0, 0, 0.16);
}
.top .logo_menu, .ud .logo_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  opacity: 0;
  animation: fadeIn_top 0.7s ease-out forwards;
  animation-delay: 3.8s;
}
.top .logo_menu.no_anim, .ud .logo_menu.no_anim {
  opacity: 1;
  animation: none;
}
@media (max-width: 767px) {
  .top .logo_menu, .ud .logo_menu {
    height: 50px;
  }
}
@keyframes fadeIn_top {
  0% {
    width: 100%;
    opacity: 0;
  }
  100% {
    width: 100%;
    opacity: 1;
  }
}
.top .logo, .ud .logo {
  display: flex;
  font-size: clamp(14px, 10.1165048544px + 1.0355987055vw, 30px);
  font-weight: 700;
  color: #ffffff;
  align-items: center;
  margin-left: 40px;
}
@media (max-width: 767px) {
  .top .logo, .ud .logo {
    margin-left: 10px;
  }
}
.top .logo img, .ud .logo img {
  width: 60px;
  height: 60px;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .top .logo img, .ud .logo img {
    width: 28px;
    height: 28px;
  }
}
.top .menu_area, .ud .menu_area {
  margin-right: 40px;
}
.top .menu_area #sp_menu_switch, .ud .menu_area #sp_menu_switch {
  display: none;
}
@media (max-width: 767px) {
  .top .menu_area #sp_menu_switch, .ud .menu_area #sp_menu_switch {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    right: 10px;
    margin-left: auto;
    z-index: 10;
  }
  .top .menu_area #sp_menu_switch .line, .ud .menu_area #sp_menu_switch .line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
  }
  .top .menu_area #sp_menu_switch .line:nth-of-type(1), .ud .menu_area #sp_menu_switch .line:nth-of-type(1) {
    top: 25%;
  }
  .top .menu_area #sp_menu_switch .line:nth-of-type(2), .ud .menu_area #sp_menu_switch .line:nth-of-type(2) {
    top: 55%;
  }
  .top .menu_area #sp_menu_switch .line:nth-of-type(3), .ud .menu_area #sp_menu_switch .line:nth-of-type(3) {
    top: 85%;
  }
  .top .menu_area #sp_menu_switch.active .line:nth-of-type(1), .ud .menu_area #sp_menu_switch.active .line:nth-of-type(1) {
    opacity: 0;
  }
  .top .menu_area #sp_menu_switch.active .line:nth-of-type(2), .ud .menu_area #sp_menu_switch.active .line:nth-of-type(2) {
    top: 0%;
    transform: rotate(-45deg) translate(-10px, 9px);
    background-color: #ffffff;
  }
  .top .menu_area #sp_menu_switch.active .line:nth-of-type(3), .ud .menu_area #sp_menu_switch.active .line:nth-of-type(3) {
    top: 50%;
    transform: rotate(45deg) translate(0px, 2px);
    background-color: #ffffff;
  }
}
.top .menu_area .menu, .ud .menu_area .menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 0px 30px;
  grid-auto-flow: row;
  font-size: clamp(14px, 10.1165048544px + 1.0355987055vw, 30px);
  font-weight: 300; /* light */
}
@media (min-width: 768px) {
  .top .menu_area .menu .sp, .ud .menu_area .menu .sp {
    display: none;
  }
  .top .menu_area .menu .sp .border_spacer, .ud .menu_area .menu .sp .border_spacer {
    border-bottom: 2px solid #ffffff;
    padding-top: 20px;
  }
}
@media (max-width: 767px) {
  .top .menu_area .menu, .ud .menu_area .menu {
    position: fixed;
    background-image: url("../images/sp_menu_bg.jpg");
    background-color: rgba(70, 50, 51, 0.2);
    background-blend-mode: multiply;
    background-position: top left;
    background-size: cover;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 20px;
    width: 100%;
    height: 100vh;
    padding: 60px 40px;
    top: 0;
    right: -100%;
    transition: all 0.75s ease-in-out;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .top .menu_area .menu .sp, .ud .menu_area .menu .sp {
    display: block;
  }
  .top .menu_area .menu .sp .border_spacer, .ud .menu_area .menu .sp .border_spacer {
    border-bottom: 2px solid #ffffff;
    padding-top: 20px;
  }
}
.top .menu_area .menu a, .ud .menu_area .menu a {
  text-align: center;
  color: #ffffff;
}
@media (max-width: 767px) {
  .top .menu_area .menu a, .ud .menu_area .menu a {
    font-size: 19px;
    text-align: left;
  }
}
.top .menu_area .menu.open, .ud .menu_area .menu.open {
  right: 0;
}

.floating_item {
  position: fixed;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  z-index: 100;
  bottom: 40px;
  right: 40px;
}
@media (max-width: 767px) {
  .floating_item {
    right: 15px;
  }
}
.floating_item a {
  text-align: center;
  margin: 0 auto;
}
.floating_item a .f_circle {
  display: block;
  width: 110px;
  height: 110px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .floating_item a .f_circle {
    width: 60px;
    height: 60px;
  }
}
.floating_item a .f_circle.sns_instagram {
  position: relative;
  background-color: #ffffff;
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.16));
}
.floating_item a .f_circle.sns_instagram img {
  width: 48px;
  height: 48px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .floating_item a .f_circle.sns_instagram img {
    width: 26px;
    height: 26px;
  }
}
.floating_item a .f_circle.recruit {
  background: linear-gradient(var(--accent_color) 0%, #001634 100%);
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.16));
  color: #ffffff;
  font-size: clamp(17px, 11.6666666667px + 0.6944444444vw, 25px);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .floating_item a .f_circle.recruit {
    font-size: 13px;
  }
}
.floating_item.hidden {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ローディング画面のスタイル */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100000;
  background-color: #fff;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeOut 1.6s forwards;
  opacity: 0;
}
.loading .loading__logo {
  width: 323px;
}

@keyframes fadeOut {
  0% {
    display: flex;
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
#FirstView {
  width: 100%;
  aspect-ratio: 16/9;
  background: url(../images/top_bg.jpg);
  background-color: rgba(70, 50, 51, 0.2);
  background-blend-mode: multiply;
  background-size: 101%;
  background-position: center 0%;
  text-align: center;
  position: relative;
  margin: 0 auto;
  animation: moveUp 0.5s ease-out forwards;
  animation-delay: 4s;
}
@keyframes moveUp {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-1%);
  }
}
@media (max-width: 767px) {
  #FirstView {
    height: 100vh;
    background-size: cover;
    background-position: 20% top;
  }
}
#FirstView .catchcopy_area {
  position: absolute;
  display: inline;
  width: 75%;
  max-width: var(--main_width);
  top: 60%;
  text-align: center;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-shadow: 4px 8px 8px rgba(49, 71, 70, 0.4);
}
@media (max-width: 767px) {
  #FirstView .catchcopy_area {
    width: 95%;
    top: 50%;
  }
}
#FirstView .catchcopy h1 {
  font-size: clamp(25px, -11.6666666667px + 4.7743055556vw, 80px);
  letter-spacing: 0.2em;
  opacity: 0;
  transform: scale(0);
  animation: zoomIn 2.5s ease forwards;
  animation-delay: 2s;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  44% {
    opacity: 1;
    transform: scale(1);
  }
  75% {
    opacity: 1;
    transform: translateY(7%);
  }
  100% {
    opacity: 1;
    transform: translateY(-35%);
  }
}
@media (max-width: 767px) {
  @keyframes zoomIn {
    0% {
      opacity: 0;
      transform: scale(0);
    }
    44% {
      opacity: 1;
      transform: scale(1);
    }
    75% {
      opacity: 1;
      transform: translateY(10%);
    }
    100% {
      opacity: 1;
      transform: translateY(-80%);
    }
  }
}
#FirstView .catchcopy h1 span {
  font-size: clamp(20px, -16.6666666667px + 4.7743055556vw, 75px);
}
#FirstView .catchcopy p {
  padding-top: 50px;
  font-size: clamp(10px, -10px + 2.6041666667vw, 40px);
  line-height: clamp(30px, 15.4368932039px + 3.8834951456vw, 90px);
  opacity: 0;
  animation: fadeIn 0.7s ease-out forwards;
  animation-delay: 3.8s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translate(40%, 40%);
    }
    100% {
      opacity: 1;
      transform: translate(0, 0);
    }
  }
}

@media (min-width: 768px) {
  .message_and_service {
    position: relative;
    display: block;
    background: url(../images/message_bg.jpg);
    background-position: top left;
    background-size: 100%;
    background-repeat: no-repeat;
  }
}

#message {
  width: 100%;
  max-width: var(--full_width);
  margin: 0 auto;
}
@media (max-width: 767px) {
  #message {
    position: relative;
    display: block;
    background: url(../images/message_bg.jpg);
    background-position: 62% top;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 50px;
  }
}
#message .message_content {
  margin: 0 20px;
}
#message .message_content .close_up {
  position: relative;
  width: 45%;
  padding-right: 10px;
  float: left;
  z-index: 1;
}
@media (max-width: 767px) {
  #message .message_content .close_up {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  #message .message_content {
    position: relative;
    display: flex;
    justify-content: flex-start;
    width: 75%;
    max-width: var(--main_width);
    margin: 0 auto;
  }
}
#message .message_content .pres_mess {
  position: relative;
  width: 55%;
  align-items: center;
  font-size: clamp(12px, 8.8446601942px + 0.8414239482vw, 25px);
  line-height: clamp(30px, 22.7184466019px + 1.9417475728vw, 60px);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-left: 40px;
  z-index: 2;
}
@media (max-width: 767px) {
  #message .message_content .pres_mess {
    width: 100%;
    margin: 0;
    padding-left: 0;
  }
}
#message .message_content .post_and_name {
  display: flex;
  justify-content: flex-end;
  align-items: end;
  font-size: clamp(12px, 8.8446601942px + 0.8414239482vw, 25px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
#message .message_content .post_and_name img {
  width: clamp(120px, 96.4563106796px + 6.2783171521vw, 217px);
  margin-left: 1rem;
}
#message .test img {
  width: 50%;
  float: left;
}

#service {
  width: 100%;
}
@media (max-width: 767px) {
  #service {
    background-image: url(../images/service_bg.jpg);
    background-position: 65% top;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media (min-width: 769px) {
  #service .service_contents_area {
    background-image: url(../images/service_bg.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
#service .service_container {
  position: relative;
}
@media (max-width: 767px) {
  #service .service_container {
    width: 100%;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
  }
}
#service .service_outer_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 20px 20px;
  grid-auto-flow: row;
  width: 75%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 80px 20px 40px;
}
@media (max-width: 767px) {
  #service .service_outer_box {
    position: relative;
    display: block;
    white-space: nowrap;
    overflow-x: auto;
    margin: 0 auto;
    padding: 0 20px;
  }
}
#service .service_inner_box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 0px 0px;
  width: 100%;
}
@media (max-width: 767px) {
  #service .service_inner_box {
    scroll-snap-align: center;
    display: inline-grid;
    margin-inline: 0 10px;
    white-space: normal;
    overflow: hidden;
    width: 70%;
    height: 100%;
  }
}
#service .service_inner_box .service_image {
  width: 100%;
}
#service .service_inner_box .service_content {
  background-color: #ffffff;
  padding: 16px;
}
@media (max-width: 767px) {
  #service .service_inner_box .service_content {
    height: 20.5rem;
  }
}
#service .service_inner_box .service_content .service_title {
  font-size: clamp(17px, 11.6666666667px + 0.6944444444vw, 25px);
  font-weight: 700;
  letter-spacing: 0.05em;
}
#service .service_inner_box .service_content .service_text {
  flex-grow: 1;
  padding-top: 20px;
  font-size: clamp(12px, 8.6666666667px + 0.4340277778vw, 17px);
  line-height: clamp(20px, 17.572815534px + 0.6472491909vw, 30px);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--main_color);
}

.scroll_guide {
  display: none;
}
@media (max-width: 767px) {
  .scroll_guide {
    position: absolute;
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: var(--accent_color);
    bottom: 16px;
    left: 17.5%;
  }
  .scroll_guide.staff {
    left: 67.5%;
  }
  .scroll_guide::after {
    content: "";
    position: absolute;
    background: var(--accent_color);
    top: 50%;
    width: 60vw;
    height: 2px;
    margin-left: 10px;
    animation: line-move 2.4s ease-in-out infinite;
    opacity: 0;
  }
  @keyframes line-move {
    0% {
      width: 0%;
      opacity: 0;
    }
    50% {
      width: 40vw;
      opacity: 1;
    }
    100% {
      width: 60vw;
      opacity: 0;
    }
  }
}

.recruit_and_staff {
  background: url(../images/fujiko.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 41.5%;
}

#recruit {
  width: 100%;
  background: url(../images/reqruit_bg.jpg);
  background-position: right 50%;
  background-repeat: no-repeat;
  background-size: 40% auto;
}
#recruit .recruit_content {
  width: 75%;
  max-width: var(--main_width);
  margin: 0 auto;
}
@media (max-width: 767px) {
  #recruit .recruit_content {
    width: 100%;
    padding: 0 20px;
  }
}
#recruit .recruit_content .recruit_lead {
  display: block;
  text-align: center;
}
#recruit .recruit_content .recruit_lead .main {
  display: inline;
  background: linear-gradient(transparent 70%, rgba(0, 40, 113, 0.4) 70%);
  font-size: clamp(18px, 3.3333333333px + 1.9097222222vw, 40px);
  font-weight: 700;
}
#recruit .recruit_content .recruit_lead .sub {
  font-size: clamp(12px, 3.3333333333px + 1.1284722222vw, 25px);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding-top: clamp(20px, -6.6666666667px + 3.4722222222vw, 60px);
}
#recruit .recruit_content .recruit_text {
  font-size: clamp(12px, 8.6666666667px + 0.4340277778vw, 17px);
  line-height: clamp(20px, 17.572815534px + 0.6472491909vw, 30px);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: clamp(20px, 17.572815534px + 0.6472491909vw, 30px);
  padding-top: clamp(40px, 30.2912621359px + 2.5889967638vw, 80px);
  padding-bottom: clamp(18px, 3.3333333333px + 1.9097222222vw, 40px);
  width: 75%;
  max-width: 1160px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #recruit .recruit_content .recruit_text {
    width: 100%;
  }
  #recruit .recruit_content .recruit_text p {
    font-size: 12px;
    line-height: 30px;
    text-shadow: 0px 0px 10px #ffffff;
  }
}

#staff {
  width: 100%;
  background: url(../images/staff_bg.jpg);
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 60% auto;
  margin: 0 0 120px 0;
}
#staff .staff_content {
  width: 35%;
  max-width: var(--main_width);
  margin: 0 auto;
}
#staff .staff_content .staff_outer_box {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  gap: 20px;
  grid-auto-flow: row;
}
#staff .staff_content .staff_outer_box .staff_inner_box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 0px 0px;
  width: 100%;
}
#staff .staff_content .staff_outer_box .staff_inner_box .staff_image {
  width: 100%;
}
#staff .staff_content .staff_outer_box .staff_inner_box .staff {
  text-align: center;
  padding-top: 30px;
}
#staff .staff_content .staff_outer_box .staff_inner_box .staff .staff_post, #staff .staff_content .staff_outer_box .staff_inner_box .staff .qualification {
  font-size: clamp(10px, 8.6666666667px + 0.1736111111vw, 12px);
  line-height: 0px;
}
#staff .staff_content .staff_outer_box .staff_inner_box .staff .staff_name {
  font-size: clamp(17px, 11.6666666667px + 0.6944444444vw, 25px);
  font-weight: 700;
  line-height: 24px;
  padding: 12px 0;
}

@media (max-width: 767px) {
  #staff {
    margin: 0 0 60px 0;
  }
  #staff .staff_content {
    width: calc(100% - 40px);
  }
  #staff .staff_content .staff_outer_box {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  #staff .staff_content .staff_inner_box {
    flex: 0 0 auto;
    width: 100%;
    margin: 15px 0;
    scroll-snap-align: start;
  }
}
#company {
  background-image: url(../images/company_bg.jpg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}
#company .company_content {
  width: 75%;
  max-width: var(--main_width);
  margin: 0 auto;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 55% 1fr;
  grid-template-rows: 1fr;
  gap: 0 20px;
}
@media (max-width: 767px) {
  #company .company_content {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px 40px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 40px;
  }
}
#company .company_content .company_info {
  width: 100%;
}
#company .company_content .company_info dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
#company .company_content .company_info dt {
  width: 18%;
  border-top: 1px solid rgba(59, 64, 67, 0.3);
  font-size: clamp(12px, 8.6666666667px + 0.4340277778vw, 17px);
  padding: clamp(17px, 11.6666666667px + 0.6944444444vw, 25px) 0;
}
#company .company_content .company_info dd {
  width: 79%;
  border-top: 1px solid rgba(59, 64, 67, 0.3);
  font-size: clamp(12px, 8.6666666667px + 0.4340277778vw, 17px);
  padding: clamp(17px, 11.6666666667px + 0.6944444444vw, 25px) 0;
}
#company .company_content .company_info dt:last-of-type, #company .company_content .company_info dd:last-of-type {
  border-bottom: 1px solid rgba(59, 64, 67, 0.3);
}
#company .company_content .map iframe {
  position: relative;
  width: clamp(335px, 270.6796116505px + 17.1521035599vw, 600px);
  aspect-ratio: 4/3;
}
@media (max-width: 767px) {
  #company .company_content .map iframe {
    width: 100%;
  }
}
#company .company_content .map .map_open {
  text-align: right;
  font-size: clamp(12px, 8.6666666667px + 0.4340277778vw, 17px);
  color: var(--accent_color);
  display: flex;
  justify-content: right;
}

/* 採用ページ */
#recruit_page .page_title, #contact_page .page_title, #privacy_page .page_title {
  background: url(../images/recruit_top_bg.jpg);
  background-color: rgba(0, 0, 0, 0.42);
  background-blend-mode: multiply;
  background-size: cover;
  width: calc(100vw - var(--scrollbarWidth));
  aspect-ratio: 128/45;
  position: relative;
}
#recruit_page .page_title .section_title, #contact_page .page_title .section_title, #privacy_page .page_title .section_title {
  position: absolute;
  top: 50%;
  left: 50%;
  align-items: center;
  margin: 0;
  padding: 0;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  #recruit_page .page_title .section_title, #contact_page .page_title .section_title, #privacy_page .page_title .section_title {
    margin: 0;
    padding: 0;
  }
}
#recruit_page .page_title .section_title h2, #contact_page .page_title .section_title h2, #privacy_page .page_title .section_title h2 {
  color: #ffffff;
}
#recruit_page .page_title .section_title h4, #contact_page .page_title .section_title h4, #privacy_page .page_title .section_title h4 {
  color: #ffffff;
}
@media (max-width: 767px) {
  #recruit_page .page_title .section_title, #contact_page .page_title .section_title, #privacy_page .page_title .section_title {
    font-size: 13px;
  }
}
#recruit_page .recruit_info_area, #contact_page .recruit_info_area, #privacy_page .recruit_info_area {
  background: url(../images/message_bg.jpg);
  background-position: 62% top;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
}
#recruit_page .recruit_info_area h3, #contact_page .recruit_info_area h3, #privacy_page .recruit_info_area h3 {
  text-align: center;
  font-size: clamp(15px, 8.932038835px + 1.6181229773vw, 40px);
}
#recruit_page .recruit_info_area table, #contact_page .recruit_info_area table, #privacy_page .recruit_info_area table {
  margin: 50px auto;
  width: 75%;
  max-width: var(--main_width);
  border-collapse: collapse;
  font-size: 16px;
}
@media (max-width: 767px) {
  #recruit_page .recruit_info_area table, #contact_page .recruit_info_area table, #privacy_page .recruit_info_area table {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}
#recruit_page .recruit_info_area th, #recruit_page .recruit_info_area td, #contact_page .recruit_info_area th, #contact_page .recruit_info_area td, #privacy_page .recruit_info_area th, #privacy_page .recruit_info_area td {
  padding: 10px;
  border: 1px solid #707070;
  font-size: clamp(12px, 10.0582524272px + 0.5177993528vw, 20px);
  line-height: clamp(20px, 15.145631068px + 1.2944983819vw, 40px);
}
@media (max-width: 767px) {
  #recruit_page .recruit_info_area th, #recruit_page .recruit_info_area td, #contact_page .recruit_info_area th, #contact_page .recruit_info_area td, #privacy_page .recruit_info_area th, #privacy_page .recruit_info_area td {
    padding: 10px 8px;
  }
}
#recruit_page .recruit_info_area th, #contact_page .recruit_info_area th, #privacy_page .recruit_info_area th {
  background-color: #f2f2f2;
  text-align: center;
  font-weight: 400;
  width: 20%;
}
#recruit_page .recruit_info_area td, #contact_page .recruit_info_area td, #privacy_page .recruit_info_area td {
  background-color: #ffffff;
  padding: 20px 40px;
}
@media (max-width: 767px) {
  #recruit_page .recruit_info_area td, #contact_page .recruit_info_area td, #privacy_page .recruit_info_area td {
    padding: 10px 10px;
  }
}
#recruit_page .recruit_info_area .salary_table, #contact_page .recruit_info_area .salary_table, #privacy_page .recruit_info_area .salary_table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  gap: 20px 0px;
  grid-auto-flow: row;
  grid-template-areas: "no1 no1_annual" "no2 no2_annual";
}
@media (max-width: 767px) {
  #recruit_page .recruit_info_area .salary_table, #contact_page .recruit_info_area .salary_table, #privacy_page .recruit_info_area .salary_table {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 10px;
    grid-template-areas: "no1" "no1_annual" "no2" "no2_annual";
  }
}
#recruit_page .recruit_info_area .no1, #contact_page .recruit_info_area .no1, #privacy_page .recruit_info_area .no1 {
  grid-area: no1;
}
#recruit_page .recruit_info_area .no1_annual, #contact_page .recruit_info_area .no1_annual, #privacy_page .recruit_info_area .no1_annual {
  grid-area: no1_annual;
}
#recruit_page .recruit_info_area .no2, #contact_page .recruit_info_area .no2, #privacy_page .recruit_info_area .no2 {
  grid-area: no2;
}
#recruit_page .recruit_info_area .no2_annual, #contact_page .recruit_info_area .no2_annual, #privacy_page .recruit_info_area .no2_annual {
  grid-area: no2_annual;
}
#recruit_page .recruit_info_area .no3, #contact_page .recruit_info_area .no3, #privacy_page .recruit_info_area .no3 {
  grid-area: no3;
}
#recruit_page .recruit_info_area .no3_annual, #contact_page .recruit_info_area .no3_annual, #privacy_page .recruit_info_area .no3_annual {
  grid-area: no3_annual;
}
#recruit_page .recruit_info_area .exp, #contact_page .recruit_info_area .exp, #privacy_page .recruit_info_area .exp {
  grid-area: exp;
}
@media (max-width: 767px) {
  #recruit_page .sp_none, #contact_page .sp_none, #privacy_page .sp_none {
    display: none;
  }
  #recruit_page .banner_link, #contact_page .banner_link, #privacy_page .banner_link {
    width: calc(100% - 40px);
  }
}

#contact_form {
  width: 75%;
  max-width: var(--main_width);
  margin: 0 auto;
  margin: 120px auto;
  text-align: center;
  /* 項目：必須マーク */
}
@media (max-width: 767px) {
  #contact_form {
    width: calc(100% - 40px);
    margin: 40px auto;
  }
}
#contact_form .lead {
  margin: 0 0 40px 0;
}
#contact_form .lead p {
  font-size: clamp(17px, 11.6666666667px + 0.6944444444vw, 25px);
  font-weight: 700;
  line-height: clamp(24px, 20.1165048544px + 1.0355987055vw, 40px);
}
#contact_form .attention {
  font-size: clamp(12px, 10.0582524272px + 0.5177993528vw, 20px);
  text-align: left;
}
#contact_form span, #contact_form sup {
  color: #ff0000;
}
#contact_form .contact_form_area {
  /* 確認チェックボックス */
  /* 送信ボタン：ホバー */
}
#contact_form .contact_form_area dl, #contact_form .contact_form_area dt, #contact_form .contact_form_area dd, #contact_form .contact_form_area dd input, #contact_form .contact_form_area textarea, #contact_form .contact_form_area sup, #contact_form .contact_form_area .privacy {
  font-size: clamp(12px, 10.0582524272px + 0.5177993528vw, 20px);
  line-height: clamp(20px, 15.145631068px + 1.2944983819vw, 40px);
}
#contact_form .contact_form_area dl {
  background-color: #fff;
  padding: 30px 0;
  border-radius: 15px 10px;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}
@media (max-width: 767px) {
  #contact_form .contact_form_area dl {
    flex-direction: column;
  }
}
#contact_form .contact_form_area dt {
  width: 20%;
  font-weight: bold;
  color: #000000;
  margin: 15px 0 30px 0;
  padding: 22px 0;
}
@media (max-width: 767px) {
  #contact_form .contact_form_area dt {
    width: 100%;
    margin: 0;
    padding: 0 0 10px 0;
  }
}
#contact_form .contact_form_area dd {
  width: 80%;
  padding: 22px 0;
}
@media (max-width: 767px) {
  #contact_form .contact_form_area dd {
    width: 100%;
    margin: 0;
    padding: 0 0 20px 0;
  }
}
#contact_form .contact_form_area dd input, #contact_form .contact_form_area dd textarea {
  width: 100%;
  padding: 22px 10px;
  border: 1px solid #c0c0c0;
  border-radius: 10px;
  background-color: #dbdbdb;
}
@media (max-width: 767px) {
  #contact_form .contact_form_area dd input, #contact_form .contact_form_area dd textarea {
    margin: 0;
    padding: 5px 10px;
  }
}
#contact_form .contact_form_area dd input::-moz-placeholder, #contact_form .contact_form_area dd textarea::-moz-placeholder {
  color: #aaaaaa; /* 例文の色をグレーにする */
}
#contact_form .contact_form_area dd input::placeholder, #contact_form .contact_form_area dd textarea::placeholder {
  color: #aaaaaa; /* 例文の色をグレーにする */
}
#contact_form .contact_form_area dd textarea {
  height: 250px;
}
@media (max-width: 767px) {
  #contact_form .contact_form_area dd textarea {
    height: 5rem;
  }
}
#contact_form .contact_form_area dd .radio-area {
  display: flex;
  gap: 40px;
  margin: 15px 0;
}
@media (max-width: 767px) {
  #contact_form .contact_form_area dd .radio-area {
    margin: 0;
  }
}
#contact_form .contact_form_area dd .radio-area input[type=radio] {
  width: auto;
  margin-right: 10px;
}
#contact_form .contact_form_area .privacy {
  line-height: clamp(20px, 15.145631068px + 1.2944983819vw, 40px);
}
@media (max-width: 767px) {
  #contact_form .contact_form_area .privacy {
    text-align: left;
  }
}
#contact_form .contact_form_area .privacy a {
  text-decoration: underline;
}
#contact_form .contact_form_area .confirm {
  margin-top: 20px;
  margin-bottom: 60px;
  font-weight: 700;
  /* チェックボックスのサイズを変更 */
}
@media (max-width: 767px) {
  #contact_form .contact_form_area .confirm {
    text-align: center;
  }
}
#contact_form .contact_form_area .confirm input[type=checkbox] {
  width: clamp(12px, 10.0582524272px + 0.5177993528vw, 20px);
  height: clamp(12px, 10.0582524272px + 0.5177993528vw, 20px);
  margin-right: 10px;
  transform: translateY(4px);
}
@media (max-width: 767px) {
  #contact_form .contact_form_area .confirm input[type=checkbox] {
    transform: translateY(2px);
  }
}
#contact_form .contact_form_area .confirm-btn {
  position: relative;
  border: 1px solid #002b68;
  border-radius: 20px;
  background: linear-gradient(#002b68 0%, #001634 100%);
  font-size: 20px;
  line-height: 1;
  color: #ffffff;
  margin: auto 0;
  padding: 10px 60px 10px 40px;
  /* 送信ボタン */
}
#contact_form .contact_form_area .confirm-btn:disabled {
  border: 1px solid #ffffff;
  background: initial;
  background-color: #cccccc;
  color: #aaaaaa;
  cursor: pointer;
}
#contact_form .contact_form_area .confirm-btn .link_text {
  position: relative;
  color: #ffffff;
  width: 100%;
}
#contact_form .contact_form_area .confirm-btn .link_text::before, #contact_form .contact_form_area .confirm-btn .link_text::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: -30%;
  width: 12px;
  height: 2px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 1px) 50%;
}
#contact_form .contact_form_area .confirm-btn .link_text::before {
  transform: rotate(50.5deg);
}
#contact_form .contact_form_area .confirm-btn .link_text::after {
  transform: rotate(-50.5deg);
}
#contact_form .contact_form_area .submit-btn:hover {
  background-color: #444;
}

#privacy_policy_area {
  width: 75%;
  max-width: var(--main_width);
  margin: 120px auto;
}
@media (max-width: 767px) {
  #privacy_policy_area {
    width: calc(100% - 40px);
    margin: 40px auto;
  }
}
#privacy_policy_area .area_title {
  margin: 0 0 40px 0;
  text-align: center;
}
#privacy_policy_area p {
  font-size: clamp(17px, 11.6666666667px + 0.6944444444vw, 25px);
  font-weight: 700;
}
#privacy_policy_area .privacy_lead, #privacy_policy_area dl, #privacy_policy_area dt, #privacy_policy_area dd {
  font-size: clamp(12px, 10.0582524272px + 0.5177993528vw, 20px);
  font-weight: 400;
  line-height: clamp(20px, 15.145631068px + 1.2944983819vw, 40px);
  letter-spacing: 0.05em;
}
#privacy_policy_area .privacy_lead {
  padding-bottom: 10px;
}
#privacy_policy_area dl {
  padding-top: 20px;
}
#privacy_policy_area dd {
  padding-bottom: 24px;
}

#footer {
  background-color: #A7B3BA;
}
#footer .footer_content {
  width: 75%;
  max-width: var(--main_width);
  margin: 0 auto;
  padding: 40px 0 80px;
}
@media (max-width: 767px) {
  #footer .footer_content {
    width: 100%;
    padding: 40px 20px;
  }
}
#footer .logo_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  #footer .logo_menu {
    display: block;
  }
}
#footer .logo {
  display: flex;
  font-size: clamp(14px, 10.1165048544px + 1.0355987055vw, 30px);
  font-weight: 700;
  align-items: center;
}
#footer .logo img {
  width: 60px;
  height: 60px;
  margin-right: 20px;
}
#footer .menu {
  width: 48%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  font-size: clamp(10px, 8.3009708738px + 0.4530744337vw, 17px);
  font-weight: 400;
}
@media (max-width: 767px) {
  #footer .menu {
    width: 100%;
    padding: 30px 0 0 0;
  }
}
#footer .menu a {
  position: relative;
  text-align: center;
}
#footer .menu a::before, #footer .menu a::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 8px;
  width: 7px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--main_color);
  transform-origin: calc(100% - 1px) 50%;
}
@media (max-width: 767px) {
  #footer .menu a::before, #footer .menu a::after {
    right: 3px;
  }
}
#footer .menu a::before {
  transform: rotate(50.5deg);
}
#footer .menu a::after {
  transform: rotate(-50.5deg);
}
#footer .company_and_sns {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#footer .company_and_sns .company_information {
  margin-top: 50px;
  font-size: clamp(10px, 8.3009708738px + 0.4530744337vw, 17px);
  font-weight: 400;
}
@media (max-width: 767px) {
  #footer .company_and_sns .company_information {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  #footer .company_and_sns .sns_area {
    display: none;
  }
}
#footer .copyright {
  text-align: center;
  font-size: clamp(10px, 8.5436893204px + 0.3883495146vw, 16px);
}

.upper {
  opacity: 0;
  transform: translate(0px, 96px);
  transition-delay: 200ms;
  transition-duration: 1000ms;
  transition-timing-function: ease-in-out;
}

.upper.is-active {
  opacity: 1;
  transform: translate(0px, 0px);
}

.maintitle-area.upper {
  transform: translate(0, calc(40vh + 96px));
}

.maintitle-area.upper.is-active {
  transform: translate(0px, 40vh);
}

@media (max-width: 767px) {
  .maintitle-area.upper {
    transform: translate(0, 0px);
  }
  .maintitle-area.upper.is-active {
    transform: translate(0, 0);
  }
}/*# sourceMappingURL=styles.css.map */