@charset "UTF-8";
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1, h2, h3, h4, h5, h6, p, span {
  z-index: 10;
  position: relative;
}

@media (min-width: 1024px) {
  .hidden-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}

.menu-site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 0.2rem 0;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background-color: white;
}
@media (max-width: 767px) {
  .menu-site-header {
    left: auto;
    transform: none;
    position: relative;
    background-color: transparent;
  }
}

.menu-logo {
  margin: 0 1rem;
  max-width: 300px;
}
@media (max-width: 767px) {
  .menu-logo {
    margin: 0;
  }
}

.menu-main-nav {
  display: block;
  margin: 0 1rem 0 0;
}
.menu-main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
}
.menu-main-nav ul a {
  text-decoration: none;
  color: #000000;
  font-size: 1.2rem;
  font-weight: 700;
  transition: background 0.3s ease, color 0.3s ease;
}
.menu-main-nav ul a:hover {
  color: #007bff;
}

.menu-site-container {
  align-items: center;
  margin: auto;
  display: flex;
  max-width: 1440px;
  justify-content: space-between;
  width: inherit;
}

.menu-entry-button {
  background-color: #FFAA2B !important;
  color: #fff !important;
  border-radius: 20px;
}
.menu-entry-button:hover {
  background-color: #e68900 !important;
}

.menu-hamburger-menu {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  background-color: #FFAA2B;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
  transition: all 0.3s ease;
}
.menu-hamburger-menu:hover {
  background-color: #e68900;
  transform: scale(1.1);
}
.menu-hamburger-menu.active .menu-hamburger-icon span:nth-child(1) {
  top: 7px;
  transform: rotate(135deg);
}
.menu-hamburger-menu.active .menu-hamburger-icon span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.menu-hamburger-menu.active .menu-hamburger-icon span:nth-child(3) {
  top: 7px;
  transform: rotate(-135deg);
}

.menu-hamburger-icon {
  width: 24px;
  height: 18px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
}
.menu-hamburger-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
}
.menu-hamburger-icon span:nth-child(1) {
  top: 0px;
}
.menu-hamburger-icon span:nth-child(2) {
  top: 7px;
}
.menu-hamburger-icon span:nth-child(3) {
  top: 14px;
}

.menu-mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.menu-mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-mobile-menu {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 2rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  min-width: 280px;
}
.menu-mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
.menu-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-mobile-menu li {
  margin-bottom: 1rem;
  text-align: center;
}
.menu-mobile-menu a {
  display: block;
  text-decoration: none;
  color: #000000;
  font-weight: 500;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.menu-mobile-menu a:hover {
  background-color: rgba(0, 123, 255, 0.1);
  color: #007bff;
}
.menu-mobile-menu .menu-entry-button {
  background-color: #FFAA2B !important;
  color: #fff !important;
}
.menu-mobile-menu .menu-entry-button:hover {
  background-color: #e68900 !important;
}

@media (max-width: 767px) {
  .menu-site-header {
    padding: 0rem;
  }
  .menu-main-nav {
    display: none;
  }
  .menu-hamburger-menu {
    display: flex;
  }
  .menu-logo {
    font-size: 1.3rem;
    max-width: 300px;
    padding: 10px 0;
  }
  .demo-content h1 {
    font-size: 2rem;
  }
  .demo-content p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .menu-site-header {
    padding: 0.8rem;
  }
  .menu-logo {
    font-size: 1.2rem;
  }
  .menu-mobile-menu {
    min-width: 250px;
    padding: 1.5rem;
  }
}
.recruitment {
  position: relative;
  overflow: hidden;
}

.recruitment-background-circle {
  position: absolute;
  top: 75%;
  left: 10%;
  transform: translate(-50%, -50%);
  width: 860px;
  height: 1300px;
  background: linear-gradient(135deg, #87CEEB, #4682B4);
  border-radius: 430px;
  opacity: 0.3;
  z-index: 0;
}
@media (max-width: 767px) {
  .recruitment-background-circle {
    top: 80%;
    left: -60%;
  }
}

.recruitment-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 40px;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .recruitment-container {
    padding: 60px 20px;
  }
}
@media (max-width: 767px) {
  .recruitment-container {
    padding: 60px 20px;
  }
}

.recruitment-header {
  text-align: center;
  position: relative;
}

.recruitment-main-title {
  font-size: clamp(1.8rem, 4vw, 6rem);
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  margin-bottom: 40px;
  text-align: start;
}

.recruitment-geometric-element {
  position: absolute;
  top: 60%;
  right: 0px;
  width: 200px;
  height: 200px;
  z-index: 1;
}

.recruitment-yellow-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  background: #fff653;
  border-radius: 50%;
  top: 0px;
  right: -40px;
  z-index: 1;
}
@media (max-width: 767px) {
  .recruitment-yellow-circle {
    width: 120px;
    height: 120px;
  }
}

.recruitment-blue-rect {
  position: absolute;
  width: 40px;
  height: 200px;
  background: #4A90E2;
  top: -20px;
  right: 5px;
  z-index: 2;
}
@media (max-width: 767px) {
  .recruitment-blue-rect {
    width: 10px;
    height: 60px;
    right: 0px;
  }
}

.recruitment-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .recruitment-cards-container {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
  }
}

