/* ============================================
   Reset
============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Meiryo', 'メイリオ', 'Hiragino Kaku Gothic ProN', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #231815;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}


/* ============================================
   utility
============================================ */
.pc-only,
.pc-w-only {
  display: block;
}

.sp-only {
  display: none;
}
@media (max-width: 1024px) {
  .pc-w-only {
    display: none;
  }
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}


.no-wrap {
  display: inline-block;
  white-space: nowrap;
}

/* ============================================
   Loading Screen
============================================ */
.loading-screen {
  visibility: visible !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-screen__logo img {
  width: 120px;
  /* 回転が見やすいよう少し小さめに調整 */
  height: auto;
  animation: spinLogo 2s linear infinite;
  transform-origin: center center;
}

@keyframes spinLogo {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* ============================================
   Header
============================================ */
#include-header {
  margin: auto;

}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

@media (max-width: 767px) {
  .header {
    position: fixed;
    width: 100%;
    height: 64px;
    /* Default SP height */
  }

  .header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .header__inner {
    height: 64px !important;
    padding: 0 20px !important;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 100px;
  /* Contact行＋Nav行の高さ */
}

/* ロゴ：黒い角丸ピル */
.header__logo {
  flex-shrink: 0;
}

.header__logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #231815;
  border-radius: 0 9999px 9999px 0;
  padding: 10px 24px;
  padding-left: 40px;
  margin-left: -40px;
  text-decoration: none;
}

.header__logo-img {
  height: 34px;
  width: auto;
}

.header__logo-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  font-family: 'Meiryo', sans-serif;
}

/* 右エリア：Contact上 / Nav下 */
.header__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

/* Contact行 */
.header__contact {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 15px;
  color: #231815;
  font-weight: bold;
}

.header__contact span {
  font-size: 15px;
}

.header__contact-tel,
.header__contact-mail {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #231815;
  font-size: 15px;
  transition: color 0.3s ease;
}

.header__contact-tel:hover,
.header__contact-mail:hover {
  color: #f75307;
}

.header__contact-icon {
  flex-shrink: 0;
}

/* GNav：オレンジグラデーション角丸ピル */
.gnav {
  background: #ff9300;
  border-radius: 9999px 0 0 9999px;
  padding: 1px 40px 2px 47px;
  margin-right: -40px;
  box-shadow: 4px 0 6px rgba(0, 0, 0, 0.2);
}

.gnav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: 46px;
}

.gnav__item a {
  font-size: 18px;
  color: #ffffff;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}

.gnav__item a::before {
  content: '●';
  margin-right: 4px;
  font-size: 10px;
  vertical-align: middle;
}

.gnav__item a:hover {
  opacity: 0.65;
}

/* GNav Dropdown */
.gnav__item {
  position: relative;
  padding-top: 6px;
}

.gnav__sub-list {
  position: absolute;
  top: 124%;
  left: -3%;
  transform: translateX(-50%);
  background-color: #ff9300;
  border-radius: 8px;
  padding: 12px 24px;
  min-width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, margin-top 0.3s ease;
  margin-top: 10px;
  z-index: 100;
  text-align: center;
}

.gnav__sub-list::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

.gnav__item:hover .gnav__sub-list {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.gnav__sub-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.gnav__sub-item:last-child {
  border-bottom: none;
}

.gnav__sub-item a {
  display: block;
  padding: 12px 0;
  color: #ffffff;
  font-size: 14px;
  white-space: nowrap;
  font-weight: bold;
}

.gnav__sub-item a::before {
  display: none;
}

.gnav__sub-item a:hover {
  color: #231815;
  opacity: 1;
}

/* ============================================
   Hamburger Button
============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 200;
  flex-shrink: 0;
}

.hamburger__line {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #231815;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* ×アイコンに変形 */
.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: #ffffff;
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: #ffffff;
}

/* ============================================
   Drawer（SP用）
============================================ */
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 0px;
  height: 100vh;
  background-color: #231815;
  z-index: 150;
  padding: 80px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow: hidden;
}

.drawer.is-open {
  transform: translateX(0);
  width: 300px;
}

.drawer__contact {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.drawer__contact-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.drawer__contact-tel,
.drawer__contact-mail {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.drawer__contact-tel:hover,
.drawer__contact-mail:hover {
  color: #ff9300;
}

.drawer__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.drawer__item a {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.drawer__item a:hover {
  color: #ff9300;
  padding-left: 8px;
}

.drawer__sub-list {
  padding-left: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: -10px;
}

.drawer__item--has-child>a {
  border-bottom: none;
}

.drawer__sub-item a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  padding: 10px 0;
  border-bottom: none;
  font-weight: normal;
}

.drawer__sub-item a:hover {
  color: #ff9300;
  padding-left: 8px;
}

/* オーバーレイ */
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.drawer-overlay.is-show {
  display: block;
  opacity: 1;
}

/* ============================================
   Button
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 60px;
  height: 60px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: bold;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.btn--dark {
  background-color: #231815;
  color: #ffffff;
}

.btn--primary {
  background-color: #ff9300;
  color: #ffffff;
}

.btn__arrow {
  font-size: 20px;
}

/* ============================================
   Main Content
============================================ */
.main-content {
  overflow: hidden;
}


/* ============================================
   Section Title
============================================ */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title__en {
  font-size: 60px;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}

.section-title__en::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #ff9300;
}

.section-title__ja {
  font-size: 18px;
  color: #231815;
  margin-top: 16px;
}

.section-title--ja-only {
  text-align: center;
  font-size: 40px;
  font-weight: normal;
  color: #231815;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .section-title--ja-only {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

/* ============================================
   Hero
============================================ */
.hero {
  position: relative;
  background-color: #ffffff;
  overflow: visible;
  min-height: 980px;
  display: grid;
  grid-template-columns: minmax(360px, 40%) minmax(480px, 48.5%);
  align-items: top;
  gap: 10%;
  padding: 0 0px;
  max-width: 1200px;
  width: 72%;
  margin: auto;
}

@media (max-width: 1500px) {
  .hero {
    width: 90%;
  }
}

@media (max-width: 1300px) {
  .hero {
    width: 86%;
  }
}

@media (max-width: 1024px) {
  .hero {
    width: 94%;
    grid-template-columns: 42% 47%;
    gap: 10%;
    min-height: 700px;
  }
}



.hero__content {
  padding: 20px 0;
  position: relative;
  z-index: 2;
}

.hero__catch {
  max-width: 420px;
  font-size: 0;
  padding-top: 40px;
}

.hero__catch img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__sub {
  font-size: 18px;
  color: #231815;
  margin-top: 16px;
}

.hero__logo {
  margin-top: 24px;
  width: 120px;
}

.hero__news {
  position: relative;
  z-index: 1;
  margin-top: 88px;
  background-color: rgba(255, 255, 255, 0.0);
  /* 白色を半透明にする */
  backdrop-filter: blur(12px);
  /* 背面をぼかす効果 */
  -webkit-backdrop-filter: blur(12px);
  /* Safari用 */

  max-width: 520px;
}

.hero__news-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.hero__news-title {
  font-size: 24px;
  font-weight: bold;
  color: #231815;
  margin: 0;
}

.hero__news-line {
  flex: 1;
  height: 1px;
  background-color: rgba(35, 24, 21, 0.2);
}

.hero__news-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__news-item {
  margin-bottom: 20px;
}

.hero__news-item-header {
  display: flex;
  gap: 22px;
  font-size: 14px;
  align-items: flex-start;
  border-bottom: 1px dotted #ccc;
  margin-bottom: 10px;
}

.hero__news-date {
  color: rgba(35, 24, 21, 0.6);
  white-space: nowrap;
  min-width: 120px;
}

.hero__news-text {
  color: rgba(35, 24, 21, 0.9);
  transition: color 0.3s ease;
}

.hero__news-detail {
  font-size: 14px;
}

.hero__news-text:hover {
  color: #f75307;
}

.hero__image {
  position: relative;
  height: 1000px;
  overflow: hidden;
  border-radius: 72px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .hero__image {
    height: 900px;
  }
}

@media (max-width: 880px) {
  .hero__image {
    height: 650px;
  }
}

@media (max-width: 767px) {
  .hero__image {
    margin-top: 0;
  }
}

.hero__image img,
.hero__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



@media (max-width: 767px) {
  .hero {
    display: flex;
    flex-direction: column;
    padding: 0;
    min-height: auto;
    overflow: visible;
    width: 100%;
    margin-top: 64px;
    /* Fixed header offset */
  }

  .hero__content {
    display: contents;
  }

  .hero__catch {
    order: 1;
    margin-top: 40px;
    padding: 0 24px;
  }

  .hero__image {
    order: 2;
    border-radius: 48px;
    height: 85vh;
    margin: 40px 0;
    max-width: 100%;
    width: 100%;
  }

  .hero__news {
    order: 3;
    padding: 40px 24px;
    margin-top: 0;
    background-color: transparent;
    backdrop-filter: none;
  }

  .hero__sub {
    display: none;
  }

  .hero__logo {
    display: none;
  }
}

/* ============================================
   News
============================================ */
.news {
  padding: 60px 0;
  background: url("../images/orange-bg-flat.jpg") center/cover no-repeat;
}

.news__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 40px;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 16px;
}

.news__heading {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 24px;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  color: #ffffff;
}

.news__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #ff9300;
}

