@charset "UTF-8";
/* * {
    border: 1px solid red;
} */
html {
  font-size: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #F7F9FC;
  line-height: 1.5;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #F7F9FC;
}

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

ul,
ol {
  list-style: none;
}

h1 {
  line-height: 0;
}

.container {
  max-width: 1280px;
  padding-inline: 80px;
  margin-inline: auto;
}
@media (max-width: 900px) {
  .container {
    padding-inline: 30px;
  }
}

.wrapper {
  max-width: 1000px;
  margin-inline: auto;
}

.block {
  width: 70%;
  margin-inline: auto;
}
@media (max-width: 500px) {
  .block {
    width: 100%;
  }
}

.section-title {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  text-align: left;
  margin-bottom: 48px;
}
.section-title-en {
  font-size: 40px;
  display: block;
}
.section-title-jp {
  font-size: 16px;
  display: block;
}

.btn-more,
.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #4A6FA5;
  color: #F7F9FC;
  border-radius: 20px;
  transition: 0.3s;
}
.btn-more:hover,
.btn-back:hover {
  opacity: 0.8;
  transform: scale(1.03);
}

.btn-arrow,
.btn-prev {
  transition: transform 0.3s ease;
}

.btn-more:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-back:hover .btn-prev {
  transform: translateX(-5px);
}

.bg-navy {
  color: #F7F9FC;
}

/* ===== MV ===== */
.mv {
  width: 100%;
  height: 400px;
  background: #1F3A5F;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  overflow: hidden;
  padding-top: 100px;
  margin-bottom: 80px;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 500px) {
  .mv {
    height: 250px;
    padding-top: 50px;
  }
}
.mv-title {
  font-size: 64px;
  line-height: 1.4;
  color: #F7F9FC;
  font-weight: bold;
  letter-spacing: 1.2px;
}
@media (max-width: 500px) {
  .mv-title {
    font-size: 40px;
  }
}
.mv-subtitle {
  font-size: 32px;
  color: #F7F9FC;
  font-weight: bold;
}
@media (max-width: 500px) {
  .mv-subtitle {
    font-size: 24px;
  }
}

.btn-page1,
.btn-page2,
.btn-page3 {
  width: 30px;
  height: 30px;
  color: #333;
  border: 1px solid #4A6FA5;
  border-radius: 50%;
}
.btn-page1:hover,
.btn-page2:hover,
.btn-page3:hover {
  opacity: 0.8;
  transform: scale(1.03);
}

.btn-page1 {
  background-color: #4A6FA5;
  color: #F7F9FC;
}

.entry-btn {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 500px) {
  .entry-btn {
    flex-direction: column;
    gap: 20px;
  }
}

.btn-entry {
  width: 50%;
  font-size: 20px;
  color: #F7F9FC;
  background-color: #1F3A5F;
  border: 2px solid #1F3A5F;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.5s;
  padding-block: 64px;
}
@media (max-width: 500px) {
  .btn-entry {
    width: 100%;
    padding-block: 48px;
  }
}
.btn-entry:hover {
  color: #1F3A5F;
  background-color: #F7F9FC;
  transform: scale(1.03);
}

.page-top {
  width: 60px;
  height: 60px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 14px;
  color: #F7F9FC;
  background-color: #1F3A5F;
  border: 1px solid #F7F9FC;
  border-radius: 50%;
  position: fixed;
  right: 25px;
  bottom: 25px;
  transition: all 0.5s;
  z-index: 5;
}
.page-top-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.3s ease;
}
.page-top:hover {
  color: #AE9D6B;
  border-color: #AE9D6B;
  background-color: #F7F9FC;
  transform: scale(1.08);
}
.page-top:hover .page-top-icon {
  transform: translateY(-5px);
}

.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .form-row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.form-row {
  /* チェックボックス */
}
/* ラベル */
.form-label {
  width: 200px;
}
@media (max-width: 900px) {
  .form-label {
    margin-bottom: 4px;
  }
}
.form-label span {
  color: red;
  margin-left: 8px;
}

/* 入力エリア */
.form-input {
  width: 70%;
  background-color: #EBECEE;
  border: 1px solid #EBECEE;
  padding-block: 8px;
  padding-left: 16px;
}
@media (max-width: 900px) {
  .form-input {
    width: 100%;
  }
}
.form-input {
  /* input共通 */
}
.form-input input,
.form-input textarea {
  width: 100%;
  padding: 12px;
  font-size: 14px;
  box-sizing: border-box;
  cursor: pointer;
}
.form-input input[type=radio] {
  width: auto;
  margin-right: 8px;
}
.form-input label {
  margin-right: 18px;
}

