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

/* 遅延ロード用スタイル */
.lazy, .lazy-bg {
  opacity: 0;
  transition: opacity 0.5s;
}

.loaded {
  opacity: 1;
}

/* プレースホルダー用のシンプルなスタイル */
.placeholder {
  background-color: #f0f0f0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', 'Poppins', sans-serif;
  background-color: #f5f5f5;
  min-height: 100vh;
}

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

/* ヘッダーコンポーネント */
.header {
  width: 100%;
  height: 100px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: transform 0.3s ease;
  z-index: 1000;
}

.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header.hide {
  transform: translateY(-100%);
}

body.no-scroll {
  overflow: hidden;
}

.header-inner {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  max-width: 1240px;
  position: relative;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}

.hamburger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #245444;
  transition: all 0.3s ease;
}

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

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

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

.logo-wrap {
  display: flex;
  align-items: center;
  padding-right: 50px;
  padding-left: 10px;
}

.logo-image {
  width: 220px;
  height: 42px;
  background-image: url('../images/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.header-nav-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 500px;
}

.nav-item {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #333333;
}

.action-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  width: 410px;
}

.call {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.call-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #333333;
  text-align: center;
}

.call-item-number-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.phone-icon {
  width: 24px;
  height: 26px;
}

.phone-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #245444;
}

.contact {
  background-color: #F7941D;
  padding: 20px 20px 0;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-item-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 130px;
}

.mail-icon {
  width: 38.7px;
  height: 31.3px;
  position: absolute;
  top: -35px;
  left: 45.7px;
  padding: 5px 3px;
}

.header .contact-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  width: 136px;
  text-align: center;
}

/* FVセクション */
.fv-section {
  width: 100%;
  height: 630px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fv-container {
  width: 100%;
  height: 100%;
  position: relative;
  max-width: 2000px;
  margin: 0 auto;
}

.fv-image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.fv-image {
  width: 80%;
  height: 100%;
  background-image: url('../images/hero-image.jpg');
  background-size: cover;
  background-position: right;
  border-radius: 56px 0 0 56px;
  margin: 0 -20% 0 20%;
  position: relative;
}

.fv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
}

.fv-content {
  position: absolute;
  left: 20%;
  top: 45%;
  display: flex;
  flex-direction: column;
  transform: translate(-20%,-45%);
  gap: 24px;
}

.fv-text-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fv-text-box {
  display: flex;
  align-items: center;
  padding: 8px;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease-out;
}

.fv-text-box.color-dark {
  background-color: #245444;
}

.fv-text-box.color-white {
  background-color: #FFFFFF;
  width: fit-content;
}

.fv-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 1em;
  letter-spacing: 0.12em;
}

.fv-heading.accent {
  color: #245444;
}

.fv-text-box.color-dark .fv-heading {
  color: #FFFFFF;
}

.fv-subtitle-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
  position: relative;
}

.fv-subtitle-dot {
  width: 8px;
  height: 8px;
  background-color: #0CA77E;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 4px;
}

.fv-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #245444;
  margin-left: 20px;
  width: 603px;
}

/* Y's Worksについて セクション */
.about-section {
  width: 100%;
  height: 1215px;
  background-color: #FFFFFF;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-container {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 79px;
}

.about-row {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  align-items: flex-start;
}

.about-main-content {
  width: 75%;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.about-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-message-header .accent{
  color: #0CA77E;
}

.about-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 79px;
  height: 16px;
}

.about-dot {
  width: 8px;
  height: 8px;
  background-color: #0CA77E;
  border-radius: 50%;
}

.about-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #245444;
}

.about-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.7em;
  letter-spacing: 0.04em;
  color: #245444;
}

.about-description {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 2em;
  letter-spacing: 0.04em;
  color: #333333;
}

.about-main-image-wrap {
  width: 751px;
  height: 456px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  align-self: flex-end;
  position: relative;
  z-index: 1;
  margin-top: 75px;
  margin-left: -100px;
}

.about-main-image {
  width: 100%;
  height: 100%;
  background-image: url('../images/about-main.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}

.about-main-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
}

.about-message-image-wrap {
  width: 751px;
  height: 398px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-message-image {
  width: 100%;
  height: 100%;
  background-image: url('../images/about-message.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.about-message-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
}

.about-message-content {
  width: 75%;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-self: flex-end;
  margin-top: 75px;
  margin-left: -100px;
  position: relative;
  z-index: 2;
}

.about-message-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-message-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #245444;
}

.about-message-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.7em;
  letter-spacing: 0.04em;
  color: #245444;
}

.about-message-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  width: 100%;
}

