@charset "UTF-8";
html {
  overflow-anchor: none;
}

body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background: #fffdfb;
  letter-spacing: 0.06em;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

video {
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  outline: none;
  border: none;
}

/* page title */
.page-title {
  text-align: center;
  margin-bottom: 86px;
}
.page-title .ja {
  display: block;
  color: #00a99d;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
@media (max-width: 760px) {
  .page-title .ja {
    font-size: 24px;
  }
}
.page-title .en {
  display: block;
  color: #9a9a9a;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

/* footer button */
.page-actions {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  margin-top: 72px;
}
@media (max-width: 760px) {
  .page-actions {
    margin-top: 52px;
  }
}

.home-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #666;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  transition: opacity 0.2s ease;
}
.home-link:hover {
  opacity: 0.72;
}
.home-link::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: #00a99d;
  flex-shrink: 0;
}
@media (max-width: 760px) {
  .home-link {
    font-size: 12px;
  }
  .home-link::before {
    width: 22px;
    height: 2px;
  }
}

.page-top-link {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  width: 74px;
  height: 74px;
  border-radius: 28px;
  display: grid;
  place-items: center;
  background: #fff;
  color: #00a99d;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
  border: 1px solid #f2ece8;
  transition: transform 0.2s ease;
}
.page-top-link:hover {
  transform: translateY(-3px);
  color: #00a99d;
}
.page-top-link::before {
  content: "";
  width: 30px;
  height: 30px;
  margin-bottom: -8px;
  background: #f8c43a;
  clip-path: polygon(50% 0, 100% 58%, 66% 58%, 66% 100%, 34% 100%, 34% 58%, 0 58%);
}
.page-top-link::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  right: -8px;
  top: -8px;
  background: #5fc7cd;
  transform: rotate(45deg);
  border-radius: 6px;
  z-index: -1;
}
@media (max-width: 760px) {
  .page-top-link {
    right: 14px;
    bottom: 14px;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    font-size: 10px;
  }
  .page-top-link::before {
    width: 24px;
    height: 24px;
  }
}

/* section title */
.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 38px;
  color: #00a99d;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.section-heading::before, .section-heading::after {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: #f8c43a;
}
@media (max-width: 760px) {
  .section-heading {
    font-size: 1.2rem;
  }
}

