@charset "UTF-8";
/* color */
/* イージング（全体で統一） */
/* font */
@import url("https://fonts.googleapis.com/css2?family=Commissioner:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New&display=swap");
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/* Box sizing rules */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  border-style: none;
}

/*--------------------------------------------------------------*/
html {
  /* 1rem = 10px 基準 */
  font-size: 62.5%;
}

/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 基本設定 */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  color: #003C3D;
  background-color: #EEEAE7;
  font-size: 1.6rem;
  line-height: 2em;
}

/* 見出し */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.4em;
}

/* リンク */
a {
  text-decoration: none;
}

/* コンテナ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 表示切り替えユーティリティ */
.isSP {
  display: none;
}

.isPC {
  display: block;
}

@media (max-width: 768px) {
  .isSP {
    display: block;
  }
  .isPC {
    display: none;
  }
}
/* セクションタイトル */
.section-title {
  font-family: "Montserrat", sans-serif;
  font-size: 4.8rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1em;
  letter-spacing: 0.12em;
  position: relative;
}
.section-title::after {
  content: attr(data-ja);
  color: #A89886;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  display: block;
}

/* ボタン */
.btn a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  display: inline-block;
  background-color: transparent;
  color: #A89886;
  border: 2px solid #A89886;
  padding: 10px 2em;
  border-radius: 30px;
  transition: color 0.3s cubic-bezier(0.45, 0.06, 0, 0.99), background-color 0.3s cubic-bezier(0.45, 0.06, 0, 0.99), border-color 0.3s cubic-bezier(0.45, 0.06, 0, 0.99), transform 0.3s cubic-bezier(0.45, 0.06, 0, 0.99);
  letter-spacing: 0.08em;
  overflow: hidden;
  z-index: 10;
}
.btn a span {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: #A89886;
  transition: width 0.4s cubic-bezier(0.45, 0.06, 0, 0.99), height 0.4s cubic-bezier(0.45, 0.06, 0, 0.99);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.btn a:hover {
  color: #003C3D;
}
.btn a:hover span {
  width: 1000px;
  height: 1000px;
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #EEEAE7;
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.45, 0.06, 0, 0.99), opacity 0.3s cubic-bezier(0.45, 0.06, 0, 0.99), visibility 0.3s cubic-bezier(0.45, 0.06, 0, 0.99);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
}
.header.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-container {
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

.header-logo img {
  height: 60px;
  width: auto;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 40px;
}
.nav-list a {
  letter-spacing: 0.1em;
  /* same hover animation as footer privacy link: gradient text that slides */
  color: transparent;
  background: linear-gradient(to right, #A89886 50%, #003C3D 50%) 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  transition: background-position 0.3s cubic-bezier(0.45, 0.06, 0, 0.99);
}
.nav-list a:hover {
  background-position: 0 100%;
}

/* ハンバーガーメニュー */
.hamburger {
  position: relative;
  display: none;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  z-index: 2000;
}
.hamburger span {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #003C3D;
  /* transform を使って移動・回転を行う。遅延は子ごとに指定して細かく制御 */
  transition: transform 0.6s cubic-bezier(0.45, 0.06, 0, 0.99), background-color 0.3s cubic-bezier(0.45, 0.06, 0, 0.99);
}
.hamburger span:nth-child(1) {
  top: 15px;
  left: 10px;
  transition-delay: 0s;
}
.hamburger span:nth-child(2) {
  top: 24px;
  left: 10px;
  transition-delay: 0.05s;
}
.hamburger span:nth-child(3) {
  top: 33px;
  left: 10px;
  transition-delay: 0.1s;
}
.hamburger span:nth-child(4) {
  top: 24px;
  left: 70px;
  /* 親は移動のみ担当。表示用は ::after に委譲して回転を遅延させる */
  background-color: transparent;
  transition-delay: 0.3s;
}
.hamburger span:nth-child(4)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 2px;
  background-color: #A89886;
  transform-origin: center;
  transform: rotate(0deg);
  transition: transform 0.3s cubic-bezier(0.45, 0.06, 0, 0.99);
  transition-delay: 0.5s;
}
.hamburger span:nth-child(5) {
  top: 24px;
  left: 70px;
  background-color: transparent;
  transition-delay: 0.3s;
}
.hamburger span:nth-child(5)::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 2px;
  background-color: #A89886;
  transform-origin: center;
  transform: rotate(0deg);
  transition: transform 0.3s cubic-bezier(0.45, 0.06, 0, 0.99);
  transition-delay: 0.5s;
}
.hamburger.active span {
  /* 回転は疑似要素側で遅延して実行 */
}
.hamburger.active span:nth-child(1) {
  transform: translate(-60px, 0);
  background-color: #A89886;
}
.hamburger.active span:nth-child(2) {
  transform: translate(-60px, 0);
  background-color: #A89886;
}
.hamburger.active span:nth-child(3) {
  transform: translate(-60px, 0);
  background-color: #A89886;
}
.hamburger.active span:nth-child(4) {
  transform: translate(-60px, 0);
}
.hamburger.active span:nth-child(5) {
  transform: translate(-60px, 0);
}
.hamburger.active span:nth-child(4)::after {
  transform: rotate(35deg);
}
.hamburger.active span:nth-child(5)::after {
  transform: rotate(-35deg);
}
.hamburger.closing span {
  /* 逆再生向けに短めの遅延で戻す */
}
.hamburger.closing span:nth-child(4), .hamburger.closing span:nth-child(5) {
  transition-delay: 0s;
}
.hamburger.closing span:nth-child(4)::after, .hamburger.closing span:nth-child(5)::after {
  transform: rotate(0deg);
  transition-delay: 0s;
}