.recruitment-card {
  background: rgb(255, 255, 255);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 25px;
  border: 1px solid rgba(0, 0, 0, 0.9);
  position: relative;
  cursor: pointer;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .recruitment-card {
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .recruitment-card {
    padding: 12px;
  }
}

.recruitment-card.large {
  grid-column: 1/-1;
}
@media (max-width: 767px) {
  .recruitment-card.large {
    grid-column: 1;
  }
}

.recruitment-card-title-intern {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .recruitment-card-title-intern {
    font-size: 1.7rem;
    margin-bottom: 0px;
  }
}
@media (max-width: 767px) {
  .recruitment-card-title-intern {
    font-size: 1.7rem;
    margin-bottom: 0px;
  }
}

.recruitment-card-title-recruite {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .recruitment-card-title-recruite {
    margin-bottom: 0px;
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .recruitment-card-title-recruite {
    font-size: 1.5rem;
    margin-bottom: 0px;
  }
}

.recruitment-card-subtitle {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 800;
}

.recruitment-card-description {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 600;
  color: #000000;
}

.recruitment-arrow-icon {
  width: 50px;
  height: 50px;
  border: 1px solid #000;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  color: #000000;
  flex-shrink: 0;
}

.recruitment-card:hover {
  border: solid 3px #FFAA2B;
}
.recruitment-card:hover .recruitment-arrow-icon {
  background: #FFAA2B;
}

.recruitment-card:hover .recruitment-arrow-icon::after {
  color: white;
}

.footer {
  background-color: white;
}

.footer-container-menu {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  border-top: solid 1px #000;
  padding: 100px 4%;
}
@media (max-width: 767px) {
  .footer-container-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 25px;
    padding: 25px 15px;
    flex-direction: column-reverse;
  }
}
@media (max-width: 767px) and (max-width: 480px) {
  .footer-container-menu {
    padding: 20px 12px;
  }
}

.footer-left {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex: 1;
}
@media (max-width: 767px) {
  .footer-left {
    gap: 12px;
    justify-content: center;
  }
}

.footer-company-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-menu-logo {
  max-width: 300px;
}

.footer-company-name {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .footer-company-name {
    font-size: 13px;
    margin-bottom: 10px;
  }
}

.footer-company-slogan {
  font-size: 50px;
  color: #333;
  font-weight: 800;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .footer-company-slogan {
    font-size: 36px;
  }
}
@media (max-width: 767px) and (max-width: 480px) {
  .footer-company-slogan {
    font-size: 30px;
  }
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-right {
    align-items: flex-end;
  }
}

.footer-main-nav {
  display: flex;
  gap: 73px;
  align-items: center;
  margin: 20px 0 110px 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-main-nav {
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    margin: 0px 0 20px 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) and (max-width: 480px) {
  .footer-main-nav {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .footer-main-nav {
    flex-direction: column;
    gap: 15px;
    margin: 0px 0 20px 0;
  }
}

.footer-nav-link {
  color: black;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  transition: color 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .footer-nav-link {
    font-size: 18px;
  }
}
@media (max-width: 767px) and (max-width: 480px) {
  .footer-nav-link {
    font-size: 12px;
  }
}

.footer-nav-link:hover {
  color: #2e4bd4;
}

.footer-links {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto;
}
@media (max-width: 767px) {
  .footer-links {
    justify-content: flex-start;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    margin: auto;
  }
}
@media (max-width: 767px) and (max-width: 480px) {
  .footer-links {
    gap: 15px;
  }
}

.footer-link {
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  padding-right: 15px;
}
@media (max-width: 767px) and (max-width: 480px) {
  .footer-link {
    font-size: 14px;
  }
}

.footer-link:after {
  content: "↗";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 10px;
}

.footer-link:hover {
  color: #2e4bd4;
}

.main-container {
  overflow: hidden;
}

.hero-section {
  font-family: "Noto Sans JP", sans-serif;
  background: linear-gradient(to bottom, white 0%, white 70%, #FDFCEA 70%, #FDFCEA 100%); /* 赤：100%まで */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .hero-section {
    min-height: 45vh;
  }
}
.hero-section .hero-container {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 400px;
  min-height: 90vh;
  background: url(../img/39_interview_zadankai_1_x2.jpg) center/cover;
  border-radius: 20px;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .hero-section .hero-container {
    min-height: auto;
    background: url(../img/0_labo_sp_1_x2_extend_top_graysolid_20.jpg) center/cover;
  }
}
.hero-section .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(128, 128, 128, 0.6);
}
.hero-section .hero-svg {
  position: absolute;
  bottom: -1px;
  right: 0px;
  width: 350px;
  height: -moz-max-content;
  height: max-content;
  z-index: 5;
}
@media (max-width: 767px) {
  .hero-section .hero-svg {
    width: 340px;
    right: 0px;
  }
}
.hero-section .hero-content-wrapper {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  align-items: center;
}
@media (max-width: 767px) {
  .hero-section .hero-content-wrapper {
    bottom: -85px;
    left: 0px;
    gap: 25px;
    padding: 0 0.5rem;
  }
}
.hero-section .hero-content-wrapper:hover .hero-read-more {
  background-color: #FFAA2B;
}
.hero-section .hero-content {
  max-width: 300px;
  width: 225px;
}
@media (max-width: 767px) {
  .hero-section .hero-content {
    max-width: calc(100% - 60px);
    width: auto;
  }
}
.hero-section .hero-date {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
@media (max-width: 767px) {
  .hero-section .hero-date {
    font-size: 16px;
  }
}
.hero-section .news-bubble {
  width: 60px;
  height: 60px;
  background-color: #FFAA2B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 15px;
  font-weight: normal;
  letter-spacing: 2px;
}
.hero-section .hero-title {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .hero-section .hero-title {
    font-size: 16px;
    font-weight: normal;
  }
}
.hero-section .hero-read-more {
  background: rgba(255, 255, 255, 0);
  width: 45px;
  height: 45px;
  border: 1px solid black;
  border-radius: 50%;
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .hero-section .hero-read-more {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}
.hero-section .hero-recruit-badge {
  position: absolute;
  bottom: 80px;
  right: 10px;
  z-index: 1;
  width: 160px;
  height: 160px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #FFAA2B;
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  border: #FFAA2B solid 3px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
@media (max-width: 767px) {
  .hero-section .hero-recruit-badge {
    bottom: 5px;
    right: 10px;
    width: 70px;
    height: 70px;
    font-size: 9px;
  }
}
.hero-section .hero-recruit-badge .hero-badge-text {
  text-decoration: none;
  color: #FFAA2B;
}
.hero-section .hero-recruit-badge:hover {
  transform: scale(1.05);
}
.hero-section .hero-recruit-badge .search-icon {
  font-size: 16px;
  margin-bottom: 2px;
}
@media (max-width: 767px) {
  .hero-section .hero-recruit-badge .hero-search-icon {
    font-size: 14px;
  }
}
.hero-section .hero-recruit-badge .badge-text {
  line-height: 1;
}
.hero-section .hero-copy {
  position: absolute;
  bottom: 80px;
  left: 45px;
  z-index: 10;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-section .hero-copy {
    bottom: 40px;
    left: 10px;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-copy {
    bottom: 40px;
    left: 10px;
  }
}
.hero-section .hero-copy-english {
  color: #fff653;
  font-size: 30px;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .hero-section .hero-copy-english {
    font-size: 24px;
    margin-bottom: 6px;
  }
}
.hero-section .hero-copy-text {
  background: linear-gradient(90deg, #55a9ff 0%, #B2CAD6 58%, #FFAA2B 100%);
  letter-spacing: 3px;
  color: white;
  font-size: 57px;
  line-height: 1.3;
  margin-bottom: 4px;
  padding: 8px 18px;
  border-radius: 0;
  font-weight: bold;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-section .hero-copy-text {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-copy-text {
    font-size: 30px;
    padding: 4px 8px;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-copy-main {
    font-size: 14px;
    padding: 10px 12px;
    margin-bottom: 3px;
  }
}
@media (max-width: 767px) {
  .hero-section .hero-copy-sub {
    font-size: 14px;
    padding: 10px 12px;
  }
}

.message-section {
  position: relative;
  margin-bottom: 3rem;
  background-color: #FDFCEA;
}
@media (max-width: 767px) {
  .message-section {
    padding: 100px 0px 0px 0px;
  }
}
.message-section .message-title-container {
  padding-top: 3rem;
  overflow: hidden;
}
.message-section .message-header {
  position: relative;
}
.message-section .message-header-text {
  font-size: 1.5rem;
  font-weight: 700;
  flex-direction: column;
  padding: 0 8rem 8rem 8rem;
  margin: 0;
  align-items: flex-start;
  background-color: #FDFCEA;
}
@media (min-width: 1024px) {
  .message-section .message-header-text {
    padding: 0 8rem 8rem 8rem;
    border-top-right-radius: 150px;
  }
}
.message-section .message-header-absolute {
  padding: 0 7%;
  position: absolute;
  top: 72%;
  left: 0%;
  font-size: 1.5rem;
  font-weight: 700;
  color: black000;
  z-index: 10;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .message-section .message-header-absolute {
    top: 47%;
  }
}
@media (min-width: 1024px) {
  .message-section .message-header-absolute {
    top: 47%;
    text-align: start;
    margin: 0 9.5rem;
    padding: 0%;
  }
}
.message-section .message-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0 auto;
  padding: 0 6% 34rem 6%;
  align-items: flex-start;
  border-bottom-right-radius: 150px;
  max-width: 1440px;
  margin: auto;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .message-section .message-content {
    flex-direction: row;
    gap: 4rem;
    padding: 2.7rem 4.6rem 7.7rem 4.6rem;
  }
}
@media (min-width: 1024px) {
  .message-section .message-content {
    flex-direction: row;
    gap: 4rem;
    padding: 2.7rem 4.6rem 15.7rem 4.6rem;
  }
}
.message-section .message-text {
  width: 100%;
  position: relative;
}
@media (min-width: 1024px) {
  .message-section .message-text {
    width: 50%;
    padding: 0 0 0 0;
  }
}
.message-section .message-main-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 2rem;
  margin-bottom: 2rem;
  margin-right: 0.8rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .message-section .message-main-title {
    font-size: 2.05rem;
  }
}
@media (max-width: 767px) {
  .message-section .message-main-title {
    font-size: 2.05rem;
    margin-right: 0rem;
  }
}
.message-section .message-paragraphs {
  padding: 0;
  display: flex;
  flex-direction: column;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .message-section .message-paragraphs {
    padding: 0.5rem 0rem;
    font-size: 1.5rem;
  }
}
.message-section .message-paragraphs p {
  margin: 1rem 0;
}
.message-section .message-paragraphs-strong {
  font-size: 1.5rem;
}
@media (min-width: 1024px) {
  .message-section .message-paragraphs-strong {
    font-size: 2.3rem;
  }
}
.message-section .message-paragraphs-text {
  margin: 0;
}
.message-section .message-images {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0rem;
}
@media (min-width: 1024px) {
  .message-section .message-images {
    width: 50%;
    gap: 1rem;
  }
}
.message-section .message-images-row {
  display: flex;
  gap: 0.5rem;
}
@media (min-width: 1024px) {
  .message-section .message-images-row {
    width: 100%;
    gap: 1.5rem;
  }
}
.message-section .message-img-image-section {
  flex: 1;
  position: relative;
  height: -webkit-fill-available;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .message-section .message-img-image-section {
    height: 450px;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .message-section .message-img-image-section {
    height: 350px;
    order: 2;
  }
}
.message-section .message-img-geometric-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
}
.message-section .message-img-yellow-circle {
  width: 290px;
  height: 290px;
  background: #fff653;
  top: -70px;
  right: -750px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .message-section .message-img-yellow-circle {
    width: 290px;
    height: 290px;
    top: -50px;
    right: -20px;
  }
}
@media (max-width: 767px) {
  .message-section .message-img-yellow-circle {
    top: -30px;
    right: -60px;
    width: 90px;
    height: 90px;
  }
}
.message-section .message-img-blue-rectangle {
  width: 180px;
  height: 30px;
  background: #55a9ff;
  border-radius: 0px;
  top: -35px;
  right: -610px;
  z-index: 2;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .message-section .message-img-blue-rectangle {
    width: 180px;
    height: 30px;
    top: 0px;
    right: 160px;
  }
}
@media (max-width: 767px) {
  .message-section .message-img-blue-rectangle {
    width: 70px;
    height: 12px;
    top: 0px;
    right: -50px;
  }
}
.message-section .message-img-orange-triangle {
  width: 0;
  height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-bottom: 120px solid #FFAA2B;
  position: absolute;
  top: 85%;
  left: -70px;
  z-index: 3;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .message-section .message-img-orange-triangle {
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-bottom: 70px solid #FFAA2B;
    top: 400px;
    left: -50px;
  }
}
@media (max-width: 767px) {
  .message-section .message-img-orange-triangle {
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-bottom: 70px solid #FFAA2B;
    top: 370px;
    left: -30px;
  }
}
.message-section .message-img-image-card {
  position: absolute;
  background: white;
  border-radius: 15px;
  overflow: hidden;
}
.message-section .message-img-main-card {
  width: 550px;
  height: 400px;
  top: 60px;
  left: -20px;
  z-index: 3;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .message-section .message-img-main-card {
    top: 0px;
    left: 5px;
    width: 350px;
    height: 280px;
  }
}
@media (max-width: 767px) {
  .message-section .message-img-main-card {
    top: 0px;
    left: 5px;
    width: 300px;
    height: 240px;
  }
}
.message-section .message-img-secondary-card {
  width: 350px;
  height: 250px;
  top: 410px;
  right: 10px;
  z-index: 3;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .message-section .message-img-secondary-card {
    width: 270px;
    height: 210px;
    top: 250px;
    left: 290px;
  }
}
@media (max-width: 767px) {
  .message-section .message-img-secondary-card {
    width: 270px;
    height: 210px;
    top: 200px;
    left: 100px;
  }
}
.message-section .message-img-small-card {
  width: 220px;
  height: 260px;
  top: 90%;
  left: 30px;
  z-index: 4;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .message-section .message-img-small-card {
    width: 120px;
    height: 160px;
    top: 350px;
    left: 20px;
  }
}
@media (max-width: 767px) {
  .message-section .message-img-small-card {
    width: 120px;
    height: 160px;
    top: 350px;
    left: 20px;
  }
}
.message-section .message-img-card-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background: linear-gradient(45deg, #e3f2fd, #bbdefb);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1976d2;
  font-size: 14px;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .message-section .message-img-container {
    gap: 40px;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .message-section .message-img-container {
    flex-direction: column;
    gap: 30px;
    padding: 15px;
  }
}

.about-section {
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.about-section *,
.about-section *::before,
.about-section *::after {
  box-sizing: border-box;
}
.about-section::before {
  content: "";
  position: absolute;
  bottom: 150px;
  left: 0;
  width: 200px;
  height: 200px;
  background: white;
  border-radius: 50%;
  z-index: -2;
  transform: translate(-50%, 50%);
  box-shadow: inset 0 0 0 40px #55a9ff;
}
.about-section::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid #FFAA2B;
  z-index: -2;
  transform: rotate(90deg);
}
.about-section .about-blue-circle {
  position: absolute;
  top: 190px;
  right: -40px;
  width: 400px;
  height: 400px;
  background: #55a9ff;
  border-radius: 50%;
  opacity: 0.6;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-section .about-blue-circle {
    display: none;
  }
}
.about-section .about-dots {
  position: absolute;
  top: 150px;
  right: 250px;
  display: grid;
  grid-template-columns: repeat(4, 12px);
  grid-template-rows: repeat(4, 12px);
  gap: 28px;
  z-index: 0;
}
@media (max-width: 767px) {
  .about-section .about-dots {
    display: none;
  }
}
.about-section .about-dot {
  width: 20px;
  height: 20px;
  background: #fff653;
  border-radius: 50%;
}
.about-section .about-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 20px 90px 20px;
  position: relative;
  z-index: 1;
}
.about-section .about-header {
  text-align: left;
  margin-bottom: 40px;
}
.about-section .about-title {
  font-size: 5.2rem;
  font-weight: 900;
  color: #333;
  margin-bottom: 20px;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .about-section .about-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) and (max-width: 480px) {
  .about-section .about-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }
}
.about-section .about-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  max-width: 600px;
  margin: 0;
  line-height: 1.8;
}
@media (max-width: 767px) and (max-width: 480px) {
  .about-section .about-subtitle {
    font-size: 1rem;
  }
}
.about-section .about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 330px);
  gap: 20px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .about-section .about-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
    gap: 15px;
    margin-top: 0px;
  }
}
.about-section .about-card-wrapper {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border: 1px solid #000;
  transition: all 0.3s ease;
}
.about-section .about-card-wrapper:hover {
  border-color: #FFAA2B !important;
  border: solid 3px;
}
.about-section .about-card-wrapper:hover .about-card-badge {
  text-shadow: 0 0 5px #FFAA2B, 0 0 10px #FFAA2B, 0 0 15px #FFAA2B, 0 0 20px #FFAA2B; /* 最外部の光 */
}
.about-section .about-card-wrapper:hover .about-arrow {
  background-color: #FFAA2B;
  border-color: #FFAA2B;
}
.about-section .about-card {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  flex: 1;
  position: relative;
}
@media (max-width: 767px) and (max-width: 480px) {
  .about-section .about-card {
    min-height: 200px;
  }
}
.about-section .about-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
}
@media (max-width: 767px) {
  .about-section .about-card::after {
    height: 60%;
  }
}
.about-section .about-card-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  padding: 8px 16px;
  border-radius: 0;
  font-weight: 700;
  color: #ffffff;
  font-size: 1.5rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .about-section .about-card-badge {
    padding: 0px;
  }
}
.about-section .about-arrow {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.about-section .about-arrow::before {
  content: "→";
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
}
.about-section .about-card-message .about-arrow,
.about-section .about-card-culture .about-arrow,
.about-section .about-card-work .about-arrow,
.about-section .about-card-benefits .about-arrow {
  bottom: auto;
  bottom: 1px;
  transform: translateY(-50%);
}
.about-section .about-card-company {
  background: #ffffff;
  grid-row: span 2;
}
@media (max-width: 767px) {
  .about-section .about-card-company {
    grid-row: span 1;
    order: 1;
  }
}
.about-section .about-card-message {
  background: #ffffff;
}
@media (max-width: 767px) {
  .about-section .about-card-message {
    order: 2;
  }
}
.about-section .about-card-culture {
  background: #ffffff;
}
@media (max-width: 767px) {
  .about-section .about-card-culture {
    order: 3;
  }
}
.about-section .about-card-work {
  background: #ffffff;
}
@media (max-width: 767px) {
  .about-section .about-card-work {
    order: 4;
  }
}
.about-section .about-card-benefits {
  background: #ffffff;
  min-height: 200px;
}
@media (max-width: 767px) {
  .about-section .about-card-benefits {
    order: 5;
  }
}

@keyframes scrollLeft {
  0% {
    transform: translateX(25%);
  }
  100% {
    transform: translateX(-25%);
  }
}
@keyframes scrollRight {
  0% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(25%);
  }
}
.tour-guide-sectiuon {
  background-color: #ecf5fe;
  border-radius: 40px;
  margin: 2% 0 8% 0;
  padding: 5rem 0;
}
@media (max-width: 767px) {
  .tour-guide-sectiuon {
    border-radius: 0px;
    padding: 2rem 0;
    margin: 0;
  }
}
.tour-guide-sectiuon .tour-guide-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tour-guide-sectiuon .tour-guide-center-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
}
.tour-guide-sectiuon .tour-guide-content-card {
  background: #ffffff;
  border-radius: 20px;
  max-width: 1200px;
  width: 100%;
  text-align: center;
  background: url(../img/10_rectuittour_bg.jpg) center/cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px 0px;
  border: solid 1px;
}
@media (max-width: 767px) {
  .tour-guide-sectiuon .tour-guide-content-card {
    padding: 15px 0px;
    margin: 10px 0px;
  }
}
.tour-guide-sectiuon .tour-guide-subtitle {
  font-size: 1rem;
  color: #0080FF;
  margin-top: 20px;
  font-weight: bold;
  text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 15px #ffffff, 0 0 20px #ffffff;
}
.tour-guide-sectiuon .tour-guide-subtitle span {
  background: linear-gradient(transparent 60%, #f3ff50 60%);
}
.tour-guide-sectiuon .tour-guide-main-title {
  font-size: 3rem;
  font-weight: bold;
  color: #0080FF;
  margin-bottom: 30px;
  letter-spacing: 0.1rem;
  text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff, 0 0 15px #ffffff, 0 0 20px #ffffff;
}
.tour-guide-sectiuon .tour-guide-start-button {
  background-color: white;
  padding: 15px 30px;
  border: solid 1px #000;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  display: inline-flex; /* ← フレックス化 */
  align-items: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
  transition: background-color 0.2s ease;
}
.tour-guide-sectiuon .tour-guide-start-button:hover {
  background-color: rgb(208.25, 208.25, 208.25);
}
.tour-guide-sectiuon .tour-guide-start-button .tour-guide-start-icon {
  width: 30px;
  height: 30px;
  border: 1px solid black;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  z-index: 11;
}
.tour-guide-sectiuon .tour-guide-marquee-text {
  white-space: nowrap;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  display: inline-block;
  padding-right: 50px;
}
.tour-guide-sectiuon .tour-guide-marquee-text svg {
  padding-left: 60px;
}
.tour-guide-sectiuon .tour-guide-blue {
  color: #55a9ff;
}
.tour-guide-sectiuon .tour-guide-orange {
  color: #FFAA2B;
}
.tour-guide-sectiuon .tour-guide-marquee-content {
  display: flex;
  animation: scrollLeft 30s linear infinite;
}
.tour-guide-sectiuon .tour-guide-marquee-content.tour-guide-reverse {
  animation: scrollRight 30s linear infinite;
}
@media (max-width: 767px) {
  .tour-guide-sectiuon .tour-guide-marquee-text {
    font-size: 2rem;
    letter-spacing: 0.05rem;
  }
  .tour-guide-sectiuon .tour-guide-main-title {
    font-size: 2rem;
  }
  .tour-guide-sectiuon .tour-guide-subtitle {
    font-size: 0.9rem;
  }
}

.interview-section {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans CJK JP", sans-serif;
  background-color: #FDFCEA;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  position: relative;
  border-radius: 130px 0px 130px 0px;
  margin-top: 30px;
  /* 共通スタイル */
  /* モーダル */
  /* ヘッダー・テキスト */
  /* 画像・アバター共通 */
  /* メンバー */
  /* 質問・会話 */
  /* バブル */
  /* 色バリエーション */
}
@media (max-width: 767px) {
  .interview-section {
    border-radius: 0px;
    padding: 40px 10px;
  }
}
.interview-section .interview-container {
  max-width: 1440px;
  width: 100%;
}
.interview-section .interview-title-pc {
  text-align: left;
  font-size: 5.8rem;
  font-weight: bold;
  letter-spacing: 0px;
  position: absolute;
  top: -270%;
  left: 250px;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .interview-section .interview-title-pc {
    font-size: 3.5rem;
    top: -120%;
    left: 50px;
  }
}
.interview-section .interview-title-sp {
  font-size: 3.5rem;
}
.interview-section .interview-title-paragraph {
  font-size: 1rem;
  letter-spacing: 0px;
  margin-bottom: 100px;
  position: relative;
}
@media (max-width: 767px) {
  .interview-section .interview-title-paragraph {
    font-size: 1rem;
    margin-bottom: 60px;
  }
}
.interview-section .interview-main-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3%;
}
.interview-section .interview-nav-button {
  width: 100px;
  height: 100px;
  border: 1px solid black;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 24px;
  z-index: 11;
}
.interview-section .interview-nav-button:hover {
  background-color: orange;
}
.interview-section #prevButton {
  position: absolute;
  background-color: white;
  top: 70%;
  left: -2%;
  transform: translate(0%, -50%);
  width: 70px;
  height: 70px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .interview-section #prevButton {
    left: 16%;
  }
}
@media (max-width: 767px) {
  .interview-section #prevButton {
    left: -10px;
  }
}
.interview-section #nextButton {
  position: absolute;
  background-color: white;
  top: 70%;
  right: -2%;
  transform: translate(0%, -50%);
  width: 70px;
  height: 70px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .interview-section #nextButton {
    right: 16%;
  }
}
@media (max-width: 767px) {
  .interview-section #nextButton {
    right: -10px;
  }
}
.interview-section .interview-content-box {
  flex: 1;
  width: 100%;
  background: white;
  border: 1px solid black;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  margin: 0 1%;
}
@media (max-width: 767px) {
  .interview-section .interview-content-box {
    font-size: 1.3rem;
    padding: 40px 5px;
  }
}
.interview-section .interview-profile-circle.active {
  background-color: white;
}
.interview-section .interview-subtitle {
  font-size: 1.6rem;
  font-weight: bold;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  background-color: white;
  border: 1px solid black;
  border-radius: 9999px;
  padding: 15px 50px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .interview-section .interview-subtitle {
    font-size: 1.3rem;
  }
}
@media (max-width: 767px) {
  .interview-section .interview-subtitle {
    font-size: 1.1rem;
  }
}
.interview-section .interview-subtitle-bottom {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.interview-section .interview-subtitle-bottom svg {
  display: block;
}
.interview-section .interview-main-text {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 0.5rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .interview-section .interview-main-text {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .interview-section .interview-main-text {
    font-size: 2rem;
  }
}
.interview-section .interview-profiles-section {
  margin: 30px auto;
  display: flex;
  justify-content: center;
  gap: 15px;
  position: relative;
  height: 360px;
  max-width: 1340px;
}
.interview-section .interview-profile {
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
  position: absolute;
}
.interview-section .interview-profile.position-left {
  left: 0px;
  opacity: 0.7;
  transform: scale(1);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .interview-section .interview-profile.position-left {
    left: -240px;
  }
}
@media (max-width: 767px) {
  .interview-section .interview-profile.position-left {
    left: -340px;
  }
}
.interview-section .interview-profile.position-left .interview-profile-circle {
  transform: none;
}
.interview-section .interview-profile.position-left .interview-profile-info {
  text-align: left;
}
.interview-section .interview-profile.position-center {
  left: 50%;
  transform: translate(-50%, 0px) scale(1);
  opacity: 1;
  z-index: 10;
}
.interview-section .interview-profile.position-center:hover .interview-profile-arrow-button {
  background-color: #FFAA2B;
}
.interview-section .interview-profile.position-center .interview-profile-info {
  text-align: left;
}
.interview-section .interview-profile.position-right {
  right: 0px;
  opacity: 0.7;
  transform: scale(1);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .interview-section .interview-profile.position-right {
    right: -240px;
  }
}
@media (max-width: 767px) {
  .interview-section .interview-profile.position-right {
    right: -340px;
  }
}
.interview-section .interview-profile.position-right .interview-profile-circle {
  transform: none;
}
.interview-section .interview-profile.position-right .interview-profile-info {
  text-align: left;
}
.interview-section .interview-profile-circle {
  width: calc(25vw - 10px);
  height: calc(30vw - 12px);
  max-width: 420px;
  max-height: 510px;
  min-width: 330px;
  min-height: 470px;
  border-radius: 12px;
  background-color: white;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.interview-section .interview-profile-circle .interview-profile-placeholder {
  display: flex;
}
.interview-section .interview-profile-circle .interview-profile-card-info {
  display: none;
}
.interview-section .interview-profile-circle .interview-profile-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.interview-section .interview-profile-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
}
.interview-section .interview-profile-info {
  line-height: 1.4;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.interview-section .interview-profile-text {
  flex: 1;
}
.interview-section .interview-profile-arrow-button {
  width: 50px;
  height: 50px;
  border: 1px solid #000;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  flex-shrink: 0;
}
.interview-section .interview-profile-plus-pattern {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, #4a9eff 0%, #6bb6ff 100%);
  opacity: 0.9;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 2px;
  padding: 8px;
  border-radius: 6px;
}
.interview-section .interview-profile-plus-item {
  background: white;
  border-radius: 1px;
}
.interview-section .interview-profile-checkerboard {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #FFAA2B 0%, #FFAA2B 100%);
  border-radius: 6px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 1px;
  padding: 4px;
}
.interview-section .interview-profile-checker-item {
  background: white;
  border-radius: 1px;
}
.interview-section .interview-profile-checker-item:nth-child(odd) {
  opacity: 0.8;
}
.interview-section .interview-profile-checker-item:nth-child(even) {
  opacity: 0.4;
}
.interview-section .interview-profile-title {
  font-weight: bold;
  margin-bottom: 4px;
  font-size: 20px;
}
.interview-section .interview-profile-department {
  font-size: 14px;
}
.interview-section .interview-profile-button {
  width: 40px;
  height: 40px;
  border: 1px solid black;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  margin-left: 10px;
  flex-shrink: 0;
}
.interview-section .interview-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.interview-section .interview-modal.show {
  display: flex;
}
.interview-section .interview-modal-content {
  background: white;
  border-radius: 16px;
  padding: 0;
  max-width: 1200px;
  width: 90%;
  max-height: 85vh;
  position: relative;
  animation: modalSlideIn 0.3s ease;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-content {
    max-width: 95%;
    max-height: 90vh;
  }
}
.interview-section .interview-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
}
.interview-section .interview-modal-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.interview-section .interview-modal-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
  padding-right: 10px;
  margin: 40px 1%;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-body {
    margin: 20px 1%;
  }
}
.interview-section .interview-modal-body::-webkit-scrollbar {
  width: 6px;
}
.interview-section .interview-modal-body::-webkit-scrollbar-track {
  background: #f0f0f0;
}
.interview-section .interview-modal-body::-webkit-scrollbar-thumb {
  background: #6b7280;
  border-radius: 6px;
}
.interview-section .interview-modal-body::-webkit-scrollbar-thumb:hover {
  background: #FFAA2B;
}
.interview-section .interview-modal-top-section {
  display: flex;
  margin: 6% 6% 5% 8%;
  gap: 40px;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-top-section {
    flex-direction: column;
    margin: 5% 2% 5% 5%;
    gap: 20px;
  }
}
.interview-section .interview-modal-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-left {
    margin-bottom: 10px;
  }
}
.interview-section .interview-modal-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.interview-section .interview-modal-header-title {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-header-title {
    font-size: 18px;
  }
}
.interview-section .interview-modal-header-subtitle {
  font-size: 20px;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-header-subtitle {
    font-size: 14px;
  }
}
.interview-section .interview-modal-tag {
  display: inline-block;
  background: #FFAA2B;
  font-size: 15px;
  font-weight: 300;
  padding: 5px 26px;
  border-radius: 20px;
  border: solid 1px #000;
  margin: 45px 0 20px 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-tag {
    margin: 0;
  }
}
.interview-section .interview-modal-main-title {
  font-size: 42px;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 16px;
  margin-bottom: 45px;
  padding-bottom: 45px;
  border-bottom: solid 1px black;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-main-title {
    font-size: 36px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}
.interview-section .interview-modal-person-info {
  margin-bottom: 0;
}
.interview-section .interview-modal-person-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-person-name {
    font-size: 18px;
  }
}
.interview-section .interview-modal-in-year {
  font-size: 18px;
  margin-bottom: 5px;
  margin-left: 5%;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-in-year {
    font-size: 14px;
  }
}
.interview-section .interview-modal-person-details {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-person-details {
    font-size: 14px;
  }
}
.interview-section .interview-modal-right {
  width: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  border-radius: 15px;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-right {
    width: 100%;
    height: 300px;
    border-left: none;
    overflow: hidden;
  }
}
.interview-section .interview-modal-qa-section {
  margin: 7% 6% 5% 8%;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-qa-section {
    margin: 15% 2% 5% 5%;
  }
}
.interview-section .interview-modal-qa-title {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: #FFAA2B;
  margin-bottom: 25px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-qa-title {
    font-size: 16px;
    margin-bottom: 0px;
  }
}
.interview-section .interview-modal-qa-title:first-child {
  margin-top: 0;
}
.interview-section .interview-modal-qa-title::before {
  content: "Q";
  display: inline-block;
  color: #FFAA2B;
  font-size: 24px;
  font-weight: bold;
  margin-right: 10px;
}
.interview-section .interview-modal-content-image {
  width: 90%;
  margin: 0 auto;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-content-image {
    width: 100%;
  }
}
.interview-section .interview-modal-qa-content {
  font-size: 15px;
  line-height: 2.2;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-qa-content {
    font-size: 13px;
  }
}
.interview-section .interview-modal-qa-content p {
  margin: 22px 0;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-qa-content p {
    font-size: 15px;
    margin: 10px 0;
  }
}
.interview-section .interview-modal-photo {
  max-width: 530px;
  width: 100%;
  border-radius: 18px;
  -o-object-fit: cover;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 5;
}
.interview-section .interview-modal-decorative {
  position: absolute;
  top: 15%;
  right: -30px;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 50px solid #FFAA2B;
  transform: rotate(0deg);
  z-index: 6;
}
.interview-section .interview-modal-dots {
  position: absolute;
  top: -15px;
  right: 0px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 10px;
  width: 40px;
  height: 40px;
  z-index: 3;
}
.interview-section .interview-modal-dot {
  width: 10px;
  height: 10px;
  background: #fff653;
  border-radius: 50%;
}
.interview-section .decoration-blue-circle {
  position: absolute;
  top: 390px;
  left: -20px;
  width: 60px;
  height: 60px;
  background: transparent;
  border: 2px solid #2cd5ff;
  border-radius: 50%;
  opacity: 0.5;
  z-index: 12;
}
.interview-section .decoration-gray-circle {
  position: absolute;
  top: 450px;
  left: 30px;
  width: 30px;
  height: 30px;
  background: #c9c9c9;
  border-radius: 50%;
  z-index: 11;
}
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.interview-section .interview-modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  background: #FFAA2B;
  border: none;
  font-size: 64px;
  cursor: pointer;
  color: white;
  padding: 5px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 100;
}
.interview-section .interview-modal-close:hover {
  background: #FFAA2B;
  color: black;
}
.interview-section .interview-modal-lifestyle-section {
  margin: 1% 2% 5% 5%;
  background: white;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-lifestyle-section {
    margin: 0% 2% 5% 5%;
  }
}
.interview-section .interview-modal-lifestyle-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}
.interview-section .interview-modal-oneday-section {
  background: #ecf5fe;
  border-radius: 12px;
  padding: 40px 30px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-oneday-section {
    padding: 40px 15px;
  }
}
.interview-section .interview-modal-oneday-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-oneday-title {
    font-size: 28px;
  }
}
.interview-section .interview-modal-oneday-subtitle {
  font-size: 14px;
  margin-left: 1%;
  margin-bottom: 15px;
  letter-spacing: 2px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-oneday-subtitle {
    margin-left: 4%;
  }
}
.interview-section .interview-modal-oneday-content {
  font-size: 17px;
  line-height: 1.7;
  max-width: 920px;
  margin: auto;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-oneday-content p {
    margin-bottom: 0;
  }
}
.interview-section .interview-modal-dayoff-personal {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-dayoff-personal {
    flex-direction: column;
  }
}
.interview-section .interview-modal-dayoff-section {
  flex: 1;
  background: #ecf5fe;
  border-radius: 12px;
  padding: 48px 25px;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-dayoff-section {
    padding: 40px 15px;
  }
}
.interview-section .interview-modal-personal-section {
  flex: 1;
  background: #ecf5fe;
  border-radius: 12px;
  padding: 48px 25px;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-personal-section {
    padding: 40px 15px;
  }
}
.interview-section .interview-modal-personal-section .interview-modal-section-image {
  width: 150px; /* お好みのサイズに調整 */
  height: 150px; /* 幅と同じ値で正方形にする */
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto;
  padding: 10px;
  background-color: white;
}
.interview-section .interview-modal-section-title {
  font-size: 37px;
  font-weight: bold;
  display: inline-block;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-section-title {
    font-size: 28px;
  }
}
.interview-section .interview-modal-section-subtitle {
  font-size: 15px;
  font-weight: 700;
  margin-left: 2%;
  display: inline-block;
}
.interview-section .interview-modal-section-header {
  margin-bottom: 4%;
}
.interview-section .interview-modal-section-images {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-section-images {
    margin-top: 20px;
  }
}
.interview-section .interview-modal-section-image {
  max-width: 530px;
  width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.interview-section .interview-modal-section-content {
  font-size: 16px;
  letter-spacing: 1.6px;
  line-height: 1.8;
}
.interview-section .interview-modal-tools-section {
  background: #ecf5fe;
  border-radius: 12px;
  padding: 42px 35px;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-tools-section {
    padding: 42px 15px;
  }
}
.interview-section .interview-modal-tools-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.interview-section .interview-modal-tool-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-tool-item {
    margin-bottom: 20px;
    flex-direction: column;
  }
  .interview-section .interview-modal-tool-item:last-child {
    margin-bottom: 0px;
  }
}
.interview-section .interview-modal-tool-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-tool-item-header {
    width: 100%;
  }
}
.interview-section .interview-modal-tool-icon {
  width: 50px;
  height: 50px;
  background: black;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
}
.interview-section .interview-modal-tool-img {
  width: 140px;
  height: 115px;
  margin: 0 auto;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-tool-img {
    width: 50%;
  }
}
.interview-section .interview-modal-tool-content {
  flex: 1;
  margin-left: 2%;
}
.interview-section .interview-modal-tool-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-tool-name {
    width: 50%;
    font-size: 18px;
  }
}
.interview-section .interview-modal-tool-description {
  font-size: 17px;
  line-height: 1.4;
}
.interview-section .interview-modal-message-section {
  background: #FDFCEA;
  border-radius: 12px;
  padding: 45px 5% 10px 5%;
  margin-top: 40px;
  border: 1px solid #000;
}
.interview-section .interview-modal-message-header-area {
  margin-bottom: 55px;
}
.interview-section .interview-modal-message-header-area .interview-modal-message-header {
  margin-bottom: 30px;
  background: linear-gradient(transparent 60%, #FFAA2B 60%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.interview-section .interview-modal-message-header-area .interview-modal-message-title {
  font-size: 47px;
  font-weight: bold;
  display: inline-block;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-message-header-area .interview-modal-message-title {
    font-size: 32px;
  }
}
.interview-section .interview-modal-message-header-area .interview-modal-message-subtitle {
  font-size: 12px;
  margin-left: 20px;
  display: inline-block;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-message-header-area .interview-modal-message-subtitle {
    margin-left: 0px;
    font-size: 20px;
  }
}
.interview-section .interview-modal-message-content {
  display: flex;
  align-items: flex-start;
  gap: 5%;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-message-content {
    flex-direction: column;
  }
}
.interview-section .interview-modal-message-avatar {
  width: 23%;
  height: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0f2f5 0%, #e8eaed 100%);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-message-avatar {
    width: 60%;
    align-self: center;
    margin-bottom: 15px;
  }
}
.interview-section .interview-modal-message-text {
  flex: 1;
}
.interview-section .interview-modal-message-main {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 27px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .interview-section .interview-modal-message-main {
    font-size: 24px;
  }
}
.interview-section .interview-modal-message-description {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.interview-section .labo-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.interview-section .labo-interview-modal-body .labo-container {
  width: 100%;
  max-width: 1000px;
}
.interview-section .labo-zadankai-banner, .interview-section .labo-interview-modal, .interview-section .labo-banner-image, .interview-section .labo-banner-arrow, .interview-section .labo-interview-modal-close, .interview-section .labo-answer-avatar, .interview-section .labo-avatar, .interview-section .labo-ph {
  display: flex;
  align-items: center;
  justify-content: center;
}
.interview-section .labo-zadankai-banner {
  background: white;
  border-radius: 20px;
  margin: 230px 0 70px 0;
  overflow: hidden;
  cursor: pointer;
  border: solid 1px #000;
  transition: all 0.3s ease;
}
@media (max-width: 767px) and (max-width: 600px) {
  .interview-section .labo-zadankai-banner {
    flex-direction: column;
  }
}
.interview-section .labo-zadankai-banner:hover {
  border: solid 3px;
  border-color: #FFAA2B;
}
.interview-section .labo-zadankai-banner:hover .labo-banner-arrow {
  background: #FFAA2B;
}
.interview-section .labo-banner-left {
  flex: 1;
}
.interview-section .labo-banner-image {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.interview-section .labo-banner-right {
  flex: 1.2;
  padding: 0 2%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 3%;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.interview-section .labo-banner-title {
  font-weight: 800;
  font-size: 58px;
  line-height: 1.1;
  font-family: inherit;
  color: #FFAA2B;
  margin-bottom: 8px;
}
.interview-section .labo-banner-subtitle {
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
  font-family: inherit;
  color: #55a9ff;
  margin-bottom: 20px;
}
.interview-section .labo-banner-description {
  font-size: 15px;
  line-height: 1.8;
  font-weight: bold;
}
.interview-section .labo-banner-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid #000;
  border-radius: 50%;
  background: white;
  font-size: 18px;
  transition: all 0.3s ease;
  margin-right: 1rem;
}
@media (max-width: 767px) {
  .interview-section .labo-banner-arrow {
    margin: 1rem;
  }
}
.interview-section .labo-interview-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.interview-section .labo-interview-modal.labo-show {
  display: flex;
}
.interview-section .labo-interview-modal-content {
  background: white;
  border-radius: 16px;
  max-width: 1200px;
  width: 95%;
  max-height: 90vh;
  position: relative;
  animation: modalSlideIn 0.3s ease;
  display: flex;
  flex-direction: column;
}
.interview-section .labo-interview-modal-close {
  position: absolute;
  top: -20px;
  right: -5px;
  background: #FFAA2B;
  border: none;
  font-size: 48px;
  cursor: pointer;
  color: white;
  padding: 8px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  transition: all 0.2s ease;
  z-index: 100;
}
.interview-section .labo-interview-modal-close:hover {
  background: #FFAA2B;
}
.interview-section .labo-interview-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  margin: 40px 1%;
}
.interview-section .labo-interview-modal-body::-webkit-scrollbar {
  width: 8px;
}
.interview-section .labo-interview-modal-body::-webkit-scrollbar-track {
  background: #f0f0f0;
}
.interview-section .labo-interview-modal-body::-webkit-scrollbar-thumb {
  background: #FFAA2B;
  border-radius: 4px;
}
.interview-section .labo-header {
  padding: 28px 0 8px;
}
.interview-section .labo-header .labo-lead {
  font-size: 1.39rem;
  color: black;
  letter-spacing: 0.08em;
  text-align: left;
  font-weight: bold;
  margin: 5% 0 8% 0;
}
.interview-section .labo-title {
  margin-bottom: 3.4%;
  font-weight: 800;
  font-size: clamp(34px, 6vw, 80px);
  line-height: 1;
  font-family: inherit;
  color: #FFAA2B;
  letter-spacing: 0.02em;
  text-align: center;
}
.interview-section .labo-subtitle {
  font-weight: 800;
  font-size: clamp(18px, 3.6vw, 32px);
  line-height: 1;
  font-family: inherit;
  color: #55a9ff;
  margin-bottom: 3%;
  text-align: center;
}
.interview-section .labo-desc {
  margin: 14px 0 22px;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.6;
  font-family: inherit;
  text-align: center;
}
.interview-section .labo-img-main, .interview-section .labo-img-wide {
  width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 20px auto;
  overflow: hidden;
}
@media (max-width: 767px) and (max-width: 600px) {
  .interview-section .labo-img-main, .interview-section .labo-img-wide {
    height: 220px;
  }
}
.interview-section .labo-avatar, .interview-section .labo-ph {
  border-radius: 50%;
  background: #cfcfcf;
  border: 1px solid #e6e6e6;
}
.interview-section .labo-avatar {
  width: 120px;
  height: 120px;
  margin-inline: auto;
  border-radius: 50%;
  border: 1px solid #000;
  -o-object-fit: cover;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.interview-section .labo-ph {
  width: 90px;
  height: 90px;
  margin: 0 auto 8px;
  max-width: 530px;
  border-radius: 50%;
  border: 1px solid #000;
  -o-object-fit: cover;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 767px) and (max-width: 600px) {
  .interview-section .labo-ph {
    width: 72px;
    height: 72px;
  }
}
.interview-section .labo-members {
  border: 1.5px solid black;
  border-radius: 18px;
  padding: 20px 16px 12px;
  margin: 56px 0;
  position: relative;
}
.interview-section .labo-members h2 {
  text-align: center;
  font-weight: 800;
  font-size: 30px;
  line-height: 1.1;
  font-family: inherit;
  position: absolute;
  top: 3%;
  left: 50%;
  padding: 0 3%;
  transform: translate(-50%, -50%);
  background-color: white;
}
.interview-section .labo-members h2 span {
  display: block;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  font-family: inherit;
  letter-spacing: 0.18em;
  margin-top: 8px;
}
.interview-section .labo-container section {
  margin-bottom: 6%;
}
.interview-section .labo-container section h3 {
  margin-top: 6%;
  margin-bottom: 4%;
}
.interview-section .labo-member-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 38px 6px 38px;
}
@media (max-width: 767px) and (max-width: 600px) {
  .interview-section .labo-member-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.interview-section .labo-member {
  text-align: center;
}
.interview-section .labo-member .labo-name {
  font-weight: 700;
  margin-top: 10px;
}
.interview-section .labo-member .labo-meta {
  color: black;
  font-size: 0.85rem;
}
.interview-section .labo-q-head {
  color: #FFAA2B;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 0.6em;
  margin-bottom: 14px;
}
.interview-section .labo-q-head::before {
  content: "Q";
  font-weight: 900;
}
.interview-section .labo-talk-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 20px 0 24px;
}
.interview-section .labo-person {
  width: 104px;
  flex: 0 0 104px;
  text-align: center;
  margin: 0 20px 0 0;
}
@media (max-width: 767px) and (max-width: 600px) {
  .interview-section .labo-person {
    width: 86px;
    flex-basis: 86px;
    margin: 0;
  }
}
.interview-section .labo-person figcaption {
  font-size: 0.9rem;
  color: #555;
}
.interview-section .labo-bubble {
  position: relative;
  flex: 1;
  padding: 16px 18px;
  border-radius: 14px;
  background: #f7f7f7;
  border: 1px solid #dddddd;
}
.interview-section .labo-bubble::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 20px;
  border: solid;
  border-width: 10px 16px 10px 0;
  border-color: transparent #dddddd transparent transparent;
}
.interview-section .labo-bubble::after {
  content: "";
  position: absolute;
  left: -15px;
  top: 20px;
  border: solid;
  border-width: 10px 16px 10px 0;
  border-color: transparent #f7f7f7 transparent transparent;
}
.interview-section .labo-mint {
  background: #cffff1;
  border-color: #000;
}
.interview-section .labo-mint::before {
  border-right-color: #000;
}
.interview-section .labo-mint::after {
  border-right-color: #cffff1;
}
.interview-section .labo-pink {
  background: #ffe0eb;
  border-color: #000;
}
.interview-section .labo-pink::before {
  border-right-color: #000;
}
.interview-section .labo-pink::after {
  border-right-color: #ffe0eb;
}
.interview-section .labo-yellow {
  background: #ffeea9;
  border-color: #000;
}
.interview-section .labo-yellow::before {
  border-right-color: #000;
}
.interview-section .labo-yellow::after {
  border-right-color: #ffeea9;
}
.interview-section .labo-sky {
  background: #d9ecff;
  border-color: #000;
}
.interview-section .labo-sky::before {
  border-right-color: #000;
}
.interview-section .labo-sky::after {
  border-right-color: #d9ecff;
}
.interview-section .labo-beige {
  background: #faedd7;
  border-color: #000;
}
.interview-section .labo-beige::before {
  border-right-color: #000;
}
.interview-section .labo-beige::after {
  border-right-color: #faedd7;
}
.interview-section .labo-img-orange-triangle {
  width: 0;
  height: 0;
  border-left: 0px solid transparent;
  border-right: 120px solid transparent;
  border-bottom: 120px solid #FFAA2B;
  position: absolute;
  bottom: -50px;
  left: 10px;
  z-index: 3;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .interview-section .labo-img-orange-triangle {
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-bottom: 70px solid #FFAA2B;
    top: 400px;
    left: -50px;
  }
}
@media (max-width: 767px) {
  .interview-section .labo-img-orange-triangle {
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-bottom: 70px solid #FFAA2B;
    top: 370px;
    left: -30px;
  }
}