/* フェードイン効果 */
.js-fadein {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-fadein.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* 視覚効果を減らす設定を有効にしているユーザー向け */
@media (prefers-reduced-motion: reduce) {
  .js-fadein {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
  z-index: 1000;
  transition: top 1s, background 0.3s;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.header {
  width: 100%;
  height: 80px;
  margin-left: 0;
}

.header_entry {
  width: 72px;
  height: 72px;
  margin-left: 180px;
  display: none;
}

.geex_logo {
  width: auto;
  height: 75px;
  margin-left: 0;
}

.navbar-collapse.collapsing,
.navbar-collapse.show {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1020;
  overflow-y: auto;
  padding-top: 100px;
  transition: none;
}

.navbar-collapse ul {
  text-align: center;
}

.navbar-collapse ul li {
  display: inline-block;
  font-weight: 700;
}

.navbar-collapse .close-menu {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  border: none;
  cursor: pointer;
  display: none;
}

.nav-link {
  padding-right: 12px !important;
  padding-left: 12px !important;
}

.sp-entry-link {
  margin-left: auto;
  margin-right: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #f46f95;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

@media (max-width: 991px) {
  .header {
    height: 56px;
  }
  .header_entry {
    width: 40px;
    height: 40px;
    margin-left: 120px;
    display: flex;
  }
  .geex_logo {
    width: 20%;
    height: 20%;
  }
  .navbar-collapse .close-menu {
    display: block;
  }
  .navbar-collapse.collapsing,
  .navbar-collapse.show {
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.92);
    z-index: 1020;
    overflow-y: auto;
    padding-top: 100px;
    transition: none;
  }
  .navbar-collapse ul {
    text-align: center;
  }
  .navbar-collapse ul li {
    display: block;
    margin: 14px 0;
    font-weight: 700;
  }
}
@media (min-width: 991px) {
  .nav-entry {
    margin-left: 16px;
  }
  .nav-entry .nav-link {
    padding: 10px 22px !important;
    border-radius: 999px;
    background: #f46f95;
    color: #fff;
    font-weight: 700;
  }
  .nav-entry .nav-link:hover {
    opacity: 0.9;
    color: #fff;
  }
}
.footer-sp {
  width: 100%;
  height: 173px;
  background-color: #9ee5e0;
  flex-direction: column;
  margin: 30px 0 0;
  padding: 9px 32px;
}

.footer-sp .footer-logo {
  width: 100px;
  height: 37px;
  display: flex;
  justify-content: center;
}

.footer-sp .privacy-policy {
  text-decoration: none;
}

/* TOPページはhomeリンク非表示 */
.top-page .page-actions {
  display: none;
}

.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 20px 80px;
}
@media (max-width: 760px) {
  .page {
    width: 100%;
    max-width: 420px;
    padding: 16px 10px 40px;
  }
}

.kv-movie {
  width: 100%;
}
.kv-movie video {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.kv-sp {
  display: none;
}

.brand-statement {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 28px;
  padding: 58px 42px 54px;
  margin-bottom: 48px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.brand-kicker {
  margin: 0 0 18px;
  font-size: 22px;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.brand-formula {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #00a99d;
}
.brand-formula em {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
}
.brand-formula strong {
  color: #00a99d;
  font-weight: 700;
}
.brand-formula .small {
  display: inline-block;
  margin-left: 5px;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.brand-reading {
  display: inline-block;
  margin: 0 0 34px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.brand-message-list {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.brand-message {
  margin-bottom: 46px;
  line-height: 2.4;
  letter-spacing: 0.08em;
  font-size: 22px;
  font-weight: 500;
}
.brand-message:last-child {
  margin-bottom: 0;
}
.brand-message strong {
  color: #00a99d;
  font-weight: 700;
}
.brand-message .x {
  display: inline-block;
  margin: 0 6px;
  color: #00a99d;
  font-weight: 700;
}
.brand-message .line-break {
  display: block;
  margin-top: 18px;
}

.brand-shape {
  position: absolute;
  opacity: 0.9;
  z-index: 1;
}
.brand-shape-1 {
  width: 90px;
  height: 34px;
  background: #f46f95;
  left: -14px;
  top: 60px;
  transform: rotate(-15deg);
}
.brand-shape-2 {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #f8c43a;
  right: 48px;
  top: 92px;
}
.brand-shape-3 {
  width: 86px;
  height: 110px;
  background: #5fc7cd;
  right: -22px;
  bottom: 58px;
  transform: rotate(18deg);
}

.company-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 28px;
  padding: 52px 32px 42px;
  margin-bottom: 48px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.company-panel {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 54px;
  border-radius: 18px;
  background: #fffdfb;
  border: 1px solid #f5ece7;
}

.company-catch {
  margin: 0 0 42px;
  text-align: center;
  font-size: 24px;
  line-height: 1.7;
  letter-spacing: 0.06em;
}

.company-content {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 52px;
  align-items: center;
  margin-bottom: 30px;
}

.company-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.company-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 26px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.company-points li {
  position: relative;
  padding-left: 28px;
}
.company-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00a99d;
  transform: translateY(-50%);
}

.company-message {
  margin-bottom: 30px;
  text-align: center;
  line-height: 2.1;
  font-size: 16px;
}
.company-message p {
  margin: 0;
}
.company-message strong {
  display: inline-block;
  margin-top: 8px;
  font-size: 26px;
  color: #00a99d;
  letter-spacing: 0.08em;
}

.company-footer {
  margin: 0;
  text-align: center;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 0.08em;
}

.company-btn {
  margin-top: 28px;
}

.company-shape {
  position: absolute;
  opacity: 0.9;
  z-index: 1;
}
.company-shape-1 {
  width: 96px;
  height: 38px;
  background: #f46f95;
  left: -10px;
  top: 72px;
  transform: rotate(-15deg);
}
.company-shape-2 {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #f8c43a;
  right: 42px;
  top: 160px;
}
.company-shape-3 {
  width: 94px;
  height: 130px;
  background: #5fc7cd;
  right: -28px;
  bottom: 88px;
  transform: rotate(16deg);
}

.job-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 28px;
  padding: 52px 32px 44px;
  margin-bottom: 48px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.job-panel {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.job-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 26px;
  align-items: center;
  padding: 24px;
  border-radius: 28px;
  background: #fffdfb;
  border: 1px solid #f2ece8;
}

.job-image {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16/9;
  background: #f7f3ef;
}
.job-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-body {
  display: grid;
  gap: 16px;
}

.job-title {
  margin: 0;
  color: #00a99d;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
}

.job-text {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 2;
}

.job .shape-1 {
  width: 80px;
  height: 34px;
  left: -18px;
  top: 84px;
  transform: rotate(-15deg);
}
.job .shape-2 {
  width: 58px;
  height: 58px;
  right: 44px;
  top: 118px;
}
.job .shape-3 {
  width: 80px;
  height: 110px;
  right: -28px;
  bottom: 80px;
  transform: rotate(18deg);
}

.top-member-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 28px;
  padding: 52px 32px 44px;
  margin-bottom: 48px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.member-panel {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 28px;
  background: #fffdfb;
  border: 1px solid #f2ece8;
}

.member-content {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 34px;
  align-items: center;
}

.member-catch {
  margin: 0 0 20px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.7;
}
.member-catch strong {
  color: #00a99d;
}

.member-text {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.03em;
}
.member-text .line-break {
  display: block;
  margin-top: 10px;
}

.member-image {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16/9;
  background: #fbf4e9;
}
.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member .shape-1 {
  width: 70px;
  height: 70px;
  left: -24px;
  top: 100px;
}
.member .shape-2 {
  width: 84px;
  height: 42px;
  right: -12px;
  top: 150px;
  transform: rotate(16deg);
}
.member .shape-3 {
  width: 78px;
  height: 98px;
  left: 24px;
  bottom: 42px;
  transform: rotate(-18deg);
}

.recruit-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 28px;
  padding: 52px 32px 44px;
  margin-bottom: 48px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.section-title {
  text-align: center;
  color: #00a99d;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 8px;
}

.title-lines {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 34px;
}
.title-lines span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
}
.title-lines span:nth-child(1) {
  background: #00a99d;
}
.title-lines span:nth-child(2) {
  background: #f46f95;
}
.title-lines span:nth-child(3) {
  background: #f8c43a;
}
.title-lines span:nth-child(4) {
  background: #8ccf5f;
}

.home-culture-section {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 28px;
  padding: 52px 32px 44px;
  margin-bottom: 48px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.culture-panel {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
  padding: 30px;
  border-radius: 28px;
  background: #fffdfb;
  border: 1px solid #f2ece8;
}

.culture-image {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 16/9;
  background: #fbf4e9;
}
.culture-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.culture-catch {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.04em;
}

.culture-text {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.03em;
}

.culture .shape-1 {
  width: 80px;
  height: 34px;
  left: -18px;
  top: 84px;
  transform: rotate(-15deg);
}
.culture .shape-2 {
  width: 58px;
  height: 58px;
  right: 44px;
  top: 118px;
}
.culture .shape-3 {
  width: 80px;
  height: 110px;
  right: -28px;
  bottom: 80px;
  transform: rotate(18deg);
}
.culture .shape-4 {
  width: 68px;
  height: 68px;
  left: 22px;
  bottom: 44px;
  transform: rotate(45deg);
  border-radius: 10px;
}

.gallery-panel {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
}
.gallery-panel .carousel-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #faf8f6;
}
.gallery-panel .carousel_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.entry-panel {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0 auto;
  padding: 54px 40px 58px;
  border: 3px solid #fde7ea;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
}
.entry-panel h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 34px;
  letter-spacing: 0.04em;
}
.entry-panel h3 .accent {
  color: #f46f95;
}
.entry-panel .entry-text {
  font-size: 15px;
  margin: 0 0 48px;
}
.entry-panel .entry-text p {
  margin: 0 0 14px;
}
.entry-panel .entry-text .dot-line {
  width: min(460px, 80%);
  border-top: 4px dotted #f7b7c5;
  margin: 0 auto 34px;
}

.entry-message {
  font-size: 23px;
  font-weight: 700;
  line-height: 1.7;
  margin: 0;
}
.entry-message span {
  background: linear-gradient(transparent 68%, #f8c43a 68%);
  padding: 0 4px;
}

.more-btn {
  position: relative;
  z-index: 3;
  width: 250px;
  height: 58px;
  margin: 32px auto 0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #f45e88, #f26d91);
  box-shadow: 0 10px 22px rgba(244, 111, 149, 0.28);
}
.more-btn.outline {
  color: #f46f95;
  background: #fff;
  border: 2px solid #f7aabc;
  box-shadow: none;
}

.arrows {
  display: flex;
  gap: 3px;
}
.arrows span {
  width: 23px;
  height: 23px;
  background: #5fc7cd;
  clip-path: polygon(0 0, 55% 0, 100% 50%, 55% 100%, 0 100%, 45% 50%);
}

.nav-btn {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #00a99d;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
.nav-btn.prev {
  left: 82px;
}
.nav-btn.next {
  right: 82px;
}

.shape {
  position: absolute;
  z-index: 1;
  opacity: 0.95;
}

.circle {
  border-radius: 50%;
}

.rect {
  border-radius: 3px;
}

.round {
  border-radius: 80px 80px 8px 8px;
}

.s-pink {
  background: #f46f95;
}

.s-yellow {
  background: #f8c43a;
}

.s-green {
  background: #8ccf5f;
}

.s-blue {
  background: #5fc7cd;
}

.s-purple {
  background: #6372bd;
}

.gallery .shape-1 {
  width: 92px;
  height: 38px;
  left: -8px;
  top: 78px;
  transform: rotate(-15deg);
}
.gallery .shape-2 {
  width: 64px;
  height: 64px;
  right: 42px;
  top: 114px;
}
.gallery .shape-3 {
  width: 86px;
  height: 86px;
  left: -44px;
  top: 190px;
}
.gallery .shape-4 {
  width: 72px;
  height: 92px;
  right: 18px;
  top: 305px;
  transform: rotate(-17deg);
}
.gallery .shape-5 {
  width: 102px;
  height: 84px;
  left: -18px;
  bottom: 38px;
  transform: rotate(-11deg);
}
.gallery .shape-6 {
  width: 94px;
  height: 136px;
  right: 24px;
  bottom: 32px;
  transform: rotate(25deg);
}

.entry .shape-1 {
  width: 48px;
  height: 48px;
  left: 26px;
  top: 178px;
}
.entry .shape-2 {
  width: 62px;
  height: 112px;
  left: -4px;
  top: 270px;
  transform: rotate(12deg);
}
.entry .shape-3 {
  width: 72px;
  height: 72px;
  right: 32px;
  top: 288px;
  transform: rotate(13deg);
}
.entry .shape-4 {
  width: 54px;
  height: 54px;
  right: 50px;
  top: 420px;
}
.entry .shape-5 {
  width: 76px;
  height: 76px;
  left: -20px;
  bottom: 130px;
  transform: rotate(-22deg);
}
.entry .shape-6 {
  width: 82px;
  height: 82px;
  right: 16px;
  bottom: 72px;
  transform: rotate(14deg);
}

@media (max-width: 760px) {
  .kv-movie {
    display: none;
  }
  .kv-sp {
    display: block;
  }
  .kv-sp img {
    width: 100%;
    margin-top: 80px;
  }
  .brand-statement {
    border-radius: 18px;
    padding: 34px 18px 32px;
    margin-bottom: 22px;
  }
  .brand-kicker {
    font-size: 16px;
    margin-bottom: 14px;
  }
  .brand-formula {
    gap: 8px;
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 8px;
  }
  .brand-formula em {
    font-size: 18px;
  }
  .brand-formula .small {
    font-size: 12px;
  }
  .brand-reading {
    margin-bottom: 24px;
    font-size: 12px;
  }
  .brand-message {
    margin-bottom: 34px;
    font-size: 15px;
    line-height: 2.2;
    letter-spacing: 0.04em;
  }
  .brand-message .line-break {
    margin-top: 10px;
  }
  .brand-shape-1 {
    width: 62px;
    height: 24px;
    left: -20px;
    top: 34px;
  }
  .brand-shape-2 {
    width: 38px;
    height: 38px;
    right: 18px;
    top: 150px;
  }
  .brand-shape-3 {
    width: 54px;
    height: 76px;
    right: -24px;
    bottom: 36px;
  }
  .company-section {
    border-radius: 18px;
    padding: 28px 14px 24px;
    margin-bottom: 22px;
  }
  .company-title {
    font-size: 28px;
  }
  .company-panel {
    padding: 34px 20px 38px;
    border-radius: 18px;
  }
  .company-catch {
    font-size: 22px;
    margin-bottom: 30px;
    line-height: 1.8;
  }
  .company-content {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
    margin-bottom: 34px;
  }
  .company-image img {
    width: 140px;
    height: 140px;
  }
  .company-points {
    width: 100%;
    gap: 18px;
    font-size: 17px;
  }
  .company-points li {
    padding-left: 22px;
  }
  .company-points li::before {
    width: 10px;
    height: 10px;
  }
  .company-message {
    margin-bottom: 26px;
    font-size: 18px;
  }
  .company-message strong {
    font-size: 28px;
  }
  .company-footer {
    font-size: 16px;
    line-height: 2;
  }
  .company-btn {
    margin-top: 20px;
  }
  .company-shape-1 {
    width: 66px;
    height: 28px;
    left: -20px;
    top: 42px;
  }
  .company-shape-2 {
    width: 40px;
    height: 40px;
    right: 12px;
    top: 108px;
  }
  .company-shape-3 {
    width: 56px;
    height: 86px;
    right: -24px;
    bottom: 62px;
  }
  .recruit-section {
    overflow: hidden;
    border-radius: 18px;
    padding: 24px 14px 22px;
    margin-bottom: 22px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  }
  .section-title {
    font-size: 18px;
    letter-spacing: 0.18em;
    margin-bottom: 6px;
  }
  .title-lines {
    display: flex;
    gap: 10px;
    margin-bottom: 22px;
  }
  .title-lines span {
    width: 22px;
    height: 3px;
  }
  .member-panel {
    padding: 16px;
    border-radius: 18px;
  }
  .member-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .member-catch {
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1.6;
  }
  .member-text {
    font-size: 12px;
    line-height: 1.9;
  }
  .member-image {
    width: 100%;
    border-radius: 18px;
  }
  .job-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
    border-radius: 18px;
  }
  .job-image {
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
  }
  .job-title {
    font-size: 24px;
    line-height: 1.5;
    word-break: keep-all;
  }
  .job-text {
    font-size: 13px;
    line-height: 1.9;
  }
  .job .shape-1 {
    width: 62px;
    height: 26px;
    left: -20px;
    top: 42px;
  }
  .job .shape-2 {
    width: 42px;
    height: 42px;
    right: 14px;
    top: 86px;
  }
  .job .shape-3 {
    width: 54px;
    height: 76px;
    right: -24px;
    bottom: 62px;
  }
  .culture-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
    border-radius: 18px;
  }
  .culture-image {
    width: 100%;
    border-radius: 18px;
    aspect-ratio: 16/9;
  }
  .culture-catch {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.6;
    word-break: normal;
  }
  .culture-text {
    font-size: 12px;
    line-height: 1.9;
    word-break: normal;
    overflow-wrap: anywhere;
  }
  .culture-label {
    margin-bottom: 10px;
    max-width: 100%;
    white-space: normal;
  }
  .culture-body {
    min-width: 0;
    max-width: 100%;
  }
  .culture .shape-1 {
    width: 62px;
    height: 26px;
    left: -20px;
    top: 42px;
  }
  .culture .shape-2 {
    width: 42px;
    height: 42px;
    right: 14px;
    top: 86px;
  }
  .culture .shape-3 {
    width: 54px;
    height: 76px;
    right: -24px;
    bottom: 62px;
  }
  .culture .shape-4 {
    width: 44px;
    height: 44px;
    left: -14px;
    bottom: 34px;
  }
  .gallery-panel {
    min-height: 250px;
    grid-template-columns: 1fr 112px;
    gap: 10px;
    padding: 38px 30px;
    border-radius: 18px;
    background: #faf8f6;
  }
  .nav-btn {
    display: block;
    width: 34px;
    height: 34px;
    font-size: 24px;
  }
  .nav-btn.prev {
    left: 22px;
  }
  .nav-btn.next {
    right: 22px;
  }
  .entry-panel {
    padding: 34px 18px 40px;
    border: 2px solid #fde7ea;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
  }
  .entry-panel h3 {
    font-size: 20px;
    margin-bottom: 26px;
    line-height: 1.6;
  }
  .entry-text {
    font-size: 12px;
    line-height: 2.1;
    letter-spacing: 0.04em;
    margin-bottom: 34px;
  }
  .entry-text p {
    margin-bottom: 8px;
  }
  .dot-line {
    display: block;
    width: 82%;
    border-top-width: 3px;
    margin-bottom: 26px;
  }
  .entry-message {
    font-size: 18px;
    line-height: 1.75;
  }
  .more-btn {
    width: 190px;
    height: 48px;
    margin-top: 22px;
    font-size: 18px;
  }
  .more-btn.outline {
    height: 46px;
  }
  .arrows span {
    width: 24px;
    height: 24px;
  }
  .shape {
    display: block;
    opacity: 0.92;
  }
  .gallery .shape-1 {
    width: 70px;
    height: 30px;
    left: -16px;
    top: 42px;
    transform: rotate(-15deg);
  }
  .gallery .shape-2 {
    width: 48px;
    height: 48px;
    right: 18px;
    top: 92px;
  }
  .gallery .shape-3 {
    width: 58px;
    height: 58px;
    left: -26px;
    top: 150px;
  }
  .gallery .shape-4 {
    width: 54px;
    height: 70px;
    right: -18px;
    top: 215px;
    transform: rotate(-17deg);
  }
  .gallery .shape-5 {
    width: 68px;
    height: 58px;
    left: -18px;
    bottom: 36px;
    transform: rotate(-11deg);
  }
  .gallery .shape-6 {
    width: 68px;
    height: 96px;
    right: -10px;
    bottom: 26px;
    transform: rotate(25deg);
  }
  .entry .shape-1 {
    width: 42px;
    height: 42px;
    left: -4px;
    top: 158px;
  }
  .entry .shape-2 {
    width: 46px;
    height: 86px;
    left: -12px;
    top: 252px;
    transform: rotate(12deg);
  }
  .entry .shape-3 {
    width: 54px;
    height: 54px;
    right: -18px;
    top: 302px;
    transform: rotate(13deg);
  }
  .entry .shape-4 {
    width: 46px;
    height: 46px;
    right: -6px;
    top: 450px;
  }
  .entry .shape-5 {
    width: 60px;
    height: 60px;
    left: -24px;
    bottom: 126px;
    transform: rotate(-22deg);
  }
  .entry .shape-6 {
    width: 66px;
    height: 66px;
    right: -20px;
    bottom: 44px;
    transform: rotate(14deg);
  }
}
.about-page {
  overflow: hidden;
}

.about-hero {
  position: relative;
  height: 260px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../../images/About.png");
  background-size: cover;
  background-position: center;
}
.about-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  background: linear-gradient(transparent, #fffdfb);
}

.about-main {
  max-width: 920px;
  margin: 0 auto;
  padding: 46px 20px 90px;
}

.message-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: center;
  margin-bottom: 130px;
}

.message-label {
  color: #00a99d;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 34px;
}

.message-copy {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin: 0 0 32px;
}

.message-text {
  margin: 0 0 30px;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.signature {
  font-size: 14px;
  letter-spacing: 0.08em;
}
.signature img {
  width: 260px;
}

.message-photo {
  position: relative;
  z-index: 2;
}
.message-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.1);
}
.message-photo::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #f8c43a;
  right: -36px;
  top: -34px;
  z-index: -1;
  opacity: 0.85;
}
.message-photo::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 44px;
  background: #6372bd;
  left: -28px;
  bottom: 12px;
  transform: rotate(-60deg);
  z-index: -1;
  opacity: 0.9;
}

.philosophy-section {
  position: relative;
  margin-bottom: 92px;
  padding: 54px 58px 58px;
  border-radius: 28px;
  background: #fbf4e9;
}

.philosophy-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 28px;
  margin: 0;
}

