@charset "UTF-8";
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}
body {
  font-family: "Noto Sans JP", "Yu Gothic", "Meiryo", sans-serif;
  background: #fff;
  color: #222;
  margin: 0;
  padding: 0;
  animation: fadeIn 1.5s cubic-bezier(0.47, 0, 0.75, 0.72) 0s 1 normal;
  -webkit-animation: fadeIn 1.5s cubic-bezier(0.47, 0, 0.75, 0.72) 0s 1 normal;
}

.container.footer-container {
  padding: 0 !important;
  margin: 0 auto !important;
  max-width: none !important;
  width: 100% !important;
}

footer ul,
footer li {
  padding: 0 !important;
  list-style: none !important;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.container {
  margin: 0 auto;
}

.container-fluid {
  width: 100%;
}

#wrapper {
  position: relative;
}

.site-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: #5d5852;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 0;
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
}
@media (min-width: 992px) {
  .site-header .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .site-header .header-inner .site-logo {
    margin-bottom: 0;
  }
  .site-header .header-inner .site-nav {
    width: auto;
    display: flex !important;
    gap: 20px;
  }
  .site-header .header-inner .hamburger {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .site-header .header-inner {
    flex-direction: column;
  }
  .site-header .header-inner .site-logo {
    margin-bottom: 16px;
  }
  .site-header .header-inner .site-logo img {
    margin: 5px 0;
  }
  .site-header .header-inner .hamburger {
    display: none;
  }
}
@media (max-width: 767px) {
  .site-header .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
  .site-header .header-inner .site-logo {
    margin-bottom: 0;
  }
  .site-header .header-inner .site-logo img {
    margin: 5px 0;
  }
  .site-header .header-inner .hamburger {
    display: flex;
    order: 2;
    position: fixed;
    top: 0;
  }
  .site-header .header-inner .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #5d5852;
    z-index: 1000;
  }
  .site-header .header-inner .site-nav.active {
    display: block;
    animation: slideDown 0.3s ease-out;
  }
  .site-header .header-inner .site-nav .site-nav_txt {
    white-space: nowrap;
    display: block;
    padding: 16px 24px;
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    background: transparent;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, color 0.2s;
  }
  .site-header .header-inner .site-nav .site-nav_txt:hover, .site-header .header-inner .site-nav .site-nav_txt:focus {
    opacity: 0.9;
    border-bottom: 1px solid #fff;
  }
  .site-header .header-inner .site-nav .site-nav_txt:last-child {
    border-bottom: none;
  }
}
.site-header .site-logo img {
  height: auto;
  width: auto;
  margin: 15px 0;
}
.site-header .site-nav {
  display: flex;
  gap: 20px;
}
.site-header .site-nav .site-nav_txt {
  white-space: nowrap;
  color: #fff;
  font-size: 1.3rem;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  transition: border-color 0.2s, color 0.2s;
}
.site-header .site-nav .site-nav_txt:hover, .site-header .site-nav .site-nav_txt:focus {
  opacity: 0.9;
  border-bottom: 1px solid #fff;
}

.home {
  /* 会社紹介セクション */
  /* カード */
}
.home .site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.home .site-header .header-inner {
  display: flex;
  align-items: center;
  padding: initial;
}
@media (min-width: 992px) {
  .home .site-header .header-inner {
    justify-content: center;
    flex-direction: row;
  }
  .home .site-header .header-inner .site-logo {
    display: block;
    margin-right: 10%;
    margin-bottom: 0;
  }
  .home .site-header .header-inner .site-nav {
    display: flex !important;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .home .site-header .header-inner .hamburger {
    display: none;
  }
}
@media (max-width: 767px) {
  .home .site-header .header-inner .site-logo {
    margin-top: 50px;
  }
}
.home .site-header .header-inner .site-logo img {
  height: auto;
  width: auto;
  margin: 15px 0;
}
.home .site-header .header-inner .site-nav {
  display: flex;
  gap: 20px;
}
.home .site-header .header-inner .site-nav .site-nav_txt {
  white-space: nowrap;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 8px 0;
  background: transparent;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.home .site-header .header-inner .site-nav .site-nav_txt:hover, .home .site-header .header-inner .site-nav .site-nav_txt:focus {
  opacity: 0.9;
  border-bottom: 1px solid #fff;
}
@media (min-width: 768px) and (max-width: 991px) {
  .home .site-header .header-inner .site-nav .site-nav_txt {
    font-size: 1.1rem;
    margin: 5px 10px;
  }
}
@media (max-width: 767px) {
  .home .site-header .header-inner .site-nav .site-nav_txt {
    display: block;
    padding: 16px 24px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
  }
  .home .site-header .header-inner .site-nav .site-nav_txt:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .home .site-header .header-inner .site-nav .site-nav_txt:last-child {
    border-bottom: none;
  }
}
.home .parallax-header {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  z-index: 10;
}
.home .parallax-header .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120vh;
  z-index: 1;
  background-image: url("../img/bg_header.jpg");
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.home .parallax-header .hero-center {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.home .parallax-header .hero-center .hero-text {
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.home .parallax-header .hero-center .hero-text .hero-title {
  font-size: 3.5rem;
  margin: 2rem 0;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .home .parallax-header .hero-center .hero-text .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
}
.home .parallax-header .hero-center .hero-text .hero-description {
  font-size: 1.3rem;
  line-height: 1.8;
  font-weight: 500;
  max-width: 51%;
  margin: 0 auto;
  padding: 50px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media (max-width: 767px) {
  .home .parallax-header .hero-center .hero-text .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .home #wrapper .site-header {
    top: 60px;
  }
  .home #wrapper .site-header .header-inner {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .home #wrapper .site-header .header-inner .site-nav {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    top: 60px;
    position: fixed;
  }
  .home #wrapper .site-header .hamburger {
    background-color: #5d5852;
    width: 100%;
    position: fixed;
    top: 0;
    display: block;
  }
  .home #wrapper .site-header .hamburger .hamburger-inner {
    margin: 15px;
    justify-self: flex-end;
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 30px;
    justify-content: center;
    position: relative;
    z-index: 1001;
  }
  .home #wrapper .site-header .hamburger .hamburger-inner span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .home #wrapper .site-header .hamburger .hamburger-inner.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .home #wrapper .site-header .hamburger .hamburger-inner.active span:nth-child(2) {
    opacity: 0;
  }
  .home #wrapper .site-header .hamburger .hamburger-inner.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .home #wrapper .site-header .hamburger .hamburger-inner {
    display: flex;
  }
}
@media (max-width: 767px) {
  .home .parallax-header .hero-bg {
    background-attachment: scroll;
    height: 100vh;
  }
}
@media (min-width: 768px) {
  .home #wrapper .site-header .header-inner {
    flex-direction: column;
    justify-content: center;
  }
  .home #wrapper .site-header .header-inner .site-nav {
    gap: 20px;
    display: flex;
  }
  .home #wrapper .site-header .header-inner .site-nav a {
    font-size: 1.3rem;
  }
}
@media (min-width: 992px) {
  .home #wrapper .site-header {
    top: 0;
  }
  .home #wrapper .site-header .header-inner {
    flex-direction: initial;
    justify-content: center;
  }
  .home #wrapper .site-header .header-inner .site-nav {
    gap: 20px;
  }
  .home #wrapper .site-header .header-inner .site-nav a {
    font-size: 1.3rem;
  }
}
.home .about-section {
  padding: 80px 0;
}
.home .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.home .section-title {
  font-size: 2.5rem;
  color: #454545;
  margin-bottom: 1rem;
  font-weight: 300;
}
.home .section-subtitle {
  font-size: 1.1rem;
  color: #d6cec0;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 10px;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
}
.home .section-subtitle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  display: inline-block;
  width: 60px;
  height: 3px;
  transform: translateX(-50%);
  background-color: #d6cec0;
}
.home .section-description {
  font-size: 2.5rem;
  color: #8dbfad;
  font-weight: 500;
  margin: 0 auto;
  line-height: 1.6;
}
.home .info-card {
  background: white;
  margin-bottom: 30px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.home .card-image {
  height: 250px;
  overflow: hidden;
}
.home .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.home .card-content {
  padding: 5px;
  text-align: center;
}
.home .card-title {
  font-size: 1.8rem;
  padding: 10px 0;
  color: #333;
  margin-bottom: 1rem;
  border-bottom: 1.5px solid #f2f2f2;
}
.home .card-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-align: left;
}