.form-row-privacy .form-input {
  display: flex;
  align-items: center;
}
.form-row-privacy .form-input label {
  width: 80%;
}
.form-row-privacy .form-input input {
  width: 10%;
}

/* ボタン */
.form-submit {
  text-align: center;
  margin-top: 40px;
}
.form-submit button {
  width: 200px;
  background: #4A6FA5;
  color: #F7F9FC;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
  padding: 24px;
}
.form-submit button:hover {
  opacity: 0.8;
}

.header {
  width: 100%;
  background-color: #1F3A5F;
}

.header-menu {
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 5% 100px;
  margin-inline: auto;
}
.header-menu-nav-list {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: flex-end;
}
.header-menu-logo {
  height: 100%;
}
.header-menu-logo a {
  width: 160px;
  height: 100%;
  transition: all 0.5s ease;
}
.header-menu-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header-menu-nav {
  display: block;
  visibility: visible;
}
@media (max-width: 900px) {
  .header-menu-nav {
    display: none;
    visibility: hidden;
  }
}
.header-menu-nav li a {
  font-size: 12px;
  position: relative;
  transition: all 0.5s ease;
}
.header-menu-nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #AE9D6B;
  transition: width 0.3s ease;
}
.header-menu-logo a:hover {
  opacity: 0.7;
}
.header-menu-nav li a:hover {
  color: #AE9D6B;
}
.header-menu-nav li a:hover::after {
  width: 100%;
}

.toggle-btn {
  width: 40px;
  height: 40px;
  position: fixed;
  top: 20px;
  right: 25px;
  z-index: 30;
  transition: all 0.5s ease-out;
  cursor: pointer;
}
.toggle-btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #1F3A5F;
}
.toggle-btn:hover {
  transform: scale(1.05);
}
.toggle-btn:hover span {
  background-color: #AE9D6B;
}
.toggle-btn span {
  width: 60%;
  height: 2px;
  display: block;
  position: absolute;
  background-color: #F7F9FC;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
.toggle-btn span:nth-child(1) {
  top: 30%;
}
.toggle-btn span:nth-child(2) {
  top: 50%;
}
.toggle-btn span:nth-child(3) {
  top: 70%;
}

.header-mask {
  width: 100%;
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1F3A5F;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  overflow-y: auto;
  z-index: 20;
  padding: 60px 24px;
}

.header-mask-nav {
  width: 100%;
  margin-bottom: 16px;
}
.header-mask-nav-list {
  flex-direction: column;
}
.header-mask-nav-list li a {
  position: relative;
  transition: all 0.5s ease;
}
.header-mask-nav-list li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #AE9D6B;
  transition: width 0.3s ease;
}
.header-mask-nav-list li a:hover {
  color: #AE9D6B;
}
.header-mask-nav-list li a:hover::after {
  width: 100%;
}
.header-mask-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.header-mask-company {
  width: 100%;
  color: #F7F9FC;
  font-size: 14px;
}

.mask-companylogo {
  width: 160px;
  height: 60px;
  margin-bottom: 16px;
}
.mask-companylogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.mask-companylogo:hover {
  opacity: 0.8;
}

.mask-companytitle {
  font-size: 16px;
  margin-bottom: 8px;
}

.mask-companytel {
  text-decoration: underline;
}
.mask-companytel :hover {
  color: #AE9D6B;
}
.mask-companytel :hover::after {
  width: 100%;
}

.open .header-mask {
  opacity: 1;
  visibility: visible;
}
.open .toggle-btn:hover {
  transform: scale(1.05);
}
.open .toggle-btn:hover span {
  background-color: #AE9D6B;
}
.open .toggle-btn span {
  background-color: #F7F9FC;
  z-index: 30;
}
.open .toggle-btn span:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-315deg);
}
.open .toggle-btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(315deg);
}
.open .header-mask-recruit {
  cursor: pointer;
}