.philosophy-item {
  padding-bottom: 28px;
  border-bottom: 1px solid #e7dfd7;
}
.philosophy-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.philosophy-item dt {
  margin-bottom: 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.philosophy-item dt span {
  color: #00a99d;
  margin-right: 8px;
}
.philosophy-item dd {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.profile-section {
  max-width: 720px;
  margin: 0 auto;
}

.profile-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  letter-spacing: 0.04em;
}
.profile-table tr {
  border-top: 1px solid #c9c9c9;
}
.profile-table tr:last-child {
  border-bottom: 1px solid #c9c9c9;
}
.profile-table th,
.profile-table td {
  padding: 20px 8px;
  vertical-align: top;
  text-align: left;
}
.profile-table th {
  width: 170px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .about-hero {
    height: 120px;
  }
  .about-main {
    padding: 34px 18px 64px;
  }
  .message-section {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 78px;
  }
  .message-body {
    margin: 0 auto;
  }
  .message-label {
    text-align: center;
    font-size: 17px;
    margin-bottom: 26px;
  }
  .message-copy {
    font-size: 23px;
    text-align: center;
  }
  .message-text {
    font-size: 14px;
  }
  .signature img {
    max-width: 260px;
    width: 100%;
  }
  .message-photo {
    max-width: 260px;
    margin: 0 auto;
    order: -1;
  }
  .philosophy-section {
    padding: 38px 22px 42px;
    border-radius: 22px;
    margin-bottom: 64px;
  }
  .profile-table tbody,
  .profile-table tr,
  .profile-table th,
  .profile-table td {
    display: block;
    width: 100%;
  }
  .profile-table th {
    padding: 18px 0 4px;
  }
  .profile-table td {
    padding: 0 0 18px;
  }
}
.member-page {
  overflow: hidden;
}

.member-main {
  position: relative;
  max-width: 1350px;
  margin: 0 auto;
  padding: 44px 20px 90px;
}

.member-hero {
  position: relative;
  height: 260px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../../images/Member.png");
  background-size: cover;
  background-position: center;
}
.member-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  background: linear-gradient(transparent, #fffdfb);
}

.member-entry .member-title {
  color: #ff9999;
  font-weight: 700;
  margin: 0 0 10px 20px;
}
.member-entry .member-details a {
  display: block;
  margin: 0 0 10px 20px;
  text-align: left;
}

.accordion-body {
  overflow: hidden;
  transition: max-height 0.2s ease;
  max-height: 0;
}

.accordion-collapse.collapse.show .accordion-body {
  max-height: none;
}

.graph-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0 10px 0;
}

