/* Delightful TOPページ用CSS（添付画像準拠） */

html {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  padding-top: 0;
}

body p {
  color: #1e1c1c;
  line-height: 1.5;
}

.row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  width: 100%;
}

/* ヘッダー */
.header {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0px 2px 6px rgba(83, 47, 10, 0.15);
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: 80px;
  min-height: 60px;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2vw;
  height: 100%;
  min-height: 60px;
}
.logo-area {
  height: 100%;
  display: flex;
  align-items: center;
}
.logo-area .logo {
  height: 40px;
  display: block;
}
.header-nav a {
  color: #1e1c1c;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 400;
  font-size: 1rem;
  transition: color 0.2s;
}
.header-nav a:hover {
  color: #ff8800;
}

/* ヒーロー */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(142.96deg, #f4d19f 10.79%, #f4930b 87.78%);
  padding-top: 120px;
  padding-bottom: 100px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 40px 60px 40px;
}
.hero-textblock {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  height: 100%;
  transform: translateZ(0);
  will-change: transform;
}
.hero-title {
  font-size: 5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 0.04em;
  margin-bottom: 0;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}
.hero-mainimage {
  position: relative;
  width: 540px;
  min-width: 340px;
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.hero-person-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  position: relative;
  right: -80px;
}

.hero-bgimg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

/* About usセクション Figmaデザイン準拠 */
.about {
  background: #fffdf9;
  position: relative;
  overflow: hidden;
  padding: 180px 0 180px 0;
}
.about-bgsvg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
}