.au-message-section {
  max-width: 1300px;
  margin: 2% auto 7% auto;
  padding: 0 20px 5% 20px;
  position: relative;
  /* 装飾的な要素 */
}
.au-message-section .au-message-main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .au-message-section .au-message-main-content {
    gap: 0px;
    grid-template-columns: 1fr;
  }
}
.au-message-section .au-message-left-section h2 {
  font-size: 3.2em;
  font-weight: 700;
  margin: 10px 0;
  line-height: 1.4;
}
.au-message-section .au-message-team-images-container {
  position: relative;
  width: 100%;
  margin: 55px 0;
}
@media (max-width: 767px) {
  .au-message-section .au-message-team-images-container {
    margin: 0 0 80px 0;
  }
}
.au-message-section .au-message-team-image {
  position: absolute;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.au-message-section .au-message-team-image-1 {
  max-width: 340px;
  width: 60%;
  left: 0;
  top: 0%;
  z-index: 1;
  position: relative;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.au-message-section .au-message-team-image-2 {
  width: 50%;
  right: -2%;
  top: 50%;
  z-index: 2;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.au-message-section .au-message-description {
  font-size: 1.2em;
  line-height: 2;
  font-weight: 700;
}
@media (max-width: 767px) {
  .au-message-section .au-message-description {
    font-size: 1em;
    font-weight: 400;
  }
}
.au-message-section .au-message-description p {
  margin: 0px 0 35px 0;
}
.au-message-section .au-message-highlight {
  color: #56aaff;
  background: linear-gradient(transparent 60%, #fff653 60%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.au-message-section .au-message-blue-accent {
  position: absolute;
  left: -20px;
  bottom: 50px;
  width: 90px;
  height: 90px;
  background-color: #56aaff;
  z-index: 1;
}
@media (max-width: 767px) {
  .au-message-section .au-message-blue-accent {
    width: 60px;
    height: 60px;
    bottom: 80px;
  }
}
.au-message-section .au-message-yellow-accent {
  position: absolute;
  right: 35%;
  top: -15px;
  width: 30px;
  height: 30px;
  background-color: #fff653;
  z-index: 3;
}
@media (max-width: 767px) {
  .au-message-section .au-message-yellow-accent {
    width: 20px;
    height: 20px;
    right: -10px;
    top: -10px;
  }
}
@media (max-width: 767px) {
  .au-message-section .au-message-left-section h2 {
    font-size: 1.8em;
  }
}
@media (max-width: 767px) {
  .au-message-section .au-message-section {
    padding: 40px 15px;
  }
}

.au-p-message-section {
  background-color: #FDFCEA;
  padding: 5% 20px 6% 20px;
  line-height: 1.8;
  position: relative;
  border-radius: 0px 130px 0px 130px;
  /* 装飾要素 */
}
@media (max-width: 767px) {
  .au-p-message-section {
    padding-bottom: 5rem;
    border-radius: 0px 60px 0px 60px;
  }
}
.au-p-message-section h2 {
  font-size: 3.2em;
}
@media (max-width: 767px) {
  .au-p-message-section h2 {
    font-size: 2.2em;
  }
}
.au-p-message-section .au-p-message-section-inner {
  max-width: 1300px;
  margin: 0 auto;
}
.au-p-message-section .au-p-message-title {
  font-weight: bold;
  margin-bottom: 25px;
}
.au-p-message-section .au-p-message-content-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 767px) {
  .au-p-message-section .au-p-message-content-wrapper {
    flex-direction: column;
  }
}
.au-p-message-section .au-p-message-text-content {
  flex: 0 0 55%;
  max-width: none;
}
@media (max-width: 767px) {
  .au-p-message-section .au-p-message-text-content {
    flex: none;
    width: 100%;
  }
}
.au-p-message-section .au-p-message-highlight-box {
  background-color: #FFAA2B;
  color: white;
  padding: 0px 20px 13px 20px;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 36px;
  width: -moz-max-content;
  width: max-content;
  height: 55px;
}
@media (max-width: 767px) {
  .au-p-message-section .au-p-message-highlight-box {
    font-size: 26px;
    padding: 0px 10px 13px 10px;
    height: 35px;
  }
}
.au-p-message-section .au-p-message-text-block {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 600;
}
@media (max-width: 767px) {
  .au-p-message-section .au-p-message-text-block {
    font-size: 1rem;
  }
}
.au-p-message-section .au-p-message-blue-quote {
  font-weight: bold;
  margin: 20px 0;
}
.au-p-message-section .au-p-message-highlight-text {
  color: #56aaff;
  font-weight: 700;
  background: linear-gradient(transparent 60%, #f3ff50 60%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.au-p-message-section .au-p-message-photo-section {
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .au-p-message-section .au-p-message-photo-section {
    flex: none;
    width: 100%;
  }
}
.au-p-message-section .au-p-message-ceo-photo {
  max-width: 530px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #000;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .au-p-message-section .au-p-message-ceo-photo {
    width: 100%;
  }
}
.au-p-message-section .au-p-message-ceo-name {
  text-align: center;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 600;
}
.au-p-message-section .au-p-message-decoration-blue {
  position: absolute;
  width: 60px;
  height: 80px;
  background-color: #56aaff;
  left: -20px;
  top: 200px;
  border-radius: 4px;
  z-index: 1;
}
@media (max-width: 767px) {
  .au-p-message-section .au-p-message-decoration-blue {
    display: none;
  }
}
.au-p-message-section .au-p-message-decoration-yellow {
  position: absolute;
  width: 90px;
  height: 80px;
  background-color: #fff653;
  right: 13%;
  top: 19%;
  z-index: 1;
}
@media (max-width: 767px) {
  .au-p-message-section .au-p-message-decoration-yellow {
    display: none;
  }
}
.au-p-message-section .au-p-message-decoration-orange {
  position: absolute;
  width: 50px;
  height: 40px;
  background-color: #FFAA2B;
  right: 17%;
  top: 28%;
  z-index: 1;
}
@media (max-width: 767px) {
  .au-p-message-section .au-p-message-decoration-orange {
    display: none;
  }
}
.au-p-message-section .au-p-message-decoration-yellow-border {
  position: absolute;
  width: 70px;
  height: 50px;
  border: 3px solid #fff653;
  left: 50px;
  top: 120px;
  border-radius: 4px;
  z-index: 1;
}
@media (max-width: 767px) {
  .au-p-message-section .au-p-message-decoration-yellow-border {
    display: none;
  }
}

.au-hero-main-section {
  position: relative;
  min-height: 80vh;
  padding: 80px 40px;
  overflow: hidden;
  /* デザイン要素 */
}
@media (max-width: 767px) {
  .au-hero-main-section {
    padding: 40px 20px 0px 20px;
    min-height: 45vh;
  }
}
.au-hero-main-section h2 {
  font-size: 3.2em;
}
.au-hero-main-section .au-hero-content-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.au-hero-main-section .au-hero-text-content {
  z-index: 10;
  margin: 10% 0;
}
@media (max-width: 767px) {
  .au-hero-main-section .au-hero-text-content {
    margin-bottom: 40px;
  }
}
.au-hero-main-section .au-hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.au-hero-main-section .au-hero-main-title {
  font-size: 80px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 2px;
  line-height: 1.1;
  margin: 1rem 0;
}
@media (max-width: 767px) {
  .au-hero-main-section .au-hero-main-title {
    font-size: 48px;
  }
}
.au-hero-main-section .au-hero-image-container {
  position: relative;
  z-index: 5;
  width: 100%;
  overflow: hidden;
}
.au-hero-main-section .au-hero-team-image {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .au-hero-main-section .au-hero-team-image {
    height: 300px;
  }
}
.au-hero-main-section .au-hero-bg-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  background: #fff653;
  border-radius: 50%;
  top: 29%;
  right: -2%;
  z-index: 1;
}
@media (max-width: 767px) {
  .au-hero-main-section .au-hero-bg-circle {
    width: 100px;
    height: 100px;
    right: -15px;
    top: 13%;
  }
}
.au-hero-main-section .au-hero-bg-rect-blue {
  position: absolute;
  width: 30px;
  height: 170px;
  background: #55a9ff;
  top: 25%;
  right: 3%;
  z-index: 2;
}
@media (max-width: 767px) {
  .au-hero-main-section .au-hero-bg-rect-blue {
    top: 10%;
    height: 70px;
    width: 15px;
    right: 10px;
  }
}
.au-hero-main-section .au-hero-bg-diamond {
  position: absolute;
  width: 30px;
  height: 30px;
  background: #FFAA2B;
  transform: rotate(45deg);
  top: 80%;
  right: 3%;
  z-index: 3;
}
@media (max-width: 767px) {
  .au-hero-main-section .au-hero-bg-diamond {
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    top: 50%;
  }
}
.au-hero-main-section .au-hero-bg-dots {
  position: absolute;
  top: 85%;
  right: 2%;
  z-index: 3;
  width: 36px;
  height: 36px;
  background-image: radial-gradient(circle at center, #87ceeb 2px, transparent 2px);
  background-size: 12px 12px;
  background-repeat: repeat;
}
@media (max-width: 767px) {
  .au-hero-main-section .au-hero-bg-dots {
    top: 50%;
    right: -5%;
    top: 55%;
  }
}
.au-hero-main-section .au-hero-bg-circles-left {
  position: absolute;
  left: 0%;
  top: 65%;
  z-index: 1;
}
.au-hero-main-section .au-hero-small-circle {
  width: 50px;
  height: 50px;
  border: 2px solid #FFAA2B;
  border-radius: 50%;
  margin: 20px;
  opacity: 0.3;
}

.au-about-nav-section {
  max-width: 1300px;
  margin: 100px auto;
  padding: 60px 20px;
  background-color: #ecf5fe;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .au-about-nav-section {
    margin-top: 50px;
    margin-bottom: 20px;
  }
}
.au-about-nav-section h2 {
  font-size: 3.2em;
}
.au-about-nav-section .au-about-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .au-about-nav-section .au-about-title {
    font-size: 20px;
  }
}
.au-about-nav-section .au-about-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .au-about-nav-section .au-about-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: none;
  }
}
.au-about-nav-section .au-about-button {
  background-color: #87ceeb;
  color: black;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 50px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 270px;
  font-size: 18px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
@media (max-width: 767px) {
  .au-about-nav-section .au-about-button {
    width: 100%;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.au-about-nav-section .au-about-button:hover {
  background-color: #56aaff;
  color: black;
}
.au-about-nav-section .au-about-button-text {
  flex-grow: 1;
}
.au-about-nav-section .au-about-button-icon {
  width: 28px;
  height: 28px;
  background-color: white;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  font-size: 14px;
  font-weight: bold;
  color: black;
}

.au-about-work-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  line-height: 1.6;
  color: #000000;
  box-sizing: border-box;
  /* 装飾要素 */
  /* ヘッダー */
  /* ジョブセクション */
}
@media (max-width: 767px) {
  .au-about-work-section {
    padding: 30px 15px;
  }
}
.au-about-work-section h2 {
  font-size: 3.2em;
  margin: 0;
}
.au-about-work-section .au-about-work-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.au-about-work-section .au-about-work-decoration {
  position: absolute;
  top: 80px;
  right: -20%;
  z-index: 1;
}
@media (max-width: 767px) {
  .au-about-work-section .au-about-work-decoration {
    display: none;
  }
}
.au-about-work-section .au-about-work-dots {
  position: relative;
  width: 60px;
  height: 40px;
  margin-bottom: 10px;
}
.au-about-work-section .au-about-work-dots::before {
  content: "";
  position: absolute;
  top: 0;
  right: 120px;
  width: 20px;
  height: 20px;
  background-color: #fff653;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 40px 0 0 #fff653, 80px 0 0 #fff653, 120px 0 0 #fff653, 0 40px 0 #fff653, 40px 40px 0 #fff653, 80px 40px 0 #fff653, 120px 40px 0 #fff653, 0 80px 0 #fff653, 40px 80px 0 #fff653, 80px 80px 0 #fff653, 120px 80px 0 #fff653, 0 120px 0 #fff653, 40px 120px 0 #fff653, 80px 120px 0 #fff653, 120px 120px 0 #fff653; /* 下右に3個 */
}
.au-about-work-section .au-about-work-blue-shape {
  width: 270px;
  height: 270px;
  background-color: #56aaff;
  border-radius: 50%;
  position: relative;
  margin-top: -10px;
}
.au-about-work-section .au-about-work-header {
  margin-bottom: 50px;
}
.au-about-work-section .au-about-work-label {
  font-size: 20px;
  color: #666;
  font-weight: 700;
}
.au-about-work-section .au-about-work-title {
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 3rem;
}
.au-about-work-section .au-about-work-job-section {
  display: grid;
  gap: 80px;
}
@media (max-width: 767px) {
  .au-about-work-section .au-about-work-job-section {
    gap: 50px;
  }
}
.au-about-work-section .au-about-work-job-item {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (max-width: 767px) {
  .au-about-work-section .au-about-work-job-item {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
}
.au-about-work-section .au-about-work-job-item.au-about-work-layout-left {
  grid-template-columns: 1fr 1fr;
}
.au-about-work-section .au-about-work-job-item.au-about-work-layout-right {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .au-about-work-section .au-about-work-job-item.au-about-work-layout-right .au-about-work-job-content {
    order: 2;
  }
}
@media (max-width: 767px) {
  .au-about-work-section .au-about-work-job-item.au-about-work-layout-right .au-about-work-job-image-container {
    order: 1;
  }
}
.au-about-work-section .au-about-work-job-image {
  width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #000;
  z-index: 11;
  position: relative;
}
.au-about-work-section .au-about-work-job-content h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 25px;
  display: inline-block;
  position: relative;
  width: 100%;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .au-about-work-section .au-about-work-job-content h2 {
    font-size: 26px;
  }
}
.au-about-work-section .au-about-work-job-content h2::after {
  content: "";
  position: absolute;
  bottom: -1.5px;
  right: 0px;
  width: 170%;
  height: 0.5px;
  background-color: #000000;
  z-index: -1;
}
@media (max-width: 767px) {
  .au-about-work-section .au-about-work-job-content h2::after {
    left: 0px;
  }
}
.au-about-work-section .au-about-work-job-item.au-about-work-layout-right .au-about-work-job-content h2::after {
  left: 0px;
}
.au-about-work-section .au-about-work-job-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .au-about-work-section .au-about-work-job-subtitle {
    font-size: 18px;
  }
}
.au-about-work-section .au-about-work-job-description {
  font-size: 16px;
  line-height: 1.8;
}
.au-about-work-section .au-about-work-job-description p {
  margin-bottom: 15px;
}

.au-data-container {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  /* 装飾的背景 */
  /* ヘッダー */
  /* カード共通スタイル */
  /* データカードグリッド */
  /* 男女比率特別スタイル */
  /* 育休取得率特別スタイル - 新しいレイアウト */
  /* 既存の育休取得率スタイル（従来のレイアウト用） */
  /* SVGアイコン */
}
.au-data-container .au-data-bg-decoration-yellow {
  position: absolute;
  top: 15%;
  left: 0;
  width: 520px;
  height: 520px;
  background-color: #fff653;
  border-radius: 50%;
  transform: translate(-128px, -128px);
  z-index: 1;
}
@media (max-width: 767px) {
  .au-data-container .au-data-bg-decoration-yellow {
    top: 8%;
    width: 320px;
    height: 320px;
  }
}
.au-data-container .au-data-bg-decoration-yellow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350px; /* 内側の白い円のサイズ */
  height: 350px;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .au-data-container .au-data-bg-decoration-yellow::after {
    width: 220px; /* 内側の白い円のサイズ */
    height: 220px;
  }
}
.au-data-container .au-data-bg-decoration-blue {
  width: 0;
  height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-bottom: 120px solid #56aaff;
  position: absolute;
  top: 700px;
  right: -70px;
  z-index: 1;
}
.au-data-container .au-data-content {
  position: relative;
  z-index: 10;
  max-width: 1300px;
  margin: 0 auto;
  padding: 64px 32px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .au-data-container .au-data-content {
    padding: 48px 24px;
  }
}
@media (max-width: 767px) {
  .au-data-container .au-data-content {
    padding: 48px 16px;
  }
}
.au-data-container .au-data-header {
  margin-bottom: 64px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .au-data-container .au-data-header {
    margin-bottom: 48px;
  }
}
@media (max-width: 767px) {
  .au-data-container .au-data-header {
    margin-bottom: 48px;
  }
}
.au-data-container .au-data-header-subtitle {
  color: #6b7280;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0px;
}
.au-data-container .au-data-header-title {
  font-size: 3rem;
  font-weight: bold;
  margin: 0 0;
}
.au-data-container .au-data-card {
  background: #ecf5fe;
  border: 1px solid #000;
  border-radius: 16px;
  padding: 20px;
}
@media (max-width: 767px) {
  .au-data-container .au-data-card {
    padding: 10px;
  }
}
.au-data-container .au-data-data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .au-data-container .au-data-data-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .au-data-container .au-data-data-grid {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 12px;
  }
}
.au-data-container .au-data-data-card {
  text-align: center;
}
.au-data-container .au-data-data-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: #55a9ff;
}
.au-data-container .au-data-data-label {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.au-data-container .au-data-data-value {
  font-size: 65px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .au-data-container .au-data-data-value {
    font-size: 45px;
  }
}
.au-data-container .au-data-data-unit {
  font-size: 20px;
}
@media (max-width: 767px) {
  .au-data-container .au-data-data-unit {
    font-size: 18px;
  }
}
.au-data-container .au-data-gender-ratio {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 4px;
  font-size: 28px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .au-data-container .au-data-gender-ratio {
    flex-direction: column;
  }
}
.au-data-container .au-data-gender-ratio div {
  margin: auto;
}
.au-data-container .au-data-gender-ratio .au-data-male {
  color: #56aaff;
  font-size: 65px;
}
.au-data-container .au-data-gender-ratio .au-data-female {
  color: #ec4899;
  font-size: 65px;
}
.au-data-container .au-data-rates-container {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 8px;
}
@media (max-width: 767px) {
  .au-data-container .au-data-rates-container {
    gap: 12px;
    flex-direction: column;
  }
}
.au-data-container .au-data-rate-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
}
.au-data-container .au-data-rate-label {
  font-size: 18px;
  margin: 8px 0;
  line-height: 1.2;
  font-weight: 500;
}
@media (max-width: 767px) {
  .au-data-container .au-data-rate-label {
    font-size: 20px;
    margin-bottom: 6px;
  }
}
.au-data-container .au-data-childcare-icons {
  margin-bottom: 8px;
}
.au-data-container .au-data-childcare-label {
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}
.au-data-container .au-data-childcare-rates {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.au-data-container .au-data-rate-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 35px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .au-data-container .au-data-rate-circle {
    width: 100px;
    height: 100px;
    font-size: 30px;
  }
}
.au-data-container .au-data-rate-circle.au-data-blue {
  background-color: #56aaff;
}
.au-data-container .au-data-rate-circle.au-data-pink {
  background-color: #ec4899;
}
.au-data-container .au-data-icon {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.au-wellness-section {
  min-height: 100vh;
  padding: 9% 0 10% 0;
  background-color: #FDFCEA;
  position: relative;
  overflow: hidden;
  /* Background decorative elements */
  /* Header Description Wrapper */
  /* Header */
  /* Section Heading */
  /* Benefits Card */
}
@media (min-width: 768px) and (max-width: 1023px) {
  .au-wellness-section {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .au-wellness-section {
    padding: 0;
  }
}
.au-wellness-section .au-wellness-bg-decoration-1 {
  position: absolute;
  top: 18%;
  right: -2%;
  width: 20rem;
  height: 10rem;
  background-color: #FFAA2B;
  border-top-left-radius: 10rem;
  border-top-right-radius: 10rem;
  opacity: 0.7;
  transform: rotate(180deg);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .au-wellness-section .au-wellness-bg-decoration-1 {
    width: 20rem;
    height: 10rem;
    top: 40%;
  }
}
@media (max-width: 767px) {
  .au-wellness-section .au-wellness-bg-decoration-1 {
    width: 10rem;
    height: 5rem;
    top: 50%;
  }
}
.au-wellness-section .au-wellness-bg-decoration-2 {
  position: absolute;
  bottom: 8rem;
  left: -4rem;
  width: 0;
  height: 0;
  border-left: 7.5rem solid transparent;
  border-right: 7.5rem solid transparent;
  border-bottom: 8rem solid #fff653;
  opacity: 0.7;
  transform: rotate(180deg);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .au-wellness-section .au-wellness-bg-decoration-2 {
    bottom: 3rem;
    left: 3rem;
    border-left: 7.5rem solid transparent;
    border-right: 7.5rem solid transparent;
    border-bottom: 10rem solid #fff653;
  }
}
@media (max-width: 767px) {
  .au-wellness-section .au-wellness-bg-decoration-2 {
    bottom: 2rem;
    left: 2rem;
    border-left: 4rem solid transparent;
    border-right: 4rem solid transparent;
    border-bottom: 6rem solid #fff653;
  }
}
.au-wellness-section .au-wellness-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0rem 1.5rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .au-wellness-section .au-wellness-container {
    padding: 3rem 1.5rem;
  }
}
@media (max-width: 767px) {
  .au-wellness-section .au-wellness-container {
    padding: 2rem 1rem;
  }
}
.au-wellness-section .au-wellness-content-wrapper {
  max-width: 1300px;
}
.au-wellness-section .au-wellness-content-space {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .au-wellness-section .au-wellness-content-space {
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .au-wellness-section .au-wellness-content-space {
    gap: 1.5rem;
  }
}
.au-wellness-section .au-wellness-content-space h3 {
  border: 1px solid #000;
}
.au-wellness-section .au-wellness-header-description-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .au-wellness-section .au-wellness-header-description-wrapper {
    flex-direction: column;
    align-items: initial;
    gap: 1rem;
    margin-bottom: 0px;
  }
}
@media (max-width: 767px) {
  .au-wellness-section .au-wellness-header-description-wrapper {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 0px;
  }
}
.au-wellness-section .au-wellness-header-section {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  min-width: 20rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .au-wellness-section .au-wellness-header-section {
    flex-shrink: initial;
    min-width: initial;
  }
}
.au-wellness-section .au-wellness-category-label {
  color: #666;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}
.au-wellness-section .au-wellness-main-title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}
.au-wellness-section .au-wellness-description {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75;
  max-width: 48rem;
  flex: 1;
  margin-top: 1rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .au-wellness-section .au-wellness-description {
    font-size: 1.125rem;
    flex: initial;
    margin-top: initial;
  }
}
@media (max-width: 767px) {
  .au-wellness-section .au-wellness-description {
    font-size: 1rem;
  }
}
.au-wellness-section .au-wellness-highlight-text {
  color: #56aaff;
  background: linear-gradient(transparent 60%, #f3ff50 60%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.au-wellness-section .au-wellness-highlight-yellow {
  font-weight: 600;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.au-wellness-section .au-wellness-section-heading {
  background-color: #FFAA2B;
  font-weight: 500;
  padding: 0.75rem 3rem;
  border-radius: 9999px;
  font-size: 1.6rem;
  font-weight: 600;
  align-self: flex-start;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .au-wellness-section .au-wellness-section-heading {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
  }
}
@media (max-width: 767px) {
  .au-wellness-section .au-wellness-section-heading {
    font-size: 1rem;
  }
}
.au-wellness-section .au-wellness-benefits-for-you-bg {
  background-color: #FFAA2B;
}
.au-wellness-section .au-wellness-benefits-family-bg {
  background-color: #56aaff;
}
.au-wellness-section .au-wellness-benefits-health-bg {
  background-color: #67e9c5;
}
.au-wellness-section .au-wellness-section-heading span {
  font-weight: 600;
}
.au-wellness-section .au-wellness-benefits-card {
  background-color: white;
  border-radius: 1rem;
  padding: 3rem 5rem;
  border: 1px solid #000;
  position: relative;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .au-wellness-section .au-wellness-benefits-card {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .au-wellness-section .au-wellness-benefits-card {
    padding: 2rem;
  }
}
.au-wellness-section .au-wellness-benefits-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .au-wellness-section .au-wellness-benefits-content {
    flex-direction: column;
    justify-content: initial;
    align-items: initial;
    gap: 2rem;
  }
}
@media (max-width: 767px) {
  .au-wellness-section .au-wellness-benefits-content {
    flex-direction: column;
    gap: 2rem;
  }
}
.au-wellness-section .au-wellness-benefits-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-right: 2rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .au-wellness-section .au-wellness-benefits-list {
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .au-wellness-section .au-wellness-benefits-list {
    padding-right: 0;
  }
}
.au-wellness-section .au-wellness-benefit-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.au-wellness-section .au-wellness-benefit-item p {
  margin: 0;
}
.au-wellness-section .au-wellness-benefit-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.au-wellness-section .au-wellness-benefit-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.au-wellness-section .au-wellness-benefit-title {
  font-size: 1.25rem;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .au-wellness-section .au-wellness-benefit-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .au-wellness-section .au-wellness-benefit-title {
    font-size: 1.25rem;
  }
}
.au-wellness-section .au-wellness-benefit-text {
  font-size: 1rem;
  line-height: 1.75;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .au-wellness-section .au-wellness-benefit-text {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .au-wellness-section .au-wellness-benefit-text {
    font-size: 0.875rem;
  }
}
.au-wellness-section .au-wellness-illustration {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 30px; /* アイコンとの間隔を調整 */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.au-wellness-section .au-wellness-for-youlogo-bg {
  background-color: #FEF5E6;
}
.au-wellness-section .au-wellness-familylogo-bg {
  background-color: #E1F8FE;
}
.au-wellness-section .au-wellness-healthlogo-bg {
  background-color: #E5FEF8;
}
.au-wellness-section .au-wellness-illustration img {
  width: 100%;
  height: auto;
}

.it-menu-button {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #6c7ae0;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.it-menu-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  background: #6c7ae0;
}
.it-menu-button:hover .it-menu-icon,
.it-menu-button:hover .it-menu-icon::before,
.it-menu-button:hover .it-menu-icon::after {
  background: #fff;
}
@media (max-width: 768px) {
  .it-menu-button {
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
  }
}

.it-menu-icon {
  width: 25px;
  height: 3px;
  background: #6c7ae0;
  position: relative;
  transition: all 0.3s ease;
}
.it-menu-icon::before, .it-menu-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #6c7ae0;
  transition: all 0.3s ease;
}
.it-menu-icon::before {
  top: -8px;
}
.it-menu-icon::after {
  top: 8px;
}
@media (max-width: 768px) {
  .it-menu-icon {
    width: 20px;
    height: 2px;
  }
  .it-menu-icon::before {
    top: -6px;
  }
  .it-menu-icon::after {
    top: 6px;
  }
}

.it-welcome-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #87ceeb;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  padding: 20px;
  overflow: hidden;
}
.it-welcome-modal::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 100%;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.05) 35px, rgba(255, 255, 255, 0.05) 70px);
  animation: diagonalScroll 20s linear infinite;
  pointer-events: none;
}