/* モバイルメニュー */
/* デフォルトではPC等で表示させない（モバイル用の @media 内で上書き） */
.sp-menu {
  display: none;
}

@media (max-width: 768px) {
  /* スマホ用メニューオーバーレイ */
  .sp-menu {
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.08em;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    max-height: 100vh;
    color: #fff;
    z-index: 900; /* ヘッダー(1000)の下でOK。必要なら調整 */
    display: flex;
    flex-direction: column;
    overflow: hidden;
    pointer-events: none;
  }
  .sp-menu.active {
    pointer-events: auto;
    overflow: scroll;
  }
  .sp-menu.active .sp-menu-inner::after {
    transform: translateY(0);
  }
  .sp-menu.closing .sp-menu-inner::after {
    transition-delay: 0.2s;
  }
  .sp-menu-inner {
    padding: 0 20px 40px;
    position: relative;
  }
  .sp-menu-inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #003C3D;
    transform: translateY(-100%);
    transition: transform 0.3s cubic-bezier(0.45, 0.06, 0, 0.99);
    pointer-events: none;
    z-index: -1;
  }
  .sp-menu-header {
    height: 70px;
    display: flex;
    justify-content: start;
    align-items: center;
  }
  .sp-menu-logo {
    height: 50px;
    width: auto;
    /* 初期は下らして透明にしておく */
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.4s cubic-bezier(0.45, 0.06, 0, 0.99), transform 0.4s cubic-bezier(0.45, 0.06, 0, 0.99);
  }
  .sp-menu-nav {
    margin-top: 12%;
  }
  .sp-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .sp-menu-list li {
    overflow: hidden;
  }
  .sp-menu-list li a {
    font-weight: 500;
    display: block;
    padding: 20px 0;
    text-align: left;
    color: #fff;
    letter-spacing: 0.08em;
    line-height: 1.5em;
    /* 初期は下にずらして透明にしておく */
    opacity: 0;
    transform: translateY(3em);
    transition: opacity 0.3s cubic-bezier(0.45, 0.06, 0, 0.99), transform 0.6s cubic-bezier(0.45, 0.06, 0, 0.99);
  }
  .sp-menu-footer {
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s cubic-bezier(0.45, 0.06, 0, 0.99), transform 0.4s cubic-bezier(0.45, 0.06, 0, 0.99);
    font-size: 1.3rem;
    margin-top: 30%;
  }
  .sp-menu-footer img {
    width: 100%;
    max-width: 400px;
    margin-bottom: 2em;
  }
  .sp-menu-footer p {
    padding: 0.25em;
  }
  .sp-menu-footer p a {
    color: #fff;
  }
  /* メニュー表示時、リスト項目を下から順にフェードインさせる（CSSのみ、nth-childでスタガー） */
  .sp-menu.active .sp-menu-logo {
    transition-delay: 0.1s;
    opacity: 1;
    transform: translateY(0);
  }
  .sp-menu.active .sp-menu-list li:nth-child(1) a {
    transition-delay: 0.04s;
    opacity: 1;
    transform: translateY(0);
  }
  .sp-menu.active .sp-menu-list li:nth-child(2) a {
    transition-delay: 0.08s;
    opacity: 1;
    transform: translateY(0);
  }
  .sp-menu.active .sp-menu-list li:nth-child(3) a {
    transition-delay: 0.12s;
    opacity: 1;
    transform: translateY(0);
  }
  .sp-menu.active .sp-menu-list li:nth-child(4) a {
    transition-delay: 0.16s;
    opacity: 1;
    transform: translateY(0);
  }
  .sp-menu.active .sp-menu-list li:nth-child(5) a {
    transition-delay: 0.22s;
    opacity: 1;
    transform: translateY(0);
  }
  .sp-menu.active .sp-menu-list li:nth-child(6) a {
    transition-delay: 0.26s;
    opacity: 1;
    transform: translateY(0);
  }
  .sp-menu.active .sp-menu-footer {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
  }
  /* 既存の.navはSPでは非表示 */
  .nav {
    display: none;
  }
  .nav-list {
    flex-direction: column;
    padding: 40px 20px;
    gap: 0;
    height: 100%;
    justify-content: flex-start;
  }
  .nav-list a {
    padding: 20px 0;
    border-bottom: 1px solid #E0DCD8;
    text-align: center;
    display: block;
    width: 100%;
    transition: background-color 0.3s cubic-bezier(0.45, 0.06, 0, 0.99);
  }
  .nav-list a:hover {
    background-color: rgba(0, 60, 61, 0.05);
  }
  .nav-list a:last-child {
    border-bottom: none;
  }
  /* メニューオープン時のボディ固定 */
  body.menu-open {
    overflow: hidden;
  }
  body.menu-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 800;
  }
}
/* メインビジュアル */
.main-visual {
  padding: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-size: 1800px;
  overflow: hidden;
}
.main-visual-container {
  max-width: 940px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  padding: 10vh 20px;
}