.news__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news__item {
  display: flex;
  gap: 24px;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(35, 24, 21, 0.1);
}

.news__date {
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  min-width: 120px;
}

.news__text {
  color: #ffffff;
  transition: color 0.3s ease;
}

.news__text:hover {
  color: #ff9300;
}

/* ============================================
   Concept
============================================ */
.concept {
  position: relative;
  background: url("../images/orange-bg-flat.jpg") center/cover no-repeat;
  padding: 160px 0 160px;
  overflow: hidden;
}

/* 上部の斜めラインを表現する疑似要素 */
.concept::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,0 100,0 100,100' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

/* 下部の斜めラインを表現する疑似要素 */
.concept::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,0 0,100 100,100' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

.concept__inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 0;
  display: flex;
  justify-content: right;
  gap: 40px;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .concept__inner {
    padding: 0 40px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.concept__text {
  color: #ffffff;
  max-width: 540px;
  width: 41%;
  text-align: left;
  padding: 200px 0 160px;
}

.concept__text p {
  font-size: 24px;
  line-height: 1.8;
  margin-bottom: 24px;
}

@media (max-width: 1500px) {
  .concept__text {
    width: 50%;
  }
}

@media (max-width: 1300px) {
  .concept__text {
    width: 58%;
  }
}

@media (max-width: 1024px) {
  .concept__text {
    width: 50%;
  }
}

@media (max-width: 880px) {
  .concept__text {
    padding: 50px 0 60px;
  }

  .concept__text p {
    font-size: 2.4vw;
  }
}

@media (max-width: 767px) {
  .concept__text {
    width: 94%;
    padding: 20px 0 60px;
  }

  .concept__text p {
    font-size: 4.6vw;
    line-height: 1.8;
  }
}




.concept__btn-wrap {
  margin-top: 0;
  text-align: center;
}

/* ============================================
   Works
============================================ */
.works__section {
  padding: 120px 0;
  background-color: #ffffff;
}

.works__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.works__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

@media (max-width: 1030px) {
  .works__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



.works__btn-wrap {
  text-align: center;
  margin-top: 60px;
}

/* Works Card */
.works-card {
  border: 1px solid rgba(35, 24, 21, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.works-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(35, 24, 21, 0.12);
}

.works-card__thumbnail {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.works-card__thumbnail img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.6s ease;
  margin-top: 20px;
}

.works-card:hover .works-card__thumbnail img {
  transform: scale(1.04);
}

.works-card__body {
  padding: 16px;
}

.works-card__title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
}

.works-card__meta {
  font-size: 12px;
  color: #666666;
  line-height: 1.6;
}

/* ============================================
   Recruit
============================================ */
.recruit {
  padding: 60px 0 80px;
  background-color: #f5f5f5;
  overflow: hidden;
}

.recruit__inner {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}

.recruit__images {
  position: relative;
  margin-top: 60px;
  width: calc(100% + 80px);
  margin-left: -40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.recruit__card {
  position: relative;
  overflow: hidden;
  width: 75%;
  max-width: 1170px;
  margin-left: auto;
  height: 380px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}

.recruit__card--primary {
  background-color: #FE9B02;
  border-radius: 60px;
}

.recruit__card--secondary {
  background-color: #F75307;
  border-radius: 80px;
  width: 100%;
  max-width: 42%;
  margin-left: 0;
  margin-top: -220px;
  padding: 32px 60px 32px 60px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.recruit__card-inner {
  width: 100%;
  max-width: 520px;
  background-color: #ffffff;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.recruit__card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit__card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
}

/* 1枚目のオレンジ部分をより見せるために下に余白を設定 */
.recruit__card--primary {
  padding-bottom: 80px;
  height: 800px;
}

.recruit__card--primary img {
  height: calc(100% - 240px);
  width: calc(100% - 60px);
  border-radius: 40px;
  top: 4%;
  right: 0;
  left: 0px;
  margin: auto;
}

.recruit__card--secondary img {
  height: 84%;
  max-width: 88%;
  border-radius: 46px;
  top: 8%;
  right: 6%;
  left: auto;
}

@media (max-width: 1080px) and (min-width: 768px) {
  .recruit__card--secondary img {
    max-width: 88%;
    border-radius: 42px;
  }
}


.recruit__circle {
  position: absolute;
  left: 70%;
  top: 636px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  z-index: 5;
}

.recruit__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.recruit__catch {
  position: absolute;
  top: 3%;
  left: 16%;
  transform: translate(-50%, -50%);
  z-index: 3;
  pointer-events: none;
  width: 278px;
  height: auto;
}

.recruit__catch img {
  width: 100%;
  height: auto;
  display: block;
}

.recruit__circle-badge {
  position: absolute;
  top: 24%;
  left: 13%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  z-index: 4;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.recruit__circle-badge p {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #231815;
}

.recruit__btn-wrap {
  text-align: center;
  margin-top: 60px;
}

/* Fun テキスト装飾 */
.fun-text {
  font-size: 80px;
  font-weight: bold;
  font-style: italic;
  line-height: 1;
  color: #f75307;
}

.fun-text--outline {
  color: transparent;
  -webkit-text-stroke: 2px #f75307;
}

/*
  .recruit__images {
    width: 100%;
    margin-left: 0;
  }

  .recruit__card {
    width: 100%;
    height: auto;
    margin-left: 0;
    border-radius: 40px;
    position: relative;
    padding: 0;
  }

  .recruit__card--primary {
    border-radius: 60px 0 0 60px;
    height: 380px;
    width: 70%;
    max-width: 960px;
    margin-left: auto;
    padding-bottom: 80px;
  }

  .recruit__card--primary img {
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    right: auto;
    height: calc(100% - 80px);
    border-radius: 0;
  }

  .recruit__card--secondary {
    border-radius: 0 60px 60px 0;
    width: 60%;
    padding: 32px 80px 32px 120px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: 0;
    height: auto;
  }

  .recruit__card-inner {
    width: 100%;
    max-width: 520px;
    background-color: #ffffff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  }

  .recruit__card--secondary img {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    right: auto;
    left: 0;
    border-radius: 0;
    max-width: none;
  }
   .recruit__circle {
    position: relative;
    left: auto;
    top: auto;
    width: 240px;
    height: 240px;
    margin: 0 auto;
  }

  .recruit__catch {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: auto;
    z-index: 2;
    margin-bottom: -50px;
  }

  .recruit__circle-badge {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    z-index: 3;
    margin-left: auto;
    margin-right: auto;
  }
    */

@media (max-width: 1080px) {
  .recruit__card--primary {
    padding-bottom: 80px;
    height: 620px;
  }

  .recruit__card--primary img {
    height: calc(100% - 120px);
  }

  .recruit__circle-badge {
    top: 11%;
    left: 5%;

  }

  .recruit__circle {
    right: -20px;
    top: auto;
    bottom: 0px;
    width: 340px;
    height: 340px;
  }


}

@media (max-width: 768px) {
  .recruit__images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
    width: 100%;
    margin: 0;
  }

  .recruit__catch {
    position: relative;
    grid-column: 1;
    top: auto;
    left: auto;
    transform: none;
    z-index: 10;
    margin-bottom: -80px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .recruit__card--primary {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    height: 320px;
    border-radius: 40px;
    padding: 0;
    overflow: hidden;
  }

  .recruit__card--primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    position: static;
    top: auto;
    left: auto;
  }

  .recruit__circle-badge {
    grid-column: 1;
    grid-row: 3;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    z-index: 8;
    margin: -100px auto 0;
    width: 200px;
    height: 200px;
    padding: 20px;
  }

  .recruit__circle-badge p {
    font-size: 16px;
  }

  .recruit__card--secondary {
    grid-column: 1;
    grid-row: 4;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-top: -120px;
    padding: 0;
    border-radius: 40px;
    height: 320px;
    overflow: hidden;
    display: block;
  }

  .recruit__card-inner {
    width: 100%;
    height: 100%;
    max-width: 100%;
    border-radius: 0;
  }

  .recruit__card--secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    position: static;
    top: auto;
    right: auto;
    left: auto;
    max-width: none;
  }

  .recruit__circle {
    grid-column: 1;
    grid-row: 5;
    position: relative;
    left: auto;
    top: auto;
    width: 250px;
    height: 250px;
    margin: -125px auto 0;
    z-index: 9;
  }
}
@media (max-width: 600px) {
  .recruit__card--secondary {
    margin-top: -220px;
  }
}

/* ============================================
   Footer
============================================ */
.footer {
  background-color: #231815;
  color: #ffffff;
  padding: 60px 40px;
}

.footer__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 250px 1fr 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.footer__logo img {
  width: 160px;
  filter: brightness(0) invert(1);
}

.footer__logo p {
  font-size: 14px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__address {
  font-size: 12px;
  line-height: 1.7;
}

.footer__address strong {
  font-size: 15px;
}

.footer__address-note {
  font-size: 12px;
}

.footer__nav-group h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer__nav-group ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav-group a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer__nav-group a:hover {
  color: #ff9300;
}

.footer__bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Responsive
============================================ */
@media (max-width: 1150px) {
  .footer__inner {
    grid-template-columns: 250px 2fr 2fr 2fr 3fr;
  }
}
@media (max-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__logo {
    grid-column: 1 / 3;
  }

  .concept__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1023px) and (min-width: 768px) {
  .header__inner {
    display: block;
  }

  .header__logo {
    position: absolute;
    width: 215px;
    top: 5px;
  }

  .header__logo-img {
    width: auto;
    height: auto;
  }

  .header__right {
    padding-top: 13px;
  }
}

@media (max-width: 767px) {
  .header__inner {
    padding: 0 16px;
    height: 64px;
  }

  .header__right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content {
    padding: 60px 16px;
  }

  .hero__catch {
    font-size: 48px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__catch span {
    font-size: 60px;
  }

  .hero__image {
    height: 70vh;
    width: 90vw;
    margin: 20px auto 0;
    border-radius: 34px;
  }

  .hero__image img {
    clip-path: none;
  }

  .news__inner,
  .works__inner,
  .recruit__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .news__item {
    flex-direction: column;
    gap: 4px;
  }

  .concept__inner {
    grid-template-columns: 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }

  .works__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .recruit__images {
    grid-template-columns: 1fr;
  }

  .recruit__catch {
    position: static;
    transform: none;
    margin-bottom: 24px;
  }

  .recruit__circle-badge {
    position: static;
    transform: none;
    margin: -80px auto 120px;
  }

  .fun-text {
    font-size: 48px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer {
    padding: 40px 16px;
  }

  .section-title__en {
    font-size: 40px;
  }
}

/* ============================================
   Page Header (Lower Pages)
============================================ */
.page-header {
  text-align: center;
  padding: 80px 20px 60px;
}

.page-header__badge {
  display: block;
  width: fit-content;
  margin: 0 auto;
  background-color: #f75307;
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  padding: 4px 24px;
}

.page-header__en {
  font-size: 64px;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  color: #231815;
  display: inline-block;
  position: relative;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  line-height: 1.6;
}

.page-header__en::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #ff9300;
  border-radius: 2px;
}

.page-header__ja {
  font-size: 20px;
  line-height: 1.8;
  color: #231815;
  letter-spacing: 0.1em;
}

@media (max-width: 960px) {
  .page-header__en {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .page-header {
    padding: 80px 20px 0px;
  }

  .page-header__en {
    font-size: 28px;
    margin-bottom: 10px;
  }
}

/* Modifier for white section titles (e.g. Concept section) */
.section-title--white .section-title__en,
.section-title--white .section-title__ja {
  color: #ffffff;
}

.section-title--white .section-title__en::after {
  background-color: #ffffff;
}

/* ============================================
   Utility / Layout
============================================ */
.bg_white {
  background-color: #ffffff;
}

.layout__style01 {
  display: grid;
  grid-template-columns: 4fr 6fr;
  max-width: 1400px;
  margin: 0 auto;
  gap: 60px;
  padding: 0 40px;
}

@media (max-width: 767px) {
  .layout__style01 {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    padding: 0 20px;
  }
}

/* ============================================
   What's Bullets Section 1
============================================ */
.whats__outline {
  padding: 80px 0;
}

.whats__block {
  margin-bottom: 60px;
}

.whats__block:last-child {
  margin-bottom: 0;
}

.whats__heading {
  background: linear-gradient(90deg, #f75307 0%, #ff9300 100%);
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 9999px;
  margin-bottom: 24px;
  display: block;
}

.whats__text {
  font-size: 16px;
  line-height: 1.8;
  color: #231815;
  margin-bottom: 24px;
}

.whats__image-main img,
.whats__image-sub img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================
   What's Bullets Section 2 (about.html)
============================================ */
.bg_orange_diagonal {
  position: relative;
  background: url("../images/orange-bg-flat.jpg") center/cover no-repeat;
  padding: 240px 0;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 767px) {
  .bg_orange_diagonal {
    padding: 160px 0px;
  }
}

.bg_orange_diagonal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,0 100,0 100,100' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

.bg_orange_diagonal::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,0 0,100 100,100' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

.bg_orange_diagonal--btmflat::after {
  width: 100%;
  height: 0px;
  background-image: none;
  z-index: 1;
}

.layout__style02 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .layout__style02 {
    padding: 0 20px;
  }
}

.about-s2__title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #231815;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .about-s2__title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

.about-s2__grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 24px auto;
  max-width: 800px;
}

@media (max-width: 1024px) {
  .about-s2__grid-1 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .about-s2__grid-1 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.about-s2__grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 0px auto;
  max-width: 1100px;
}

@media (max-width: 1024px) {
  .about-s2__grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .about-s2__grid-2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.about-s2__grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .about-s2__grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .about-s2__grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.about-s2__grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .about-s2__grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .about-s2__grid-4 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.about-s2__card {
  background-color: #ffffff;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.about-s2__card-caption {
  font-size: 20px;
  font-weight: bold;
  color: #231815;
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #F75307;
}

.about-s2__card-text {
  text-align: center;
  font-size: 21px;
}

.about-s2__card-text span {
  font-size: 16px;
}

.about-s2__card-text_left {
  text-align: left;
  font-size: 21px;
  margin-bottom: 20px;
  padding-left: 1em;
}

.about-s2__card-text_icon {
  width: 1.2em;
  font-size: 0.75em;
  vertical-align: middle;
  display: inline-block;
}

.about-s2__card-text_left-note {
  font-size: 16px;
}

.about-s2__card-text_left-top {
  display: inline-block;
  text-indent: -1em;
}

.about-s2__card-chart {
  padding: 16px 0;
  margin: 0 auto;
  width: 100%;
  max-width: 180px;
}

.about-s2__card-image {
  margin-top: auto;
  margin-bottom: auto;
}

.about-s2__card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-s2__note {
  font-size: 14px;
  text-align: right;
}

/* JS Pie Chart specific */
.js-pie-chart {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.pie-chart__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.pie-chart__overlay {
  position: absolute;
  top: -1%;
  left: -1%;
  width: 102%;
  height: 102%;
  transform: rotate(-90deg);
  pointer-events: none;
}

.pie-chart__overlay circle {
  fill: none;
  stroke: #ffffff;
  stroke-width: 33;
  stroke-dasharray: 101;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.2, 0, 0.2, 1);
  transform: translateZ(0);
}

.js-pie-chart.is-animated .pie-chart__overlay circle {
  stroke-dashoffset: -101;
}

/* iOS Hack: iPhoneのマイナス値アニメーション */
@supports (-webkit-touch-callout: none) {
  .pie-chart__overlay {
    transform: rotate(90deg) scaleX(-1);
  }

  .js-pie-chart.is-animated .pie-chart__overlay circle {
    stroke-dashoffset: 101;
  }
}

.pie-chart__labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.pie-chart__label {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  color: #231815;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.5s ease 1.2s;
  /* reveals after pie animate */
}

.js-pie-chart.is-animated .pie-chart__label {
  opacity: 1;
}

/* ============================================
   What's Bullets Section 3 (about.html)
============================================ */
.bg_white_cylinder {
  position: relative;
  background-color: #ffffff;
  padding: 120px 0;
  overflow: hidden;
  z-index: 1;
}

.bg_white_cylinder::before,
.bg_white_cylinder::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 480px;
  height: 480px;
  background: url('../images/bg_pattern_cylinder.png') center/contain no-repeat;
  z-index: -1;
}

.bg_white_cylinder::before {
  left: 0;
  top: 0;
  transform: translate(-50%, -20%);
}

.bg_white_cylinder::after {
  right: 0;
  top: auto;
  bottom: 0;
  transform: translate(50%, 20%);
}

@media (max-width: 767px) {

  .bg_white_cylinder::before,
  .bg_white_cylinder::after {
    width: 280px;
    height: 280px;
  }
}

.layout__style03 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .layout__style03 {
    padding: 0 20px;
  }
}

.about-s3__title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  color: #231815;
  margin-bottom: 60px;
}

.about-s3__image figure{
  text-align: center;
}
.about-s3__image-main {
  max-width: 450px;
  width: 60%;
  margin: 0 auto;
}

.about-s3__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.about-s3__item {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 60px;
}

@media (max-width: 767px) {
  .about-s3__list {
    gap: 42px;
  }
  .about-s3__item {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
}

.about-s3__dt {
  flex: 1;
  position: relative;
  background-color: #ffffff;
  border: 2px dotted #f75307;
  border-radius: 9999px;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #231815;
  box-sizing: border-box;
}

.about-s3__arrow {
  position: absolute;
  right: -54px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-s3__arrow svg {
  width: 40px;
  height: 24px;
}

@media (max-width: 767px) {
  .about-s3__dt {
    padding: 20px;
    font-size: 16px;
    width: 100%;
    min-height: 80px;
  }

  .about-s3__arrow {
    right: 50%;
    top: auto;
    bottom: -38px;
    transform: translate(50%, 0) rotate(90deg);
  }
}

.about-s3__dd {
  flex: 1;
  width: 100%;
  display: flex;
}

.about-s3__link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f75307;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 9999px;
  padding: 24px 40px;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.about-s3__link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(247, 83, 7, 0.3);
}

@media (max-width: 767px) {
  .about-s3__link {
    padding: 20px;
    font-size: 16px;
  }
}

.about-s3__more {
  text-align: center;
  margin-top: 60px;
}

/* ============================================
   Vision Page (vision.html)
============================================ */
.vision-lead {
  text-align: center;
  margin-top: 40px;
}

.vision-lead img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.vision-s1 {
  padding: 240px 0;
}

@media (max-width: 767px) {
  .vision-lead {
    margin-top: 20px;
  }

  .vision-s1 {
    padding: 100px 0 160px;
  }
}

.vision-s1__content {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 5fr 2fr;
  gap: 20px;
}
.vision-s1__content::after {
  content:'';
  display: block;
}
@media (max-width: 1140px) {
  .vision-s1__content {
    grid-template-columns: 1fr 2fr;
    gap: 20px;
  }
  .vision-s1__content::after {
    display: none;
  }
}

.vision-s1__image{
  margin: 0;
}

@media (max-width: 800px) {
  .vision-s1__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vision-s1__image{
    text-align: center;
    max-width: 300px;
    width: 65%;
    margin: 0 auto;
  }
}

.vision-s1__text {
  font-size: 24px;
  line-height: 2;
  color: #231815;
  font-weight: bold;
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .vision-s1__text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 60px;
  }
}

.vision-s1__cylinder {
  margin: 0 auto;
  position: relative;
  max-width: 928px;
}

.vision-s1__cylinder img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.vision-s1__cylinder ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.vision-s1__cylinder li {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
  max-width: 29%;
}

.vision-s1__cylinder li.cylinder_bullet_1 {
  top: 6%;
  left: 52%;
}

.vision-s1__cylinder li.cylinder_bullet_2 {
  top: 35%;
  left: 2%;
}

.vision-s1__cylinder li.cylinder_bullet_3 {
  top: 35%;
  left: 68%;
}

.vision-s1__cylinder li.cylinder_bullet_4 {
  top: 64%;
  left: 19%;
}

.vision-s1__cylinder li.cylinder_bullet_5 {
  top: 64%;
  left: 52%;
}

/* --- Cylinder Animations --- */
.vision-s1__cylinder.is-animated .cylinder_body {
  animation: cylinderBodyRotate 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.vision-s1__cylinder.is-animated li {
  animation: bulletIn 0.3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.vision-s1__cylinder.is-animated li.cylinder_bullet_1 {
  animation-delay: 1s;
}

.vision-s1__cylinder.is-animated li.cylinder_bullet_2 {
  animation-delay: 1.3s;
}

.vision-s1__cylinder.is-animated li.cylinder_bullet_3 {
  animation-delay: 1.6s;
}

.vision-s1__cylinder.is-animated li.cylinder_bullet_4 {
  animation-delay: 1.9s;
}

.vision-s1__cylinder.is-animated li.cylinder_bullet_5 {
  animation-delay: 2.2s;
}

@keyframes cylinderBodyRotate {
  0% {
    transform: rotate(-720deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes bulletIn {
  0% {
    opacity: 0;
    visibility: visible;
    transform: rotate(-180deg) scale(1.2);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: rotate(0deg) scale(1);
  }
}

/* Vision Section 2 */
.layout__split-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
  gap: 50px 80px;
  padding: 120px 40px;
  align-items: top;
}

@media (max-width: 1024px) {
  .layout__split-equal {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 80px 20px;
  }
}

@media (max-width: 767px) {
  .layout__split-equal {
    grid-template-columns: 1fr;
    padding: 80px 20px;
    gap: 20px;
  }
}

.vision-s2__sub-title {
  font-size: 28px;
  margin-bottom: 2px;
  line-height: 1.4;
  font-weight: bold;
  color: #231815;
  grid-column: 1 / 3;
  order: 0;
}

@media (max-width: 767px) {
  .vision-s2__sub-title {
    font-size: 22px;
  }
}

.vision-s2__img-col {
  margin-bottom: 30px;
}

/* 順序反転用モディファイア */
.vision-s2__split--reverse .vision-s2__text-col {
  order: 2;
}

.vision-s2__split--reverse .vision-s2__img-col {
  order: 3;
}

@media (max-width: 767px) {
  .vision-s2__sub-title {
    order: 1;
    grid-column: auto;
  }

  .vision-s2__split .vision-s2__text-col,
  .vision-s2__split--reverse .vision-s2__text-col {
    order: 2;
  }

  .vision-s2__split .vision-s2__img-col,
  .vision-s2__split--reverse .vision-s2__img-col {
    order: 0;
  }
}

.vision-s2__full-img img {
  width: 100%;
  height: auto;
  display: block;
}


.vision-s2__main-text p {
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.8;
  color: #231815;
}

.vision-message__frame {
  border: 1px solid #f75307;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.8;
  color: #231815;
}

@media (max-width: 767px) {
  .vision-message__frame {
    padding: 20px;
    font-size: 14px;
  }
}

.vision-s2__img-col img {
  width: 100%;
  height: auto;
  border-radius: 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .vision-s2__img-col img {
    border-radius: 30px;
  }
}

/* Works Page */
.bg_orange_flat {
  background: url("../images/orange-bg-flat.jpg") left top/100% auto repeat-y;
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.works-table-area {
  max-width: 1120px;
  border-radius: 8px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 80px;
}

@media (max-width: 767px) {
  .works-table-area {
    padding: 60px 20px;
  }
}

.works-card {
  background-color: #ffffff;
}

.works_title {
  display: inline-block;
  background-color: #f75307;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 9999px;
  margin-bottom: 30px;
  margin-top: 60px;
}

.works_title:first-of-type {
  margin-top: 0;
}

.works_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

.works_table th {
  color: #f75307;
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 2px solid #f75307;
}

.works_table td {
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 16px;
  line-height: 1.6;
  color: #231815;
}

.works_table td:first-child {
  padding-right: 20px;
}

.works_table th:nth-child(1),
.works_table td:nth-child(1) {
  width: 35%;
}

.works_table th:nth-child(2),
.works_table td:nth-child(2) {
  width: 35%;
}

.works_table th:nth-child(3),
.works_table td:nth-child(3) {
  width: 30%;
}

@media (max-width: 767px) {
  .works_table th {
    font-size: 14px;
  }

  .works_table td {
    font-size: 14px;
    padding: 15px 0;
  }

  .works_table th:nth-child(1),
  .works_table td:nth-child(1) {
    width: 30%;
  }

  .works_table th:nth-child(2),
  .works_table td:nth-child(2) {
    width: 40%;
  }

  .works_table th:nth-child(3),
  .works_table td:nth-child(3) {
    width: 30%;
  }
}

/* Company Page */
.overview_table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
  text-align: left;
}

.overview_table th,
.overview_table td {
  padding: 25px 0;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: top;
  line-height: 1.6;
}

.overview_table th {
  width: 150px;
  color: #f75307;
  font-weight: bold;
}

.overview_table td {
  color: #231815;
}

.overview_table td span {
  display: inline-block;
}

@media (max-width: 767px) {
  .overview_table th {
    width: 100px;
    font-size: 14px;
    padding: 15px 0;
  }

  .overview_table td {
    font-size: 14px;
    padding: 15px 0;
  }
}

.company-map {
  margin-top: 60px;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.history-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.history-list li {
  display: inline-block;
  background-color: #FE9B02;
  color: #ffffff;
  padding: 12px 40px;
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 18px;
  /* staggered indentation for visual flair like screenshot */
}

.history-list li:nth-child(2n) {
  margin-left: 5%;
}

.history-list li:nth-child(3n) {
  margin-left: 10%;
}

.history-list li:nth-child(4n) {
  margin-left: 15%;
}

.history-list li:nth-child(5n) {
  margin-left: 20%;
}

@media (max-width: 767px) {
  .history-list li {
    padding: 10px 20px;
    font-size: 14px;
    margin-left: 0 !important;
  }
}

.company-office-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Recruit Info Nav */
.recruit-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.recruit-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f75307;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  min-width: 240px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.recruit-nav__link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .recruit-nav {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 20px 0 20px;
  }

  .recruit-nav__link {
    width: 100%;
    max-width: 240px;
    min-width: auto;
    padding: 4px 12px;
    font-weight: 500;
  }
}

/* Recruit Feature Section */
.recruit-feature {
  background-color: #f75307;
  background: url("../images/orange-bg-flat.jpg") left top/100% auto repeat-y;
  padding: 120px 0;
  color: #ffffff;
}

.recruit-feature__title {
  text-align: center;
  font-size: 32px;
  margin: 0 auto 0px;
  display: block;
  width: fit-content;
  color: #ffffff;
  font-weight: bold;
  position: relative;
  padding-bottom: 24px;
}

.recruit-feature__title span {
  font-size: 64px;
  margin: 0 4px;
  vertical-align: middle;
}

.recruit-feature__title::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #fe9b02;
  border-radius: 999px;
}

.recruit-feature__title-image {
  display: block;
  margin: 0px auto 20px;
  width: 50%;
  max-width: 250px;
}

.recruit-feature__block {
  margin-bottom: 140px;
}

.recruit-feature__block:last-child {
  margin-bottom: 0;
}

.recruit-feature__header {
  background-color: #ffffff;
  color: #f75307;
  padding: 30px 0;
  width: calc(100% - max(0px, (100% - 1250px) / 2));
  /* Padding allowance */
  margin-bottom: 60px;
  box-sizing: border-box;
}

.recruit-feature__header--left {
  margin-right: auto;
  border-top-right-radius: 1000px;
  border-bottom-right-radius: 1000px;
}

.recruit-feature__header--right {
  margin-left: auto;
  border-top-left-radius: 1000px;
  border-bottom-left-radius: 1000px;
}

.recruit-feature__header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.recruit-feature__header--left .recruit-feature__header-inner {
  padding-left: calc(max(0px, (100% - 1102px) / 2));
  /* offset from the edge a bit */
}

.recruit-feature__header--right .recruit-feature__header-inner {
  padding-right: calc(max(0px, (100% - 1102px) / 2));
  /* offset from the edge a bit */
}

@media (max-width: 767px) {
  .recruit-feature__header--left .recruit-feature__header-inner {
    padding-left: 0px;
  }

  .recruit-feature__header--right .recruit-feature__header-inner {
    padding-right: 0px;
  }
}

.recruit-feature__header-icon {
  width: 100px;
  margin-bottom: 20px;
  order: 2;
}

.recruit-feature__header-title {
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 10px;
  order: 1;
}

.recruit-feature__header-lead {
  font-size: 20px;
  line-height: 1.8;
  font-weight: bold;
  color: #231815;
  order: 3;
}

.recruit-feature__main-img {
  max-width: 1200px;
  margin: 0 auto 40px;
  width: 90%;
  border: 4px solid #ffffff;
  box-sizing: border-box;
}

.recruit-feature__main-img img {
  width: 100%;
  height: auto;
  display: block;
}

.recruit-feature__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
}

.recruit-feature__card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 40px 30px;
  color: #231815;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.recruit-feature__card-title {
  color: #f75307;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.4;
  height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruit-feature__card-img {
  margin-bottom: 24px;
}

.recruit-feature__card-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.recruit-feature__card-text {
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
}

@media (max-width: 1100px) {
  .recruit-feature__header-title {
    font-size: 32px;
  }

  .recruit-feature__title::after {
    width: 90%;
  }
}

@media (max-width: 767px) {
  .recruit-feature {
    padding: 80px 0;
  }

  .recruit-feature__title {
    font-size: 24px;
    margin-bottom: 0px;
  }

  .recruit-feature__title span {
    font-size: 40px;
  }

  .recruit-feature__header {
    padding: 40px 20px;
  }

  .recruit-feature__header--left,
  .recruit-feature__header--right {
    border-radius: 0;
    text-align: center;
    padding: 40px 20px;
  }

  .recruit-feature__header--left .recruit-feature__header-inner,
  .recruit-feature__header--right .recruit-feature__header-inner {
    align-items: center;
  }

  .recruit-feature__header-title {
    font-size: 28px;
  }

  .recruit-feature__header-lead {
    font-size: 16px;
  }

  .recruit-feature__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .recruit-feature__card {
    padding: 30px 20px;
  }
}

/* Recruit Interview Section */
.recruit-interview {
  padding: 120px 0;
  background-color: #ffffff;
  text-align: center;
}

.recruit-interview__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

@media (max-width: 767px) {
  .recruit-interview__inner {
    padding: 0 40px;
  }
}

.recruit-interview__title {
  text-align: center;
  font-size: 32px;
  margin: 0 auto 20px;
  display: block;
  width: fit-content;
  color: #f75307;
  font-weight: bold;
  position: relative;
  padding-bottom: 24px;
  line-height: 1.1;
}

.recruit-interview__title span {
  font-size: 64px;
  margin: 0 4px;
  vertical-align: middle;
}

.recruit-interview__title::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: #fe9b02;
  border-radius: 999px;
}

.recruit-interview__lead {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  color: #231815;
  margin-bottom: 80px;
}

.recruit-interview__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-bottom: 100px;
  align-items: flex-start;
}

@media screen and (max-width: 1024px) {
  .recruit-interview__grid {
    display: grid;
    /* 幅が許す限り300pxのカラムを並べ、全体を中央寄せにする */
    grid-template-columns: repeat(auto-fit, 300px);
    justify-content: center;
    gap: 20px;
  }
}

.recruit-interview__card {
  display: block;
  text-decoration: none;
  color: #231815;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.recruit-interview__card:hover {
  transform: scale(1.05) translateY(-10px);
}

.recruit-interview__card:nth-child(even) {
  margin-top: 100px;
}

.recruit-interview__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 20px;
}

.recruit-interview__circle {
  width: 100%;
  height: 100%;
  transition: filter 0.3s ease;
}

.recruit-interview__card:hover .recruit-interview__circle {
  filter: brightness(1.1);
}

.recruit-interview__person {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: auto;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.recruit-interview__card:hover .recruit-interview__person {
  transform: translateX(-50%) scale(1.1);
}

.recruit-interview__name {
  font-size: 18px;
  font-weight: bold;
}

.recruit-btn-wrap {
  margin-top: 60px;
}

.recruit-btn {
  display: inline-block;
  background-color: #f75307;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  padding: 16px 60px;
  border-radius: 9999px;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.recruit-btn:hover {
  opacity: 0.85;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(247, 83, 7, 0.2);
}

@media (max-width: 1024px) {
  .recruit-interview__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* これで2個の時も中央に寄る */
    gap: 20px;
  }

  .recruit-interview__grid.recruit-interview__card {
    /* 3カラムをシミュレート (隙間を考慮した計算) */
    width: calc((100% - (20px * 2)) / 3);
  }


  .recruit-interview__card:nth-child(2) {
    margin-top: 0px;
  }

  .recruit-interview__card:nth-child(4) {
    margin-top: 0px;
  }

  .recruit-interview__card:nth-child(3),
  .recruit-interview__card:nth-child(5) {
    margin-top: 0px;
  }
}

@media (max-width: 767px) {
  .recruit-interview__inner {
    padding: 0 20px;
  }

  .recruit-interview__title {
    font-size: 24px;
  }

  .recruit-interview__title span {
    font-size: 40px;
  }

  .recruit-interview__lead {
    font-size: 18px;
  }

  /*   .recruit-interview__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .recruit-interview__card:nth-child(even) {
    margin-top: 0;
  }

  .recruit-interview__card:nth-child(n) {
    margin-top: 0;
  } */

  .recruit-btn {
    width: 100%;
    padding: 16px 20px;
    box-sizing: border-box;
  }
}

/* Recruit Open College Section */
.recruit-opencollege {
  text-align: center;
  color: #231815;
}

.recruit-opencollege__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 767px) {
  .recruit-opencollege__inner {
    padding: 0 10px;
  }
}

.recruit-opencollege__title {
  font-size: 56px;
  font-weight: bold;
  color: #231815;
  margin-bottom: 20px;
}

.recruit-opencollege__lead {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}

.recruit-opencollege__image {
  max-width: 900px;
  margin: 0 auto 40px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
}

.recruit-opencollege__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 40px;
}

.recruit-opencollege__lead2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .recruit-opencollege__title {
    font-size: 32px;
  }

  .recruit-opencollege__lead,
  .recruit-opencollege__lead2 {
    font-size: 18px;
  }

  .recruit-opencollege__image {
    width: 100%;
  }

  .recruit-opencollege__image img {
    border-radius: 20px;
  }
}

