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

body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

/* ヘッダー */
.header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-image {
  width: 120px;
  height: auto;
  transition: all 0.4s ease;
  filter: drop-shadow(0 4px 15px rgba(74, 155, 142, 0.3));
  animation: logoFloat 3s ease-in-out infinite;
  cursor: pointer;
}

.logo-image:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 8px 20px rgba(255, 107, 53, 0.5));
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.main-nav ul {
  display: flex;
  gap: 35px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  position: relative;
}

.main-nav a:hover {
  color: #ff6b35;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ff6b35;
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.header-buttons {
  display: flex;
  gap: 15px;
}

/* ハンバーガーメニュー */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* モバイルナビゲーション */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav.active {
  max-height: 400px;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav ul li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav ul li:last-child {
  border-bottom: none;
}

.mobile-nav ul li a {
  display: block;
  padding: 16px 24px;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-nav ul li a:hover {
  background: #f8f9fa;
  color: #ff6b35;
  padding-left: 32px;
}

/* ボタン */
.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-search {
  background-color: #fff;
  color: #ff6b35;
  border: 2px solid #ff6b35;
}

.btn-search:hover {
  background-color: #ff6b35;
  color: #fff;
}

.btn-contact {
  background-color: #ff6b35;
  color: #fff;
}

.btn-contact:hover {
  background-color: #e65a2a;
}

.btn-large {
  padding: 15px 50px;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

/* 送信ボタンのホバー効果 */
.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* 送信ボタンのアクティブ状態 */
.btn-large:active {
  transform: translateY(0);
}

/* 無効化（disabled）のスタイル - 未入力時 */
.btn-large:disabled:not(.submitting) {
  background: #d0d0d0;
  color: #888;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.btn-large:disabled:not(.submitting):hover {
  transform: none;
  box-shadow: none;
}

/* 送信中のスタイル */
.btn-large.submitting {
  background: linear-gradient(90deg, #ff6b35 0%, #ff8c5a 50%, #ff6b35 100%);
  background-size: 200% 100%;
  animation: buttonLoading 1.5s ease-in-out infinite;
  cursor: not-allowed;
  opacity: 0.9;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

@keyframes buttonLoading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.btn-center {
  display: block;
  margin: 40px auto 0;
  max-width: 300px;
}

.btn-arrow {
  position: relative;
  padding-left: 20px;
}

.btn-arrow::before {
  content: '→';
  position: absolute;
  left: 0;
  transition: left 0.3s ease;
}

.btn-arrow:hover::before {
  left: 5px;
}

.btn-dark {
  background-color: #333;
  color: #fff;
}

.btn-dark:hover {
  background-color: #555;
}

/* ヒーローセクション */
.hero {
  padding: 150px 20px;
  position: relative;
  overflow: hidden;
}

.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-bg-slide.active {
  opacity: 1;
}

.hero-bg-slide:nth-child(1) {
  background-image: url('画像/Image_fx.jpg');
}

.hero-bg-slide:nth-child(2) {
  background-image: url('画像/Image_fx (1).jpg');
}

.hero-bg-slide:nth-child(3) {
  background-image: url('画像/Image_fx (2).jpg');
}

.hero-bg-slide:nth-child(4) {
  background-image: url('画像/Image_fx (3).jpg');
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.75);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 42px;
  font-weight: 400;
  line-height: 1.6;
  color: #222;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 30px;
}

.highlight-noa {
  color: #222;
  font-weight: 700;
  font-size: 1.15em;
  position: relative;
  display: inline-block;
  padding: 0 8px;
}

.highlight-noa::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(to right, #fff3e0, #ffe0b2);
  z-index: -1;
  border-radius: 2px;
}

.hero-text {
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  font-weight: 400;
}

.hero-banners {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.recruit-banner {
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
}

.banner-anniversary {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
}

.banner-new {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.banner-career {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.recruit-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* セクション */
.section {
  padding: 100px 20px;
}

.services {
  padding: 0px 20px 5px;
}

.news {
  padding: 50px 20px;
}

.faq {
  padding: 35px 20px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: #ff6b35;
  font-family: 'Noto Serif JP', serif;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%);
  border-radius: 2px;
}

.services .section-title {
  color: #222;
}

.services .section-title::after {
  background: #222;
}

.section-text {
  text-align: center;
  color: #666;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 60px;
  margin-top: 35px;
}

.services .section-text {
  margin-bottom: 10px;
  margin-top: 5px;
}

/* サービスメインカード */
.service-main {
  margin: 60px auto 40px;
  max-width: 800px;
}

.service-main-card {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  border-radius: 30px;
  padding: 60px 50px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-main-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  animation: mainPulse 4s ease-in-out infinite;
}

@keyframes mainPulse {
  0%, 100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1) translate(-10%, -10%);
    opacity: 0.8;
  }
}

.service-main-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(255, 107, 53, 0.4);
}

.service-main-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  color: #fff;
  filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.2));
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  z-index: 1;
}

.service-main-card:hover .service-main-icon {
  transform: scale(1.15) rotate(-5deg);
}

.service-main-icon svg {
  width: 100%;
  height: 100%;
}

.service-main-name {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  font-family: 'Noto Serif JP', serif;
  position: relative;
  z-index: 1;
  letter-spacing: 0.05em;
}

.service-main-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* サービスグリッド */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 10px 0 5px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border: 3px solid #ff6b35;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.2);
}