.graph-area {
  z-index: 0;
  max-width: 500px;
  margin: 20px 35px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1ece8;
}

.member-data-title {
  font-size: 20px;
  margin: 0 0 20px 0;
  padding: 3px 5px;
  color: #fff;
  background-color: #00a99d;
  font-weight: 700;
  border-radius: 5px;
}

.member-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.88;
}
.member-shape.circle {
  border-radius: 50%;
}
.member-shape.rect {
  border-radius: 4px;
}
.member-shape.round {
  border-radius: 80px 80px 8px 8px;
}
.member-shape.diamond {
  transform: rotate(45deg);
  border-radius: 10px;
}
.member-shape.pink {
  background: #f46f95;
}
.member-shape.yellow {
  background: #f8c43a;
}
.member-shape.blue {
  background: #5fc7cd;
}
.member-shape.green {
  background: #8ccf5f;
}
.member-shape.purple {
  background: #6372bd;
}
.member-shape-1 {
  width: 88px;
  height: 36px;
  left: -28px;
  top: 58px;
  transform: rotate(-15deg);
}
.member-shape-2 {
  width: 62px;
  height: 62px;
  right: 64px;
  top: 116px;
}
.member-shape-3 {
  width: 92px;
  height: 92px;
  left: -46px;
  top: 340px;
}
.member-shape-4 {
  width: 78px;
  height: 106px;
  right: -34px;
  top: 520px;
  transform: rotate(18deg);
}
.member-shape-5 {
  width: 74px;
  height: 74px;
  left: 20px;
  bottom: 250px;
  transform: rotate(45deg);
}
.member-shape-6 {
  width: 86px;
  height: 122px;
  right: 20px;
  bottom: 120px;
  transform: rotate(24deg);
}

.member-shape2 {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: 0.84;
}
.member-shape2-pink {
  width: 90px;
  height: 120px;
  left: 50px;
  bottom: 800px;
  background: #f46f95;
  transform: rotate(-15deg);
  border-radius: 30px;
}
.member-shape2-yellow {
  width: 100px;
  height: 88px;
  right: -20px;
  top: 1360px;
  background: #f8c43a;
  border-radius: 70px 70px 8px 8px;
  transform: rotate(-25deg);
}
.member-shape2-blue {
  width: 90px;
  height: 90px;
  right: 100px;
  top: 960px;
  background: #5fc7cd;
  border-radius: 50%;
}
.member-shape2-purple {
  width: 40px;
  height: 80px;
  left: -50px;
  top: 1000px;
  background: #6372bd;
  transform: rotate(45deg);
  border-radius: 10px;
}

.member-shape3 {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: 0.84;
}
.member-shape3-yellow {
  width: 100px;
  height: 88px;
  right: -20px;
  top: 1360px;
  background: #f8c43a;
  border-radius: 70px 70px 8px 8px;
  transform: rotate(-25deg);
}
.member-shape3-blue {
  width: 90px;
  height: 90px;
  right: 200px;
  top: 2180px;
  background: #5fc7cd;
  transform: rotate(45deg);
  border-radius: 15px;
}
.member-shape3-green {
  width: 70px;
  height: 100px;
  right: 50px;
  top: 1850px;
  background: #8ccf5f;
  border-radius: 50%;
  transform: rotate(-25deg);
}

/** osake ranking start */
.osake-list {
  position: relative;
  margin: 30px 0 40px;
  padding: 0;
  width: 100%;
  line-height: 1;
  box-sizing: border-box;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

#osake-data tr.osake-box {
  width: 100%;
  height: 80px;
  border-bottom: 2px dashed #dddddd;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
#osake-data tr.osake-box.inview {
  opacity: 1;
}
#osake-data th.table-rank {
  position: relative;
  width: 100px;
  padding-right: 20px;
  text-align: center;
  line-height: 1;
  vertical-align: middle;
}
#osake-data td.table-title {
  width: auto;
  line-height: 1.4;
  font-weight: bold;
  vertical-align: middle;
}

.osake-box .osake-rank01 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-size: 20px;
  color: #fff;
  z-index: 2;
}
.osake-box .osake-rank02 {
  font-size: 17px;
}
.osake-box span.rank01 {
  font-size: 30px;
  padding-right: 4px;
}
.osake-box span.rank02 {
  font-size: 26px;
  padding-right: 4px;
}
.osake-box .osake-title01 {
  font-size: 26px;
  color: #ff9999;
}
.osake-box .osake-title02 {
  font-size: 18px;
}
.osake-box .osake-title01 p,
.osake-box .osake-title02 p {
  margin: 0;
}
.osake-box .osake-crown {
  display: block;
  width: 100px;
  padding-bottom: 14px;
}

/** osake ranking end */
/** geex-like ranking start */
.geex-like-list {
  position: relative;
  margin: 30px 0 40px;
  padding: 0;
  width: 100%;
  line-height: 1;
  box-sizing: border-box;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

#geex-like-data tr.geex-like-box {
  width: 100%;
  height: 80px;
  max-height: 80px;
  border-bottom: 2px dashed #ddd;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
#geex-like-data tr.geex-like-box.inview {
  opacity: 1;
}
#geex-like-data th.table-rank {
  position: relative;
  width: 100px;
  padding-right: 20px;
  text-align: center;
  line-height: 1;
  vertical-align: middle;
}
#geex-like-data td.table-title {
  width: auto;
  line-height: 1;
  font-weight: bold;
}