/* ボタン */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  text-align: center;
  background: #8dbfad;
  color: white;
}
.btn:hover {
  opacity: 0.8;
  color: white;
  transition: all 0.4s ease;
}

/* REGURATIONページ系共通スタイル */
.privacy-page-layout,
.infosec-page-layout,
.harrasment-page-layout,
.margin-page-layout {
  display: flex;
  flex-direction: row;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}
.privacy-page-layout .privacy-category,
.infosec-page-layout .privacy-category,
.harrasment-page-layout .privacy-category,
.margin-page-layout .privacy-category {
  width: 260px;
  min-width: 180px;
  background-color: #f2f2f2;
  border-radius: 8px;
  padding: 24px 16px;
}
.privacy-page-layout .privacy-category ul,
.infosec-page-layout .privacy-category ul,
.harrasment-page-layout .privacy-category ul,
.margin-page-layout .privacy-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.privacy-page-layout .privacy-category ul li,
.infosec-page-layout .privacy-category ul li,
.harrasment-page-layout .privacy-category ul li,
.margin-page-layout .privacy-category ul li {
  margin-bottom: 18px;
}
.privacy-page-layout .privacy-category ul li a,
.infosec-page-layout .privacy-category ul li a,
.harrasment-page-layout .privacy-category ul li a,
.margin-page-layout .privacy-category ul li a {
  color: #337ab7;
  text-decoration: none;
}
.privacy-page-layout .privacy-category ul li a:hover,
.infosec-page-layout .privacy-category ul li a:hover,
.harrasment-page-layout .privacy-category ul li a:hover,
.margin-page-layout .privacy-category ul li a:hover {
  color: #1862b1;
}
.privacy-page-layout .privacy-main-content,
.privacy-page-layout .infosec-main-content,
.privacy-page-layout .harrasment-main-content,
.privacy-page-layout .margin-main-content,
.infosec-page-layout .privacy-main-content,
.infosec-page-layout .infosec-main-content,
.infosec-page-layout .harrasment-main-content,
.infosec-page-layout .margin-main-content,
.harrasment-page-layout .privacy-main-content,
.harrasment-page-layout .infosec-main-content,
.harrasment-page-layout .harrasment-main-content,
.harrasment-page-layout .margin-main-content,
.margin-page-layout .privacy-main-content,
.margin-page-layout .infosec-main-content,
.margin-page-layout .harrasment-main-content,
.margin-page-layout .margin-main-content {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  color: #333;
  letter-spacing: 0.3px;
  line-height: 1.5;
}
.privacy-page-layout .privacy-main-content h2,
.privacy-page-layout .privacy-main-content h3,
.privacy-page-layout .privacy-main-content h4,
.privacy-page-layout .infosec-main-content h2,
.privacy-page-layout .infosec-main-content h3,
.privacy-page-layout .infosec-main-content h4,
.privacy-page-layout .harrasment-main-content h2,
.privacy-page-layout .harrasment-main-content h3,
.privacy-page-layout .harrasment-main-content h4,
.privacy-page-layout .margin-main-content h2,
.privacy-page-layout .margin-main-content h3,
.privacy-page-layout .margin-main-content h4,
.infosec-page-layout .privacy-main-content h2,
.infosec-page-layout .privacy-main-content h3,
.infosec-page-layout .privacy-main-content h4,
.infosec-page-layout .infosec-main-content h2,
.infosec-page-layout .infosec-main-content h3,
.infosec-page-layout .infosec-main-content h4,
.infosec-page-layout .harrasment-main-content h2,
.infosec-page-layout .harrasment-main-content h3,
.infosec-page-layout .harrasment-main-content h4,
.infosec-page-layout .margin-main-content h2,
.infosec-page-layout .margin-main-content h3,
.infosec-page-layout .margin-main-content h4,
.harrasment-page-layout .privacy-main-content h2,
.harrasment-page-layout .privacy-main-content h3,
.harrasment-page-layout .privacy-main-content h4,
.harrasment-page-layout .infosec-main-content h2,
.harrasment-page-layout .infosec-main-content h3,
.harrasment-page-layout .infosec-main-content h4,
.harrasment-page-layout .harrasment-main-content h2,
.harrasment-page-layout .harrasment-main-content h3,
.harrasment-page-layout .harrasment-main-content h4,
.harrasment-page-layout .margin-main-content h2,
.harrasment-page-layout .margin-main-content h3,
.harrasment-page-layout .margin-main-content h4,
.margin-page-layout .privacy-main-content h2,
.margin-page-layout .privacy-main-content h3,
.margin-page-layout .privacy-main-content h4,
.margin-page-layout .infosec-main-content h2,
.margin-page-layout .infosec-main-content h3,
.margin-page-layout .infosec-main-content h4,
.margin-page-layout .harrasment-main-content h2,
.margin-page-layout .harrasment-main-content h3,
.margin-page-layout .harrasment-main-content h4,
.margin-page-layout .margin-main-content h2,
.margin-page-layout .margin-main-content h3,
.margin-page-layout .margin-main-content h4 {
  margin: 2rem 0;
}
.privacy-page-layout .privacy-main-content h2,
.privacy-page-layout .infosec-main-content h2,
.privacy-page-layout .harrasment-main-content h2,
.privacy-page-layout .margin-main-content h2,
.infosec-page-layout .privacy-main-content h2,
.infosec-page-layout .infosec-main-content h2,
.infosec-page-layout .harrasment-main-content h2,
.infosec-page-layout .margin-main-content h2,
.harrasment-page-layout .privacy-main-content h2,
.harrasment-page-layout .infosec-main-content h2,
.harrasment-page-layout .harrasment-main-content h2,
.harrasment-page-layout .margin-main-content h2,
.margin-page-layout .privacy-main-content h2,
.margin-page-layout .infosec-main-content h2,
.margin-page-layout .harrasment-main-content h2,
.margin-page-layout .margin-main-content h2 {
  background-color: #f2f2f2;
  padding: 10px;
  text-align: center;
}
.privacy-page-layout .privacy-main-content h3,
.privacy-page-layout .infosec-main-content h3,
.privacy-page-layout .harrasment-main-content h3,
.privacy-page-layout .margin-main-content h3,
.infosec-page-layout .privacy-main-content h3,
.infosec-page-layout .infosec-main-content h3,
.infosec-page-layout .harrasment-main-content h3,
.infosec-page-layout .margin-main-content h3,
.harrasment-page-layout .privacy-main-content h3,
.harrasment-page-layout .infosec-main-content h3,
.harrasment-page-layout .harrasment-main-content h3,
.harrasment-page-layout .margin-main-content h3,
.margin-page-layout .privacy-main-content h3,
.margin-page-layout .infosec-main-content h3,
.margin-page-layout .harrasment-main-content h3,
.margin-page-layout .margin-main-content h3 {
  padding-bottom: 10px;
  border-bottom: 1px solid #f2f2f2;
}
.privacy-page-layout .privacy-main-content table.margin-table,
.privacy-page-layout .infosec-main-content table.margin-table,
.privacy-page-layout .harrasment-main-content table.margin-table,
.privacy-page-layout .margin-main-content table.margin-table,
.infosec-page-layout .privacy-main-content table.margin-table,
.infosec-page-layout .infosec-main-content table.margin-table,
.infosec-page-layout .harrasment-main-content table.margin-table,
.infosec-page-layout .margin-main-content table.margin-table,
.harrasment-page-layout .privacy-main-content table.margin-table,
.harrasment-page-layout .infosec-main-content table.margin-table,
.harrasment-page-layout .harrasment-main-content table.margin-table,
.harrasment-page-layout .margin-main-content table.margin-table,
.margin-page-layout .privacy-main-content table.margin-table,
.margin-page-layout .infosec-main-content table.margin-table,
.margin-page-layout .harrasment-main-content table.margin-table,
.margin-page-layout .margin-main-content table.margin-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
}
.privacy-page-layout .privacy-main-content table.margin-table th,
.privacy-page-layout .privacy-main-content table.margin-table td,
.privacy-page-layout .infosec-main-content table.margin-table th,
.privacy-page-layout .infosec-main-content table.margin-table td,
.privacy-page-layout .harrasment-main-content table.margin-table th,
.privacy-page-layout .harrasment-main-content table.margin-table td,
.privacy-page-layout .margin-main-content table.margin-table th,
.privacy-page-layout .margin-main-content table.margin-table td,
.infosec-page-layout .privacy-main-content table.margin-table th,
.infosec-page-layout .privacy-main-content table.margin-table td,
.infosec-page-layout .infosec-main-content table.margin-table th,
.infosec-page-layout .infosec-main-content table.margin-table td,
.infosec-page-layout .harrasment-main-content table.margin-table th,
.infosec-page-layout .harrasment-main-content table.margin-table td,
.infosec-page-layout .margin-main-content table.margin-table th,
.infosec-page-layout .margin-main-content table.margin-table td,
.harrasment-page-layout .privacy-main-content table.margin-table th,
.harrasment-page-layout .privacy-main-content table.margin-table td,
.harrasment-page-layout .infosec-main-content table.margin-table th,
.harrasment-page-layout .infosec-main-content table.margin-table td,
.harrasment-page-layout .harrasment-main-content table.margin-table th,
.harrasment-page-layout .harrasment-main-content table.margin-table td,
.harrasment-page-layout .margin-main-content table.margin-table th,
.harrasment-page-layout .margin-main-content table.margin-table td,
.margin-page-layout .privacy-main-content table.margin-table th,
.margin-page-layout .privacy-main-content table.margin-table td,
.margin-page-layout .infosec-main-content table.margin-table th,
.margin-page-layout .infosec-main-content table.margin-table td,
.margin-page-layout .harrasment-main-content table.margin-table th,
.margin-page-layout .harrasment-main-content table.margin-table td,
.margin-page-layout .margin-main-content table.margin-table th,
.margin-page-layout .margin-main-content table.margin-table td {
  border: 1px solid #ddd;
  padding: 10px;
  text-align: left;
}
.privacy-page-layout .privacy-main-content table.margin-table th,
.privacy-page-layout .infosec-main-content table.margin-table th,
.privacy-page-layout .harrasment-main-content table.margin-table th,
.privacy-page-layout .margin-main-content table.margin-table th,
.infosec-page-layout .privacy-main-content table.margin-table th,
.infosec-page-layout .infosec-main-content table.margin-table th,
.infosec-page-layout .harrasment-main-content table.margin-table th,
.infosec-page-layout .margin-main-content table.margin-table th,
.harrasment-page-layout .privacy-main-content table.margin-table th,
.harrasment-page-layout .infosec-main-content table.margin-table th,
.harrasment-page-layout .harrasment-main-content table.margin-table th,
.harrasment-page-layout .margin-main-content table.margin-table th,
.margin-page-layout .privacy-main-content table.margin-table th,
.margin-page-layout .infosec-main-content table.margin-table th,
.margin-page-layout .harrasment-main-content table.margin-table th,
.margin-page-layout .margin-main-content table.margin-table th {
  background: #f5f5f5;
  font-weight: bold;
}