.service-card-header {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  padding: 25px 30px;
  text-align: center;
}

.service-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  font-family: 'Noto Serif JP', serif;
  margin: 0;
}

.service-card-body {
  padding: 20px 20px;
  background: #fff;
}

.service-icon-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  color: #4a9b8e;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon-image {
  transform: scale(1.1) rotate(5deg);
  color: #ff6b35;
}

.service-icon-image svg {
  width: 100%;
  height: 100%;
}

.service-intro {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e8e8e8;
}

.service-details {
  margin-top: 20px;
}

.service-detail-item {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}

.service-detail-item::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-size: 10px;
  top: 5px;
}

.detail-label {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  display: block;
  margin-bottom: 5px;
}

.detail-text {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

.service-note {
  font-size: 12px;
  color: #888;
  line-height: 1.6;
  margin-top: 20px;
  text-align: left;
}

/* ニュースセクション */
.news {
  background: #f5f0e8;
  position: relative;
  overflow: hidden;
}

.news::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(90deg, rgba(139, 69, 19, 0.03) 0px, transparent 1px, transparent 20px, rgba(139, 69, 19, 0.03) 21px),
    repeating-linear-gradient(0deg, rgba(139, 69, 19, 0.03) 0px, transparent 1px, transparent 20px, rgba(139, 69, 19, 0.03) 21px);
  pointer-events: none;
}

.news::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 15px;
  background: linear-gradient(90deg,
    transparent 0%,
    transparent 2%,
    #8b4513 2%,
    #8b4513 2.5%,
    transparent 2.5%,
    transparent 5%);
  background-size: 40px 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-list {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.news-item {
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 1px solid #f0f0f0;
}

.news-item:last-child {
  border-bottom: none;
}

.news-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 25px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.news-item:hover {
  background: rgba(255, 107, 53, 0.05);
}

.news-item:hover .news-link {
  padding-left: 30px;
}

/* 情報カードセクション */
.info-cards {
  background: #f5f5f5;
  padding: 50px 20px;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.info-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  height: 300px;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.info-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: all 0.4s ease;
}

.info-card:hover .info-card-bg {
  transform: scale(1.05);
}

.info-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 30px;
  color: #fff;
}

.info-card-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Noto Serif JP', serif;
}

.info-card-text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  opacity: 0.95;
}

.info-card-btn {
  display: inline-block;
  background: #ff6b35;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.info-card-btn:hover {
  background: #ff8c42;
  transform: translateX(5px);
}

/* よくある質問セクション */
.faq {
  background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74, 155, 142, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatFaq 12s ease-in-out infinite;
}

.faq::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -8%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatFaq 15s ease-in-out infinite reverse;
}