.geex-like-box .geex-like-rank01 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-size: 20px;
  color: #fff;
  z-index: 2;
}
.geex-like-box .geex-like-rank02 {
  font-size: 17px;
}
.geex-like-box span.rank01 {
  font-size: 30px;
  padding-right: 4px;
}
.geex-like-box span.rank02 {
  font-size: 26px;
  padding-right: 4px;
}
.geex-like-box .geex-like-title01 {
  font-size: 26px;
  color: #ff9999;
}
.geex-like-box .geex-like-title01 p {
  margin: 0;
}
.geex-like-box .geex-like-title02 {
  font-size: 18px;
}
.geex-like-box .geex-like-title02 p {
  margin: 0;
}
.geex-like-box .geex-like-crown {
  display: block;
  padding-bottom: 14px;
  width: 100px;
}

/** geex-like ranking end */
/** geex-birth ranking start */
.geex-birth-list {
  position: relative;
  margin: 30px 0 40px;
  padding: 0;
  width: 100%;
  line-height: 1;
  box-sizing: border-box;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

#geex-birth-data tr.geex-birth-box {
  width: 100%;
  height: 80px;
  max-height: 80px;
  border-bottom: 2px dashed #ddd;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
#geex-birth-data tr.geex-birth-box.inview {
  opacity: 1;
}
#geex-birth-data th.table-rank {
  position: relative;
  width: 100px;
  padding-right: 20px;
  text-align: center;
  line-height: 1;
  vertical-align: middle;
}
#geex-birth-data td.table-title {
  position: relative;
  width: auto;
  line-height: 1;
  font-weight: bold;
  vertical-align: middle;
}

.geex-birth-box .geex-birth-rank01 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #fff;
  z-index: 2;
}
.geex-birth-box .geex-birth-rank02 {
  font-size: 17px;
}
.geex-birth-box span.rank01 {
  font-size: 30px;
  padding-right: 4px;
}
.geex-birth-box span.rank02 {
  font-size: 26px;
  padding-right: 4px;
}
.geex-birth-box .geex-birth-title01 {
  font-size: 26px;
  color: #ff9999;
}
.geex-birth-box .geex-birth-title01 p {
  margin: 0;
}
.geex-birth-box .geex-birth-title02 {
  font-size: 18px;
}
.geex-birth-box .geex-birth-title02 p {
  margin: 0;
}
.geex-birth-box .geex-birth-crown {
  padding-bottom: 14px;
  width: 100px;
  display: block;
}

/** geex-birth ranking end */
/** geex-reason ranking start */
.geex-reason-list {
  position: relative;
  margin: 30px 0 40px;
  padding: 0;
  width: 100%;
  line-height: 1;
  box-sizing: border-box;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

#geex-reason-data tr.geex-reason-box {
  width: 100%;
  height: 80px;
  max-height: 80px;
  border-bottom: 2px dashed #ddd;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
#geex-reason-data tr.geex-reason-box.inview {
  opacity: 1;
}
#geex-reason-data th.table-rank {
  position: relative;
  width: 100px;
  padding-right: 20px;
  text-align: center;
  line-height: 1;
  vertical-align: middle;
}
#geex-reason-data td.table-title {
  position: relative;
  width: auto;
  line-height: 1;
  font-weight: bold;
  vertical-align: middle;
}

.geex-reason-box .geex-reason-rank01 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #fff;
  z-index: 2;
}
.geex-reason-box .geex-reason-rank02 {
  font-size: 17px;
}
.geex-reason-box span.rank01 {
  font-size: 30px;
  padding-right: 4px;
}
.geex-reason-box span.rank02 {
  font-size: 26px;
  padding-right: 4px;
}
.geex-reason-box .geex-reason-title01 {
  font-size: 26px;
  color: #ff9999;
}
.geex-reason-box .geex-reason-title01 p {
  margin: 0;
}
.geex-reason-box .geex-reason-title02 {
  font-size: 18px;
}
.geex-reason-box .geex-reason-title02 p {
  margin: 0;
}
.geex-reason-box .geex-reason-crown {
  display: block;
  padding-bottom: 14px;
  width: 100px;
}

/** geex-reason ranking end */
/** lang ranking start */
.lang-list {
  position: relative;
  margin: 30px 0 40px;
  padding: 0;
  width: 100%;
  line-height: 1;
  box-sizing: border-box;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

#lang-data tr.lang-box {
  width: 100%;
  height: 80px;
  max-height: 80px;
  border-bottom: 2px dashed #ddd;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
#lang-data tr.lang-box.inview {
  opacity: 1;
}
#lang-data th.table-rank {
  position: relative;
  width: 100px;
  padding-right: 20px;
  text-align: center;
  line-height: 1;
  vertical-align: middle;
}
#lang-data td.table-title {
  width: auto;
  line-height: 1;
  font-weight: bold;
  vertical-align: middle;
}

.lang-box .lang-rank01 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #fff;
  z-index: 2;
}
.lang-box .lang-rank02 {
  font-size: 17px;
}
.lang-box span.rank01 {
  font-size: 30px;
  padding-right: 4px;
}
.lang-box span.rank02 {
  font-size: 26px;
  padding-right: 4px;
}
.lang-box .lang-title01 {
  font-size: 26px;
  color: #ff9999;
}
.lang-box .lang-title01 p {
  margin: 0;
}
.lang-box .lang-title02 {
  font-size: 18px;
}
.lang-box .lang-title02 p {
  margin: 0;
}
.lang-box .lang-crown {
  display: block;
  padding-bottom: 14px;
  width: 100px;
}

/** lang ranking end */
/** geex-kishabi ranking start */
.geex-kishabi-list {
  position: relative;
  margin: 30px 0 40px;
  padding: 0;
  line-height: 1;
  box-sizing: border-box;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
}

#geex-kishabi-data tr.geex-kishabi-box {
  position: relative;
  width: 100%;
  height: 80px;
  max-height: 80px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
#geex-kishabi-data tr.geex-kishabi-box.inview {
  opacity: 1;
}
#geex-kishabi-data th.table-rank {
  position: relative;
  width: 100px;
  padding-right: 20px;
  text-align: center;
  line-height: 1;
}
#geex-kishabi-data td.table-title {
  position: relative;
  width: auto;
  line-height: 1;
  font-weight: bold;
}

.geex-kishabi-box .geex-kishabi-rank01 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: #fff;
}
.geex-kishabi-box span.rank01 {
  font-size: 30px;
  padding-right: 4px;
}
.geex-kishabi-box .geex-kishabi-title01 {
  font-size: 34px;
  text-align: center;
}
.geex-kishabi-box .geex-kishabi-crown {
  padding-bottom: 14px;
  width: 100px;
}

/** geex-kishabi end */
.accordion-button:focus,
.accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}

.member-section {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 50px auto 80px;
}

.member-list {
  display: grid;
  gap: 20px;
  margin: 50px 0;
}

.member-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0ebe7;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.member-card:hover {
  transform: translateY(-2px);
}