.it-welcome-top-text {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.3rem;
  color: rgba(94, 181, 255, 0.8);
  letter-spacing: 0.8em;
  font-weight: 500;
  white-space: nowrap;
}

.it-welcome-content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  max-width: 800px;
  width: 100%;
  padding: 60px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  animation: welcomeBounceIn 0.8s ease-out;
}
@media (max-width: 768px) {
  .it-welcome-content {
    padding: 20px;
  }
}

.it-welcome-subtitle {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .it-welcome-subtitle {
    font-size: 1rem;
  }
}

.it-welcome-title {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 40px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .it-welcome-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.it-welcome-illustration {
  width: 400px;
  height: 250px;
  margin: 0 auto 40px;
  background: #f0f8ff;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.it-welcome-illustration img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.it-welcome-illustration::before, .it-welcome-illustration::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.it-welcome-illustration::before {
  width: 80px;
  height: 80px;
  background: rgba(94, 181, 255, 0.7);
  bottom: -20px;
  left: -20px;
}
.it-welcome-illustration::after {
  width: 60px;
  height: 60px;
  background: rgba(0, 136, 204, 0.7);
  bottom: 20px;
  left: 40px;
}
@media (max-width: 768px) {
  .it-welcome-illustration {
    width: 100%;
    max-width: 300px;
    height: 180px;
  }
}

.it-welcome-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .it-welcome-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
}