@keyframes floatFaq {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.7;
  }
  50% {
    transform: translate(-30px, 30px);
    opacity: 1;
  }
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.faq-question {
  font-size: 15px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 12px;
  line-height: 1.6;
}

.faq-answer {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  padding-left: 20px;
}

.news-list {
  margin-bottom: 30px;
}

.news-item {
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.news-date {
  font-size: 13px;
  color: #999;
  font-weight: 600;
  min-width: 90px;
  flex-shrink: 0;
}

.news-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.tag-notice {
  background-color: #ff6b35;
}

.tag-release {
  background-color: #4a90e2;
}

.tag-settlement {
  background-color: #e67e22;
}

.tag-report {
  background-color: #9b59b6;
}

.tag-ir {
  background-color: #e74c3c;
}

.tag-recruit {
  background-color: #27ae60;
}

.news-detail {
  display: block;
  font-size: 13px;
  color: #666;
  margin-top: 8px;
  line-height: 1.7;
}

.news-text {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  flex: 1;
  font-weight: 600;
}

.news-detail {
  display: none;
}

.pdf-label {
  display: inline-block;
  padding: 2px 8px;
  background-color: #e74c3c;
  color: #fff;
  font-size: 10px;
  border-radius: 3px;
  margin-left: 8px;
}

/* 会社情報セクション */
.company-info {
  background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
}

.company-info .section-title,
.company-info .section-text {
  color: #fff;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.info-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.info-card .section-title {
  color: #ff6b35;
  text-align: left;
  font-size: 28px;
  margin-bottom: 15px;
}

.info-card .section-text {
  text-align: left;
  color: #666;
  font-size: 14px;
  margin-bottom: 30px;
}

.info-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* 会社情報セクション */
.company {
  background-color: #f8f9fa;
}

.company-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.company-item {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.company-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
}

.company-label {
  font-size: 14px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 10px;
}

.company-value {
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  font-weight: 300;
}

/* 採用情報セクション */
.recruit {
  background-color: #fff5f0;
}

.recruit-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.recruit-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #ff6b35;
  transition: all 0.3s ease;
}

.recruit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
  border-left-width: 6px;
}

.recruit-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 15px;
  font-family: 'Noto Serif JP', serif;
}

.recruit-card-text {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

/* アクセスセクション */
.access {
  background-color: #fff;
  padding: 60px 20px;
}

.access .section-text {
  margin-bottom: 40px;
}

.access-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 0;
}

.access-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 400px;
}

.access-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.access-item {
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
}

.access-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.access-heading {
  font-size: 14px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 8px;
  font-family: 'Noto Sans JP', sans-serif;
}

.access-text {
  font-size: 14px;
  color: #333;
  line-height: 1.7;
}