.about-message-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 2em;
  letter-spacing: 0.04em;
  color: #333333;
  width: 100%;
}

.about-message-signature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-message-position {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #333333;
}

.about-message-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #333333;
}

/* 強みセクション */
.strengths-section {
  width: 100%;
  background-color: #FFFFFF;
  padding: 40px 0 80px;
}

.strengths-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.strengths-header {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 24px;
}

.strengths-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.strengths-dot {
  width: 8px;
  height: 8px;
  background-color: #0CA77E;
  border-radius: 50%;
}

.strengths-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #245444;
}

.strengths-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #245444;
}

.strengths-cards {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 40px;
}

.strengths-card {
  width: 350px;
  height: 416px;
  position: relative;
}

.strengths-card-label {
  position: absolute;
  top: 0;
  right: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #245444;
  z-index: 2;
}

.strengths-card-image-wrap {
  width: 350px;
  height: 256px;
  position: relative;
  margin-top: 22px;
  border-radius: 16px;
  overflow: hidden;
}

.strengths-card-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}

.strengths-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
}

.strengths-card-content {
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.strengths-card-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #245444;
  text-align: center;
}

.strengths-card-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7em;
  letter-spacing: 0.04em;
  color: #333333;
}

.strengths-message-box {
  width: 100%;
  height: 146px;
  background-color: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  padding: 32px 40px;
}

.strengths-message-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7em;
  letter-spacing: 0.04em;
  color: #333333;
}
.strengths-message-text .accent{
  color: #245444;
  font-weight: 700;
}

/* サービスセクション */
.service-section {
  width: 100%;
  height: 664px;
  background-image: url('../images/section-background.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-header {
  width: 257px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
  z-index: 2;
}

.service-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-dot {
  width: 8px;
  height: 8px;
  background-color: #0CA77E;
  border-radius: 50%;
}

.service-label-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #245444;
}

.service-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #245444;
  width: 100%;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 33px;
  width: 100%;
  max-width: 1200px;
  justify-content: center;
  align-items: center;
  height: 528px;
}

.service-card {
  width: 257px;
  height: 240px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.service-card-number {
  position: absolute;
  top: 15px;
  left: 20px;
  width: 32px;
  height: 32px;
  background-color: #0CA77E;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 7px;
}

.service-card-number p {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}

.service-card-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.service-icon {
  width: 88px;
  height: 88px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-icon img {
  max-width: 100%;
  max-height: 100%;
}

.service-description {
  height: 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-description p {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.7em;
  letter-spacing: 0.04em;
  color: #333333;
  text-align: center;
}

/* サポートセクション（対応工事と対応エリア） */
.support-section {
  width: 100%;
  padding: 60px 0;
  background-color: #FFFFFF;
}

.support-container {
  max-width: 1160px;
  margin: 0 auto;
}

.support-row {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

.support-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 50%;
}

.support-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.support-dot {
  width: 8px;
  height: 8px;
  background-color: #0CA77E;
  border-radius: 50%;
}

.support-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #245444;
}

.support-card {
  background-color: #FFFFFF;
  border: 1px solid #D9D9D9;
  border-radius: 16px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  padding: 30px;
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.support-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  width: 50%;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-icon {
  width: 28px;
  height: 28px;
  background-image: url('../images/check-icon.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 21px;
}

.support-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #333333;
}

.divider {
  width: 100%;
  height: 1px;
  border-bottom: 1px dashed #C0C0C0;
  margin-bottom: 12px;
}

.area-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.area-map {
  width: 100%;
  height: 228px;
  background-color: #F5F5F5;
  border: 1.5px solid #D9D9D9;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.area-map-image{
  width: 100%;
  height: 100%;
  background-image: url('../images/area-map.png');
  background-size: cover;
  background-position: center;
}

.area-button {
  position: absolute;
  top: 16px;
  left: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 11px;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid #D9D9D9;
  border-radius: 100px;
}

.area-button-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #333333;
}

.area-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7em;
  letter-spacing: 0.04em;
  color: #333333;
  width: 100%;
}

/* カードスタイル */
.card {
  width: 436px;
  height: 507px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.card-image {
  width: 100%;
  height: 300px;
  background-color: #DDDDDD;
  background-image: url('../images/card-image.png');
  background-size: cover;
  background-position: center;
}

.card-description {
  padding: 15px;
  height: 154px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card-title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.21em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.card-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.21em;
  color: #000000;
}

.card-date {
  padding: 10px 15px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.date-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.21em;
  color: #000000;
}

/* 会社概要セクション */
.company-section {
  width: 100%;
  padding: 60px 0;
  background-color: #F5F5F5;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.company-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
}

.company-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.company-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.company-dot {
  width: 8px;
  height: 8px;
  background-color: #0CA77E;
  border-radius: 50%;
}

.company-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #245444;
}

.company-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #245444;
}