.it-welcome-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 768px) {
  .it-welcome-buttons {
    flex-direction: column;
    width: 100%;
  }
}

.it-welcome-btn {
  padding: 18px 50px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.it-welcome-btn-primary {
  background: #5eb5ff;
  color: #fff;
  box-shadow: 0 4px 15px rgba(94, 181, 255, 0.4);
}
.it-welcome-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(94, 181, 255, 0.5);
}
.it-welcome-btn-secondary {
  background: transparent;
  color: #5eb5ff;
  border: 2px solid #5eb5ff;
}
.it-welcome-btn-secondary:hover {
  background: #5eb5ff;
  color: #fff;
}
@media (max-width: 768px) {
  .it-welcome-btn {
    width: 100%;
    padding: 15px 30px;
    font-size: 1rem;
  }
}

.it-main-title {
  position: absolute;
  top: 25px;
  left: 40px;
  color: #000;
  font-size: 3rem;
  font-weight: 700;
  z-index: 1001;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .it-main-title {
    font-size: 1.3rem;
    top: -15px;
    left: 10px;
  }
}

.it-main-container {
  position: relative;
  width: calc(100% - 40px);
  height: calc(100vh - 90px);
  max-width: 1440px;
  margin: 30px auto;
}
@media (max-width: 768px) {
  .it-main-container {
    margin: 30px auto;
    height: calc(100vh - 60px);
  }
}