.header-menu-recruit {
  position: relative;
  color: #F7F9FC;
  transition: all 0.5s ease;
  cursor: pointer;
}
.header-menu-recruit:hover > .header-menu-recruit-child {
  display: block;
  z-index: 20;
  transition: all 0.5s ease;
}
.header-menu-recruit-title {
  display: inline-block;
  font-size: 12px;
  position: relative;
  transition: all 0.5s ease;
}
.header-menu-recruit-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #AE9D6B;
  transition: width 0.3s ease;
}
.header-menu-recruit-title::after {
  width: 8px;
  height: 8px;
  border-right: 2px solid #F7F9FC;
  border-bottom: 2px solid #F7F9FC;
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
  margin-left: 8px;
}
.header-menu-recruit-title:hover {
  color: #AE9D6B;
}
.header-menu-recruit-title:hover::before {
  width: 100%;
}
.header-menu-recruit-title:hover::after {
  border-color: #AE9D6B;
  transform: rotate(-135deg);
}
.header-menu-recruit-child {
  min-width: 150px;
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: -25%;
  background-color: #1F3A5F;
  box-shadow: 3px 5px 8px 0 rgba(0, 0, 0, 0.7);
  padding: 24px;
}
.header-menu-recruit-child li {
  margin-bottom: 16px;
}
.header-menu-recruit-child li:last-child {
  margin-bottom: 0;
}

.header-mask-recruit {
  position: relative;
  color: #F7F9FC;
}
.header-mask-recruit.active > .header-mask-recruit-title::after {
  border-color: #AE9D6B;
  transform: rotate(-135deg);
}
.header-mask-recruit.active > .header-mask-recruit-child {
  display: flex;
  position: static;
  padding-left: 0;
}
.header-mask-recruit-title {
  display: inline-block;
  font-size: 16px;
  position: relative;
}
.header-mask-recruit-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: #AE9D6B;
  transition: width 0.3s ease;
}
.header-mask-recruit-title::after {
  width: 8px;
  height: 8px;
  border-right: 2px solid #F7F9FC;
  border-bottom: 2px solid #F7F9FC;
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
  margin-left: 8px;
}
.header-mask-recruit-title:hover {
  color: #AE9D6B;
}
.header-mask-recruit-title:hover::before {
  width: 100%;
}
.header-mask-recruit-child {
  display: none;
  flex-direction: column;
  text-align: left;
  font-size: 16px;
  padding-top: 16px;
  margin-left: 16px;
}
.header-mask-recruit-child li {
  border-bottom: none;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.header-mask-recruit-child li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.footer {
  width: 100%;
  background-color: #1F3A5F;
  padding-block: 40px 16px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
  }
}
.footer-left {
  color: #F7F9FC;
  font-size: 14px;
}
.footer-left-companylogo {
  width: 180px;
  height: 80px;
  margin-bottom: 24px;
}
.footer-left-companylogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.footer-left-companytitle {
  font-size: 16px;
  margin-bottom: 16px;
}
.footer-left-companytel {
  text-decoration: underline;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 12px;
}
@media (max-width: 500px) {
  .footer-nav {
    gap: 16px;
  }
}
.footer-nav li {
  min-width: 120px;
  color: #F7F9FC;
  margin-bottom: 4px;
}
.footer-nav li a {
  position: relative;
  transition: all 0.5s ease;
}
.footer-nav li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background-color: #AE9D6B;
  transition: width 0.3s ease;
}
.footer-nav li a:hover {
  color: #AE9D6B;
}
.footer-nav li a:hover::after {
  width: 100%;
}
.footer-nav-title {
  font-weight: bold;
  font-size: 16px;
}

small {
  display: block;
  text-align: center;
  color: #F7F9FC;
}

.about {
  margin-bottom: 100px;
}
.about-contents {
  width: 100%;
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .about-contents {
    flex-direction: column;
    height: 100%;
    gap: 32px;
  }
}
.about-contents img {
  width: 40%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  border-radius: 10px;
  box-shadow: 3px 3px 10px #333;
}
@media (max-width: 900px) {
  .about-contents img {
    width: 70%;
    max-height: 350px;
  }
}
@media (max-width: 500px) {
  .about-contents img {
    width: 100%;
  }
}
.about-contents-inner {
  width: 60%;
}
@media (max-width: 900px) {
  .about-contents-inner {
    width: 80%;
  }
}
@media (max-width: 500px) {
  .about-contents-inner {
    width: 100%;
  }
}
.about-contents-inner p {
  width: 100%;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 32px;
}
.about-contents-inner-btn {
  width: 100%;
  height: 100px;
  font-weight: bold;
  color: #F7F9FC;
  background-color: #1F3A5F;
  box-shadow: 4px 4px 4px #333;
  transition: all 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  margin-inline: auto;
  margin-bottom: 30px;
}
.about-contents-inner-btn:last-of-type {
  margin-bottom: 0;
}
.about-contents-inner-btn:hover {
  opacity: 0.8;
  transform: scale(1.03);
}
.about .btn-text {
  width: 50%;
}
.about .btn-text-title {
  display: block;
  font-size: 20px;
  line-height: 1.7;
}
.about .btn-text-sub {
  display: block;
  font-size: 12px;
  color: #D5AC34;
  font-weight: normal;
}