.company-info {
  width: 1100px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.company-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.company-row {
  display: flex;
  align-items: center;
}

.company-label-col {
  width: 300px;
  padding-left: 20px;
}

.company-label-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #245444;
}

.company-value-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.company-value-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #333333;
}

.company-value-text.multiline {
  line-height: 1.7em;
}

.company-line {
  width: 1100px;
  height: 1px;
  background-color: #D9D9D9;
}

/* お問い合わせセクション */
.contact-section {
  width: 100%;
  height: 554px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-background {
  width: 100%;
  height: 559px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url('../images/contact-background.jpg');
  background-size: cover;
  background-position: center;
}

.contact-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.4);
}

.contact-container {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 48px;
  display: flex;
  gap: 50px;

}

.contact-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 250px;
}

.contact-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-dot {
  width: 8px;
  height: 8px;
  background-color: #0CA77E;
  border-radius: 50%;
}

.contact-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #245444;
}

.contact-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #245444;
  width: 100%;
  white-space: nowrap;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 563px;
}

.contact-text-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.contact-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #333333;
  width: 100%;
}

.contact-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7em;
  letter-spacing: 0.04em;
  color: #333333;
  width: 100%;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.contact-actions .contact-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 33px;
  width: 280px;
  height: 72px;
  background-color: #F7941D;
  border-radius: 999px;
  padding: 24px 16px;
  position: relative;
}

.contact-actions .contact-button-inner{
  position: relative;
}

.contact-actions .mail-icon-white {
  position: absolute;
  top: 50%;
  left: -1.6rem;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('../images/mail-icon-white.svg');
  background-repeat: no-repeat;
  background-position: center;
}

.contact-actions .button-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  margin-left: 8px;
}

.contact-actions .arrow-icon {
  width: 7px;
  height: 11px;
  background-image: url('../images/arrow-right.svg');
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 24px;
}

.phone-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-icon-green {
  width: 24px;
  height: 26px;
  background-image: url('../images/phone-icon.svg');
  background-repeat: no-repeat;
  background-position: center;
}

.phone-number-large {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #245444;
}