.it-tour-container {
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 3px solid #6c7ae0;
  border-radius: 10px;
}

.it-illustration-viewer {
  position: relative;
  flex: 1;
  background: #f5f5f5;
  overflow: hidden;
}

.it-illustration-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.3s ease;
}

.it-illustration-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: grab;
}
.it-illustration-slide:active {
  cursor: grabbing;
}
.it-illustration-slide:nth-child(1) .it-slide-content {
  background: url("../img/illust/52_ricruitetuor_scene_1.jpg") #ffcccb;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.it-illustration-slide:nth-child(2) .it-slide-content {
  background: url("../img/illust/58_ricruitetuor_scene_2.jpg") #add8e6;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.it-illustration-slide:nth-child(3) .it-slide-content {
  background: url("../img/illust/60_ricruitetuor_scene_area_3.jpg") #dda0dd;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.it-illustration-slide:nth-child(4) .it-slide-content {
  background: url("../img/illust/62_ricruitetuor_scene_area_4.jpg") #87ceeb;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.it-slide-content {
  width: 100%;
  height: 100%;
  position: relative;
  transition: none !important;
  transform-origin: 0 0;
}
.it-slide-content:nth-child(1) {
  background: #ffcccb;
}

.it-hotspot {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(94, 217, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 100;
}
.it-hotspot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
}
.it-hotspot:hover {
  background: #0011ff;
}
.it-hotspot.visited {
  box-shadow: 0 0 0 4px rgba(108, 122, 224, 0.35);
  opacity: 0.85;
}
@media (max-width: 768px) {
  .it-hotspot {
    width: 50px;
    height: 50px;
  }
}