.member-info {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.member-photo {
  width: 156px;
  height: 156px;
  border-radius: 22px;
  object-fit: cover;
  flex-shrink: 0;
}

.member-role {
  font-size: 12px;
  color: #666;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.member-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.member-name p {
  display: inline;
  font-size: 12px;
  color: #666;
  letter-spacing: 0.08em;
  margin-left: 8px;
}

.member-question {
  color: #f46f95;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.member-message {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

.member-card .accordion-button {
  padding: 22px 26px;
  background: #fff;
  box-shadow: none;
  border: none;
}
.member-card .accordion-button:not(.collapsed) {
  background: #fffdfb;
  box-shadow: none;
}
.member-card .accordion-toggle {
  margin-left: auto;
  color: #f46f95;
  transition: transform 0.3s ease;
}
.member-card .accordion-button:not(.collapsed) .accordion-toggle {
  transform: rotate(180deg);
}
.member-card .accordion-button:focus {
  box-shadow: none;
}
.member-card .accordion-body {
  padding: 0 26px 26px;
}

@media (max-width: 760px) {
  .member-shape {
    opacity: 0.78;
  }
  .member-shape-1 {
    width: 58px;
    height: 24px;
    left: -20px;
    top: 44px;
  }
  .member-shape-2 {
    width: 42px;
    height: 42px;
    right: 12px;
    top: 96px;
  }
  .member-shape-3 {
    width: 54px;
    height: 54px;
    left: -24px;
    top: 310px;
  }
  .member-shape-4 {
    width: 48px;
    height: 68px;
    right: -24px;
    top: 560px;
  }
  .member-shape-5 {
    width: 44px;
    height: 44px;
    left: -10px;
    bottom: 230px;
  }
  .member-shape-6 {
    width: 56px;
    height: 80px;
    right: -22px;
    bottom: 96px;
  }
  .member-hero {
    height: 120px;
  }
  .member-main {
    padding: 34px 18px 64px;
  }
  .data-card {
    border-radius: 18px;
    padding: 18px 18px 22px;
  }
  .circle-chart {
    width: 140px;
    height: 140px;
  }
  .circle-chart::before {
    inset: 28px;
  }
  .stat-number {
    font-size: 32px;
  }
  .graph-area {
    margin: 20px 0;
    padding: 20px 10px;
  }
  .osake-box [class$=title01],
  .geex-like-box [class$=title01],
  .geex-birth-box [class$=title01],
  .geex-reason-box [class$=title01],
  .lang-box [class$=title01] {
    font-size: 20px;
  }
  .osake-box [class$=title02],
  .geex-like-box [class$=title02],
  .geex-birth-box [class$=title02],
  .geex-reason-box [class$=title02],
  .lang-box [class$=title02] {
    font-size: 16px;
  }
  .osake-box span.rank01,
  .geex-like-box span.rank01,
  .geex-birth-box span.rank01,
  .geex-reason-box span.rank01,
  .lang-box span.rank01 {
    font-size: 24px;
  }
  .osake-box span.rank02,
  .geex-like-box span.rank02,
  .geex-birth-box span.rank02,
  .geex-reason-box span.rank02,
  .lang-box span.rank02 {
    font-size: 22px;
  }
  .ranking-number {
    min-width: 44px;
    font-size: 22px;
  }
  .ranking-text {
    font-size: 14px;
  }
  .member-card {
    padding: 18px;
    border-radius: 18px;
  }
  .member-photo {
    width: 144px;
    height: 144px;
  }
  .member-name {
    font-size: 17px;
  }
  .member-name p {
    font-size: 10px;
  }
  .member-question {
    font-size: 14px;
  }
  .member-message {
    font-size: 13px;
  }
}
.culture-page {
  overflow: hidden;
}

.culture-hero {
  position: relative;
  height: 260px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../../images/About.png");
  background-size: cover;
  background-position: center;
}
.culture-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  background: linear-gradient(transparent, #fffdfb);
}

.culture-main {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 72px 20px 100px;
}

.culture-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.84;
}
.culture-shape-pink {
  width: 90px;
  height: 90px;
  left: -20px;
  top: 80px;
  background: #f46f95;
  border-radius: 50%;
}
.culture-shape-yellow {
  width: 68px;
  height: 68px;
  left: 50px;
  top: 600px;
  background: #f8c43a;
  border-radius: 20px;
  transform: rotate(-30deg);
}
.culture-shape-blue {
  width: 90px;
  height: 118px;
  right: -38px;
  top: 700px;
  background: #5fc7cd;
  transform: rotate(18deg);
  border-radius: 80px 80px 8px 8px;
}
.culture-shape-purple {
  width: 120px;
  height: 64px;
  right: 50px;
  top: 140px;
  background: #6372bd;
  transform: rotate(45deg);
  border-radius: 10px;
}

.culture-shape2 {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: 0.84;
}
.culture-shape2-pink {
  width: 68px;
  height: 68px;
  left: -50px;
  bottom: -40px;
  background: #f46f95;
  transform: rotate(-15deg);
  border-radius: 4px;
}
.culture-shape2-yellow {
  width: 100px;
  height: 88px;
  right: -20px;
  top: 760px;
  background: #f8c43a;
  border-radius: 70px 70px 8px 8px;
  transform: rotate(-25deg);
}
.culture-shape2-blue {
  width: 64px;
  height: 64px;
  right: 100px;
  top: -10px;
  background: #5fc7cd;
  border-radius: 50%;
}
.culture-shape2-purple {
  width: 40px;
  height: 80px;
  left: -50px;
  top: 100px;
  background: #6372bd;
  transform: rotate(45deg);
  border-radius: 10px;
}

.intro-card {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto 86px;
  padding: 52px 48px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid #f2ece8;
  text-align: center;
}

.intro-title {
  margin: 0 0 28px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}
.intro-title span {
  color: #00a99d;
}

.intro-text {
  max-width: 650px;
  margin: 0 auto;
  color: #555;
  font-size: 15px;
  line-height: 2.15;
  letter-spacing: 0.03em;
}

.culture-section {
  position: relative;
  z-index: 2;
  margin-bottom: 96px;
}

.pillar-grid,
.culture-interview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pillar-card,
.culture-interview-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #f2ece8;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.pillar-image,
.culture-interview-image {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #fbf4e9;
}
.pillar-image img,
.culture-interview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pillar-body,
.culture-interview-body {
  padding: 26px 24px 30px;
}

.pillar-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fde7ea;
  color: #f46f95;
  font-size: 11px;
  font-weight: 700;
}

.pillar-title {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.pillar-text,
.culture-interview-text {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.03em;
}

.culture-interview-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.culture-interview-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.culture-interview-category,
.culture-report-category {
  display: inline-block;
  width: fit-content;
  margin: 0 0 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fde7ea;
  color: #f46f95;
  font-size: 11px;
  font-weight: 700;
}

.culture-interview-position {
  display: inline;
  font-size: 12px;
  color: #666;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.culture-interview-title {
  margin: 0 0 12px;
  color: #2d2d2d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.report-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  border-radius: 24px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  border: 1px solid #f2ece8;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.report-card .report-image {
  aspect-ratio: 16/9;
  background: #fbf4e9;
  overflow: hidden;
}
.report-card .report-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.35s ease;
}
.report-card:hover {
  transform: translateY(-3px);
  color: inherit;
}

.report-card:hover .report-image img {
  transform: scale(1.04);
}

.report-body {
  padding: 24px 26px 28px;
}

.report-title {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
  word-break: break-word;
  letter-spacing: 0.03em;
}

.report-text {
  margin: 0 0 18px;
  color: #666;
  min-height: 5em;
  word-break: break-word;
  font-size: 13px;
  line-height: 1.9;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.report-link-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #00a99d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.report-link-text::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #00a99d;
  border-bottom: 2px solid #00a99d;
  transform: rotate(-45deg);
}

.report-carousel {
  position: relative;
}

.report-carousel-control {
  width: 40px;
  top: 60%;
  transform: translateY(-50%);
}

.report-carousel-control-prev {
  left: -10px;
}

.report-carousel-control-next {
  right: -10px;
}

.report-carousel-arrow {
  display: block;
  color: #f46f95;
  font-size: 42px;
}

.cta-section {
  position: relative;
  z-index: 2;
  margin-top: 30px;
}

.cta-shape-yellow {
  position: absolute;
  width: 82px;
  height: 82px;
  right: -32px;
  top: -34px;
  border-radius: 50%;
  background: #f8c43a;
  opacity: 0.72;
  pointer-events: none;
  z-index: 1;
}

.cta-shape-purple {
  position: absolute;
  width: 82px;
  height: 82px;
  left: -25px;
  top: 220px;
  border-radius: 3px;
  background: #6372bd;
  opacity: 0.72;
  pointer-events: none;
  transform: rotate(-45deg);
  z-index: 1;
}

.cta-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: 30px;
  padding: 48px 36px;
  border-radius: 30px;
  text-align: center;
  background: #fbf4e9;
}