/* フッターセクション */
.footer-section {
  width: 100%;
  height: 186px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-container {
  width: 1100px;
  margin: 0 auto;
}

.footer-content {
  position: relative;
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
}

.footer-logo {
  width: 157px;
  height: 30px;
  background-image: url('../images/footer-logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.footer-nav {
  position: absolute;
  left: 245px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 610px;
}

.footer-nav-item {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-nav-item a {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1em;
  letter-spacing: 0.04em;
  color: #333333;
  white-space: nowrap;
}

.footer-nav-line {
  width: 1px;
  height: 14px;
  background-color: #C0C0C0;
}

.footer-copyright {
  position: absolute;
  right: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1em;
  color: #333333;
}

/* iPadおよびタブレット向けレスポンシブスタイル */
@media screen and (max-width: 1024px) {
  /* ヘッダー */
  .header-inner {
    padding: 10px 20px;
    justify-content: flex-start;
  }
  
  .hamburger-menu {
    display: flex;
  }
  
  .header-nav-wrap {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background-color: #FFFFFF;
    flex-direction: column;
    padding: 120px 20px 40px;
    gap: 40px;
    transition: all 0.5s ease;
    z-index: 100;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    justify-content: space-between;
  }
  
  .header-nav-wrap.active {
    right: 0;
  }
  
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  
  .nav-item {
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    width: 100%;
  }

  .logo-wrap {
    padding-right: 20px;
  }
  
  .action-container {
    width: 100%;
    gap: 15px;
    flex-direction: column-reverse;
    max-width: 500px;
  }
  
  .call-text {
    font-size: 12px;
  }
  
  .phone-number {
    font-size: 20px;
    white-space: nowrap;
  }

  .action-container .contact{
    width: 100%;
    height: auto;
    padding: 20px;
    border-radius: 100px;
  }
  .contact-item-inner{
    width: unset;
    flex-direction: row;
  }
  .contact-item-inner .mail-icon{
    position: unset;
    top: unset;
    left: unset;
    transform: unset;
  }
  
  .header .contact-text {
    font-size: 18px;
    width: 120px;
  }
  
  /* FVセクション */
  .fv-section {
    height: 500px;
  }
  
  .fv-image {
    width: 85%;
    margin: 0 -15% 0 15%;
    border-radius: 40px 0 0 40px;
  }
  
  .fv-content {
    left: 15%;
  }
  
  .fv-heading {
    font-size: 48px;
  }
  
  .fv-subtitle {
    width: 480px;
  }
  
  /* About セクション */
  .about-section {
    height: auto;
    padding: 40px 20px;
  }
  
  .about-container {
    gap: 60px;
  }
  
  .about-row {
    flex-direction: column;
    align-items: center;
  }
  
  .about-main-content {
    width: 100%;
    z-index: 2;
  }
  
  .about-main-image-wrap {
    width: 100%;
    height: 380px;
    margin-left: 0;
    margin-top: 0;
  }
  
  .about-message-image-wrap {
    width: 100%;
    height: 350px;
    order: 2;
  }
  
  .about-message-content {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    order: 1;
  }
  
  /* 強みセクション */
  .strengths-section {
    padding: 40px 20px 60px;
  }
  
  .strengths-container {
    max-width: 100%;
  }
  
  .strengths-cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  .strengths-cards::after{
    content: '';
    display: block;
    width: 45%;
    margin-top: 30px;
  }
  
  .strengths-card {
    width: 45%;
    height: auto;
  }
  
  .strengths-card-image-wrap {
    width: 100%;
    height: 220px;
  }
  
  .strengths-message-box {
    height: auto;
    padding: 25px;
  }
  
  /* サービスセクション */
  .service-section {
    height: auto;
    padding: 40px 20px;
  }
  
  .service-cards {
    flex-wrap: wrap;
    height: auto;
    gap: 20px;
    padding: 30px 0;
    justify-content: space-between;
  }
  .service-cards::after{
    content: '';
    display: block;
    width: 31.5%;
  }
  
  .service-header{
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .service-label{
    justify-content: center;
  }
  .service-card {
    width: 31.5%;
  }
  
  /* サポートセクション */
  .support-section {
    padding: 40px 20px;
  }
  
  .support-row {
    gap: 40px;
  }
  
  .support-column {
    width: 50%;
  }
  .support-card{
    flex-wrap: wrap;
  }
  .support-list{
    width: 100%;
  }
  
  .area-map {
    height: 200px;
  }
  
  /* 会社概要セクション */
  .company-section {
    padding: 40px 20px;
  }
  
  .company-container {
    max-width: 100%;
  }
  
  .company-info {
    width: 100%;
  }
  
  .company-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .company-label-col {
    width: 100%;
    padding-left: 0;
  }
  
  .company-line {
    width: 100%;
  }
  
  /* お問い合わせセクション */
  .contact-section {
    height: auto;
    padding: 40px 20px;
  }
  
  .contact-container {
    width: 90%;
    flex-direction: column;
    padding: 30px;
    gap: 30px;
  }
  
  .contact-header {
    min-width: auto;
    align-items: center;
  }
  .contact-title{
    text-align: center;
  }
  .contact-heading{
    text-align: center;
    line-height: 1.6;
  }
  .contact-content {
    width: 100%;
  }
  
  .contact-actions {
    flex-direction: column;
    align-items: center;
  }
  
  /* フッターセクション */
  .footer-section {
    height: auto;
    padding: 30px 20px;
  }
  
  .footer-content {
    flex-direction: column;
    height: auto;
    gap: 20px;
    align-items: center;
  }
  
  .footer-nav {
    position: static;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  
  .footer-copyright {
    position: static;
    margin-top: 20px;
  }

  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* スマホ向けレスポンシブスタイル */
@media screen and (max-width: 480px) {
  .header {
    height: 75px;
  }
  .logo-wrap{
    position: relative;
    padding-left: 0;
    z-index: 101;
  }
  .logo-image{
    width: 170px;
  }
  .header-nav-wrap{
    width: 100%;
    padding-bottom: 100px;
  }
  
  .about-header,
  .about-message-header,
  .strengths-header,
  .service-header,
  .company-header,
  .contact-header{
    gap: 12px;
  }
  .about-title,
  .about-message-title,
  .strengths-title,
  .service-title{
    font-size: 22px;
    line-height: 1.4em;
  }
  .support-title{
    font-size: 20px;
  }
  
  /* FVセクション */
  .fv-section {
    height: 420px;
  }
  
  .fv-image {
    width: 95%;
    margin: 0 -5% 0 5%;
    border-radius: 20px 0 0 20px;
  }
  
  .fv-content {
    left: 10%;
    transform: translate(-10%, -45%);
  }
  .fv-heading{
    font-size: 28px;
  }
  
  .fv-subtitle {
    width: 280px;
    font-size: 12px;
  }
  
  /* About セクション */
  .about-section {
    padding: 30px 15px;
  }
  .about-message-title{
    white-space: nowrap;
  }
  
  .about-container {
    gap: 40px;
  }
  
  .about-main-content {
    padding: 20px;
  }
  
  .about-description {
    font-size: 14px;
  }
  
  .about-main-image-wrap {
    height: 250px;
  }
  
  .about-message-image-wrap {
    height: 250px;
  }
  
  .about-message-content {
    padding: 20px 10px;
  }
  
  /* 強みセクション */
  .strengths-section {
    padding: 30px 15px 40px;
  }
  
  .strengths-cards {
    gap: 20px;
  }
  
  .strengths-cards::after {
    display: none;
  }
  
  .strengths-card {
    width: 100%;
    height: auto;
  }
  
  .strengths-card-image-wrap {
    height: 200px;
  }
  
  .strengths-card-title {
    font-size: 18px;
  }
  
  .strengths-message-box {
    padding: 20px;
  }
  
  .strengths-message-text {
    font-size: 14px;
  }
  
  /* サービスセクション */
  .service-section {
    padding: 30px 15px;
  }
  
  .service-header {
    margin-bottom: 25px;
  }
  
  .service-cards {
    padding: 0;
    gap: 15px;
  }
  
  .service-cards::after {
    display: none;
  }
  
  .service-card {
    width: 100%;
    height: auto;
    padding: 20px 15px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
  }
  
  .service-card-content {
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
    padding-left: 60px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
  }
  
  .service-description {
    height: auto;
    align-items: flex-start;
  }
  
  .service-description p {
    font-size: 16px;
    text-align: left;
  }
  
  /* サポートセクション */
  .support-section {
    padding: 30px 15px;
  }
  
  .support-row {
    flex-direction: column;
    gap: 30px;
  }
  
  .support-column {
    width: 100%;
  }
  
  .support-title {
    font-size: 24px;
  }
  
  .support-card {
    padding: 20px 15px;
  }
  
  .support-text {
    font-size: 16px;
  }
  
  .check-icon {
    width: 22px;
    height: 22px;
    background-size: 16px;
  }
  
  .area-map {
    height: 180px;
  }
  
  .area-button {
    left: 15px;
    padding: 8px;
  }
  
  .area-button-text {
    font-size: 12px;
  }
  
  /* 会社概要セクション */
  .company-section {
    padding: 30px 15px;
  }
  
  .company-title {
    font-size: 28px;
  }
  
  .company-item {
    gap: 15px;
  }
  
  .company-label-text {
    font-size: 14px;
  }
  
  /* お問い合わせセクション */
  .contact-section {
    padding: 30px 15px;
    height: auto;
  }
  .contact-text-box,
  .contact-content{
    gap: 20px;
  }
  
  .contact-container {
    width: 100%;
    padding: 25px 15px;
  }
  
  .contact-title {
    font-size: 28px;
  }
  
  .contact-heading {
    font-size: 18px;
  }
  
  .contact-text {
    font-size: 14px;
  }
  
  .contact-actions .contact-button {
    width: 100%;
    height: 60px;
  }
  
  .contact-actions .button-text {
    font-size: 14px;
  }
  
  .phone-number-large {
    font-size: 20px;
  }
  
  /* フッターセクション */
  .footer-section {
    padding: 30px 15px;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 30px;
    padding: 15px 0;
  }
  
  .footer-nav-item {
    width: 100%;
    justify-content: center;
  }
  
  .footer-nav-line {
    display: none;
  }
}

/* セクションスクロール調整 */
#about, #strengths, #service, #company, #contact {
  scroll-margin-top: 100px;
}

@media screen and (max-width: 1024px) {
  #about, #strengths, #service, #company, #contact {
    scroll-margin-top: 80px;
  }
}

@media screen and (max-width: 768px) {
  #about, #strengths, #service, #company, #contact {
    scroll-margin-top: 60px;
  }
}

@media screen and (max-width: 480px) {
  #about, #strengths, #service, #company, #contact {
    scroll-margin-top: 75px;
  }
}

@media screen and (min-width: 481px) {
  .sp-only{
    display: none;
  }
}