.recruit {
  width: 100%;
  background-color: #C5CAE9;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  padding-block: 80px;
}
.recruit-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 900px) {
  .recruit-inner {
    flex-direction: column;
  }
}
.recruit-content {
  width: 60%;
  z-index: 5;
}
@media (max-width: 900px) {
  .recruit-content {
    width: 100%;
    margin-bottom: 24px;
  }
}
.recruit-title {
  font-size: 32px;
  margin-bottom: 20px;
}
@media (max-width: 500px) {
  .recruit-title {
    font-size: 22px;
  }
}
.recruit-text {
  font-size: 16px;
  margin-bottom: 30px;
}
.recruit-button {
  text-align: left;
}
.recruit-button a {
  background-color: #F7F9FC;
  color: #333;
  border: 1px solid #1F3A5F;
}
.recruit-imgs {
  width: 40%;
  display: flex;
  gap: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: -32px;
}
@media (max-width: 900px) {
  .recruit-imgs {
    width: 60%;
    flex-direction: row;
    gap: 24px;
  }
}
@media (max-width: 500px) {
  .recruit-imgs {
    width: 80%;
  }
}
.recruit-img {
  width: 60%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
}
.recruit-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.recruit {
  /* メイン画像 */
}
.recruit-img-main {
  margin-left: -100px;
}
@media (max-width: 900px) {
  .recruit-img-main {
    margin-left: 0px;
  }
}
.recruit {
  /* サブ画像 */
}
.recruit-img-sub {
  margin-right: -100px;
}
@media (max-width: 900px) {
  .recruit-img-sub {
    margin-right: 0px;
    margin-bottom: -100px;
  }
}

.mainvisual {
  width: 100%;
  height: 100vh;
  background-color: #1F3A5F;
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
}
.mainvisual-text {
  color: #fff;
  font-size: 56px;
  font-weight: bold;
  text-shadow: 0px 0px 8px #333;
  position: absolute;
  top: 50%;
  left: 5%;
  z-index: 5;
}
.mainvisual-text-emp {
  color: #D5AC34;
}
@media (max-width: 900px) {
  .mainvisual-text {
    font-size: 40px;
    top: 60%;
  }
}
@media (max-width: 500px) {
  .mainvisual-text {
    font-size: 28px;
    top: 65%;
  }
}
.mainvisual-img {
  width: 75%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
}
.mainvisual-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 900px) {
  .mainvisual-img img {
    -o-object-position: 65% center;
       object-position: 65% center;
    transform: scale(1.1);
  }
}

.contact {
  background-color: #1F3A5F;
  border-start-start-radius: 50px;
  border-start-end-radius: 50px;
  padding-block: 80px;
}
.contact-text {
  color: #F7F9FC;
  font-size: 18px;
  margin-bottom: 50px;
}
.contact-button {
  text-align: left;
}
.contact-button a {
  background-color: #F7F9FC;
  color: #333;
  border: 1px solid #1F3A5F;
}

.contact-info {
  font-size: 16px;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}
.contact-info-text {
  text-align: left;
  margin-bottom: 30px;
}

.contact-form {
  font-size: 16px;
  color: #333;
  margin-bottom: 100px;
}