/* フッター */
.footer {
  background: linear-gradient(135deg, #6b4423 0%, #4a2f1a 100%);
  color: #fff;
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #f5deb3;
  margin-bottom: 20px;
  font-family: 'Noto Sans JP', sans-serif;
}

.footer-desc {
  font-size: 14px;
  color: #d4c5b0;
  line-height: 1.8;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list li a {
  font-size: 14px;
  color: #c9b89a;
  transition: all 0.3s ease;
  display: block;
}

.footer-links-list li a:hover {
  color: #f5deb3;
  padding-left: 5px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact li {
  font-size: 14px;
  color: #c9b89a;
  line-height: 1.6;
}

.copyright {
  text-align: center;
  font-size: 12px;
  color: #999;
  padding-top: 30px;
}

/* ページトップボタン */
.page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #ff6b35;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 999;
}

.page-top:hover {
  background-color: #e65a2a;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-main-card {
    padding: 50px 40px;
  }

  .service-main-name {
    font-size: 28px;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 15px;
  }

  .main-nav ul {
    gap: 20px;
  }

  .info-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* 基本設定 */
  .container {
    padding: 0 20px;
    max-width: 100%;
  }

  /* ヘッダー */
  .header-inner {
    padding: 12px 20px;
  }

  .logo-image {
    width: 90px;
  }

  .main-nav {
    display: none;
  }

  .header-buttons {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  /* ヒーローセクション */
  .hero {
    padding: 60px 20px;
    min-height: auto;
  }

  .hero-title {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .hero-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .hero-banners {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 30px;
  }

  .recruit-banner {
    width: 100%;
    max-width: 100%;
    padding: 12px 20px;
    font-size: 13px;
    text-align: center;
  }

  /* セクション共通 */
  .section {
    padding: 50px 20px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .section-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
  }

  /* サービスセクション */
  .services {
    padding: 40px 20px 30px;
  }

  .service-main-card {
    padding: 40px 25px;
    border-radius: 20px;
  }

  .service-main-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .service-main-name {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .service-main-description {
    font-size: 14px;
    line-height: 1.7;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px 0;
  }

  .service-card {
    border-radius: 12px;
  }

  .service-card-header {
    padding: 20px;
  }

  .service-card-title {
    font-size: 20px;
  }

  .service-card-body {
    padding: 20px;
  }

  .service-icon-image {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .service-intro {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .service-detail-item {
    margin-bottom: 12px;
    padding-left: 18px;
  }

  .detail-label {
    font-size: 13px;
    margin-bottom: 4px;
  }

  .detail-text {
    font-size: 13px;
    line-height: 1.6;
  }

  .service-note {
    font-size: 11px;
    margin-top: 15px;
  }

  /* ニュースセクション */
  .news {
    padding: 40px 20px;
  }

  .news-list {
    padding: 0;
    border-radius: 8px;
  }

  .news-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 20px;
  }

  .news-date {
    font-size: 12px;
    min-width: auto;
  }

  .news-tag {
    font-size: 10px;
    padding: 3px 10px;
  }

  .news-text {
    font-size: 14px;
    line-height: 1.6;
  }

  /* 情報カード */
  .info-cards {
    padding: 40px 20px;
  }

  .info-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-card {
    height: 250px;
    border-radius: 12px;
  }

  .info-card-content {
    padding: 30px 25px;
  }

  .info-card-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .info-card-text {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .info-card-btn {
    padding: 10px 24px;
    font-size: 13px;
  }

  /* FAQ */
  .faq {
    padding: 40px 20px;
  }

  .faq-item {
    padding: 16px 0;
  }

  .faq-question {
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .faq-answer {
    font-size: 13px;
    line-height: 1.7;
    padding-left: 15px;
  }

  /* アクセス */
  .access {
    padding: 40px 20px;
  }

  .access-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .access-map {
    min-height: 300px;
    border-radius: 8px;
  }

  .access-item {
    padding-bottom: 15px;
  }

  .access-heading {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .access-text {
    font-size: 14px;
    line-height: 1.7;
  }

  /* 会社情報ページ */
  .company.section {
    padding: 40px 20px;
  }

  .company .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .company-info-grid {
    display: block;
    gap: 0;
  }

  .company-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
    padding: 0;
    overflow: hidden;
    border: 1px solid #e8e8e8;
  }

  .company-item:last-child {
    margin-bottom: 0;
  }

  .company-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    border-color: #ff6b35;
  }

  .company-item::before {
    display: none;
  }

  .company-label {
    font-size: 12px;
    padding: 10px 16px;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #fff;
    margin: 0;
    font-weight: 600;
    text-transform: none;
    display: block;
    width: 100%;
  }

  .company-label::before {
    display: none;
  }

  .company-value {
    font-size: 15px;
    padding: 16px;
    line-height: 1.8;
    word-break: normal;
    overflow-wrap: break-word;
    display: block;
    width: 100%;
    color: #333;
  }

  /* 経営理念 */
  .philosophy {
    padding: 40px 20px;
  }

  .philosophy .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .philosophy-content {
    padding: 35px 25px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
  }

  .philosophy-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #4a9b8e 100%);
  }

  .philosophy-content::before {
    font-size: 100px;
    top: -15px;
    left: 15px;
  }

  .philosophy-text {
    font-size: 15px;
    line-height: 2;
  }

  /* 採用情報 */
  .recruit.section {
    padding: 40px 20px;
  }

  .recruit .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .recruit-content {
    display: block;
    gap: 0;
  }

  .recruit-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
    padding: 0;
    overflow: hidden;
    border: 1px solid #fce4ec;
  }

  .recruit-card:last-child {
    margin-bottom: 0;
  }

  .recruit-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    border-color: #ec407a;
  }

  .recruit-card::before,
  .recruit-card::after {
    display: none;
  }

  .recruit-card-title {
    font-size: 12px;
    padding: 10px 16px;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #ec407a 0%, #f06292 100%);
    color: #fff;
    margin: 0;
    font-weight: 600;
    text-transform: none;
    display: block;
    width: 100%;
    box-shadow: none;
    animation: none;
  }

  .recruit-card-text {
    font-size: 15px;
    padding: 16px;
    line-height: 1.8;
    word-break: normal;
    overflow-wrap: break-word;
    display: block;
    width: 100%;
    color: #333;
  }

  .recruit-contact-button {
    text-align: center;
    margin-top: 25px;
    position: relative;
    z-index: 10;
  }

  .message-button {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 10;
  }

  .btn-contact-recruit {
    background: linear-gradient(135deg, #ec407a 0%, #f06292 100%);
    color: #fff;
    padding: 16px 40px;
    font-size: 16px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(236, 64, 122, 0.3);
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    text-decoration: none;
    position: relative;
    z-index: 10;
  }

  .btn-contact-recruit:hover {
    background: linear-gradient(135deg, #f06292 0%, #f48fb1 100%);
    box-shadow: 0 6px 20px rgba(236, 64, 122, 0.4);
    transform: translateY(-2px);
  }

  .contact-note {
    font-size: 13px;
    color: #666;
    margin-top: 12px;
  }

  /* 採用メッセージ */
  .recruit-message {
    padding: 40px 20px;
  }

  .recruit-message .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .message-content {
    padding: 35px 25px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
  }

  .message-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ec407a 0%, #f06292 100%);
    z-index: 0;
  }

  .message-text {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 30px;
  }

  /* お問い合わせフォーム */
  .contact-form {
    padding: 40px 20px;
  }

  .form-container {
    padding: 30px 20px;
    margin: 20px auto 0;
    border-radius: 12px;
  }

  .form-group {
    margin-bottom: 24px;
  }

  .form-label {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 12px 16px;
    font-size: 15px;
    border-radius: 6px;
  }

  .form-textarea {
    min-height: 150px;
  }

  .form-button {
    margin-top: 30px;
  }

  /* お問い合わせ先情報 */
  .contact-info {
    padding: 40px 0;
  }

  .contact-info .container {
    padding: 0 20px;
  }

  .contact-info-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 12px !important;
    margin-top: 30px;
    width: 100%;
  }

  .contact-info-card {
    padding: 20px 12px !important;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-around;
    min-height: 200px !important;
    box-sizing: border-box !important;
    max-width: none !important;
    width: auto !important;
  }

  .contact-info-card:nth-child(1),
  .contact-info-card:nth-child(2) {
    min-height: 200px;
  }

  .contact-info-card:nth-child(3) {
    grid-column: 1 / 3;
    min-height: auto;
  }

  .contact-info-card:nth-child(3) .contact-info-text {
    font-size: 14px;
    line-height: 1.8;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .contact-info-icon {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
  }

  .contact-info-title {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #ff6b35;
  }

  .contact-info-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: 8px;
  }

  .contact-info-note {
    font-size: 11px;
    color: #888;
    margin-top: 8px;
    line-height: 1.5;
  }

  /* フッター */
  .footer {
    padding: 50px 20px 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
  }

  .footer-title {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .footer-desc {
    font-size: 13px;
  }

  .footer-links-list {
    gap: 10px;
  }

  .footer-links-list li a {
    font-size: 13px;
  }

  .footer-contact {
    gap: 10px;
  }

  .footer-contact li {
    font-size: 13px;
  }

  .copyright {
    font-size: 11px;
    padding-top: 25px;
  }

  /* ページヘッダー */
  .page-header {
    padding: 35px 20px 30px;
  }

  .page-header.company-header,
  .page-header.recruit-header {
    padding: 45px 20px 40px;
  }

  .page-title {
    font-size: 26px;
    margin-bottom: 6px;
  }

  .page-subtitle {
    font-size: 13px;
    letter-spacing: 1.5px;
  }

  /* ページトップボタン */
  .page-top {
    width: 55px;
    height: 55px;
    font-size: 10px;
    bottom: 25px;
    right: 25px;
  }
}

@media (max-width: 480px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 60px 12px;
  }

  .hero-title {
    font-size: 22px;
  }

  .hero-text {
    font-size: 14px;
  }

  .section {
    padding: 40px 12px;
  }

  .section-title {
    font-size: 28px;
  }

  .info-buttons {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-top {
    width: 50px;
    height: 50px;
    font-size: 10px;
    bottom: 20px;
    right: 20px;
  }

  /* 会社情報ページ - 小さいスマホ */
  .company.section,
  .philosophy,
  .recruit.section,
  .recruit-message {
    padding: 40px 12px;
  }

  .company .section-title,
  .philosophy .section-title,
  .recruit .section-title {
    font-size: 28px;
  }

  .philosophy-content,
  .message-content {
    padding: 30px 20px;
  }

  .philosophy-text,
  .message-text {
    font-size: 14px;
    line-height: 1.9;
  }

  .form-container {
    padding: 24px 16px;
  }
}

/* ページヘッダー */
.page-header {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  padding: 40px 20px 35px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-header.company-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('画像/Image_fx (4).jpg');
  background-size: cover;
  background-position: center;
  padding: 60px 20px 50px;
}

.page-header.recruit-header {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('画像/Image_fx (5).jpg');
  background-size: cover;
  background-position: center;
  padding: 60px 20px 50px;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 100px 100px;
  opacity: 0.3;
  z-index: 0;
}

.page-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  font-family: 'Noto Serif JP', serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-subtitle {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
  font-family: 'Noto Sans JP', sans-serif;
}

/* 会社情報ページ */
.company.section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.company.section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  animation: floatSlow 20s ease-in-out infinite;
  filter: blur(80px);
}

.company.section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -30%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(74, 155, 142, 0.08) 0%, transparent 70%);
  animation: floatSlow 25s ease-in-out infinite reverse;
  filter: blur(80px);
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 30px); }
}