.about-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 60px;
  padding-bottom: 200px;
}
.about-mainblock {
  position: relative;
  z-index: 1;
  flex: 1 1 520px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-circles {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  margin-top: 500px;
}
.circle {
  border-radius: 50%;
  opacity: 0.18;
}
.circle1 {
  width: 80px;
  height: 80px;
  background: #f4930b;
}
.circle2 {
  width: 40px;
  height: 40px;
  background: #f4d19f;
}
.circle3 {
  width: 24px;
  height: 24px;
  background: #f4930b;
}
.section-header {
  position: relative;
  z-index: 1;
  text-align: left;
  width: auto;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.about-lead {
  color: #f4930b;
  font-size: 60px;
}
.about-text p {
  color: #f4930c;
  font-size: 1.08rem;
  margin-bottom: 40px;
  line-height: 2;
}
@media (max-width: 900px) {
  .about-inner {
    flex-direction: column;
    gap: 32px;
    padding: 0 4vw;
  }
  .about-mainblock {
    max-width: 100%;
  }
  .about-circles {
    flex-direction: row;
    gap: 16px;
    margin-top: 0;
    align-items: flex-start;
  }
}

.about-bg-top {
  position: absolute;
  top: 200px;
  left: -60px;
  width: 420px;
  height: auto;
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}
.about-bg-bottom {
  position: absolute;
  bottom: -530px;
  right: -50px;
  width: 580px;
  height: auto;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  /* transform: scaleY(-1);  必要なら反転 */
}

/* Serviceセクション Figmaデザイン準拠 */
.service {
  background: #f3eee3;
  border-radius: 100px 100px 0 0;
  margin-top: -120px;
  padding: 160px 0 120px 0;
  position: relative;
  z-index: 1;
  overflow: visible;
}
.service-header {
  padding: 3vw 0 0 7vw;
}
.section-header,
.main-title,
.sub-title,
.service-title,
.service-catch,
.service-sub,
.service-name,
.service-summary {
  text-align: left;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 90px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 200px;
}
.service-card {
  display: flex;
  align-items: stretch;
  min-height: 320px;
  position: relative;
  background: none;
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 0;
  overflow: visible;
}
.service-card-inner {
  display: flex;
  align-items: stretch;
  width: 100%;
  overflow: visible;
}
.service-card-left {
  flex: 0 0 45%;
  width: 40%;
  padding: 48px 40px 120px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.service-card-right {
  flex: 0 0 50%;
  width: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 32px 0 0;
  position: relative;
  overflow: visible;
}
.service-image-bg {
  position: absolute;
  right: -370px;
  bottom: -70px;
  width: 860px;
  height: 260px;
  background: #f4930c;
  border-radius: 50px 0 0 50px;
  z-index: 1;
}
.service-image-bg.fade-in-on-scroll {
  opacity: 0;
  transform: translateX(200px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.service-image-bg.fade-in-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}
.service-img {
  width: 400px;
  height: auto;
  display: block;
  border-radius: 32px;
  position: relative;
  z-index: 2;
  box-shadow: none;
}
.service-catch {
  font-size: 1.15rem;
  color: #f4930b;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}
.service-sub {
  font-size: 1.05rem;
  color: #f4930b;
  font-weight: 500;
  margin-bottom: 8px;
}
.service-name {
  font-size: 1.15rem;
  color: #6a5647;
  font-weight: 700;
  margin-bottom: 18px;
}
.service-summary {
  font-size: 1.08rem;
  color: #6a5647;
  margin-bottom: 32px;
  line-height: 2;
}
@media (max-width: 900px) {
  .service {
    border-radius: 48px 48px 0 0;
    margin-top: -48px;
    padding: 56px 0 40px 0;
  }
  .service-list {
    gap: 32px;
    padding: 0 4vw;
  }
  .service-card {
    border-radius: 24px;
    min-height: 0;
  }
  .service-card-inner {
    flex-direction: column;
  }
  .service-card-left {
    padding: 32px 16px 24px 16px;
  }
  .service-card-right {
    padding: 0 0 24px 0;
    justify-content: center;
  }
  .service-image-bg {
    width: 60vw;
    height: 60vw;
    min-width: 120px;
    min-height: 120px;
    max-width: 260px;
    max-height: 260px;
    right: 50%;
    transform: translateX(50%);
  }
  .service-img {
    width: 60vw;
    max-width: 220px;
    border-radius: 20px;
  }
}

/* Recruit */
.recruit {
  position: relative;
  width: 100%;
  min-height: 520px;
  background: url("/wp-content/themes/dlfl/page/img/recruit_bg.jpg") center
    center / cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  text-align: center;
}
.recruit .row,
.recruit .contents-inner,
.recruit-inner,
.recruit .section-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.recruit-btn {
  margin: 0 auto;
}

/* Companyセクション新デザイン */
.company {
  background: #f3eee3;
  margin-top: 0;
  padding: 160px 0 140px 0;
  position: relative;
  z-index: 0;
}
.company-lead {
  color: #bcb3a2;
  font-size: 1.1rem;
  margin-bottom: 2.5vw;
  padding-left: 7vw;
  text-align: left;
}
.company-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 0 auto;
  padding: 60px 0 160px 0;
}
.company-card {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 24px rgba(106, 86, 71, 0.08);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 36px 40px;
  text-decoration: none;
  color: #6a5647;
  font-weight: 500;
  font-size: 1.15rem;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  height: 200px;
  min-height: 200px;
  max-height: 260px;
}
.company-card:hover {
  box-shadow: 0 8px 32px rgba(244, 147, 11, 0.15);
  transform: translateY(-2px) scale(1.02);
}
.company-card-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #6a5647;
  position: absolute;
  top: 32px;
  left: 40px;
  right: auto;
  margin: 0;
}
.company-card-arrow {
  position: absolute;
  bottom: 32px;
  right: 40px;
  margin-left: 0;
  display: flex;
  align-items: center;
}
.company-card-body {
  flex: 1 1 auto;
  text-align: left;
  font-size: 1.08rem;
  color: #6a5647;
  line-height: 1.8;
  padding-right: 120px;
}
@media (max-width: 900px) {
  .company-cards {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 4vw;
  }
  .company-card {
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 28px 16px;
    font-size: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .company-card-title {
    position: static;
    top: auto;
    right: auto;
    margin-bottom: 12px;
  }
  .company-card-arrow {
    position: static;
    bottom: auto;
    right: auto;
    margin-top: 16px;
  }
  .company-card-body {
    padding-right: 0;
  }
}
@media (max-width: 600px) {
  .company-lead {
    font-size: 0.92rem;
    padding-left: 2vw;
  }
  .company-cards {
    gap: 0.7rem;
    margin: 1.2rem auto 0 auto;
    padding: 0 2vw;
  }
  .company-card {
    padding: 0.7rem 0.7rem 0.7rem 0.7rem;
    font-size: 0.95rem;
  }
  .company-card-title {
    font-size: 1.1rem;
  }
  .company-card-arrow {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
  }
}

/* Newsセクション新デザイン */
.news {
  background: linear-gradient(142.96deg, #f4d19f 10.79%, #f4930b 87.78%);
  padding: 0 0 4vw 0;
  border-radius: 100px 0 0 0;
  padding-top: 140px;
  padding-bottom: 160px;
  margin-top: -100px;
  position: relative;
  z-index: 1;
}
.news-lead {
  color: #bcb3a2;
  font-size: 1.1rem;
  margin-bottom: 2.5vw;
  padding-left: 7vw;
  text-align: left;
}

.news-list {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(244, 147, 11, 0.1);
  padding: 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.news-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  font-size: 1rem;
  color: #333;
  flex-wrap: wrap;
  margin-bottom: 2px;
  transform: translateZ(0);
  will-change: transform;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.98rem;
  color: #bcb3a2;
  margin-bottom: 0.1rem;
}
.news-date {
  color: #757575;
  font-size: 0.8rem;
}
.news-cat {
  background: #f4930b;
  color: #fff;
  font-size: 0.6rem;
  padding: 0.2em 1.1em;
  margin-right: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  display: inline-block;
}
.news-body {
  color: #1e1c1c;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  margin-left: 0;
}
@media (max-width: 900px) {
  .news-bgbox {
  }
  .news-list {
    padding: 1.2rem 1.2rem;
    max-width: 98vw;
    width: 98vw;
    margin: 2vw auto;
    gap: 1rem;
  }
  .news-item {
    font-size: 0.95rem;
    gap: 0.7rem;
  }
  .news-meta {
    font-size: 0.9rem;
    gap: 0.7rem;
  }
  .news-date {
    font-size: 0.9rem;
    min-width: 70px;
  }
  .news-cat {
    font-size: 0.85rem;
    padding: 0.15em 0.8em;
    margin-right: 0.5rem;
  }
  .news-body {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .news-lead {
    font-size: 0.92rem;
    padding-left: 2vw;
  }
  .news-bgbox {
  }
  .news-list {
    padding: 0.7rem 0.7rem;
    gap: 0.5rem;
  }
  .news-item {
    font-size: 0.9rem;
    gap: 0.4rem;
  }
  .news-meta {
    font-size: 0.8rem;
    gap: 0.4rem;
  }
  .news-date {
    font-size: 0.8rem;
    min-width: 54px;
  }
  .news-cat {
    font-size: 0.7rem;
    padding: 0.1em 0.5em;
    margin-right: 0.3rem;
  }
  .news-body {
    font-size: 0.92rem;
  }
}

/* Contactセクション新デザイン */
.contact {
  background: #fffdf9;
  padding: 160px 0 160px 0;
  position: relative;
}
.contact-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  max-width: 1100px;
  min-height: 180px;
}
.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.contact-btn:hover {
  background: linear-gradient(90deg, #f4930b 0%, #f4d19f 100%);
  color: #fff;
}
.contact-telblock {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 16px;
}
.contact-tel {
  font-size: 2rem;
  font-weight: 700;
  color: #f4930b;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.contact-hours {
  color: #1e1c1c;
  font-size: 1rem;
  font-weight: 400;
}
@media (max-width: 900px) {
  .contact {
    padding: 56px 0 40px 0;
  }
  .contact-inner {
    min-height: 120px;
    padding: 0 4vw;
  }
  .contact-btn {
    font-size: 1.05rem;
    padding: 14px 24px;
    margin-top: 20px;
    margin-bottom: 12px;
  }
  .contact-tel {
    font-size: 1.3rem;
  }
  .contact-hours {
    font-size: 0.95rem;
  }
}

/* レスポンシブ */
@media (max-width: 900px) {
  .header-inner,
  .about-inner,
  .recruit-inner,
  .contact-inner,
  .footer-inner {
    padding: 0 4vw;
  }
  .service-list,
  .company-cards {
    flex-direction: column;
    gap: 1.5rem;
  }
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 16px 32px 16px;
  }
  .hero-mainimage {
    width: 100%;
    min-width: 0;
    justify-content: center;
    margin-top: 32px;
  }
  .hero-person-img {
    right: 0;
    max-width: 90vw;
    border-radius: 24px;
  }
  .hero-title {
    font-size: 2.1rem;
    text-align: left;
  }
  .about-inner {
    padding: 6vw 4vw 6vw 4vw;
    max-width: 98vw;
    gap: 1.2rem;
  }
  .about-mainblock {
    gap: 1rem;
  }
  .about-text p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  .about-circles {
    gap: 1.2rem;
  }
  .circle {
    width: 54px;
    height: 54px;
  }
  .service-header {
    padding: 5vw 0 0 4vw;
  }
  .service-list {
    max-width: 98vw;
    padding: 2vw 0 4vw 0;
    gap: 2rem;
  }
  .service-card {
    flex-direction: column;
    min-height: 0;
    border-radius: 24px;
  }
  .service-card-left {
    padding: 1.2rem 1rem 1.2rem 1.2rem;
  }
  .service-card-right {
    min-width: 0;
    justify-content: center;
  }
  .service-card-bg {
    width: 90%;
    height: 60%;
    border-radius: 20px 20px 28px 28px;
  }
  .service-img,
  .service-img-placeholder {
    width: 140px;
    height: 90px;
    margin: 0 0 1.2rem 0;
    border-radius: 12px;
  }
  .section-header {
    padding-left: 4vw;
    margin-bottom: 1.5vw;
  }
  .section-title {
    font-size: 1.3rem;
    margin-bottom: 0.4em;
  }
  .section-lead {
    font-size: 0.95rem;
  }
  .company-header,
  .news-header {
    padding-left: 4vw;
  }
}
@media (max-width: 600px) {
  html {
    width: 100%;
    overflow-x: hidden;
  }

  body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
  }
  .row {
    width: 100%;
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0;
    box-sizing: border-box;
  }
  .hero {
    padding-top: 48px;
    padding-bottom: 32px;
    min-height: 320px;
  }
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0 0 0;
  }
  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 16px;
    text-align: left;
  }
  .hero-mainimage {
    width: 100%;
    min-width: 0;
    justify-content: center;
    margin-top: 16px;
    overflow: hidden;
  }
  .hero-person-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    right: 0;
    border-radius: 16px;
  }
  .about {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .about-inner {
    flex-direction: column;
    gap: 16px;
    padding: 0;
    max-width: 100vw;
  }
  .about-mainblock {
    max-width: 100%;
    gap: 12px;
  }
  .main-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #6a5647;
  }
  .sub-title {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: #6a5647;
  }
  .about-lead {
    font-size: 30px;
    margin-bottom: 6px;
  }

  .about-text p {
    font-size: 0.92rem;
    margin-bottom: 10px;
  }

  .btn-main,
  .btn-sub {
    font-size: 0.95rem;
    padding: 0.5rem 1.2rem;
    margin-top: 10px;
    margin-bottom: 0;
  }

  .service {
    padding-top: 24px;
    padding-bottom: 20px;
    margin-top: -24px;
  }

  .service-list {
    gap: 12px;
    padding: 0;
    max-width: 100vw;
  }

  .service-card {
    flex-direction: column;
    min-height: 0;
    border-radius: 12px;
    margin-bottom: 12px;
    height: auto;
    padding: 0;
  }

  .service-card-inner {
    flex-direction: column;
  }

  .service-card-left {
    padding: 12px 0 6px 0;
  }

  .service-card-right {
    padding: 0 0 10px 0;
    justify-content: center;
    width: 100%;
    overflow: hidden;
  }

  .service-image-bg {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    min-width: 0;
    min-height: 0;
    max-width: 100%;
    max-height: none;
    right: 50%;
    transform: translateX(50%);
  }

  .service-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
  }

  .company {
    padding-top: 24px;
    padding-bottom: 20px;
    margin-top: 0;
  }

  .company-cards {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0;
  }

  .company-card {
    height: 48px;
    min-height: 48px;
    max-height: 48px;
    padding: 0 16px;
    font-size: 0.95rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    position: relative;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }

  .company-card-title {
    position: static;
    top: auto;
    left: auto;
    margin-bottom: 0;
    font-size: 0.95rem;
    text-align: left;
    flex: 1;
    color: #333;
  }

  .company-card-arrow {
    position: static;
    bottom: auto;
    right: auto;
    margin-top: 0;
    margin-left: 8px;
    flex-shrink: 0;
  }

  .arrow-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
  }

  .news {
    padding-top: 24px;
    padding-bottom: 20px;
    margin-top: -24px;
  }

  .news-bgbox {
  }

  .news-item {
    margin-bottom: 6px;
  }

  .contact {
    padding-top: 24px;
    padding-bottom: 20px;
  }

  .contact-inner {
    min-height: 50px;
    padding: 0;
  }

  .contact-btn {
    font-size: 0.95rem;
    padding: 8px 16px;
    margin-top: 6px;
    margin-bottom: 6px;
  }

  .footer {
    padding-top: 20px;
    padding-bottom: 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    gap: 12px;
  }

  .footer-brand {
    align-items: center;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .footer-navs {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .footer-navcol {
    align-items: center;
    min-width: 0;
    gap: 4px;
  }

  .footer-logo {
    width: 70px;
  }

  .footer-copy {
    margin-top: 10px;
    padding-bottom: 6px;
    font-size: 0.85rem;
  }
}

@media screen and (max-width: 736px) {
  .company {
    padding-top: 32px;
    padding-bottom: 32px;
    margin-top: 0;
    overflow: hidden;
  }

  .company-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .company-card {
    height: 48px;
    min-height: 48px;
    max-height: 48px;
    padding: 0 16px;
    font-size: 0.95rem;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
    position: relative;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 600px) {
  html {
    width: 100%;
    overflow-x: hidden;
  }

  body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    position: relative;
  }
  .row {
    width: 100%;
    max-width: 100%;
    padding-left: 4vw;
    padding-right: 4vw;
    margin: 0;
    box-sizing: border-box;
  }
  .hero-person-img {
    width: 100%;
    max-width: 100%;
    right: 0;
  }
  .service-image-bg {
    width: 100%;
    max-width: 100%;
  }
  .service-img {
    width: 100%;
    max-width: 100%;
  }
  .company-card {
    width: 100%;
  }
  .news-bgbox {
  }
  .footer-inner {
    width: 100%;
    padding: 0 4vw;
  }
}

/* タイトル・サブタイトル色指定 */
.main-title {
  color: #6a5647;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
.sub-title {
  color: #bcb3a2;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 2em;
  line-height: 1.4;
}

.contact .section-header {
  text-align: center;
}

.contact .main-title {
  color: #f4930b;
  text-align: center;
}

.contact .sub-title {
  color: #1e1c1c;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
}

.company-arrow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(142.96deg, #f4d19f 10.79%, #f4930b 87.78%);
  box-shadow: 0 4px 16px rgba(244, 147, 11, 0.12);
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}
.company-arrow-btn:hover {
  box-shadow: 0 8px 32px rgba(244, 147, 11, 0.18);
  transform: translateY(-2px) scale(1.05);
}
.company-arrow-icon {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  display: block;
}

.contents-inner {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 900px) {
  .contents-inner {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 600px) {
  .contents-inner {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 900px) {
  body {
    padding-top: 56px;
  }
}
@media (max-width: 600px) {
  body {
    padding-top: 48px;
  }
}

.news-bgbox {
}

.btn-arrow-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  margin-left: 12px;
  box-shadow: 0 2px 8px rgba(244, 147, 11, 0.1);
  transition: background 0.2s;
  padding: 2px;
}
.btn-arrow-icon {
  width: 14px;
  height: 14px;
  display: block;
  font-weight: 400;
}
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
.fade-in-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

.btn-main.contact-btn {
  font-size: 1.2rem;
  font-weight: 700;
  padding: 20px 70px;
  background: linear-gradient(142.96deg, #f4d19f 10.79%, #f4930b 87.78%);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