.contact-type ul {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-type ul li {
  border: 1px solid #333;
  border-radius: 50px;
  background-color: #4A6FA5;
  color: #F7F9FC;
  cursor: pointer;
  transition: all 0.3s;
  padding-inline: 8px;
}
.contact-type ul li label {
  cursor: pointer;
}
.contact-type ul li:hover {
  opacity: 0.8;
}

.business {
  background-color: #C5CAE9;
  border-radius: 50px;
  padding-block: 80px 130px;
  margin-bottom: 100px;
}
.business-subtitle {
  font-size: 24px;
  text-align: right;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .business-subtitle {
    text-align: left;
  }
}
@media (max-width: 500px) {
  .business-subtitle {
    font-size: 20px;
  }
}
.business-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid #1F3A5F;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .business-list {
    width: 70%;
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .business-list {
    width: 100%;
  }
}
.business-list.is-active .business-card {
  animation: slide-up 0.6s ease-out forwards;
}
.business-list.is-active .business-card:nth-child(1) {
  animation-delay: 0.1s;
}
.business-list.is-active .business-card:nth-child(2) {
  animation-delay: 0.3s;
}
.business-list.is-active .business-card:nth-child(3) {
  animation-delay: 0.5s;
}
.business-card {
  width: 33.3333333333%;
  background: #F7F9FC;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50%);
  transition: all 0.3s ease;
  padding-bottom: 16px;
}
@media (max-width: 900px) {
  .business-card {
    width: 100%;
  }
}
.business-card-img {
  position: relative;
  margin-bottom: 16px;
}
.business-card-img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.business-card-body {
  padding-inline: 16px;
}
.business-card-title {
  font-size: 20px;
  margin-bottom: 8px;
}
.business-card-text {
  font-size: 14px;
}
.business-card:nth-child(1) {
  margin-bottom: 130px;
}
@media (max-width: 900px) {
  .business-card:nth-child(1) {
    margin-bottom: 0;
  }
}
.business-card:nth-child(2) {
  margin-top: 50px;
  margin-bottom: 80px;
}
@media (max-width: 900px) {
  .business-card:nth-child(2) {
    margin-block: 0;
  }
}
.business-card:nth-child(3) {
  margin-top: 100px;
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .business-card:nth-child(3) {
    margin-block: 0;
  }
}
.business-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