.company .section-title {
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #2c3e50;
  font-size: 42px;
}

.company .section-title::after {
  background: linear-gradient(90deg, transparent, #ff6b35, transparent);
  height: 4px;
  width: 80px;
}

.company-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.company-item {
  background: #ffffff;
  backdrop-filter: blur(10px);
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.company-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ff6b35 0%, #4a9b8e 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.company-item:hover::before {
  opacity: 1;
}

.company-item:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
  border-color: rgba(255, 107, 53, 0.2);
}

.company-label {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  margin: 0;
  padding: 18px 24px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.company-label::before {
  content: '●';
  color: #ff6b35;
  font-size: 8px;
}

.company-value {
  font-size: 15px;
  color: #2c3e50;
  line-height: 1.8;
  padding: 24px;
  font-weight: 400;
  position: relative;
  z-index: 1;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* 経営理念 */
.philosophy {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
  animation: floatSlow 30s ease-in-out infinite;
  filter: blur(100px);
}

.philosophy::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -30%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(74, 155, 142, 0.06) 0%, transparent 70%);
  animation: floatSlow 35s ease-in-out infinite reverse;
  filter: blur(100px);
}

.philosophy .section-title {
  color: #2c3e50;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  font-size: 42px;
}

.philosophy .section-title::after {
  background: linear-gradient(90deg, transparent, #ff6b35, transparent);
  height: 4px;
  width: 80px;
  box-shadow: none;
}

.philosophy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 50px;
  background: #ffffff;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.philosophy-content::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 160px;
  color: rgba(255, 107, 53, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}

.philosophy-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35 0%, #4a9b8e 100%);
}