.cta-title {
  margin: 0 0 16px;
  color: #00a99d;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.cta-text {
  max-width: 620px;
  margin: 0 auto 28px;
  color: #555;
  font-size: 12px;
  line-height: 2;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 220px;
  min-height: 54px;
  padding: 13px 24px;
  border-radius: 999px;
  background: #fff;
  color: #f46f95;
  border: 2px solid #f7aabc;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.cta-link::after {
  content: "";
  width: 20px;
  height: 20px;
  background: #5fc7cd;
  clip-path: polygon(0 0, 55% 0, 100% 50%, 55% 100%, 0 100%, 45% 50%);
}

@media (max-width: 760px) {
  .pillar-grid,
  .culture-interview-grid,
  .report-grid {
    grid-template-columns: 1fr;
  }
  .culture-hero {
    height: 120px;
  }
  .culture-main {
    padding: 42px 16px 70px;
  }
  .intro-card {
    padding: 36px 22px;
    border-radius: 22px;
    margin-bottom: 64px;
  }
  .intro-title {
    font-size: 20px;
  }
  .intro-text {
    font-size: 14px;
  }
  .culture-section {
    margin-bottom: 68px;
  }
  .pillar-card,
  .culture-interview-card {
    border-radius: 22px;
  }
  .pillar-body,
  .culture-interview-body {
    padding: 22px 20px 24px;
  }
  .pillar-title {
    font-size: 20px;
  }
  .pillar-text,
  .culture-interview-text {
    font-size: 13px;
  }
  .culture-interview-title {
    font-size: 17px;
  }
  .committee-interviews {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .committee-card {
    border-radius: 22px;
  }
  .committee-body {
    padding: 24px 20px;
  }
  .committee-title {
    font-size: 20px;
  }
  .report-card {
    border-radius: 20px;
  }
  .cta-card {
    padding: 38px 22px;
    border-radius: 22px;
  }
  .cta-shape-yellow {
    width: 56px;
    height: 56px;
    right: -20px;
    top: -22px;
  }
}
.gallery-page {
  overflow: hidden;
}

.gallery-hero {
  position: relative;
  height: 260px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../../images/Gallery.png");
  background-size: cover;
  background-position: center;
}
.gallery-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  background: linear-gradient(transparent, #fffdfb);
}

.gallery-main {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 20px 100px;
}

.gallery-shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.82;
}
.gallery-shape-pink {
  width: 92px;
  height: 36px;
  left: -30px;
  top: 78px;
  background: #f46f95;
  transform: rotate(-15deg);
  border-radius: 4px;
}
.gallery-shape-yellow {
  width: 64px;
  height: 64px;
  right: 60px;
  top: 118px;
  background: #f8c43a;
  border-radius: 50%;
}
.gallery-shape-blue {
  width: 94px;
  height: 120px;
  right: -42px;
  top: 500px;
  background: #5fc7cd;
  transform: rotate(18deg);
  border-radius: 80px 80px 8px 8px;
}
.gallery-shape-purple {
  width: 70px;
  height: 70px;
  left: 24px;
  bottom: 150px;
  background: #6372bd;
  transform: rotate(45deg);
  border-radius: 10px;
}

.gallery-section {
  position: relative;
  z-index: 2;
  margin-bottom: 86px;
}
.gallery-section:last-of-type {
  margin-bottom: 0;
}

.gallery-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 32px;
  color: #00a99d;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.gallery-heading::before, .gallery-heading::after {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: #f8c43a;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 4/3;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
  text-decoration: none;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 42%, rgba(0, 0, 0, 0.48));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.25s ease;
}
.gallery-caption span {
  display: inline-block;
  margin-bottom: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #00a99d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.gallery-caption p {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
}

/* Lightbox */
.lb-data .lb-caption {
  font-size: 14px;
  line-height: 1.8;
}

.lb-data .lb-number {
  color: #d8d8d8;
  font-size: 12px;
}

.lb-nav a.lb-prev,
.lb-nav a.lb-next {
  opacity: 1;
}

@media (max-width: 760px) {
  .gallery-hero {
    min-height: 220px;
  }
  .gallery-hero-title {
    font-size: 28px;
  }
  .gallery-main {
    padding: 42px 16px 70px;
  }
  .gallery-section {
    margin-bottom: 62px;
  }
  .gallery-heading {
    font-size: 20px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .gallery-caption,
  .gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: none;
  }
  .gallery-item::after {
    opacity: 1;
  }
  .page-actions {
    margin-top: 52px;
  }
  .gallery-shape-pink {
    width: 62px;
    height: 26px;
    left: -22px;
    top: 44px;
  }
  .gallery-shape-yellow {
    width: 42px;
    height: 42px;
    right: 16px;
    top: 86px;
  }
  .gallery-shape-blue {
    width: 58px;
    height: 82px;
    right: -26px;
    top: 520px;
  }
  .gallery-shape-purple {
    width: 44px;
    height: 44px;
    left: -14px;
    bottom: 120px;
  }
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fffdfb;
  font-family: "Hiragino Sans", "Meiryo", sans-serif;
}

.service-page {
  overflow: hidden;
}

.service-hero {
  position: relative;
  height: 260px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../../images/service.png");
  background-size: cover;
  background-position: center;
}
.service-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  background: linear-gradient(transparent, #fffdfb);
}

.service-main {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 72px 20px 100px;
}

.service-shape {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: 0.84;
}
.service-shape-pink {
  width: 92px;
  height: 36px;
  left: -30px;
  top: 88px;
  background: #f46f95;
  transform: rotate(-15deg);
  border-radius: 4px;
}
.service-shape-yellow {
  width: 64px;
  height: 64px;
  right: 56px;
  top: 130px;
  background: #f8c43a;
  border-radius: 50%;
}
.service-shape-blue {
  width: 90px;
  height: 118px;
  right: -38px;
  top: 560px;
  background: #5fc7cd;
  transform: rotate(18deg);
  border-radius: 80px 80px 8px 8px;
}
.service-shape-purple {
  width: 68px;
  height: 68px;
  left: 20px;
  bottom: 180px;
  background: #6372bd;
  transform: rotate(45deg);
  border-radius: 10px;
}

.service-shape2 {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  opacity: 0.84;
}
.service-shape2-pink {
  width: 90px;
  height: 90px;
  right: -30px;
  top: 790px;
  background: #f46f95;
  border-radius: 50%;
}
.service-shape2-yellow {
  width: 64px;
  height: 54px;
  right: -50px;
  top: -14px;
  background: #f8c43a;
  transform: rotate(-20deg);
  border-radius: 5px;
}
.service-shape2-blue {
  width: 92px;
  height: 90px;
  left: -60px;
  top: 50px;
  background: #5fc7cd;
  transform: rotate(18deg);
  border-radius: 80px 80px 8px 8px;
}
.service-shape2-purple {
  width: 68px;
  height: 90px;
  left: -86px;
  bottom: 200px;
  background: #6372bd;
  transform: rotate(40deg);
  border-radius: 20px;
}

.service-section {
  position: relative;
  z-index: 2;
  margin-bottom: 96px;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.training-card {
  overflow: hidden;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid #f2ece8;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.training-visual {
  aspect-ratio: 4/3;
  background: #fbf4e9;
  overflow: hidden;
}
.training-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
}

.training-body {
  padding: 24px 20px 28px;
}

.training-title {
  margin: 0 0 12px;
  color: #2d2d2d;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.training-text {
  margin: 0;
  color: #555;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.03em;
}
.training-text strong {
  display: inline;
  padding: 0 4px;
  background: linear-gradient(transparent 68%, #f8c43a 68%);
  color: #2d2d2d;
  font-size: 14px;
  font-weight: 700;
}

.service-committee-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.service-committee-shape {
  position: absolute;
  z-index: 0;
  width: 86px;
  height: 86px;
  right: -42px;
  top: -42px;
  border-radius: 50%;
  background: #f8c43a;
  opacity: 0.72;
  pointer-events: none;
}

.service-committee-card {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 44px 44px 50px;
  border-radius: 30px;
  background: #fbf4e9;
}

.service-committee-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}

.service-committee-description {
  display: grid;
  gap: 18px;
  align-content: start;
}

.service-committee-heading {
  margin: 0;
  color: #2d2d2d;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.service-committee-lead {
  margin: 0 0 18px;
  color: #555;
  font-size: 15px;
}