.main-visual-image {
  margin-top: -20vh;
  width: 100%;
  min-width: 1200px;
  position: relative;
  z-index: -1;
}
.main-visual-image img {
  width: 100%;
}

/* セクション共通設定 */
.section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* 1段目: メインタイトル */
.section-1 {
  margin-bottom: 1em;
}

.main-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* CSSで作成した「x」 */
.x-symbol {
  width: 36px;
  height: 36px;
  position: relative;
  display: inline-block;
}

.x-symbol::before,
.x-symbol::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 36px;
  height: 2px;
  background-color: #A89886;
  transform-origin: center;
}

.x-symbol::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.x-symbol::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* 2段目: ロゴ */
.section-2 {
  margin: 15px 0;
}

.logo {
  width: 420px;
  height: 95px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/logo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* 3段目: タグライン画像 */
.section-3 {
  margin: 20px 0;
}

.image-container {
  width: 100%;
  max-width: 600px;
  height: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../img/tagline.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* 4段目: 説明文 */
.section-4 {
  margin: 10px 0;
}

.description {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.main-visual-illustration {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-visual-illustration img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 60, 61, 0.1);
}

/* MESSAGE */
.message {
  padding: 200px 0;
}

.message-content .section-title {
  text-align: left;
}
.message-content .section-title::after {
  display: inline-block;
  margin-top: 0;
  margin-left: 1em;
}

.message-text {
  max-width: 800px;
  margin: auto 0 auto auto;
}
.message-text-name {
  text-align: right;
  font-size: 1.8rem;
  margin-top: 1.8em;
}

/* STRENGTH */
.strength {
  padding: 80px 0;
}

.strength-item {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
  gap: 60px;
  background-color: #fff;
  padding: 80px;
  border-radius: 20px;
  flex-wrap: wrap;
}
.strength-item:last-child {
  margin-bottom: 0;
}

.strength-text {
  flex: 1;
}
.strength-text::before {
  content: attr(data-numb);
  display: block;
  font-size: 2.8rem;
  font-family: "Commissioner", sans-serif;
  font-weight: 400;
  color: #A89886;
  margin-bottom: 0.5em;
}
.strength-text h3 {
  font-size: 3.5rem;
  margin-bottom: 1.5em;
}
.strength-text h3 span {
  display: block;
  font-size: 2rem;
}
.strength-text a {
  padding: 20px 0;
  border-bottom: 1px solid #E0DCD8;
  text-align: center;
  display: block;
  width: 100%;
  transition: background-color 0.3s cubic-bezier(0.45, 0.06, 0, 0.99);
}

.strength-image {
  flex: 1;
}
.strength-image img {
  width: 100%;
  height: auto;
}

/* Fade-in utility */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.45, 0.06, 0, 0.99), transform 0.8s cubic-bezier(0.45, 0.06, 0, 0.99);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for two-column strength items: children will get transition-delay via JS */
.strength-item > * {
  transition: opacity 0.8s cubic-bezier(0.45, 0.06, 0, 0.99), transform 0.8s cubic-bezier(0.45, 0.06, 0, 0.99);
  opacity: 0;
  transform: translateY(40px);
}

.strength-item > *.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.strength-gbaa {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-template-rows: 100%;
  grid-column-gap: 1em;
  grid-row-gap: 0px;
  align-items: center;
  flex-basis: 100%;
}
.strength-gbaa .strength-gbaa-image {
  grid-area: 1/1/2/2;
  height: 100%;
}
.strength-gbaa .strength-gbaa-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.strength-gbaa .strength-gbaa-text {
  grid-area: 1/2/2/3;
  background-color: #CCBFB1;
  padding: 3em 4em;
  border-radius: 20px;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.strength-gbaa .strength-gbaa-text h3 {
  font-size: 3.5rem;
  margin-bottom: 0.5em;
}
.strength-gbaa .strength-gbaa-text .btn a {
  margin-top: 1em;
  border-color: #003C3D;
  color: #003C3D;
}
.strength-gbaa .strength-gbaa-text .btn a span {
  background-color: #003C3D;
}
.strength-gbaa .strength-gbaa-text .btn a:hover {
  color: #A89886;
}

/* COMPANY */
.company {
  padding: 120px 0 200px 0;
}
.company h2 {
  margin-bottom: 60px;
}

.company-content {
  max-width: 800px;
  margin: 0 auto;
}

.company-info {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px 40px;
}
.company-info ul {
  padding-left: 1.3em;
}

/* RECRUIT */
.recruit {
  padding: 200px 0;
  background-color: #fff;
}
.recruit h2 {
  margin-bottom: 60px;
}

.recruit-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.recruit-large-text {
  font-size: 3.5rem;
  line-height: 1.6em;
  margin-bottom: 1em;
}

/* CONTACT */
.contact {
  padding: 200px 0;
  background-color: #003C3D;
  color: #fff;
}
.contact h2 {
  margin-bottom: 60px;
}

.contact-content {
  margin: 0 auto;
  text-align: center;
}

.contact-button {
  margin-top: 3em;
}

/* フッター */
.footer {
  padding: 100px 0 60px;
}

.footer-nav ul {
  display: flex;
  list-style: none;
  gap: 50px;
}

.footer-nav a {
  letter-spacing: 0.1em;
  color: transparent;
  background: linear-gradient(to right, #A89886 50%, #003C3D 50%) 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 100%;
  transition: background-position 0.3s cubic-bezier(0.45, 0.06, 0, 0.99);
}
.footer-nav a:hover {
  background-position: 0 100%;
}

.footer-bottom {
  padding-top: 150px;
  display: flex;
  justify-content: space-between;
}

.footer-copy {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}
.footer-copy a {
  color: transparent;
  background: linear-gradient(to right, #A89886 50%, #003C3D 50%) 100%;
  background-clip: text;
  background-size: 200% 100%;
  transition: background-position 0.3s;
}
.footer-copy a:hover {
  background-position: 0 100%;
}

.footer-logo img {
  height: auto;
  width: 400px;
}

/* レスポンシブデザイン - ラップトップ */
@media (max-width: 1400px) {
  .main-visual-image {
    margin-top: -16vw;
    min-width: 1200px;
  }
}
/* レスポンシブデザイン - ラップトップ */
@media (max-width: 1200px) {
  .header-container {
    padding: 0 30px;
  }
  .header-logo img {
    height: 50px;
    width: auto;
  }
  .nav-list {
    gap: 20px;
  }
}
/* レスポンシブデザイン - タブレット */
@media (max-width: 1024px) {
  .container {
    padding: 0 15px;
  }
  .section-title {
    font-size: 4rem;
    margin-bottom: 40px;
  }
  .header-container {
    padding: 0 20px;
    height: 70px;
  }
  .nav-list {
    gap: 15px;
  }
  .nav-list a {
    font-size: 1.5rem;
  }
  .main-visual-container {
    max-width: 800px;
    gap: 0.1em;
  }
  .main-visual-image {
    margin-top: -15vw;
    min-width: 800px;
  }
  .section-1 {
    margin-bottom: 10px;
  }
  .main-title {
    gap: 15px;
  }
  .x-symbol {
    width: 30px;
    height: 30px;
  }
  .x-symbol::before,
  .x-symbol::after {
    width: 30px;
  }
  .section-2 {
    margin: 15px 0;
  }
  .logo {
    width: 290px;
    height: 70px;
  }
  .section-3 {
    margin: 10px 0;
  }
  .image-container {
    height: 220px;
  }
  .section-4 {
    margin: 10px 0;
  }
  .section-5 {
    margin: 20px 0;
  }
  .main-visual-illustration {
    height: 160px;
  }
  .strength-item {
    flex-direction: column-reverse;
    gap: 30px;
    margin-bottom: 50px;
  }
  .strength-image {
    max-width: 500px;
  }
  .strength-community {
    flex-direction: column;
  }
  .strength-community .strength-text {
    order: 2;
  }
  .strength-community .strength-image {
    order: 1;
  }
  .strength-community .strength-gbaa {
    order: 3;
  }
  .strength-community .strength-gbaa-text {
    padding: 2em 1em;
  }
  .strength-community .strength-gbaa-text h3 {
    font-size: 2.8rem;
  }
  .company-info {
    grid-template-columns: 150px 1fr;
    gap: 15px 30px;
  }
  .recruit-large-text {
    font-size: 3rem;
    line-height: 1.5em;
    margin-bottom: 10px;
  }
  .footer-bottom {
    padding-top: 60px;
  }
  .footer-logo img {
    width: 300px;
  }
}
/* レスポンシブデザイン - スマートフォン */
@media (max-width: 768px) {
  /* ボタン */
  .btn a {
    padding: 10px;
    font-size: 1.3rem;
    width: 100%;
    text-align: center;
    letter-spacing: 0;
  }
  .hamburger {
    display: block;
  }
  .main-visual-container {
    max-width: 100%;
    gap: 0.1em;
    padding: 60px 15px;
  }
  .main-title {
    gap: 10px;
    flex-wrap: wrap;
  }
  .x-symbol {
    width: 25px;
    height: 25px;
  }
  .x-symbol::before,
  .x-symbol::after {
    width: 25px;
  }
  .logo {
    width: 320px;
    height: 90px;
  }
  .image-container {
    height: 220px;
  }
  .main-visual-illustration {
    height: 140px;
  }
  .section-title {
    margin-bottom: 30px;
  }
  .message,
  .strength,
  .company,
  .recruit,
  .contact {
    padding: 80px 0;
  }
  .message-content .section-title {
    text-align: center;
  }
  .message-content .section-title::after {
    display: block;
    margin: 0 auto;
  }
  .strength-item {
    padding: 40px 20px;
  }
  .strength-item h3 {
    font-size: 3rem;
  }
  .strength-gbaa {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
  }
  .strength-gbaa-text {
    width: 100%;
  }
  .company h2 {
    margin-bottom: 30px;
  }
  .company-info {
    grid-template-columns: 1fr;
    gap: 0.2em;
  }
  .company-info dt {
    border-bottom: none;
  }
  .company-info dd {
    margin-bottom: 1.5em;
  }
  .recruit h2 {
    margin-bottom: 30px;
  }
  .recruit-large-text {
    margin-bottom: 20px;
  }
  .recruit-middle-text {
    text-align: left;
  }
  .contact h2 {
    margin-bottom: 30px;
  }
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .footer-logo img {
    width: 100%;
    max-width: 400px;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 20px;
  }
}/*# sourceMappingURL=style.css.map */