.philosophy-text {
  font-size: 17px;
  line-height: 2.2;
  color: #2c3e50;
  font-family: 'Noto Serif JP', serif;
  text-align: center;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

/* 採用情報ページ */
.recruit.section {
  padding: 60px 20px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 182, 193, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 64, 122, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(252, 228, 236, 0.4) 0%, transparent 40%),
    linear-gradient(135deg, #fff5f8 0%, #fce4ec 100%);
  position: relative;
  overflow: hidden;
}

.recruit.section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(236, 64, 122, 0.12) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
  filter: blur(60px);
}

.recruit .section-title {
  margin-bottom: 50px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.recruit-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.recruit-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px) saturate(200%) brightness(110%);
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 10px 40px rgba(236, 64, 122, 0.2),
    0 1px 3px rgba(236, 64, 122, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  border: 1px solid rgba(252, 228, 236, 0.5);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.recruit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 30% 30%, rgba(236, 64, 122, 0.2), transparent 60%),
    linear-gradient(135deg, rgba(252, 228, 236, 0.15), rgba(236, 64, 122, 0.1));
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 0;
}

.recruit-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255, 255, 255, 0.5) 90deg, transparent 180deg);
  opacity: 0;
  transition: all 0.8s ease;
  animation: shine 3s ease-in-out infinite;
}