@media (max-width: 767px) {
  .privacy-page-layout,
  .infosec-page-layout,
  .harrasment-page-layout,
  .margin-page-layout {
    flex-direction: column;
    gap: 0;
    margin-top: 60px;
  }
  .privacy-page-layout .privacy-category,
  .infosec-page-layout .privacy-category,
  .harrasment-page-layout .privacy-category,
  .margin-page-layout .privacy-category {
    width: 100%;
    min-width: unset;
    margin-bottom: 24px;
    padding: 20px;
  }
  .privacy-page-layout .privacy-category ul li,
  .infosec-page-layout .privacy-category ul li,
  .harrasment-page-layout .privacy-category ul li,
  .margin-page-layout .privacy-category ul li {
    margin: 10px 0;
  }
  .privacy-page-layout .privacy-main-content,
  .privacy-page-layout .infosec-main-content,
  .privacy-page-layout .harrasment-main-content,
  .privacy-page-layout .margin-main-content,
  .infosec-page-layout .privacy-main-content,
  .infosec-page-layout .infosec-main-content,
  .infosec-page-layout .harrasment-main-content,
  .infosec-page-layout .margin-main-content,
  .harrasment-page-layout .privacy-main-content,
  .harrasment-page-layout .infosec-main-content,
  .harrasment-page-layout .harrasment-main-content,
  .harrasment-page-layout .margin-main-content,
  .margin-page-layout .privacy-main-content,
  .margin-page-layout .infosec-main-content,
  .margin-page-layout .harrasment-main-content,
  .margin-page-layout .margin-main-content {
    padding: 20px;
  }
  .privacy-page-layout .privacy-main-content h2,
  .privacy-page-layout .infosec-main-content h2,
  .privacy-page-layout .harrasment-main-content h2,
  .privacy-page-layout .margin-main-content h2,
  .infosec-page-layout .privacy-main-content h2,
  .infosec-page-layout .infosec-main-content h2,
  .infosec-page-layout .harrasment-main-content h2,
  .infosec-page-layout .margin-main-content h2,
  .harrasment-page-layout .privacy-main-content h2,
  .harrasment-page-layout .infosec-main-content h2,
  .harrasment-page-layout .harrasment-main-content h2,
  .harrasment-page-layout .margin-main-content h2,
  .margin-page-layout .privacy-main-content h2,
  .margin-page-layout .infosec-main-content h2,
  .margin-page-layout .harrasment-main-content h2,
  .margin-page-layout .margin-main-content h2 {
    font-size: 2.5rem;
  }
  .privacy-page-layout .privacy-main-content h3,
  .privacy-page-layout .infosec-main-content h3,
  .privacy-page-layout .harrasment-main-content h3,
  .privacy-page-layout .margin-main-content h3,
  .infosec-page-layout .privacy-main-content h3,
  .infosec-page-layout .infosec-main-content h3,
  .infosec-page-layout .harrasment-main-content h3,
  .infosec-page-layout .margin-main-content h3,
  .harrasment-page-layout .privacy-main-content h3,
  .harrasment-page-layout .infosec-main-content h3,
  .harrasment-page-layout .harrasment-main-content h3,
  .harrasment-page-layout .margin-main-content h3,
  .margin-page-layout .privacy-main-content h3,
  .margin-page-layout .infosec-main-content h3,
  .margin-page-layout .harrasment-main-content h3,
  .margin-page-layout .margin-main-content h3 {
    font-size: 2rem;
  }
}
/* 応募セクション */
.application-section {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.application-section .application-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  z-index: 1;
  will-change: transform;
  background-image: url("../img/bg_side.jpg"), url("./img/bg_side.jpg"), url("/../img/bg_side.jpg"), url("../img/bg_side.jpg"), url("./img/bg_side.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.application-section .application-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
}
.application-section .application-overlay .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 3;
}