/* Recruit Results Section */
.recruit-results__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  width: 94%;
  margin: 0 auto;
}

.recruit-results__col--left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.recruit-results__col--right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 100px;
}

.recruit-results__card {
  background-color: #ffffff;
  border: 2px solid #f75307;
  border-radius: 24px;
  overflow: hidden;
  text-align: left;
}

.recruit-results__card-header {
  background-color: #f75307;
  color: #ffffff;
  padding: 8px 24px;
  display: inline-block;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 0 16px 0;
}

.recruit-results__card-body {
  padding: 24px;
}

.recruit-results__lead {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  color: #231815;
  margin-bottom: 60px;
}

.recruit-results__list-text {
  font-size: 16px;
  line-height: 2;
  color: #231815;
  word-break: break-all;
}

@media (max-width: 767px) {
  .recruit-results__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .recruit-results__col--right {
    padding-top: 0;
  }

  .recruit-results__card-header {
    font-size: 18px;
  }

  .recruit-results__lead {
    font-size: 18px;
    margin-bottom: 40px;
  }
}

/* Recruit Images Section */
.recruit-images {
  padding: 0;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.recruit-images__row {
  display: flex;
  align-items: flex-end;
  width: 100%;
  gap: 0;
  margin-bottom: 0;
}

.recruit-images__row:nth-child(2) {
  align-items: flex-start;
}

.recruit-images__item {
  position: relative;
}

/* Image 1 (15.png) */
.recruit-images__item--15 {
  width: 33%;
  flex: none;
  margin-left: 0;
}

.recruit-images__img-wrap--15 img {
  border-radius: 0;
}

/* Image 2 (16.png) */
.recruit-images__item--16 {
  width: 62%;
  flex: none;
  margin-left: auto;
  /* Push to right */
  margin-right: -40px;
}


.recruit-images__img-wrap--16 img {
  border-radius: 60px;
}

/* Row 2 */
/* Image 3 (17.png) */
.recruit-images__item--17 {
  width: 55%;
  flex: none;
  margin-left: 0;
  margin-top: 20px;
}



.recruit-images__img-wrap--17 img {
  border-radius: 0px;
  width: 100%;
  height: auto;
}

/* Image 4 (18.png) */
.recruit-images__item--18 {
  width: 28%;
  flex: none;
  margin-left: auto;
  margin-top: 20px;
  margin-right: 60px;
}

.recruit-images__img-wrap--18 {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.recruit-images__img-wrap--18 img {
  border-radius: 50%;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.recruit-images__links {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 120px 0;
}

@media (max-width: 1200px) {

  .recruit-images__item--15 {
    margin-left: -10px;
  }

  .recruit-images__item--16 {
    margin-right: -40px;
  }

  .recruit-images__item--17 {
    margin-left: -10px;
    margin-top: 10px;
  }

  .recruit-images__item--18 {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .recruit-images {
    padding: 0px 0 60px;
    overflow: hidden;
  }

  .recruit-images__row {
    margin-bottom: 0;
  }

  .recruit-images__item {
    max-width: none;
    flex: none;
  }

  /* Staggered alignment & overlap */
  .recruit-images__item--15 {
    width: 34%;
    margin-right: auto;
    margin-left: 0;
  }

  .recruit-images__item--16 {
    margin-left: auto;
    margin-right: 0;
  }

  .recruit-images__item--17 {
    margin-right: auto;
    margin-left: 0;
    margin-top: -40px;
    width: 55%;
  }

  .recruit-images__item--18 {
    margin-left: auto;
    margin-right: 0;
    margin-top: -40px;
    width: 50%;
  }

  .recruit-images__img-wrap--17 img {
    height: auto;
  }

  .recruit-images__img-wrap--18 {
    width: 60%;
    height: auto;
    aspect-ratio: 1/1;
  }

  .recruit-images__links {
    flex-direction: column;
    padding: 60px 20px;
    gap: 20px;
  }
}

/* Reusable Recruit Sub Header */
.recruit-sub-header {
  background-color: #e4e4e4;
  padding: 65px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.recruit-sub-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 40px;
}

.recruit-sub-header__title {
  color: #f75307;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 24px;
  display: block;
}


@media (max-width: 767px) {
  .recruit-sub-header {
    padding: 60px 0 5px;
  }

  .recruit-sub-header__inner {
    padding: 0 5%;
  }

  .recruit-sub-header__title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}


.recruit-sub-header__lead {
  color: #f75307;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.4;
}

.recruit-sub-header__deco {
  position: absolute;
  top: 10%;
  /* Moved slightly up from 50% */
  left: 6px;
  transform: translateY(-50%);
  width: 420px;
  z-index: 10;
  pointer-events: none;
}

@media (max-width: 767px) {
  .recruit-sub-header__lead {
    font-size: clamp(20px, 10vw, 48px);
    ;
  }

  .recruit-sub-header__deco {
    width: 100px;
    top: 5%;
  }

}

.recruit-sub-header__deco img {
  width: 100%;
  height: auto;
  display: block;
}

/* Background Variations */
.bg_orange_diagonal--gray {
  position: relative;
  background: url(../images/orange-bg-flat.jpg) no-repeat center center / cover;
  z-index: 1;
  /* Low z-index to ensure header deco stays on top */
}

.bg_orange_diagonal--gray::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,0 100,0 100,100' fill='%23e4e4e4'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

.bg_orange_diagonal--gray::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,0 0,100 100,100' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}

/* Interview Section */
.interview-section {
  padding: 140px 0;
}

.opencompany .interview-section {
  padding: 100px 0 60px;
}

.interview-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.interview-profile {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .interview-section__inner {
    padding: 0 5%;
  }

  .interview-profile {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

}

.interview-profile__img {
  max-width: 420px;
  margin: 0 auto;
}

.interview-profile__img img {
  width: 100%;
  height: auto;
  display: block;
}

.interview-profile__card {
  background-color: #f47108;
  border-radius: 0;
  overflow: hidden;
  color: #fff;
}

.interview-profile__item {
  margin-bottom: 30px;
}

.interview-profile__header {
  padding: 30px 40px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 30px;
  /* Added margin */
}

.interview-profile__job {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
  line-height: 1;
}

.interview-profile__name {
  font-size: 32px;
  font-weight: bold;
}

.interview-profile__name span {
  font-size: 60%;
}

.interview-profile__body {
  padding: 0 40px 40px;
}

.interview-profile__subtitle {
  background-color: #fe9b02;
  color: #fff;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}

.interview-profile__text {
  background-color: #fff;
  /* White background */
  color: #231815;
  /* Dark text for readability */
  padding: 24px;
  border-radius: 24px;
  /* Rounded corners */
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.interview-profile__text:last-child {
  margin-bottom: 0;
}

/* Message Area */
.interview-message {
  background-color: #fff;
  border-radius: 40px;
  padding: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .interview-message {
    padding: 30px 20px;
  }
}

.interview-message__title {
  color: #f75307;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
  font-family: 'Outfit', sans-serif;
}

.interview-message__text {
  font-size: 18px;
  line-height: 2;
  color: #231815;
}



.interview-profile--reverse {
  grid-template-areas: "card img";
}

.interview-profile--reverse .interview-profile__img {
  grid-area: img;
}

.interview-profile--reverse .interview-profile__card {
  grid-area: card;
}

@media (max-width: 1024px) {
  .interview-profile--reverse {
    grid-template-areas: "img" "card";
  }
}

@media (max-width: 767px) {
  .interview-section {
    padding: 60px 0 90px;
  }

  .bg_white_cylinder--gray .interview-section__inner::before,
  .bg_white_cylinder--gray .interview-section__inner::after {
    width: 280px;
    height: 280px;
  }

  .bg_white_cylinder--gray .interview-section__inner::before {
    left: -140px;
  }

  .bg_white_cylinder--gray .interview-section__inner::after {
    right: -140px;
  }

  .interview-profile__header {
    padding: 20px;
  }

  .interview-profile__name {
    font-size: 24px;
  }

  .interview-profile__body {
    padding: 0 20px 20px;
  }

  .interview-message__title {
    font-size: 32px;
  }

  .interview-message__text {
    font-size: 16px;
  }
}

/* Interview Full Width Image Section */
.interview-full-width-image {
  margin: 0 0 100px;
  width: 100%;
}

.interview-full-width-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Interview Talk Section */
.interview-talk {
  padding: 100px 0 0;
  text-align: center;
}

.interview-talk__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.interview-talk__img {
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.interview-talk__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Chat Timeline Section */
.chat-timeline {
  padding: 80px 0;
}

.chat-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.chat-item--left {
  flex-direction: row;
}

.chat-item--right {
  flex-direction: row-reverse;
}

.chat-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.chat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-content {
  max-width: 70%;
  margin: 0 20px;
}

.chat-bubble {
  position: relative;
  background-color: #ffd28d;
  padding: 16px 24px;
  border-radius: 20px;
  font-size: 18px;
  line-height: 1.6;
  color: #231815;
  font-weight: bold;
}
.chat-stamp img {
  max-width: 400px;
  width: 80%;
  display: inline-block;
}
.chat-item--left .chat-stamp {
  text-align: left;
}
.chat-item--right .chat-stamp {
  text-align: right;
}

.chat-item--left .chat-bubble {
  background-color: #f0b354;
}

.chat-item--left .chat-bubble::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -12px;
  border-style: solid;
  border-width: 8px 12px 8px 0;
  border-color: transparent #f0b354 transparent transparent;
}

.chat-item--right .chat-bubble::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -12px;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #ffd28d;
}

@media (max-width: 767px) {
  .chat-icon {
    width: 60px;
    height: 60px;
  }

  .chat-bubble {
    font-size: 15px;
    padding: 12px 16px;
  }

  .chat-content {
    max-width: 80%;
    margin: 0 12px;
  }
}

.recruit-opencollege__inner {
  text-align: center;
}

/* Recruit Open College Info Box */
.recruit-opencollege__info-box {
  background-color: #ffffff;
  border-radius: 40px;
  padding: 60px 80px;
  margin-top: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.recruit-opencollege__lead2 {
  font-size: 28px;
  font-weight: bold;
  color: #231815;
  text-align: center;
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 20px;
  margin-bottom: 30px;
  line-height: 1.4;
}

.recruit-opencollege__info-text {
  font-size: 18px;
  line-height: 1.8;
  color: #231815;
}

@media (max-width: 767px) {
  .recruit-opencollege__info-box {
    border-radius: 20px;
    padding: 30px 20px;
    margin-top: 40px;
  }

  .recruit-opencollege__lead2 {
    font-size: 20px;
    padding-bottom: 15px;
    margin-bottom: 20px;
  }

  .recruit-opencollege__info-text {
    font-size: 15px;
  }
}

/* Open College Program Section */
.opencollege-program {
  background-color: #ffffff;
  padding: 60px 0 80px;
}

.opencollege-program__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.opencollege-program__header {
  background-color: #f75307;
  padding: 2px 40px 4px;
  margin-bottom: 60px;
}

.opencollege-program__title {
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  margin: 0;
}

.opencollege-program__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.opencollege-program__subtitle {
  font-size: 38px;
  font-weight: bold;
  color: #f75307;
  border-bottom: 2px solid #f75307;
  display: inline-block;
  margin-bottom: 30px;
  line-height: 1.2;
}

.opencollege-program__text {
  font-size: 18px;
  line-height: 1.8;
  color: #231815;
}

.opencollege-program__schedule {
  border-top: 1px solid #f75307;
}

.opencollege-program__item {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid #f75307;
  font-size: 20px;
  color: #231815;
}

.opencollege-program__time {
  width: 180px;
  font-weight: bold;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .opencollege-program__grid {
    gap: 40px;
  }

  .opencollege-program__subtitle {
    font-size: 32px;
  }
}

@media (max-width: 820px) {
  .opencollege-program__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .opencollege-program {
    padding: 60px 0;
  }

  .opencollege-program__inner {
    padding: 0 5%;
  }

  .opencollege-program__header {
    padding: 15px 20px;
    margin-bottom: 40px;
  }

  .opencollege-program__title {
    font-size: 24px;
  }

  .opencollege-program__subtitle {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .opencollege-program__item {
    font-size: 16px;
    padding: 15px 0;
  }

  .opencollege-program__time {
    width: 130px;
  }
}

/* Open College Report Section */
.opencollege-report {
  background-color: #ffffff;
  padding-bottom: 100px;
}

.opencollege-report__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.opencollege-report__item {
  margin-bottom: 80px;
}

.opencollege-report__img-full img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.opencollege-report__img-full img.sp_only {
  display: none;
}

@media (max-width: 767px) {
  .opencollege-report__inner {
    padding: 0 5%;
  }

  .opencollege-report__img-full img.pc_only {
    display: none;
  }

  .opencollege-report__img-full img.sp_only {
    display: block;
    width: 40%;
    margin: 0 auto;
  }
}

.opencollege-report__text {
  margin-top: 25px;
  font-size: 18px;
  line-height: 1.8;
  color: #231815;
}

.opencollege-report__grid {
  display: grid;
  gap: 60px;
  align-items: stretch;
}

.opencollege-report__grid--840-310 {
  grid-template-columns: 840fr 310fr;
}

.opencollege-report__grid--720-390 {
  grid-template-columns: 720fr 390fr;
}

.opencollege-report__grid--col3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.opencollege-report__img-wrapper {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.opencollege-report__img-wrapper img {
  position: relative;
  z-index: 2;
  border-radius: 40px;
}

.opencollege-report__img-circle img {
  border-radius: 50%;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.opencollege-report__img-rect img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
}

.opencollege-report__img-fit {
  height: 100%;
}

.opencollege-report__img-fit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 1024px) {
  .opencollege-report__grid {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .opencollege-report__grid {
    gap: 8px;
  }

  .opencollege-report__item {
    margin-bottom: 40px;
  }

  .opencollege-report__text {
    font-size: 15px;
    margin-top: 25px;
  }

  .opencollege-report__img-wrapper::before {
    border-radius: 30px;
  }
}

/* Open College Link Section */
.opencollege-link {
  padding: 100px 0;
}

.opencollege-link__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 767px) {
  .opencollege-link {
    padding: 60px 0;
  }
}

/* Recruit Table */
.recruit_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 60px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  overflow: hidden;
}

.recruit_table th {
  width: 200px;
  background-color: #f75307;
  color: #ffffff;
  padding: 30px 40px;
  text-align: left;
  vertical-align: top;
  font-size: 18px;
  border-bottom: 1px solid #ffffff;
}

.recruit_table td {
  padding: 30px 40px;
  border-bottom: 1px solid #e4e4e4;
  font-size: 16px;
  line-height: 1.8;
  color: #231815;
}

.recruit_table tr:last-child th,
.recruit_table tr:last-child td {
  border-bottom: none;
}

/* Nested Table in Salary */
.recruit_table td table {
  margin-bottom: 15px;
}

.recruit_table td table td {
  padding: 10px 0;
  border: none;
  background: transparent;
}

/* Entry Button */
.recruit_btn-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.recruit_btn-wrap::before {
  content: '';
  display: block;
}
.recruit_btn-icon {
  max-width: 200px;
}
.recruit_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f75307;
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  text-decoration: none;
  border-bottom: 10px solid #b33e05;
  position: relative;
  transition: all 0.2s ease;
  animation: btnPulse 2s infinite ease-in-out;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1.2;
}

.recruit_btn:hover {
  transform: translateY(-2px);
  opacity: 1;
  border-bottom-width: 8px;
  box-shadow: 0 15px 40px rgba(247, 83, 7, 0.4);
  color: #ffffff;
}

.recruit_btn:active {
  transform: translateY(8px);
  border-bottom-width: 2px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

@keyframes btnPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 10px 20px rgba(247, 83, 7, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(247, 83, 7, 0.5);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 10px 20px rgba(247, 83, 7, 0.3);
  }
}

@media (max-width: 1024px) {
  .recruit_table th {
    width: 160px;
    padding: 20px 25px;
  }

  .recruit_table td {
    padding: 20px 25px;
  }

  .recruit_btn {
    width: 200px;
    height: 200px;
    font-size: 24px;
    border-bottom-width: 8px;
  }
}

/* Custom swing animation for recruit_btn-icon */
@keyframes swing {
  0%, 100% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
}

.recruit_btn-icon img {
  transform-origin: bottom center;
}

.recruit_btn-icon.aos-animate img {
  animation: swing 4s ease-in-out infinite;
}

@media (max-width: 767px) {

  .recruit_table th,
  .recruit_table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .recruit_table th {
    padding: 15px 20px;
    font-size: 16px;
  }

  .recruit_table td {
    padding: 15px 20px;
    font-size: 15px;
  }

  .recruit_table td table td {
    display: block;
    padding: 5px 0;
  }

  .recruit_btn {
    width: 140px;
    height: 140px;
    font-size: 20px;
    border-bottom-width: 6px;
    box-sizing: border-box;
  }

  .recruit_btn:active {
    transform: translateY(5px);
    border-bottom-width: 1px;
  }
}

@media (max-width: 480px) {
  .recruit_btn-wrap {
    gap: 0;
  }
  .recruit_btn {
    width: 30vw;
    height: 30vw;
    font-size: 5vw;
    border-bottom-width: 6px;
    box-sizing: border-box;
  }
}
/* Utilities */
.txt-c {
  text-align: center !important;
}

/* Contact Page Styles */
.page__title_box {
  text-align: center;
  margin-bottom: 80px;
}

.page__title_box span {
  display: block;
  font-size: 14px;
  color: #f75307;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.page__title_box h2 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #231815;
}

.page__title_box p {
  font-size: 18px;
  color: #888;
}

.formwrap {
  max-width: 900px;
  width: 94%;
  margin: 0 auto;
}

.formtable {
  width: 100%;
  border-collapse: collapse;
}

.formtable th {
  width: 280px;
  text-align: left;
  padding: 30px 20px 30px 0;
  border-bottom: 1px solid #eeeeee;
  vertical-align: top;
  font-size: 16px;
  font-weight: bold;
}

.formtable td {
  padding: 25px 0;
  border-bottom: 1px solid #eeeeee;
}

.formtable input[type="text"],
.formtable input[type="email"],
.formtable input[type="tel"],
.formtable textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
  background-color: #fafafa;
  transition: all 0.3s ease;
}

.formtable input:focus,
.formtable textarea:focus {
  border-color: #f75307;
  outline: none;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(247, 83, 7, 0.1);
}

.inquiry {
  color: #f75307;
  margin-left: 5px;
  font-size: 14px;
}

.formtable label {
  display: inline-block;
  margin-right: 30px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 16px;
}

.formtable input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
  cursor: pointer;
}

/* Form Buttons */
.form-btn-wrap {
  text-align: center;
  margin-top: 100px;
  padding-bottom: 120px;
}

.formwrap input[type="submit"] {
  background-color: #f75307;
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
  padding: 20px 100px;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(247, 83, 7, 0.2);
}

.formwrap input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(247, 83, 7, 0.3);
  opacity: 0.9;
}

.formwrap input[type="reset"],
.formwrap input[type="button"] {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #666666;
  font-size: 18px;
  font-weight: bold;
  padding: 18px 50px;
  border-radius: 9999px;
  margin-left: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.formwrap input[type="reset"]:hover,
.formwrap input[type="button"]:hover {
  background-color: #f8f8f8;
  color: #231815;
  border-color: #bbbbbb;
}

@media (max-width: 767px) {
  .page__title_box h2 {
    font-size: 32px;
  }

  .formtable th,
  .formtable td {
    display: block;
    width: 100%;
    border-bottom: none;
  }

  .formtable th {
    padding: 20px 0 10px;
  }

  .formtable td {
    padding: 0 0 20px;
    border-bottom: 1px solid #eeeeee;
  }

  .formwrap input[type="submit"] {
    width: 100%;
    padding: 18px 20px;
    font-size: 20px;
  }

  .formwrap input[type="reset"] {
    display: block;
    width: 100%;
    margin: 20px auto 0;
    padding: 15px 20px;
    font-size: 16px;
  }

  .form-btn-wrap {
    margin-top: 60px;
    padding-bottom: 80px;
  }
}

/* Privacy Policy Page */
.privacy-policy {
  padding: 100px 0;
  background-color: #ffffff;
}

.privacy-policy__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}

.privacy-policy .page__title_box {
  margin-bottom: 60px;
}

.privacy-policy h2 {
  font-size: 32px;
  font-weight: bold;
  color: #231815;
  text-align: center;
  margin-bottom: 40px;
}

.privacy-policy p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
}

.privacy-policy h3 {
  font-size: 18px;
  font-weight: bold;
  color: #231815;
  background-color: #fafafa;
  padding: 15px 20px;
  border-left: 4px solid #f75307;
  margin-top: 50px;
  margin-bottom: 25px;
}

@media (max-width: 767px) {
  .privacy-policy {
    padding: 60px 0;
  }

  .privacy-policy__inner {
    padding: 0 25px;
  }

  .privacy-policy h2 {
    font-size: 24px;
  }

  .privacy-policy h3 {
    font-size: 16px;
    padding: 12px 15px;
    margin-top: 40px;
  }

  .privacy-policy p {
    font-size: 15px;
  }
}

/* ============================================
   Custom AOS Animations
============================================ */
[data-aos="flip-card"] {
  transform: perspective(1000px) rotateY(180deg);
  opacity: 0;
  transition-property: transform, opacity;
  backface-visibility: hidden;
}

[data-aos="flip-card"].aos-animate {
  animation: flipToFront 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 1;
}

@keyframes flipToFront {
  0% {
    transform: perspective(1000px) rotateY(180deg);
  }

  100% {
    transform: perspective(1000px) rotateY(0deg);
  }
}

/* ぴょこん（bounce-up）アニメーション */
[data-aos="bounce-up"] {
  transform: translateY(100px) scale(0.8);
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos="bounce-up"].aos-animate {
  animation: bounceUpAnimation 1.0s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  opacity: 1;
}

@keyframes bounceUpAnimation {
  0% {
    transform: translateY(100px) scale(0.8);
    opacity: 0;
  }

  60% {
    transform: translateY(-20px) scale(1.05);
    opacity: 1;
  }

  80% {
    transform: translateY(10px) scale(0.95);
  }

  100% {
    transform: translateY(0) scale(1);
  }
}

/* ============================================
   News Detail Page
============================================ */
.news-detail {
  padding: 60px 0 100px;
  background-color: #fff;
}

.news-detail__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.news-detail__header {
  border-bottom: 2px solid #f75307;
  padding-bottom: 20px;
  margin-bottom: 40px;
}

.news-detail__date {
  font-size: 16px;
  color: #888;
  display: block;
  margin-bottom: 10px;
  font-family: "Outfit", sans-serif;
}

.news-detail__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: #231815;
}

.news-detail__body {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 60px;
}

.news-detail__body p {
  margin-bottom: 1em;
}

.news-detail__body figure {
  margin-bottom: 1em;
}

.news-detail__footer {
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 40px;
}

.btn-back {
  display: inline-block;
  padding: 15px 40px;
  background-color: #231815;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #231815;
}

.btn-back:hover {
  background-color: #fff;
  color: #231815;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .news-detail {
    padding: 40px 0 60px;
  }

  .news-detail__title {
    font-size: 24px;
  }

  .news-detail__body {
    font-size: 16px;
  }
}