.it-slide-indicator {
  position: absolute;
  right: -15px;
  top: 62%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}
@media (max-width: 768px) {
  .it-slide-indicator {
    right: -15px;
    gap: 10px;
    top: 75%;
  }
}

.it-indicator-dot {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
}
.it-indicator-dot:hover {
  background: #fff;
}
.it-indicator-dot.it-active {
  background: #fff;
  border: solid 7px #6c7ae0;
  box-shadow: 3px 3px 0px #6c7ae0;
}
@media (max-width: 768px) {
  .it-indicator-dot {
    width: 40px;
    height: 40px;
  }
}

.it-indicator-icon {
  width: 64px;
  height: 64px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .it-indicator-icon {
    width: 35px;
    height: 35px;
  }
}

.it-map-label {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: #fff;
  color: #000;
  padding: 12px 24px;
  border-radius: 140px;
  font-size: 1.2rem;
  font-weight: 600;
  pointer-events: none;
  z-index: 50;
  border: solid 1px;
}
@media (max-width: 768px) {
  .it-map-label {
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 16px;
    font-size: 1rem;
  }
}

.it-minimap {
  position: absolute;
  bottom: -50px;
  right: 40px;
  width: 170px;
  height: 90px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #000;
  border-radius: 18px;
  z-index: 1000;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 768px) {
  .it-minimap {
    width: 90px;
    height: 68px;
    bottom: -25px;
    right: 15px;
  }
}

.it-minimap-content {
  width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
}

.it-minimap-viewport {
  position: absolute;
  background: rgba(120, 174, 255, 0.8);
  pointer-events: none;
  border-radius: 5px;
}

.error-display {
  position: fixed;
  top: 10px;
  right: 10px;
  background: #ff4444;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  z-index: 3000;
  display: none;
}

.it-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}
.it-modal.it-show {
  display: flex;
}
@media (max-width: 768px) {
  .it-modal.it-show {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 9999 !important;
  }
}
@media (max-width: 768px) {
  .it-modal {
    padding: 10px;
  }
}

.it-modal-content {
  background: #fff;
  border-radius: 30px;
  max-width: 450px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .it-modal-content {
    max-height: 90vh;
    max-width: 95%;
    border-radius: 20px;
  }
}

.it-modal-header {
  position: relative;
  padding: 0;
}

.it-modal-progress {
  background: #5eb5ff;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 10;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0.5rem auto 0 auto;
}
@media (max-width: 768px) {
  .it-modal-progress {
    font-size: 0.85rem;
    padding: 6px 16px;
  }
}

.it-modal-image {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  padding: 1rem;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .it-modal-image {
    height: 150px;
  }
}

.it-modal-body {
  padding: 30px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .it-modal-body {
    padding: 20px;
  }
}

.it-modal-title {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 20px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .it-modal-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
}

.it-modal-text {
  color: #666;
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 30px;
  flex: 1;
}
@media (max-width: 768px) {
  .it-modal-text {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
}

.it-continue-btn {
  background: #5eb5ff;
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}
.it-continue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(94, 181, 255, 0.4);
}
.it-continue-btn:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .it-continue-btn {
    padding: 12px 30px;
    font-size: 0.95rem;
  }
}

.it-drag-hint {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  z-index: 50;
  pointer-events: none;
}

.it-progress {
  width: 100%;
  max-width: 300px;
  position: absolute;
  bottom: -55px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(0, 81, 255);
  color: #fff;
  padding: 12px 4rem;
  border: solid 2px #000;
  border-radius: 60px;
  font-weight: 700;
  z-index: 1200;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.9);
  text-align: center;
}
@media (max-width: 768px) {
  .it-progress {
    bottom: -25px;
    padding: 8px 2rem;
    width: 70%;
  }
}

.it-progress-subtext {
  font-size: small;
}

#progressDisplay {
  font-size: 23px;
}
@media (max-width: 768px) {
  #progressDisplay {
    font-size: 20px;
  }
}

.it-congratulations {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  animation: fadeIn 0.5s ease-in-out;
}
.it-congratulations.show {
  display: flex;
}

.it-congratulations-content {
  text-align: center;
  color: #fff;
  animation: bounceIn 0.8s ease-out;
}

.it-congratulations-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 2s ease-in-out infinite;
}
@media (max-width: 768px) {
  .it-congratulations-title {
    font-size: 2rem;
  }
}

.it-congratulations-message {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .it-congratulations-message {
    font-size: 1rem;
  }
}

.it-confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ff6b6b;
  animation: confettiFall 3s linear infinite;
}
.it-confetti:nth-child(2n) {
  background: #4ecdc4;
  animation-delay: 0.5s;
}
.it-confetti:nth-child(3n) {
  background: #45b7d1;
  animation-delay: 1s;
}
.it-confetti:nth-child(4n) {
  background: #96ceb4;
  animation-delay: 1.5s;
}