.application-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.application-content .application-title {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 300;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .application-content .application-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 480px) {
  .application-content .application-title {
    font-size: 1.8rem;
  }
}
.application-content .application-subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d6cec0;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.application-content .application-subtitle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: #d6cec0;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .application-content .application-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}
.application-content .application-message {
  margin: 3rem 0;
}
.application-content .application-message .main-message {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  padding-top: 30px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .application-content .application-message .main-message {
    font-size: 1.6rem;
    padding: 20px 0;
  }
}
@media (max-width: 480px) {
  .application-content .application-message .main-message {
    font-size: 1.4rem;
    padding: 15px 0;
  }
}
.application-content .application-message .detailed-message {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 30px;
}
@media (max-width: 768px) {
  .application-content .application-message .detailed-message {
    font-size: 1rem;
    line-height: 1.6;
  }
}
@media (max-width: 480px) {
  .application-content .application-message .detailed-message {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}
.application-content .application-button {
  margin-top: 3rem;
}
.application-content .application-button .btn-application {
  display: inline-block;
  padding: 15px 40px;
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  text-shadow: none;
  border: 2px solid white;
}
.application-content .application-button .btn-application:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .application-content .application-button .btn-application {
    padding: 12px 30px;
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .application-content .application-button .btn-application {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  #wrapper .site-header {
    top: 60px;
  }
  #wrapper .site-header .header-inner {
    flex-direction: column-reverse;
    justify-content: center;
  }
  #wrapper .site-header .header-inner .site-nav {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    top: 60px;
    position: fixed;
  }
  #wrapper .site-header .hamburger {
    background-color: #5d5852;
    width: 100%;
    position: fixed;
    top: 0;
    display: block;
  }
  #wrapper .site-header .hamburger .hamburger-inner {
    justify-self: flex-end;
    margin: 15px;
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 30px;
    justify-content: center;
    position: relative;
    z-index: 1001;
  }
  #wrapper .site-header .hamburger .hamburger-inner span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  #wrapper .site-header .hamburger .hamburger-inner.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  #wrapper .site-header .hamburger .hamburger-inner.active span:nth-child(2) {
    opacity: 0;
  }
  #wrapper .site-header .hamburger .hamburger-inner.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}