.recruit-card:hover::before {
  opacity: 1;
}

.recruit-card:hover::after {
  opacity: 0.6;
}

.recruit-card:hover {
  box-shadow:
    0 25px 70px rgba(236, 64, 122, 0.35),
    0 5px 15px rgba(252, 228, 236, 0.2),
    inset 0 0 0 2px rgba(236, 64, 122, 0.3);
  transform: translateY(-15px) translateZ(20px) rotateX(2deg);
  border-color: rgba(236, 64, 122, 0.5);
}

.recruit-card-title {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #ec407a, #f06292, #f48fb1, #f06292, #ec407a);
  background-size: 300% 300%;
  margin: 0;
  padding: 16px 25px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  animation: gradientFlow 5s ease infinite;
  box-shadow:
    0 4px 15px rgba(236, 64, 122, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(236, 64, 122, 0.3);
  text-shadow: 0 2px 4px rgba(236, 64, 122, 0.4);
}

.recruit-card-text {
  font-size: 16px;
  color: #333;
  line-height: 1.9;
  padding: 25px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* 採用メッセージ */
.recruit-message {
  background:
    radial-gradient(circle at 25% 25%, rgba(255, 167, 138, 0.4) 0%, transparent 45%),
    radial-gradient(circle at 75% 75%, rgba(255, 138, 101, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 50% 0%, rgba(255, 204, 188, 0.3) 0%, transparent 40%),
    linear-gradient(135deg, #fff3e0 0%, #ffe8d6 50%, #fbe9e7 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.recruit-message::before {
  content: '';
  position: absolute;
  top: -100%;
  right: -100%;
  width: 300%;
  height: 300%;
  background:
    radial-gradient(circle, rgba(255, 138, 101, 0.15) 0%, transparent 50%);
  animation: floatGlow 25s ease-in-out infinite;
  filter: blur(80px);
}

.recruit-message::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle, rgba(255, 138, 101, 0.15) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  animation: sparkle 20s linear infinite;
}

.recruit-message .section-title {
  color: #d84315;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  text-shadow:
    0 2px 10px rgba(255, 87, 34, 0.3),
    0 0 30px rgba(255, 138, 101, 0.4);
  animation: titleGlowWarm 3s ease-in-out infinite;
}

@keyframes titleGlowWarm {
  0%, 100% { text-shadow: 0 2px 10px rgba(255, 87, 34, 0.3), 0 0 30px rgba(255, 138, 101, 0.4); }
  50% { text-shadow: 0 2px 15px rgba(255, 87, 34, 0.5), 0 0 40px rgba(255, 138, 101, 0.6); }
}

.recruit-message .section-title::after {
  background: linear-gradient(90deg, transparent, #ff7043, #ff8a65, #ff7043, transparent);
  box-shadow: 0 0 30px rgba(255, 87, 34, 0.6);
  height: 5px;
}

.message-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 50px;
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 243, 224, 0.95) 50%,
      rgba(255, 255, 255, 0.98) 100%);
  backdrop-filter: blur(25px) saturate(200%) brightness(115%);
  border-radius: 35px;
  box-shadow:
    0 35px 100px rgba(255, 87, 34, 0.25),
    0 15px 50px rgba(255, 138, 101, 0.2),
    0 0 0 1px rgba(255, 171, 145, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.9),
    inset 0 -2px 0 rgba(255, 138, 101, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid rgba(255, 171, 145, 0.4);
  animation: cardFloat 6s ease-in-out infinite;
}

.message-content::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    conic-gradient(from 0deg,
      transparent 0deg,
      rgba(255, 138, 101, 0.08) 90deg,
      transparent 180deg,
      rgba(255, 87, 34, 0.05) 270deg,
      transparent 360deg);
  animation: rotate 40s linear infinite;
  z-index: 0;
  pointer-events: none;
}

.message-text {
  font-size: 17px;
  line-height: 2.3;
  color: #333;
  margin-bottom: 40px;
  font-family: 'Noto Serif JP', serif;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(255, 215, 0, 0.1);
}

.message-button {
  margin-top: 30px;
}

.recruit-contact-button {
  text-align: center;
  margin-top: 25px;
}

.btn-contact-recruit {
  background: linear-gradient(135deg, #ec407a 0%, #f06292 100%);
  color: #fff;
  padding: 18px 50px;
  font-size: 18px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(236, 64, 122, 0.35);
  display: inline-block;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-contact-recruit:hover {
  background: linear-gradient(135deg, #f06292 0%, #f48fb1 100%);
  box-shadow: 0 12px 35px rgba(236, 64, 122, 0.45);
  transform: translateY(-3px);
}

/* お問い合わせページ */
.contact-form {
  background: #f9f9f9;
}

.form-container {
  max-width: 700px;
  margin: 50px auto 0;
  padding: 50px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 30px;
}

.form-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.required {
  color: #ff6b35;
  font-weight: 700;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #ff6b35;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 180px;
}

.form-button {
  text-align: center;
  margin-top: 40px;
}

/* メッセージ表示エリア */
#formMessage {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  display: none;
}

#formMessage.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#formMessage.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* お問い合わせ先情報 */
.contact-info {
  background: linear-gradient(135deg, #fff9f0 0%, #fff3e0 100%);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.contact-info-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: #ff6b35;
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.15);
  transform: translateY(-5px);
}

.contact-info-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.contact-info-title {
  font-size: 18px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 15px;
}

.contact-info-text {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 10px;
}

.contact-info-note {
  font-size: 13px;
  color: #888;
  margin-top: 10px;
}

/* フォーム送信メッセージ */
.form-message {
  padding: 20px 30px;
  border-radius: 8px;
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.8;
  transition: opacity 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-weight: 500;
}

.form-message-success {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  color: #2e7d32;
  border: 2px solid #4caf50;
}

.form-message-error {
  background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
  color: #c62828;
  border: 2px solid #f44336;
}

/* フォームメーラー埋め込み用スタイル */
.formmailer-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
  max-height: 1400px;
}

.formmailer-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 50%, #ff6b35 100%);
  background-size: 200% 100%;
  animation: gradientSlide 3s ease-in-out infinite;
  z-index: 1;
}

/* 広告部分を隠すための白いオーバーレイ */
.formmailer-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent 0%, #fff 30%, #fff 100%);
  z-index: 10;
  pointer-events: none;
}

@keyframes gradientSlide {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.formmailer-embed {
  position: relative;
  z-index: 2;
  margin-bottom: -150px;
  padding-bottom: 150px;
}

/* レスポンシブ対応 - タブレット */
@media (max-width: 1024px) {
  .formmailer-container {
    padding: 30px;
    border-radius: 16px;
    max-height: 1450px;
  }
}

/* レスポンシブ対応 - スマートフォン */
@media (max-width: 768px) {
  .formmailer-container {
    padding: 20px;
    border-radius: 12px;
    margin: 0 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: 1500px;
  }
}

@media (max-width: 480px) {
  .formmailer-container {
    padding: 15px;
    border-radius: 10px;
    margin: 0 5px;
    max-height: 1600px;
  }
}