.service-committee-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-committee-list li {
  overflow: hidden;
  min-height: 100%;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #f2ece8;
  color: #555;
  font-size: 14px;
  line-height: 1.8;
}
.service-committee-list strong {
  display: block;
  margin-bottom: 4px;
  color: #2d2d2d;
  font-size: 15px;
  font-weight: 700;
}

.service-committee-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.service-committee-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-committee-item-body {
  padding: 18px 18px 20px;
}

.ses-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 38px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #f2ece8;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.ses-lead {
  max-width: 720px;
  margin: 0 auto 34px;
  color: #555;
  font-size: 15px;
  line-height: 2.1;
  letter-spacing: 0.03em;
}

.ses-diagram {
  max-width: 620px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 28px;
  background: #fffdfb;
  border: 1px solid #f3ece8;
}
.ses-diagram img {
  width: 100%;
  height: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #f2ece8;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.feature-image {
  aspect-ratio: 4/3;
  background: #fbf4e9;
  overflow: hidden;
}
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 22px;
}

.feature-body {
  padding: 24px 20px 28px;
}

.feature-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
}

.feature-text {
  margin: 0;
  color: #555;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.03em;
}
.feature-text strong {
  display: block;
  margin-bottom: 8px;
  color: #f46f95;
  font-size: 14px;
  font-weight: 700;
}

.own-service-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.own-service-shape {
  position: absolute;
  z-index: 0;
  width: 86px;
  height: 86px;
  right: -42px;
  top: -42px;
  border-radius: 50%;
  background: #f8c43a;
  opacity: 0.72;
  pointer-events: none;
}

.own-service-card {
  position: relative;
  z-index: 1;
  overflow: visible;
  max-width: 100%;
  margin: 0;
  padding: 44px 44px 50px;
  border-radius: 30px;
  background: #fbf4e9;
}

.own-service-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 34px;
  align-items: center;
}

.own-service-title {
  margin: 0 0 18px;
  color: #00a99d;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.own-service-copy {
  margin: 28px 0 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.own-service-text {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 2;
}

.own-service-list {
  margin: 16px 0 0;
  padding-left: 1.2em;
  color: #555;
  font-size: 15px;
  line-height: 2;
}

.own-service-visual {
  display: grid;
  gap: 18px;
  align-content: center;
}

.own-service-photo {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 16/10;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.own-service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .own-service-content {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .training-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .service-hero {
    height: 120px;
  }
  .service-main {
    padding: 42px 16px 70px;
  }
  .service-section {
    margin-bottom: 68px;
  }
  .ses-card {
    padding: 24px 18px;
    border-radius: 22px;
  }
  .ses-lead {
    font-size: 14px;
  }
  .ses-diagram {
    padding: 16px;
    border-radius: 18px;
  }
  .feature-card {
    border-radius: 22px;
  }
  .feature-body {
    padding: 22px 18px 24px;
  }
  .feature-title {
    font-size: 15px;
  }
  .feature-text {
    font-size: 12px;
  }
  .training-card {
    border-radius: 22px;
  }
  .training-body {
    padding: 22px 18px 24px;
  }
  .training-title {
    font-size: 17px;
  }
  .training-text {
    font-size: 13px;
  }
  .service-committee-card {
    padding: 34px 22px 38px;
    border-radius: 22px;
  }
  .service-committee-content {
    gap: 24px;
  }
  .service-committee-heading {
    font-size: 20px;
  }
  .service-committee-lead {
    font-size: 14px;
  }
  .service-committee-list {
    grid-template-columns: 1fr;
  }
  .service-committee-list li {
    border-radius: 16px;
    font-size: 13px;
  }
  .service-committee-list strong {
    font-size: 14px;
  }
  .own-service-card {
    padding: 34px 22px 38px;
    border-radius: 22px;
  }
  .own-service-title {
    font-size: 1rem;
  }
  .own-service-copy {
    font-size: 18px;
  }
  .own-service-text,
  .own-service-list {
    font-size: 14px;
  }
  .own-service-visual {
    gap: 14px;
  }
  .own-service-photo {
    border-radius: 18px;
  }
  .service-shape-pink {
    width: 62px;
    height: 26px;
    left: -22px;
    top: 44px;
  }
  .service-shape-yellow {
    width: 42px;
    height: 42px;
    right: 16px;
    top: 86px;
  }
  .service-shape-blue {
    width: 58px;
    height: 82px;
    right: -26px;
    top: 520px;
  }
  .service-shape-purple {
    width: 44px;
    height: 44px;
    left: -14px;
    bottom: 120px;
  }
}
/* prepare */
.ep-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  line-height: 1.9;
}

.ep-main {
  position: relative;
  flex: 1;
  display: grid;
  place-items: center;
  padding: 56px 20px;
}

.ep-shape {
  position: absolute;
  pointer-events: none;
  opacity: 0.85;
  z-index: 1;
}
.ep-shape-1 {
  width: 92px;
  height: 38px;
  left: -18px;
  top: 90px;
  background: #f46f95;
  transform: rotate(-15deg);
  border-radius: 4px;
}
.ep-shape-2 {
  width: 66px;
  height: 66px;
  right: 72px;
  top: 120px;
  background: #f8c43a;
  border-radius: 50%;
}
.ep-shape-3 {
  width: 96px;
  height: 120px;
  right: -32px;
  bottom: 120px;
  background: #5fc7cd;
  transform: rotate(18deg);
  border-radius: 80px 80px 8px 8px;
}
.ep-shape-4 {
  width: 72px;
  height: 72px;
  left: 8%;
  bottom: 100px;
  background: #6372bd;
  transform: rotate(45deg);
  border-radius: 10px;
}

.ep-card {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: 58px 52px 54px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
  border: 1px solid #f2ece8;
  text-align: center;
}

.ep-title {
  margin: 0 0 28px;
  color: #00a99d;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.ep-lead {
  margin: 0 auto 32px;
  max-width: 560px;
  color: #555;
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 0.04em;
}

.ep-notice-box {
  max-width: 600px;
  margin: 0 auto 32px;
  padding: 24px 32px;
  border-radius: 18px;
  background: #fbf4e9;
  text-align: left;
}

.ep-notice-text {
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04em;
}

.ep-recruit-groups {
  display: grid;
  gap: 42px;
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
}

.ep-recruit-group {
  display: grid;
  gap: 16px;
}

.ep-group-title {
  margin: 0;
  color: #00a99d;
  font-size: 20px;
  font-weight: 700;
}

.ep-recruit-card {
  display: block;
  padding: 26px 28px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #f2ece8;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.ep-card-media {
  margin: 0 0 10px;
  color: #00a99d;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.ep-card-job {
  margin: 0 0 18px;
  color: #2d2d2d;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.ep-card-description {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid #f2ece8;
  color: #555;
  font-size: 14px;
  line-height: 2;
}

.ep-card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: #f46f95;
  font-size: 14px;
  font-weight: 700;
}
.ep-card-link::after {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid #f46f95;
  border-bottom: 2px solid #f46f95;
  transform: rotate(-45deg);
}

@media (max-width: 760px) {
  .ep-main {
    padding: 46px 14px 56px;
  }
  .ep-card {
    padding: 38px 22px 36px;
    border-radius: 22px;
  }
  .ep-title {
    font-size: 24px;
  }
  .ep-notice-text {
    font-size: 14px;
  }
  .ep-notice-box {
    padding: 20px 18px;
  }
  .ep-recruit-link {
    font-size: 15px;
  }
  .ep-recruit-card {
    padding: 22px 20px;
  }
  .ep-card-media {
    font-size: 20px;
  }
  .ep-card-job {
    font-size: 16px;
  }
  .ep-shape-1 {
    width: 62px;
    height: 26px;
    left: -20px;
    top: 38px;
  }
  .ep-shape-2 {
    width: 44px;
    height: 44px;
    right: 14px;
    top: 72px;
  }
  .ep-shape-3 {
    width: 58px;
    height: 82px;
    right: -26px;
    bottom: 96px;
  }
  .ep-shape-4 {
    width: 44px;
    height: 44px;
    left: -12px;
    bottom: 80px;
  }
}