@media (max-width: 768px) and (max-width: 767px) {
  #wrapper .site-header .hamburger .hamburger-inner {
    display: flex;
  }
}
@media (max-width: 768px) {
  .parallax-header .hero-bg {
    background-attachment: scroll;
    height: 100vh;
  }
}
.application-section .application-background {
  top: -10%;
  height: 120%;
  background-attachment: scroll;
}
.application-section .application-overlay {
  padding: 40px 0;
}
.application-section .application-overlay .container .application-content .application-message {
  margin: 2rem 0;
}
.application-section .application-overlay .container .application-content .application-button {
  margin-top: 2rem;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .application-section .application-overlay .container .application-content .application-title {
    font-size: 2.5rem;
  }
  .application-section .application-overlay .container .application-content .main-message {
    font-size: 1.8rem;
  }
  .application-section .application-overlay .container .application-content .detailed-message {
    font-size: 1.05rem;
  }
}
@media (min-width: 1200px) {
  .application-section .application-overlay .container .application-content .application-title {
    font-size: 3.2rem;
  }
  .application-section .application-overlay .container .application-content .main-message {
    font-size: 2.2rem;
  }
  .application-section .application-overlay .container .application-content .detailed-message {
    font-size: 1.2rem;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.application-content {
  animation: fadeInUp 1s ease-out 0.3s both;
}

@media (prefers-reduced-motion: reduce) {
  .application-background {
    transform: none !important;
  }
  .application-content {
    animation: none;
  }
  .btn-application {
    transition: none;
  }
  .btn-application:hover {
    transform: none;
  }
}
footer {
  padding: 0 !important;
}
footer .footer-menu {
  background: #5d5852;
  padding: 20px;
}
footer .footer-menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 1.5rem;
}
footer .footer-menu ul .menu-level-0 {
  margin: 0 20px;
  padding: 0 !important;
}
footer .footer-menu ul .menu-level-0 a.menu0 {
  color: #fff;
  text-decoration: none;
  font-size: 1.4rem;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.2s;
  margin-bottom: 10px;
  padding-bottom: 10px;
}
footer .footer-menu ul .menu-level-0 a.menu0::after {
  content: "";
  border-bottom: 2px solid white;
  width: 30px;
  display: block;
  height: 10px;
}
footer .footer-menu ul .menu-level-0 ul {
  padding: 0 !important;
  margin: 0 !important;
}
footer .footer-menu ul .menu-level-0 ul .menu-level-1 {
  margin-top: 10px;
  padding: 0 !important;
}
footer .footer-menu ul .menu-level-0 ul .menu-level-1 .menu1 {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}
footer .footer-menu ul .menu-level-0:last-child ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 !important;
  gap: 8px;
}
footer .footer-menu ul .menu-level-0:last-child ul li {
  padding: 0 !important;
}
footer .footer-menu ul .menu-level-0:last-child ul li a.menu0 {
  text-decoration: none;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.2s;
}
@media (max-width: 767px) {
  footer .footer-menu ul {
    gap: 16px;
    font-size: 1.2rem;
    flex-direction: column;
    margin-left: 10px;
    padding: 0 !important;
  }
  footer .footer-menu ul .menu-level-0:last-child ul {
    align-items: flex-start;
    gap: 6px;
  }
}
footer .container {
  width: 100vw !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 auto !important;
  background: #fff;
  color: #333;
  box-sizing: border-box;
}
footer .container .companyInfo {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
}
footer .container .companyInfo p {
  margin: 8px 0;
  font-size: 1.3rem;
}
footer .container .companyInfo .copy {
  max-width: 100vw;
  width: 100%;
  background: #000;
  color: #fff;
  font-size: 1.1rem;
  padding: 12px 0;
  margin: 32px 0 0 0;
  opacity: 0.8;
  text-align: center;
  overflow-x: hidden;
  box-sizing: border-box;
}

.message-page .page-header,
.about-page .page-header,
.recruit-page .page-header,
.application-form-page .page-header,
.contact-form-page .page-header {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  padding: 80px 20px;
  margin: 0;
}
@media (max-width: 768px) {
  .message-page .page-header,
  .about-page .page-header,
  .recruit-page .page-header,
  .application-form-page .page-header,
  .contact-form-page .page-header {
    padding: 60px 0;
    margin-top: 60px;
  }
}
.message-page .page-header .page-title,
.about-page .page-header .page-title,
.recruit-page .page-header .page-title,
.application-form-page .page-header .page-title,
.contact-form-page .page-header .page-title {
  font-size: 3rem;
  font-weight: 300;
  margin: 0;
  letter-spacing: 2px;
  color: white;
}
@media (max-width: 768px) {
  .message-page .page-header .page-title,
  .about-page .page-header .page-title,
  .recruit-page .page-header .page-title,
  .application-form-page .page-header .page-title,
  .contact-form-page .page-header .page-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }
}

.usection-header {
  text-align: center;
  margin-bottom: 50px;
}
.usection-header .section-title {
  font-size: 2.5rem;
  color: #333;
  margin: 20px 0;
  font-weight: 400;
}
@media (max-width: 768px) {
  .usection-header .section-title {
    font-size: 1.8rem;
  }
}
.usection-header .section-subtitle {
  font-size: 1.1rem;
  color: #d6cec0;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  font-weight: 500;
}
.usection-header .section-subtitle::after {
  display: block;
  margin: 20px auto 0;
  width: 60px;
  height: 3px;
  content: "";
  color: #d6cec0;
}