@keyframes welcomeBounceIn {
  0% {
    transform: scale(0.3) translateY(-100px);
    opacity: 0;
  }
  50% {
    transform: scale(1.05) translateY(0);
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
@keyframes diagonalScroll {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bounceIn {
  0% {
    transform: scale(0.3) translateY(-50px);
    opacity: 0;
  }
  50% {
    transform: scale(1.1) translateY(0);
    opacity: 1;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes confettiFall {
  0% {
    transform: translateY(-100vh) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}
main {
  overflow: hidden;
}

.hero-bg {
  color: black;
  text-align: left;
  padding: 210px 40px 0px 40px;
  position: relative;
}
@media (max-width: 768px) {
  .hero-bg {
    padding: 40px 20px 0px 20px;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
}
.hero-content span {
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 700;
  display: block;
}
@media (max-width: 1024px) {
  .hero-content span {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .hero-content span {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .hero-content span {
    font-size: 1rem;
  }
}
.hero-content h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 0;
  letter-spacing: 2px;
  color: #333;
}
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 3rem;
    letter-spacing: 1px;
  }
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }
}
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }
}
.hero-content p,
.hero-content > span:last-child {
  display: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .container {
    padding: 40px 15px;
  }
}

.decoration-circle {
  position: absolute;
  top: -150px;
  right: -250px;
  width: 250px;
  height: 250px;
  background: #FFD700;
  border-radius: 50%;
  opacity: 0.6;
  z-index: -1;
}
@media (max-width: 1024px) {
  .decoration-circle {
    display: none;
  }
}
@media (max-width: 768px) {
  .decoration-circle {
    display: none;
  }
}

.decoration-rectangle {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 30px;
  height: 160px;
  background: #4A90E2;
  opacity: 0.8;
  z-index: -1;
}
@media (max-width: 1024px) {
  .decoration-rectangle {
    display: none;
  }
}
@media (max-width: 768px) {
  .decoration-rectangle {
    display: none;
  }
}

.decoration-yellow-circle {
  position: absolute;
  top: 260px;
  left: -100px;
  width: 60px;
  height: 60px;
  background: transparent;
  border: 2px solid #FFD700;
  border-radius: 50%;
  opacity: 0.5;
  z-index: -1;
}
@media (max-width: 1024px) {
  .decoration-yellow-circle {
    display: none;
  }
}
@media (max-width: 768px) {
  .decoration-yellow-circle {
    display: none;
  }
}

.decoration-gray-circle {
  position: absolute;
  top: 250px;
  left: -50px;
  width: 30px;
  height: 30px;
  background: #c9c9c9;
  border-radius: 50%;
  z-index: -1;
}
@media (max-width: 1024px) {
  .decoration-gray-circle {
    width: 60px;
    height: 60px;
    left: 50px;
    top: 90px;
  }
}
@media (max-width: 768px) {
  .decoration-gray-circle {
    width: 40px;
    height: 40px;
    left: 5px;
    top: 370px;
  }
}

.loading,
.error,
.empty {
  text-align: center;
  padding: 60px;
  color: #666;
  font-size: 1.1rem;
  background: #f8f9fa;
  border-radius: 15px;
}

.error {
  color: #e74c3c;
}

.mc-target-blank-button {
  display: inline-block;
  background: linear-gradient(135deg, #4A90E2 0%, #357abd 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 8px 12px 8px 0;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(74, 144, 226, 0.3);
}
.mc-target-blank-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.mc-center-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #4A90E2 0%, #357abd 100%);
  border-radius: 30px;
  margin: 20px auto;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
  text-align: center;
}
.mc-center-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(74, 144, 226, 0.4);
}

@media (max-width: 768px) {
  .intern-main .decoration-circle,
  .intern-main .decoration-rectangle,
  .intern-main .decoration-yellow-circle,
  .intern-main .decoration-gray-circle,
  article + .container .decoration-circle,
  article + .container .decoration-rectangle,
  article + .container .decoration-yellow-circle,
  article + .container .decoration-gray-circle {
    display: none;
  }
}
@media (max-width: 768px) {
  .container {
    overflow: hidden;
  }
  .footer-container-menu {
    flex-direction: column;
    gap: 30px;
  }
  .footer-main-nav {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.cms-content table,
.rec-det-content table {
  border-collapse: collapse;
  background-color: #f8f9fa;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.cms-content table td,
.cms-content table th,
.rec-det-content table td,
.rec-det-content table th {
  border: 1px solid #e8e8e8;
  padding: 5px;
  text-align: left;
}
.cms-content table th,
.rec-det-content table th {
  color: #4A90E2;
  background-color: #f0f7ff;
  font-weight: 600;
}
.cms-content table td,
.rec-det-content table td {
  background-color: #ffffff;
}
.cms-content table td:first-child,
.rec-det-content table td:first-child {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #333;
}
@media (max-width: 768px) {
  .cms-content table th,
  .rec-det-content table th {
    text-align: center;
  }
}

cms-content以降のスタイルをSass化します。以下のSCSSファイルを作成してください： cms-content.scss scss .cms-content {
  border-radius: 20px;
  position: relative;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
}
cms-content以降のスタイルをSass化します。以下のSCSSファイルを作成してください： cms-content.scss scss .cms-content h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid #4A90E2;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
cms-content以降のスタイルをSass化します。以下のSCSSファイルを作成してください： cms-content.scss scss .cms-content h2::before {
  content: "";
  width: 6px;
  height: 30px;
  background: #4A90E2;
  border-radius: 3px;
}
cms-content以降のスタイルをSass化します。以下のSCSSファイルを作成してください： cms-content.scss scss .cms-content h3 {
  color: #333;
  margin: 30px 0 15px 0;
  font-size: 1.25rem;
  font-weight: 600;
}
cms-content以降のスタイルをSass化します。以下のSCSSファイルを作成してください： cms-content.scss scss .cms-content p {
  margin-top: 10px;
  margin-bottom: 10px;
}
cms-content以降のスタイルをSass化します。以下のSCSSファイルを作成してください： cms-content.scss scss .cms-content ul, cms-content以降のスタイルをSass化します。以下のSCSSファイルを作成してください： cms-content.scss scss .cms-content ol {
  margin: 20px 0;
  padding-left: 30px;
}
cms-content以降のスタイルをSass化します。以下のSCSSファイルを作成してください： cms-content.scss scss .cms-content li {
  margin-bottom: 8px;
}
cms-content以降のスタイルをSass化します。以下のSCSSファイルを作成してください： cms-content.scss scss .cms-content img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin: 25px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
cms-content以降のスタイルをSass化します。以下のSCSSファイルを作成してください： cms-content.scss scss .cms-content ol {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  position: relative;
  counter-reset: step-counter;
}
cms-content以降のスタイルをSass化します。以下のSCSSファイルを作成してください： cms-content.scss scss .cms-content li {
  position: relative;
  background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
  margin-bottom: 25px;
  padding: 30px 25px 30px 110px;
  border-radius: 15px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 3px 15px rgba(74, 144, 226, 0.1);
  transition: all 0.3s ease;
}
cms-content以降のスタイルをSass化します。以下のSCSSファイルを作成してください： cms-content.scss scss .cms-content li:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(74, 144, 226, 0.15);
}
cms-content以降のスタイルをSass化します。以下のSCSSファイルを作成してください： cms-content.scss scss .cms-content li::before {
  content: "STEP\a" counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4A90E2 0%, #357abd 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  white-space: pre-line;
  line-height: 1.2;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}
cms-content以降のスタイルをSass化します。以下のSCSSファイルを作成してください： cms-content.scss scss .cms-content li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 54px;
  bottom: -25px;
  width: 3px;
  height: 25px;
  background: linear-gradient(to bottom, #4A90E2, transparent);
  z-index: 1;
  border-radius: 2px;
}
cms-content以降のスタイルをSass化します。以下のSCSSファイルを作成してください： cms-content.scss scss .cms-content .mc-flow-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  cms-content以降のスタイルをSass化します。以下のSCSSファイルを作成してください： cms-content.scss scss .cms-content {
    border-radius: 15px;
  }
  cms-content以降のスタイルをSass化します。以下のSCSSファイルを作成してください： cms-content.scss scss .cms-content li {
    padding: 20px 20px 20px 80px;
  }
  cms-content以降のスタイルをSass化します。以下のSCSSファイルを作成してください： cms-content.scss scss .cms-content li::before {
    width: 50px;
    height: 50px;
    left: 15px;
    font-size: 10px;
  }
  cms-content以降のスタイルをSass化します。以下のSCSSファイルを作成してください： cms-content.scss scss .cms-content li:not(:last-child)::after {
    left: 39px;
  }
}
@media (max-width: 480px) {
  cms-content以降のスタイルをSass化します。以下のSCSSファイルを作成してください： cms-content.scss scss .cms-content li {
    padding: 15px 15px 15px 65px;
  }
  cms-content以降のスタイルをSass化します。以下のSCSSファイルを作成してください： cms-content.scss scss .cms-content li::before {
    width: 40px;
    height: 40px;
    left: 12px;
    font-size: 9px;
  }
  cms-content以降のスタイルをSass化します。以下のSCSSファイルを作成してください： cms-content.scss scss .cms-content li:not(:last-child)::after {
    left: 32px;
  }
}

@media (max-width: 768px) {
  .mc-text-block {
    display: block;
  }
}

.rec-det-detail {
  border-radius: 20px;
  padding: 40px;
  position: relative;
}

.rec-det-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.rec-det-date {
  background: rgba(102, 102, 102, 0.1);
  color: #666;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
}

.rec-det-category {
  background: rgba(74, 144, 226, 0.1);
  color: #4A90E2;
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.rec-det-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.4;
}

.rec-det-content {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
}
.rec-det-content h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid #4A90E2;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.rec-det-content h2::before {
  content: "";
  width: 6px;
  height: 30px;
  background: #4A90E2;
  border-radius: 3px;
}
.rec-det-content h3 {
  color: #333;
  margin: 30px 0 15px 0;
  font-size: 1.25rem;
  font-weight: 600;
}
.rec-det-content p {
  margin-top: 10px;
  margin-bottom: 10px;
}
.rec-det-content ul, .rec-det-content ol {
  margin: 20px 0;
  padding-left: 30px;
}
.rec-det-content li {
  margin-bottom: 8px;
}
.rec-det-content img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin: 25px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.rec-det-content table {
  border-collapse: collapse;
  background-color: #f8f9fa;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.rec-det-content table td, .rec-det-content table th {
  border: 1px solid #e8e8e8;
  padding: 5px;
  text-align: left;
  min-width: 55px;
}
.rec-det-content table th {
  color: #4A90E2;
  background-color: #f0f7ff;
  font-weight: 600;
}
.rec-det-content table td {
  background-color: #ffffff;
}
.rec-det-content table td:first-child {
  background-color: #f8f9fa;
  font-weight: 600;
  color: #333;
}
.rec-det-content ol {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  position: relative;
  counter-reset: step-counter;
}
.rec-det-content li {
  position: relative;
  background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
  margin-bottom: 25px;
  padding: 30px 25px 30px 110px;
  border-radius: 15px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 3px 15px rgba(74, 144, 226, 0.1);
  transition: all 0.3s ease;
}
.rec-det-content li:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(74, 144, 226, 0.15);
}
.rec-det-content li::before {
  content: "STEP\a" counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4A90E2 0%, #357abd 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  white-space: pre-line;
  line-height: 1.2;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}
.rec-det-content li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 54px;
  bottom: -25px;
  width: 3px;
  height: 25px;
  background: linear-gradient(to bottom, #4A90E2, transparent);
  z-index: 1;
  border-radius: 2px;
}
.rec-det-content .mc-flow-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}
.rec-det-content .mc-target-blank-button {
  display: inline-block;
  background: linear-gradient(135deg, #4A90E2 0%, #357abd 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 8px 12px 8px 0;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(74, 144, 226, 0.3);
}
.rec-det-content .mc-target-blank-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.rec-det-actions {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1024px) {
  .rec-det-title {
    font-size: 1.8rem;
  }
  .rec-det-detail {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .rec-det-detail {
    padding: 25px;
    border-radius: 15px;
  }
  .rec-det-title {
    font-size: 1.6rem;
  }
  .rec-det-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .rec-det-actions {
    justify-content: center;
  }
  .rec-det-content li {
    padding: 20px 20px 20px 80px;
  }
  .rec-det-content li::before {
    width: 50px;
    height: 50px;
    left: 15px;
    font-size: 10px;
  }
  .rec-det-content li:not(:last-child)::after {
    left: 39px;
  }
  .rec-det-content table th {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .rec-det-detail {
    padding: 0px;
  }
  .rec-det-title {
    font-size: 1.4rem;
  }
  .rec-det-content li {
    padding: 15px 15px 15px 65px;
  }
  .rec-det-content li::before {
    width: 40px;
    height: 40px;
    left: 12px;
    font-size: 9px;
  }
  .rec-det-content li:not(:last-child)::after {
    left: 32px;
  }
}
/* ニュース詳細固有スタイル */
.news-detail {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
}

.news-date {
  color: #999;
  font-size: 0.9rem;
  font-weight: 500;
}

.news-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  background: #ffffff;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e8e8e8;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  gap: 20px;
}

.news-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #ddd;
}

.news-arrow {
  width: 50px;
  height: 50px;
  background: #4A90E2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s;
  flex-shrink: 0;
}
.news-arrow::after {
  content: "→";
}

/* ホバー時の連動 */
.news-item:hover .news-arrow {
  background: #357abd;
  transform: scale(1.05);
}

/* タブレット（<=1024px） */
@media (max-width: 1024px) {
  .news-item {
    padding: 25px;
  }
}
/* スマートフォン（<=768px） */
@media (max-width: 768px) {
  .news-item {
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .news-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
    align-self: flex-end;
  }
}
/* 小さめスマートフォン（<=480px） */
@media (max-width: 480px) {
  .news-item {
    padding: 15px;
    gap: 10px;
  }
  .news-arrow {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}
/* ===== News list ===== */
.news-list-title {
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .news-list-title {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .news-list-title {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .news-list-title {
    font-size: 1rem;
  }
}

/* ===== News Detail ===== */
.news-detail-title {
  font-size: 2rem;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #4A90E2;
  position: relative;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  /* タブレット */
  /* スマートフォン */
  /* 小さなスマートフォン */
}
.news-detail-title::before {
  content: "";
  width: 6px;
  height: 30px;
  background: #4A90E2;
  border-radius: 3px;
  position: absolute;
  left: -20px;
  top: 0;
}
@media (max-width: 1024px) {
  .news-detail-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .news-detail-title {
    font-size: 1.5rem;
    padding-left: 25px;
  }
  .news-detail-title::before {
    left: 0;
  }
}
@media (max-width: 480px) {
  .news-detail-title {
    font-size: 1.3rem;
  }
}

.recruitment-section {
  margin-bottom: 80px;
}
.recruitment-section .rec-section-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid #4A90E2;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.recruitment-section .rec-section-title::before {
  content: "";
  width: 6px;
  height: 30px;
  background: #4A90E2;
  border-radius: 3px;
}
.recruitment-section .rec-list-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.recruitment-section .rec-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  background: white;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e8e8e8;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  gap: 20px;
}
.recruitment-section .rec-list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #ddd;
}
.recruitment-section .rec-list-item:hover .rec-list-arrow {
  background: #357abd;
  transform: scale(1.05);
}
.recruitment-section .rec-list-header {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.recruitment-section .rec-list-top-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}
.recruitment-section .rec-list-content {
  flex: 1;
}
.recruitment-section .rec-list-title {
  color: #333;
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 0;
  font-weight: 600;
}
.recruitment-section .rec-list-right-content {
  display: flex;
  gap: inherit;
  margin-left: auto;
}
.recruitment-section .rec-list-status-container {
  display: flex;
  align-items: center;
  gap: 10px;
}
.recruitment-section .rec-list-status {
  display: inline-block;
  color: white;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 20px;
  background: #4A90E2;
  white-space: nowrap;
}
.recruitment-section .rec-list-status.recruiting {
  background: #4A90E2;
}
.recruitment-section .rec-list-status.limited {
  background: #FF9500;
}
.recruitment-section .rec-list-status.closed {
  background: #999;
}
.recruitment-section .rec-list-arrow {
  width: 50px;
  height: 50px;
  background: #4A90E2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: all 0.3s;
  flex-shrink: 0;
}
.recruitment-section .rec-list-arrow::after {
  content: "→";
}
@media (max-width: 1024px) {
  .recruitment-section .rec-section-title {
    font-size: 1.8rem;
  }
  .recruitment-section .rec-list-item {
    padding: 25px;
  }
  .recruitment-section .rec-list-title {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .recruitment-section {
    margin-bottom: 60px;
  }
  .recruitment-section .rec-section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  .recruitment-section .rec-list-item {
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .recruitment-section .rec-list-header {
    gap: 15px;
  }
  .recruitment-section .rec-list-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 0;
    border-bottom: none;
  }
  .recruitment-section .rec-list-status-container {
    align-self: center;
  }
  .recruitment-section .rec-list-title {
    font-size: 1.1rem;
  }
  .recruitment-section .rec-list-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
    align-self: flex-end;
  }
}
@media (max-width: 480px) {
  .recruitment-section .rec-section-title {
    font-size: 1.3rem;
  }
  .recruitment-section .rec-list-item {
    padding: 15px;
    gap: 10px;
  }
  .recruitment-section .rec-list-header {
    gap: 10px;
  }
  .recruitment-section .rec-list-top-row {
    gap: 8px;
  }
  .recruitment-section .rec-list-title {
    font-size: 1rem;
  }
  .recruitment-section .rec-list-arrow {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

body {
  font-family: "Noto Sans JP", Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.main-container {
  position: relative;
  margin: 0 auto;
}

.font-noto {
  font-family: "Noto Sans JP", Arial, sans-serif;
}

.writing-vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.handwriting {
  font-family: "Brush Script MT", cursive;
  color: #10b981;
  transform: rotate(-2deg);
}

.max-width {
  max-width: 1600px;
}

.no-break {
  white-space: nowrap;
}

a {
  text-decoration: none;
}/*# sourceMappingURL=main.css.map */