@keyframes slide-up {
  0% {
    transform: translateY(50%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.projects-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
@media (max-width: 900px) {
  .projects-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .projects-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 500px) {
  .projects-card {
    margin-inline: auto;
  }
}
.projects-card-item {
  background-color: #F7F9FC;
  color: #333;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.projects-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.projects-card-img {
  overflow: hidden;
}
.projects-card-img img {
  width: 100%;
  transition: transform 0.5s ease;
}
.projects-card-body {
  padding: 16px;
}
.projects-card-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.projects-card-date {
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
}
.projects-card-tag {
  display: inline-block;
  font-size: 12px;
  border-radius: 20px;
  background: #4A6FA5;
  color: #F7F9FC;
  padding: 4px 10px;
}
.projects-card-hidden {
  display: none;
}
.projects-button {
  text-align: center;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.modal.is-active {
  display: block;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.modal-content {
  width: 80%;
  height: 80%;
  background: #1F3A5F;
  color: #F7F9FC;
  border-radius: 10px;
  transition: 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  padding: 72px;
}
@media (max-width: 900px) {
  .modal-content {
    overflow-y: auto;
  }
}
@media (max-width: 500px) {
  .modal-content {
    padding: 72px 32px;
  }
}
.modal.is-active .modal-content {
  transform: translate(-50%, -50%) scale(1);
}
.modal-inner {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .modal-inner {
    height: auto;
    flex-direction: column;
  }
}
.modal-image {
  width: 45%;
  height: 100%;
}
@media (max-width: 900px) {
  .modal-image {
    width: 100%;
  }
}
.modal-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.modal-body {
  width: 55%;
  padding-right: 8px;
  overflow-y: auto;
}
@media (max-width: 900px) {
  .modal-body {
    width: 100%;
    overflow-y: hidden;
  }
}
.modal-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 30px;
}
.modal-info {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
}
@media (max-width: 500px) {
  .modal-info {
    flex-direction: column;
  }
}
.modal-info dt {
  width: 30%;
  font-weight: bold;
  margin-bottom: 16px;
}
@media (max-width: 500px) {
  .modal-info dt {
    width: 100%;
  }
}
.modal-info dd {
  width: 70%;
  margin-bottom: 16px;
}
@media (max-width: 500px) {
  .modal-info dd {
    width: 100%;
  }
}
.modal-category {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background: #5c7aa3;
  font-size: 12px;
}
.modal-close {
  display: inline-flex;
  gap: 6px;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 14px;
  color: #F7F9FC;
  background: none;
  border: none;
  cursor: pointer;
}
.modal-close:hover {
  opacity: 0.7;
}

/* ===== タブ ===== */
.tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 80px;
}
@media (max-width: 500px) {
  .tabs {
    flex-direction: column;
  }
}

.tab {
  font-weight: normal;
  color: #333;
  border-radius: 30px;
  border: 1px solid #4A6FA5;
  background-color: #F7F9FC;
  transition: all 0.3s;
  cursor: pointer;
  padding: 10px 25px;
}
@media (max-width: 500px) {
  .tab {
    width: 120px;
  }
}
.tab.active {
  font-weight: bold;
  color: #F7F9FC;
  background-color: #4A6FA5;
  color: #F7F9FC;
}
.tab:hover {
  opacity: 0.8;
  transform: scale(1.03);
}

/* ===== 一覧 ===== */
.sub-page {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 80px;
}
@media (max-width: 900px) {
  .sub-page {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .sub-page {
    grid-template-columns: repeat(1, 1fr);
  }
}

.projects-pagebtn {
  text-align: center;
  margin-bottom: 80px;
}

.news {
  background-color: #F7F9FC;
  padding-bottom: 80px;
}
.news-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.news-item a {
  display: flex;
  gap: 16px;
  align-items: center;
  border-radius: 10px;
  color: #333;
  border-top: 1px solid #C5CAE9;
  border-left: 1px solid #C5CAE9;
  transition: 0.3s;
  padding: 16px;
}
@media (max-width: 900px) {
  .news-item a {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.news-item a:hover {
  opacity: 0.8;
}
.news-meta {
  min-width: 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
@media (max-width: 900px) {
  .news-meta {
    flex-direction: row;
    align-items: center;
  }
}
.news-tag {
  display: inline-block;
  background: #4A6FA5;
  color: #F7F9FC;
  font-size: 12px;
  border-radius: 20px;
  padding: 4px 10px;
}
.news-date {
  font-size: 12px;
  color: #333;
}
.news-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-arrow {
  font-size: 18px;
  transition: transform 0.3s;
}
.news-item a:hover .news-arrow {
  transform: translateX(5px);
}
.news-pagebtn {
  text-align: center;
  margin-bottom: 80px;
}
.news-button {
  text-align: right;
  margin-bottom: 80px;
}
.news-button-prev {
  text-align: left;
  margin-bottom: 80px;
}

.news-title {
  padding-top: 80px;
}
.news-title-meta {
  width: 70px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 32px;
}
.news-title-tag {
  display: inline-block;
  background: #4A6FA5;
  color: #F7F9FC;
  font-size: 12px;
  border-radius: 20px;
  padding: 4px 10px;
}
.news-title-date {
  font-size: 12px;
  color: #333;
}
.news-title-text {
  flex: 1;
  font-size: 32px;
  color: #333;
  border-bottom: 1px solid #C5CAE9;
  padding-bottom: 80px;
  margin-bottom: 80px;
}

.news-detail {
  margin-bottom: 56px;
}
.news-detail p {
  font-size: 16px;
  color: #333;
  line-height: 2;
  margin-bottom: 24px;
}
.news-detail img {
  margin-bottom: 24px;
}

.company {
  margin-bottom: 80px;
}
.company-info {
  display: flex;
  flex-wrap: wrap;
  color: #333;
}
@media (max-width: 900px) {
  .company-info {
    flex-direction: column;
  }
}
.company-info dt {
  width: 35%;
  color: #1F3A5F;
  border-bottom: 1px solid #C5CAE9;
  padding-left: 24px;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .company-info dt {
    width: 100%;
    border-bottom: none;
    padding-left: 8px;
    padding-bottom: 0;
    margin-bottom: 8px;
  }
}
.company-info dd {
  width: 65%;
  border-bottom: 1px solid #C5CAE9;
  padding-left: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .company-info dd {
    width: 100%;
  }
}

.history {
  background-color: #C5CAE9;
  border-radius: 50px;
  padding-block: 80px 100px;
  margin-bottom: 100px;
}
.history-info {
  display: flex;
  flex-wrap: wrap;
  color: #333;
}
@media (max-width: 900px) {
  .history-info {
    flex-direction: column;
  }
}
.history-info dt {
  width: 35%;
  color: #1F3A5F;
  border-bottom: 1px solid #1F3A5F;
  padding-left: 24px;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .history-info dt {
    width: 100%;
    border-bottom: none;
    padding-left: 8px;
    padding-bottom: 0;
    margin-bottom: 8px;
  }
}
.history-info dd {
  width: 65%;
  border-bottom: 1px solid #1F3A5F;
  padding-left: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .history-info dd {
    width: 100%;
  }
}

.access {
  margin-bottom: 80px;
}
.access iframe {
  width: 100%;
  margin-bottom: 16px;
}

.message {
  width: 100%;
  height: 100%;
  margin-bottom: 80px;
}
.message-inner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
@media (max-width: 900px) {
  .message-inner {
    width: 70%;
    flex-direction: column;
    gap: 32px;
  }
}
@media (max-width: 500px) {
  .message-inner {
    width: 100%;
  }
}
.message-inner img {
  width: 40%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
@media (max-width: 900px) {
  .message-inner img {
    width: 100%;
  }
}
.message-inner-text {
  width: 60%;
  height: 100%;
}
@media (max-width: 900px) {
  .message-inner-text {
    width: 100%;
  }
}
.message-inner-text h3 {
  font-size: 20px;
  margin-bottom: 32px;
}
.message-inner-text p {
  font-size: 14px;
  line-height: 2;
}

.philosophy {
  width: 100%;
  background-color: #C5CAE9;
  border-radius: 50px;
  padding-block: 80px 130px;
  margin-bottom: 100px;
}
.philosophy-subtitle {
  font-size: 24px;
  text-align: right;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .philosophy-subtitle {
    text-align: left;
  }
}
@media (max-width: 500px) {
  .philosophy-subtitle {
    font-size: 18px;
  }
}
.philosophy-inner {
  display: flex;
  gap: 0;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 900px) {
  .philosophy-inner {
    flex-direction: column;
    align-items: center;
  }
}
.philosophy-inner img {
  width: 60%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 900px) {
  .philosophy-inner img {
    width: 70%;
  }
}
@media (max-width: 500px) {
  .philosophy-inner img {
    width: 90%;
  }
}
.philosophy-inner p {
  width: 55%;
  line-height: 1.7;
  font-size: 16px;
  color: #333;
  background: rgba(247, 249, 252, 0.7);
  margin-left: -120px;
  margin-bottom: -100px;
  padding: 30px;
}
@media (max-width: 900px) {
  .philosophy-inner p {
    width: 70%;
    margin-left: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 500px) {
  .philosophy-inner p {
    width: 90%;
    font-size: 14px;
  }
}

.value {
  margin-bottom: 80px;
}
.value-subtitle {
  font-size: 22px;
  text-align: left;
  margin-bottom: 50px;
}
@media (max-width: 500px) {
  .value-subtitle {
    font-size: 18px;
  }
}
.value-list-item {
  border: 1px solid #C5CAE9;
  border-radius: 20px;
  background-color: #F7F9FC;
  opacity: 0;
  padding: 25px 30px;
  margin-bottom: 20px;
}
.value-list dt {
  display: flex;
  align-items: center;
  font-size: 20px;
  margin-bottom: 8px;
}
@media (max-width: 500px) {
  .value-list dt {
    flex-direction: column;
  }
}
.value-list-num {
  min-width: 60px;
  font-size: 32px;
  color: #333;
  display: block;
  text-align: center;
  position: relative;
  margin-right: 30px;
  margin-bottom: 0;
}
@media (max-width: 500px) {
  .value-list-num {
    margin-right: 0;
    margin-bottom: 8px;
  }
}
.value-list-num::after {
  width: 1px;
  height: 60px;
  background-color: #1F3A5F;
  position: absolute;
  content: "";
  top: -8px;
  right: -8px;
}
@media (max-width: 500px) {
  .value-list-num::after {
    width: 240px;
    height: 1px;
    top: 50px;
    right: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.value-list-emp {
  display: inline-block;
  font-weight: bold;
  color: #AE9B6E;
  font-size: 40px;
  margin-right: 3px;
  margin-bottom: 16px;
}
.value-list dd {
  font-size: 16px;
  padding-left: 100px;
  margin-bottom: 8px;
}
@media (max-width: 500px) {
  .value-list dd {
    padding-left: 0;
  }
}

.slide-up {
  animation: slide-up 0.5s ease-out 0s 1 forwards;
}

@keyframes slide-up {
  0% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.benefits p {
  font-size: 20px;
  margin-bottom: 80px;
}
.benefits-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: center;
  margin-bottom: 80px;
}
@media (max-width: 500px) {
  .benefits-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.benefits-item {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 16px;
  border: 1px solid #1F3A5F;
  border-radius: 20px;
  background-color: #C5CAE9;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  padding: 20px;
}
@media (max-width: 900px) {
  .benefits-item {
    font-size: 14px;
  }
}

.entry {
  margin-bottom: 80px;
}
.entry p {
  font-size: 32px;
  font-weight: bold;
  color: #AE9D6B;
  text-align: center;
  margin-bottom: 60px;
}

.contents-btn {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 900px) {
  .contents-btn {
    flex-direction: column;
  }
}

.btn-content {
  width: 33.3333333333%;
  font-size: 20px;
  color: #F7F9FC;
  background-color: #1F3A5F;
  border: 2px solid #1F3A5F;
  transition: all 0.5s;
  padding-block: 64px;
}
@media (max-width: 900px) {
  .btn-content {
    width: 100%;
    padding-block: 48px;
  }
}
.btn-content:hover {
  color: #1F3A5F;
  background-color: #F7F9FC;
  transform: scale(1.03);
}

.slide-items {
  margin-bottom: 80px;
}
.slide-items img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slick-slide {
  margin-inline: 20px;
}

.flow {
  background-color: #C5CAE9;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  padding-block: 80px;
  margin-bottom: 80px;
}
.flow-list {
  position: relative;
  /* 縦線 */
}
.flow-list::before {
  height: 90%;
  border-left: 2px dotted #1F3A5F;
  position: absolute;
  content: "";
  top: 0;
  left: 50px;
}
@media (max-width: 900px) {
  .flow-list::before {
    border-left: none;
  }
}
.flow-list-item {
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .flow-list-item {
    flex-direction: column;
    align-items: center;
  }
}
.flow-list-item-left {
  width: 100px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.flow-list-item-content {
  position: relative;
  background: #F7F9FC;
  border-radius: 20px;
  opacity: 0;
  flex: 1;
  padding: 24px;
}
@media (max-width: 900px) {
  .flow-list-item-content {
    width: 100%;
  }
}
.flow-list {
  /* 吹き出しの三角 */
}
.flow-list-item-content::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 30px;
  border-width: 10px;
  border-style: solid;
  border-color: transparent #F7F9FC transparent transparent;
}
@media (max-width: 900px) {
  .flow-list-item-content::before {
    left: 50%;
    right: 50%;
    top: -10px;
    transform: translate(-50%, -50%);
    border-color: transparent transparent #F7F9FC transparent;
  }
}
.flow-list {
  /* 見出し */
}
.flow-list-item-content h3 {
  font-size: 24px;
  color: #AE9D6B;
  margin-bottom: 10px;
}
.flow-list {
  /* テキスト */
}
.flow-list-item-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}
.flow-number {
  width: 100px;
  height: 100px;
  background: #F7F9FC;
  font-size: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-up {
  animation: slide-up 0.5s ease-out 0s 1 forwards;
}

@keyframes slide-up {
  0% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.requirements-detail {
  margin-bottom: 80px;
}
.requirements-detail-info {
  display: flex;
  flex-wrap: wrap;
  color: #333;
}
@media (max-width: 900px) {
  .requirements-detail-info {
    flex-direction: column;
  }
}
.requirements-detail-info dt {
  width: 35%;
  color: #1F3A5F;
  border-bottom: 1px solid #C5CAE9;
  padding-left: 24px;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .requirements-detail-info dt {
    width: 100%;
    border-bottom: none;
    padding-left: 8px;
    padding-bottom: 0;
    margin-bottom: 8px;
  }
}
.requirements-detail-info dd {
  width: 65%;
  border-bottom: 1px solid #C5CAE9;
  padding-left: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .requirements-detail-info dd {
    width: 100%;
  }
}

.recruit-pagebtn {
  text-align: center;
  margin-bottom: 80px;
}

.recruit-button-prev {
  margin-bottom: 80px;
}

.entry-info {
  font-size: 16px;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}
.entry-info-text {
  text-align: left;
  margin-bottom: 30px;
}

.entry-form {
  font-size: 16px;
  color: #333;
  margin-bottom: 100px;
}/*# sourceMappingURL=style.css.map */