.message-page {
  background: #fff;
  min-height: 100vh;
}
.message-page .page-header {
  background-image: url(../img/header1_6.jpg);
}
.message-page .container {
  max-width: 1200px;
  margin: 0 auto;
}
.message-page .message-content {
  margin: 0 auto;
  padding-top: 30px;
}
.message-page .message-content .message-main .message-catch {
  text-align: center;
  margin-bottom: 40px;
  padding: 30px 20px;
  background-color: #f2f2f2;
  border-radius: 8px;
}
.message-page .message-content .message-main .message-catch .catch-title {
  font-size: 1.8rem;
  color: #333;
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
  border-bottom: 1px solid #d6cec0;
  margin-bottom: 20px;
  padding-bottom: 5px;
}
@media (max-width: 768px) {
  .message-page .message-content .message-main .message-catch .catch-title {
    font-size: 1.4rem;
  }
}
.message-page .message-content .message-main .representative-info {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding: 30px;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .message-page .message-content .message-main .representative-info {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}
.message-page .message-content .message-main .representative-info .rep-image {
  width: 50%;
}
@media (max-width: 768px) {
  .message-page .message-content .message-main .representative-info .rep-image {
    margin-right: 0;
    margin-bottom: 20px;
    flex-shrink: initial;
  }
}
.message-page .message-content .message-main .representative-info .rep-image img {
  width: 80%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.message-page .message-content .message-main .representative-info .rep-details {
  font-size: 1rem;
}
.message-page .message-content .message-main .representative-info .rep-details .rep-name {
  font-size: 1rem;
  color: #333;
  font-weight: 600;
  margin: 0;
}
.message-page .message-content .message-main .message-text {
  width: 50%;
}
@media (max-width: 768px) {
  .message-page .message-content .message-main .message-text {
    width: 100%;
    font-size: 1rem;
    line-height: 1.7;
  }
}
.message-page .message-content .message-main .message-text .message-paragraph {
  margin-bottom: 30px;
}
.message-page .message-content .message-main .message-text .message-paragraph p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #444;
  margin: 0;
  text-align: justify;
}
@media (max-width: 768px) {
  .message-page .message-content .message-main .message-text .message-paragraph p {
    font-size: 1rem;
    line-height: 1.7;
  }
}
.message-page .message-content .message-main .message-text .message-signature {
  text-align: right;
  margin-top: 40px;
  padding-top: 20px;
}
.message-page .message-content .message-main .message-text .message-signature p {
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
  margin: 0;
}

.about-page {
  background: #fff;
  min-height: 100vh;
}
.about-page .page-header {
  background-image: url(../img/header2_3.jpg);
}
.about-page .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .about-page .container {
    margin-top: 60px;
    padding: 0 15px;
  }
}
.about-page .about-content {
  padding-top: 30px;
}
@media (max-width: 768px) {
  .about-page .about-content {
    padding: 40px 0;
  }
}
.about-page .section_header {
  text-align: center;
  margin-bottom: 60px;
  margin-bottom: 30px;
}
.about-page .section_header .section-title {
  font-size: 2.5rem;
  color: #454545;
  margin-bottom: 1rem;
  font-weight: 300;
}
.about-page .section_header .section-subtitle {
  font-size: 1.1rem;
  color: #d6cec0;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 10px;
  display: inline-block;
  margin-bottom: 20px;
  position: relative;
}
.about-page .section_header .section-subtitle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  display: inline-block;
  width: 60px;
  height: 3px;
  transform: translateX(-50%);
  background-color: #d6cec0;
}
.about-page .section_header .section-description {
  font-size: 1.3rem;
  color: #8dbfad;
  font-weight: 500;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .about-page .section_header {
    margin-bottom: 40px;
  }
}
.about-page .business-section {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .about-page .business-section {
    margin-bottom: 30px;
  }
}
.about-page .business-section .company-name {
  text-align: center;
  margin-bottom: 30px;
}
.about-page .business-section .company-name h3 {
  font-size: 2.4rem;
  color: #8dbfad;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 768px) {
  .about-page .business-section .company-name h3 {
    font-size: 1.6rem;
  }
}
.about-page .business-section .business-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .about-page .business-section .business-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .about-page .business-section .business-cards {
    gap: 25px;
  }
}
.about-page .business-section .business-cards .business-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background: #fff;
}
@media (max-width: 768px) {
  .about-page .business-section .business-cards .business-card {
    padding: 25px 15px;
  }
}
.about-page .business-section .business-cards .business-card img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border: 5px solid #8dbfad;
}
.about-page .business-section .business-cards .business-card .card-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: #8dbfad;
  margin-bottom: 20px;
  line-height: 1;
}
@media (max-width: 768px) {
  .about-page .business-section .business-cards .business-card .card-number {
    font-size: 2rem;
    margin-bottom: 15px;
  }
}
.about-page .business-section .business-cards .business-card .card-content {
  width: 100%;
}
.about-page .business-section .business-cards .business-card .card-content .card-title {
  font-size: 1.4rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 20px;
  border-bottom: 1px solid #d6cec0;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .about-page .business-section .business-cards .business-card .card-content .card-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
}
.about-page .business-section .business-cards .business-card .card-content .card-description {
  color: #666;
  line-height: 1.7;
  font-size: 1.3rem;
  text-align: left;
}
.about-page .business-section .business-cards .business-card .card-content .card-description p {
  margin-bottom: 15px;
}
.about-page .business-section .business-cards .business-card .card-content .card-description p:last-child {
  margin-bottom: 0;
}
.about-page .business-section .business-cards .business-card .card-content .card-description ul {
  margin: 15px 0;
  padding-left: 20px;
  text-align: left;
}
.about-page .business-section .business-cards .business-card .card-content .card-description ul li {
  margin-bottom: 8px;
}
.about-page .business-section .business-cards .business-card .card-content .card-description ul li strong {
  color: #333;
}
@media (max-width: 768px) {
  .about-page .business-section .business-cards .business-card .card-content .card-description {
    font-size: 1.1rem;
    line-height: 1.6;
  }
}
.about-page .company-overview-section .section-header {
  text-align: center;
  margin-bottom: 30px;
}
.about-page .company-overview-section .section-header .section-title {
  color: #8dbfad;
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0;
}
.about-page .company-overview-section .company-info-table {
  margin-bottom: 60px;
  display: flex;
  gap: 40px;
}
.about-page .company-overview-section .company-info-table .company-info_image {
  align-items: flex-start;
  width: 30%;
}
.about-page .company-overview-section .company-info-table .company-info_image img {
  width: 100%;
  display: block;
}
@media (max-width: 768px) {
  .about-page .company-overview-section .company-info-table {
    margin-bottom: 40px;
    flex-direction: column;
  }
  .about-page .company-overview-section .company-info-table .company-info_image {
    width: 100%;
  }
  .about-page .company-overview-section .company-info-table .company-info_image img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.about-page .company-overview-section .company-info-table table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #f2f2f2;
}
.about-page .company-overview-section .company-info-table table tr {
  display: flex;
  border-bottom: 1px solid #f2f2f2;
  width: 100%;
}
.about-page .company-overview-section .company-info-table table th,
.about-page .company-overview-section .company-info-table table td {
  padding: 20px 25px;
  text-align: left;
  vertical-align: top;
}
@media (max-width: 768px) {
  .about-page .company-overview-section .company-info-table table th,
  .about-page .company-overview-section .company-info-table table td {
    padding: 15px;
    display: block;
    font-size: 1.5rem;
  }
}
.about-page .company-overview-section .company-info-table table th {
  background-color: #f1ecdf;
  color: #333;
  width: 20%;
  min-width: 120px;
}
@media (max-width: 768px) {
  .about-page .company-overview-section .company-info-table table th {
    border-bottom: none;
    padding-bottom: 8px;
  }
}
.about-page .company-overview-section .company-info-table table td {
  color: #666;
  font-size: 1.4rem;
  line-height: 1.6;
  width: 80%;
}
@media (max-width: 768px) {
  .about-page .company-overview-section .company-info-table table td {
    padding-top: 0;
    padding: 10px;
    font-size: 1.5rem;
  }
}
.about-page .company-overview-section .company-info-table table tr:last-child th,
.about-page .company-overview-section .company-info-table table tr:last-child td {
  border-bottom: none;
}

.recruitment-cta {
  margin: 60px;
  padding: 40px 30px;
  text-align: center;
  color: #333;
  border: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .recruitment-cta {
    padding: 30px 20px;
    margin: 20px 15px;
  }
}
.recruitment-cta .cta-text {
  font-size: 3.6rem;
  margin: 0;
  letter-spacing: 1px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .recruitment-cta .cta-text {
    font-size: 1.4rem;
  }
}
.recruitment-cta .btn-application {
  display: inline-block;
  padding: 15px 40px;
  background: #d6cec0;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  color: white;
}
.recruitment-cta .btn-application:hover {
  opacity: 0.8;
  text-decoration: none;
}
@media (max-width: 768px) {
  .recruitment-cta .btn-application {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

.recruit-page .page-header {
  background-image: url("../img/header3_8.jpg");
}
.recruit-page .btn {
  margin: 0 auto;
  justify-content: center;
  display: flex;
  width: 150px;
  margin-bottom: 50px;
}
.recruit-page .container {
  padding-bottom: 50px;
}

.recruit-content {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 30px;
}
.recruit-content .subsection-title {
  font-size: 2.4rem;
  color: #8dbfad;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .recruit-content .subsection-title {
    font-size: 1.8rem;
  }
}
.recruit-content .recruit-subsection {
  margin-bottom: 50px;
}
.recruit-content .recruit-subsection .message-title {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 400;
  padding-bottom: 10px;
  border-bottom: 1px solid #d6cec0;
}
@media (max-width: 768px) {
  .recruit-content .recruit-subsection .message-title {
    font-size: 1.6rem;
  }
}
.recruit-content .recruit-subsection .message-text {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .recruit-content .recruit-subsection .message-text {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}
.recruit-content .job-requirements .requirements-table {
  padding: 0;
}
.recruit-content .job-requirements table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid #f2f2f2;
}
.recruit-content .job-requirements table tr {
  display: flex;
  border-bottom: 1px solid #f2f2f2;
}
.recruit-content .job-requirements table th,
.recruit-content .job-requirements table td {
  padding: 20px 25px;
  text-align: left;
  vertical-align: top;
}
@media (max-width: 768px) {
  .recruit-content .job-requirements table th,
  .recruit-content .job-requirements table td {
    padding: 15px;
    display: block;
    width: 100%;
    font-size: 1.5rem;
  }
}
.recruit-content .job-requirements table th {
  background-color: #f1ecdf;
  color: #333;
  width: 20%;
  min-width: 120px;
}
@media (max-width: 768px) {
  .recruit-content .job-requirements table th {
    width: 30%;
    border-bottom: none;
    padding-bottom: 8px;
  }
}
.recruit-content .job-requirements table td {
  color: #666;
  font-size: 1.4rem;
  line-height: 1.6;
  width: 80%;
}
@media (max-width: 768px) {
  .recruit-content .job-requirements table td {
    padding-top: 0;
    padding: 10px;
    font-size: 1.5rem;
  }
}
.recruit-content .job-requirements table tr:last-child th,
.recruit-content .job-requirements table tr:last-child td {
  border-bottom: none;
}

.application-form-page {
  background: #fff;
}
.application-form-page .page-header {
  background-image: url(../img/bg_h1.jpg);
}

.contact-form-page {
  background: #fff;
}
.contact-form-page .page-header {
  background-image: url(../img/iStock-480808614.jpg);
  background-position: 0px 65%;
  background-repeat: no-repeat;
  background-size: cover;
}
.contact-form-page .page-header .page-title {
  color: #333;
}

.application-form-page .application-form_content,
.contact-form-page .application-form_content {
  margin: 0 auto;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .application-form-page .application-form_content,
  .contact-form-page .application-form_content {
    padding: 30px 15px;
  }
}
.application-form-page .application-form_content .form-description,
.contact-form-page .application-form_content .form-description {
  text-align: left;
  margin-top: 30px;
}
.application-form-page .application-form_content .form-description .intro-text,
.contact-form-page .application-form_content .form-description .intro-text {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .application-form-page .application-form_content .form-description .intro-text,
  .contact-form-page .application-form_content .form-description .intro-text {
    font-size: 1.2rem;
  }
}
.application-form-page .contact-form-section,
.contact-form-page .contact-form-section {
  margin-bottom: 50px;
}
.application-form-page .contact-form-section .form-container .wpcf7-form,
.contact-form-page .contact-form-section .form-container .wpcf7-form {
  /* 必須・任意 */
  /* input・textarea */
  /* プレースホルダー */
  /* Google Chrome / Safari / Mozilla Firefox / Opera */
  /* Microsoft Edge */
  /* Internet Explorer */
  /* 送信ボタン */
}
.application-form-page .contact-form-section .form-container .wpcf7-form .wpcf7-form-control-wrap,
.contact-form-page .contact-form-section .form-container .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .application-form-page .contact-form-section .form-container .wpcf7-form .wpcf7-form-control-wrap,
  .contact-form-page .contact-form-section .form-container .wpcf7-form .wpcf7-form-control-wrap {
    width: 100%;
  }
}
.application-form-page .contact-form-section .form-container .wpcf7-form .wpcf7-form-control-wrap label,
.contact-form-page .contact-form-section .form-container .wpcf7-form .wpcf7-form-control-wrap label {
  display: flex;
  margin-bottom: 5px;
  font-weight: 400;
  color: #333;
}
.application-form-page .contact-form-section .form-container .wpcf7-form .wpcf7-form-control-wrap label .required,
.contact-form-page .contact-form-section .form-container .wpcf7-form .wpcf7-form-control-wrap label .required {
  color: #e74c3c;
  margin-left: 3px;
}
.application-form-page .contact-form-section .form-container .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control,
.contact-form-page .contact-form-section .form-container .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  font-size: 1.4rem;
  transition: border-color 0.3s ease;
}
.application-form-page .contact-form-section .form-container .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control:focus,
.contact-form-page .contact-form-section .form-container .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}
.application-form-page .contact-form-section .form-container .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-not-valid,
.contact-form-page .contact-form-section .form-container .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-not-valid {
  border-color: #e74c3c;
}
.application-form-page .contact-form-section .form-container .wpcf7-form .wpcf7-form-control-wrap textarea.wpcf7-form-control,
.contact-form-page .contact-form-section .form-container .wpcf7-form .wpcf7-form-control-wrap textarea.wpcf7-form-control {
  min-height: 120px;
  resize: vertical;
}
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list,
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
  border: 1px solid #f2f2f2;
}
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dt,
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dt {
  width: 20%;
  padding: 15px;
  background-color: #f1ecdf;
  font-weight: 400;
}
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dt p,
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dt p {
  margin: 0;
}
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd,
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd {
  width: 80%;
  padding: 10px;
}
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__required,
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__optional,
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__required,
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__optional {
  padding: 6px;
  color: #be1d1d;
  font-size: 12px;
  vertical-align: 1px;
}
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=text],
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=tel],
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=email],
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd textarea,
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=text],
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=tel],
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=email],
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd textarea {
  width: 100%;
  padding: 15px 20px;
  border-radius: 0;
}
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd .wpcf7-list-item:nth-child(n+2),
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd .wpcf7-list-item:nth-child(n+2) {
  margin-top: 18px;
}
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=text]::-moz-placeholder, .application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=tel]::-moz-placeholder, .application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=email]::-moz-placeholder, .application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd textarea::-moz-placeholder, .contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=text]::-moz-placeholder, .contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=tel]::-moz-placeholder, .contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=email]::-moz-placeholder, .contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd textarea::-moz-placeholder {
  color: #a5a5a5;
}
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=text]::placeholder,
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=tel]::placeholder,
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=email]::placeholder,
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd textarea::placeholder,
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=text]::placeholder,
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=tel]::placeholder,
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=email]::placeholder,
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd textarea::placeholder {
  color: #a5a5a5;
}
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=text]::-ms-input-placeholder,
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=tel]::-ms-input-placeholder,
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=email]::-ms-input-placeholder,
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd textarea::-ms-input-placeholder,
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=text]::-ms-input-placeholder,
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=tel]::-ms-input-placeholder,
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=email]::-ms-input-placeholder,
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd textarea::-ms-input-placeholder {
  color: #a5a5a5;
}
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=text]:-ms-input-placeholder,
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=tel]:-ms-input-placeholder,
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=email]:-ms-input-placeholder,
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd textarea:-ms-input-placeholder,
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=text]:-ms-input-placeholder,
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=tel]:-ms-input-placeholder,
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd input[type=email]:-ms-input-placeholder,
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd textarea:-ms-input-placeholder {
  color: #a5a5a5;
}
.application-form-page .contact-form-section .form-container .wpcf7-form .cf7__button,
.contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__button {
  text-align: center;
  margin: 0 auto;
  width: 300px;
}
.application-form-page .contact-form-section .form-container .wpcf7-form input[type=submit],
.contact-form-page .contact-form-section .form-container .wpcf7-form input[type=submit] {
  width: 260px;
  height: 60px;
  background: #000;
  color: #fff;
  transition: opacity 0.6s;
  font-size: 1.5rem;
}
.application-form-page .contact-form-section .form-container .wpcf7-form input[type=submit]:hover,
.contact-form-page .contact-form-section .form-container .wpcf7-form input[type=submit]:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .application-form-page .contact-form-section .form-container .wpcf7-form,
  .contact-form-page .contact-form-section .form-container .wpcf7-form {
    /* 送信ボタン */
  }
  .application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dt,
  .contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dt {
    width: 100%;
  }
  .application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd,
  .contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd {
    width: 100%;
  }
  .application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd:nth-of-type(n + 2),
  .contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd:nth-of-type(n + 2) {
    margin-top: 0;
  }
  .application-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd .wpcf7-form-control-wrap input,
  .application-form-page .contact-form-section .form-container .wpcf7-form textarea,
  .contact-form-page .contact-form-section .form-container .wpcf7-form .cf7__list dd .wpcf7-form-control-wrap input,
  .contact-form-page .contact-form-section .form-container .wpcf7-form textarea {
    margin-left: 0;
  }
  .application-form-page .contact-form-section .form-container .wpcf7-form input[type=submit],
  .contact-form-page .contact-form-section .form-container .wpcf7-form input[type=submit] {
    height: 56px;
    font-size: 1.1rem;
  }
}