﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  line-height: 1.6;
}
button{
  all: unset;        /* 全てのプロパティを初期値に戻す */
  display: inline-block; /* unsetするとinlineになるため、必要に応じて戻す */
  cursor: pointer;       /* unsetするとdefaultになるため、指マークに戻す */
  box-sizing: border-box;
  text-align: center;
}
a {
  color: #4d957f;
  font-weight: bold;
}
.pc-view {
  display: block !important;
}
.sp-view {
  display: none !important;
}
.sp-fv {
  display: none !important;
}
.gardening-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}
/* Background image layer - 1500px wide */

.gardening-background-layer {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1500px;
  height: 100%;
}
/* Main content area - 1200px wide */

.gardening-content-area {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  background-color: #fcf8f3;
  z-index: 2;
  padding: 30px 40px;
  padding-bottom: 60px;
}
/* Header row - 2つの要素が横並び */

.gardening-header-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.gardening-category-tab {
  border: 1px solid #4d957f;
  border-radius: 12px;
  padding: 4px 26px;
  font-size: 21px;
  color: #4d957f;
  font-weight: 400;
  white-space: nowrap;
}
.gardening-title-block {
  flex: 1;
}
.gardening-main-title {
  font-size: 28px;
  font-weight: 400;
  color: #4d957f;
  margin-bottom: 5px;
}
.gardening-subtitle {
  font-size: 10px;
  color: #4d957f;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}
/* Content section */

.gardening-content-section {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.gardening-header-image {
  width: 158px;
  height: auto;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.gardening-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gardening-description {
  flex: 1;
  font-size: 18px;
  color: #4d957f;
  line-height: 1.8;
  font-weight: 400;
}
.gardening-photo {
  margin-top: 20px;
  text-align: center;
}
.gardening-message {
  margin-top: 50px;
  text-align: center;
}
.gardening-photo img,
.gardening-message img {
  max-width: 100%;
  margin: 0 auto;
}
/* 秋冬の落葉樹対応セクション */
.seasonal-trees-section {
  width: 100%;
  padding: 60px 0;
  background-color: #f6faf0;
}
.seasonal-trees-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
.seasonal-trees-title {
  font-size: 28px;
  color: #4d957f;
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
}
.seasonal-trees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.seasonal-tree-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  background-color: white;
  padding: 10px;
}
.seasonal-tree-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}
.seasonal-tree-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.seasonal-tree-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6faf0;
  color: #4d957f;
  font-size: 24px;
  font-weight: 400;
  border-radius: 4px;
}
.seasonal-tree-name {
  font-size: 18px;
  color: #4d957f;
  font-weight: 400;
  text-align: center;
  margin-top: 0;
}
/* 対応樹種セクション */
.tree-types-section {
  margin-top: 60px;
  padding: 40px 0;
}
.tree-types-title {
  font-size: 28px;
  color: #4d957f;
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
}
.tree-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.tree-type-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  background-color: #f6faf0;
  padding: 15px;
}
.tree-type-image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tree-type-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tree-type-name {
  font-size: 16px;
  color: #4d957f;
  font-weight: 400;
  text-align: center;
  margin-top: 0;
}
/* Corporate section container - full width background */

.corporate-container {
  position: relative;
  width: 100%;
  background-color: #fcf8f3;
  margin-top: 80px;
  overflow: hidden;
}
/* Corporate content area - 1200px wide */

.corporate-content-area {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  z-index: 2;
  padding: 30px 40px;
  padding-bottom: 60px;
}
/* Corporate section content layout - 全体のコンテナ */

.corporate-content-section {
  display: flex;
  align-items: stretch;
  gap: 50px;
  margin-top: 20px;
}
/* 左側エリア（タイトル+テキスト） */

.corporate-left-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Corporate section header layout - 左側に統合 */

.corporate-header-layout {
  text-align: left;
  margin-bottom: 30px;
}
.corporate-category-tab {
  border: 1px solid #4d957f;
  border-radius: 12px;
  padding: 4px 26px;
  font-size: 21px;
  color: #4d957f;
  font-weight: 400;
  white-space: nowrap;
  display: inline-block;
  margin-bottom: 20px;
}
.corporate-title-block {
  margin-left: 0;
}
.corporate-main-title {
  font-size: 28px;
  font-weight: 400;
  color: #4d957f;
  margin-bottom: 5px;
}
.corporate-subtitle {
  font-size: 10px;
  color: #4d957f;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}
.corporate-text-area {
  font-size: 14px;
  color: #4d957f;
  line-height: 1.8;
  font-weight: 400;
}
.corporate-image-area {
  flex-shrink: 0;
  width: 450px;
  text-align: right;
  display: flex;
  align-items: center;
}
.corporate-image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 画像がコンテナに合わせて調整される */
  max-width: 450px;
}
/* Services section styles */

.services-section {
  padding: 60px 0;
  text-align: center;
  width: 100%;
}
.services-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.services-intro {
  margin-bottom: 50px;
}
.services-main-text {
  font-size: 28px;
  color: #4d957f;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.4;
}
.services-sub-text {
  font-size: 20px;
  color: #4d957f;
  margin-bottom: 8px;
  line-height: 1.4;
}
.services-contact-text {
  font-size: 20px;
  color: #4d957f;
  line-height: 1.4;
}
.services-icons {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
}
.service-icon {
  width: 115px;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.service-icon img {
  width: 115px;
  height: 115px;
}
.services-service-title {
  font-size: 14px;
  color: #4d957f;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1.3;
  text-align: center;
}
.services-service-description {
  font-size: 14px;
  color: #4d957f;
  line-height: 1.4;
  text-align: center;
}
/* Services section specific selectors to avoid conflicts */

.services-section .service-title {
  font-size: 14px !important;
  color: #4d957f;
  font-weight: bold;
  margin-bottom: 5px;
  line-height: 1.3;
  text-align: center;
}
.services-section .service-description {
  font-size: 14px !important;
  color: #4d957f;
  line-height: 1.4;
  text-align: center;
}
.price-button {
  display: inline-block;
  background-color: #778b44;
  color: white;
  padding: 18px 60px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.2s ease;
  position: relative;
}
.price-button:hover {
  transform: translateY(-2px);
}
.price-button::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 16px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 20px;
  vertical-align: baseline;
  position: relative;
  top: 3px;
}
/* Decorative trees */

.gardening-tree {
  position: absolute;
  z-index: 3;
}
.gardening-tree-left {
  top: 280px;
  left: -250px;
  width: 412px;
  height: auto;
}
.gardening-tree-right {
  top: 1020px;
  right: -220px;
  width: 481px;
  height: auto;
}
.gardening-tree img {
  width: 100%;
  height: auto;
  display: block;
}
/* Header styles */

header {
  background: #f6faf0;
  padding: 10px 0;
}
.container {
  width: 1400px;
  margin: 0 auto;
}
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar .left {
  width: 74%;
  flex: 1;
}
.top-bar .left h1 {
  margin: 0;
}
.top-bar .left img {
  max-height: 75px;
}
.top-bar .center {
  width: 13%;
  flex: 0 0 auto;
  text-align: center;
}
.top-bar .center a {
  display: inline-block;
}
.top-bar .center img {
  height: 75px;
}
.top-bar .right {
  width: 13%;
  flex: 1;
  text-align: center;
}
.top-bar .right img {
  height: 36px;
}
.top-bar .right .card-text {
  font-size: 15px;
  color: #3a8314;
  font-weight: bold;
  margin-bottom: 5px;
}

.headline {
  text-align: center;
  margin: 40px 0 20px;
}
.headline h3 {
  font-size: 24px;
  color: #3a643a;
  margin: 0;
}
.headline .sub {
  color: #8c8c8c;
  margin-top: 10px;
  font-size: 14px;
}
.cta-box {
  background: #e4f5d7;
  padding: 30px;
  text-align: center;
  margin: 40px auto;
  width: 1000px;
  border-radius: 10px;
}
.cta-box p {
  font-size: 20px;
  margin-bottom: 10px;
}
.cta-box a {
  background: #ff5757;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  margin: 10px;
}
.cta-box .tel {
  font-size: 18px;
  font-weight: bold;
}
.cta-box .hours {
  font-size: 14px;
  color: #555;
}
.garden-section {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.background-image {
  width: 100%;
  height: auto;
  display: block;
}
.text-overlay {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
  padding: 15px 30px;
}
.sub-info {
  font-size: 32px;
  color: #3a8314;
  font-weight: bold;
  margin: 0;
  line-height: 1.3;
}
.sub-info .line1 {
  display: block;
  margin-bottom: 8px;
}
.sub-info .line2 {
  display: block;
}
.service-area {
  display: flex;
  align-items: center;
  padding-left: 25px;
  color: white;
  height: 100%;
}
.service-description {
  font-size: 34px;
  font-weight: bold;
  line-height: 1.2;
  margin-right: 3px;
}
.zero-price {
  font-size: 125px;
  font-weight: bold;
  color: white;
  line-height: 1;
  display: flex;
  align-items: flex-end;
}
.yen-unit {
  font-size: 50px;
}
.consultation-area {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 20px;
  height: 100%;
}
.consultation-message {
  text-align: center;
  line-height: 1.5;
  margin-left: 20px;
  margin-right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #030303;
}
.right-arrow {
  display: inline-block;
  vertical-align: middle;
}
.right-arrow img {
  width: 20px;
  height: 36px;
  vertical-align: middle;
}
/* 3つの理由セクション */

.reasons-container {
  width: 100%;
  padding: 50px 0 50px 0;
  background-color: white;
}
.reasons-content-area {
  width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.reasons-layout {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* 要素1：3つの理由ブロック */

.three-reasons-block {
  width: 100%;
  background-color: #fcf8f3;
  padding: 50px 15px;
  border-radius: 4em;
  text-align: center;
  box-sizing: border-box;
}
.three-reasons-title {
  margin-bottom: 15px;
}
.reasons-subtitle {
  font-size: 18px;
  color: #4d957f;
  margin-bottom: 0px;
}
.reasons-main-title {
  color: #4d957f;
  font-weight: bold;
  margin: 0 0 15px 0;
}
.reasons-main-title .number {
  font-size: 72px;
}
.reasons-main-title .text {
  font-size: 48px;
}
.achievement-text {
  font-size: 18px;
  color: #4d957f;
  margin-bottom: 0px;
}
.reason-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reason-point {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  font-size: 18px;
  color: #4d957f;
  line-height: 1.6;
  text-align: left;
}
.reason-point-title {
  font-size: 20px;
  font-weight: bold;
  color: #4d957f;
  margin-bottom: 10px;
  line-height: 1.4;
}
.reason-point-image {
  width: 100%;
  margin: 15px 0;
  text-align: center;
}
.reason-point-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.reason-point-description {
  font-size: 16px;
  color: #4d957f;
  line-height: 1.8;
}
/* 要素2：アフターサポートブロック */

.after-support-block {
  width: 100%;
  background-color: #fcf8f3;
  padding: 25px;
  border-radius: 4em;
  text-align: center;
  box-sizing: border-box;
}
.after-support-title {
  font-size: 24px;
  color: #4d957f;
  margin-bottom: 8px;
}
.after-support-subtitle {
  font-size: 22px;
  color: #4d957f;
  margin-bottom: 45px;
}
.support-services {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.support-service {
  padding: 0;
}
.support-service-title {
  font-size: 18px;
  color: #4d957f;
  margin-bottom: 5px;
}
.support-service-description {
  font-size: 18px;
  color: #4d957f;
  line-height: 1.5;
  margin-bottom: 30px;
}
/* 要素3：対応エリアブロック */

.area-info-block {
  width: 100%;
  background-color: #fcf8f3;
  padding: 25px;
  border-radius: 4em;
  text-align: center;
  box-sizing: border-box;
}
.area-title {
  font-size: 14px;
  color: #4d957f;
  font-weight: 400;
  margin-bottom: 10px;
  border-bottom: 1px solid #4d957f;
  display: inline-block;
  padding-bottom: 3px;
}
.area-name {
  font-size: 24px;
  color: #4d957f;
  margin-bottom: 15px;
}
.area-notes {
  font-size: 14px;
  color: #4d957f;
  line-height: 1.6;
}
/* 料金プランセクション */

.pricing-plan-container {
  width: 100%;
  padding: 100px 0;
  background-color: white;
  display: flex;
  justify-content: center;
}
.pricing-plan-wrapper {
  width: 1360px;
  background-color: #f6faf0;
  border-radius: 4em;
  padding: 60px 140px;
}
.pricing-plan-content {
  width: 1080px;
  margin: 0 auto;
}
.pricing-plan-title {
  font-size: 32px;
  color: #4d957f;
  font-weight: 400;
  margin-bottom: 40px;
  text-align: left;
}
.pricing-service-container {
  position: relative;
  border: 1px solid #4d957f;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #f6faf0;
  border-radius: 0;
  border-top-left-radius: 0;
}
.pricing-service-container::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 120px;
  height: 25px;
  background-color: #f6faf0;
}
.pricing-service-header {
  position: absolute;
  top: -20px;
  left: -10px;
  background-color: #f6faf0;
  padding: 5px 10px;
  font-size: 20px;
  color: #4d957f;
  z-index: 2;
}
.pricing-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 10px;
}
.pricing-left-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.pricing-right-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.pricing-item {
  background-color: white;
  padding: 10px;
  border-radius: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
}
.pricing-left-column .pricing-item {
  min-height: 40px;
}
.pricing-right-column .pricing-item {
  min-height: 40px;
}
.pricing-right-column .pricing-item:nth-child(5),
.pricing-right-column .pricing-item:nth-child(6) {
  min-height: 75px;
}
.service-name {
  font-size: 16px;
  color: #4d957f;
  line-height: 1.4;
}
.service-price {
  font-size: 16px;
  color: #4d957f;
  white-space: nowrap;
}
.pricing-area-info {
  text-align: center;
}
.pricing-area-title {
  font-size: 22px;
  color: #4d957f;
  margin-bottom: 10px;
  border-bottom: 2px solid #4d957f;
  display: inline-block;
  padding-bottom: 5px;
}
.pricing-area-notes {
  font-size: 12px;
  color: #4d957f;
  line-height: 1.6;
  margin-top: 20px;
}
/* 施工の流れセクション */

.flow-container {
  width: 100%;
  padding: 80px 0;
  background-color: white;
}
.flow-content-area {
  width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.flow-section-title {
  text-align: center;
  margin-bottom: 60px;
}
.flow-main-title {
  font-size: 36px;
  font-weight: 400;
  color: #4d957f;
  margin: 0;
}
.flow-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.flow-step {
  flex: 1;
  text-align: left;
}
.flow-step-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.flow-step-number {
  font-size: 36px;
  font-weight: bold;
  color: #4d957f;
  margin-right: 10px;
}
.flow-step-title {
  font-size: 20px;
  color: #4d957f;
  font-weight: 400;
  margin: 0;
}
.flow-step-image {
  width: 180px;
  height: 120px;
  margin-bottom: 20px;
  overflow: hidden;
}
.flow-step-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.flow-step-description {
  font-size: 16px;
  color: #4d957f;
  line-height: 1.6;
}
/* 暮らしづくり以外の活動セクション */

.activities-container {
  width: 100%;
  padding: 80px 0;
  background-color: white;
}
.activities-content-area {
  width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.activities-section-title {
  text-align: center;
  margin-bottom: 60px;
}
.activities-container .activities-main-title {
  font-size: 36px;
  font-weight: 400;
  color: #333333 !important;
  margin: 0;
  background-color: #f6faf0 !important;
  padding: 20px 40px !important;
  border-radius: 2.5em !important;
  display: inline-block !important;
}
.activities-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
.activity-item {
  flex: 1;
  text-align: center;
  background-color: #f6faf0;
  padding: 30px 20px;
  border-radius: 8px;
}
.activity-title {
  font-size: 24px;
  color: #333333;
  font-weight: 400;
  margin-bottom: 30px;
}
.activity-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.activity-image img {
  width: 100% !important;
}
.about-container {
  position: relative;
  width: 100%;
  margin-top: 80px;
  overflow: hidden;
}
.about-content-area {
  position: relative;
  width: 1200px;
  margin: 0 auto;
  z-index: 2;
  padding: 60px 40px;
}
.about-content-section {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  justify-content: space-between;
}
.about-vertical-title {
  flex-shrink: 0;
  width: 40px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 28px;
  font-weight: 400;
  color: #707070;
  margin: 0;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
.about-text-area {
  flex: 1;
  max-width: 480px;
  padding-top: 20px;
}
.about-main-title {
  font-size: 28px;
  color: #707070;
  font-weight: 300;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-description {
  font-size: 18px;
  color: #707070;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 40px;
}
.about-link-wrapper {
  display: flex;
  justify-content: flex-end;
}
.about-more-link {
  display: inline-flex;
  align-items: center;
  color: #4d957f;
  text-decoration: none;
  font-size: 36px;
  font-weight: 500;
  transition: all 0.3s ease;
  gap: 8px;
}
.about-more-link:hover {
  transform: translateY(-3px);
}
.about-image-area {
  flex-shrink: 0;
  width: 390px;
  height: 447px;
  overflow: hidden;
  border-radius: 8px;
}
.about-image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-container {
  width: 850px;
  background-color: white;
  border-radius: 20px;
  padding: 40px 50px;
  margin: 0 auto;
  margin-top: 80px;
}
.header-section {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0px;
  gap: 30px;
}
.title-area {
  flex: 1;
}
.main-title {
  width: auto;
  height: auto;
  max-width: 100%;
  padding-top: 30px;
}
.illustration-area {
  flex-shrink: 0;
  margin-top: -80px;
}
.worker-illustration {
  width: 221px;
  height: auto;
}
.problems-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.problem-item {
  font-size: 28px;
  color: #4d957f;
  font-weight: 500;
  line-height: 1.6;
  padding-left: 10px;
}
.problem-item:before {
  content: "「";
  margin-right: 2px;
}
.problem-item:after {
  content: "」";
  margin-left: 2px;
}
.problem-item:last-child:after {
  content: "";
}
.dots {
  color: #4d957f;
  font-size: 24px;
  display: inline;
}
.dots:before {
  content: "」";
  margin-right: 5px;
}
/* フォームセクションのCSS - 既存HTMLに対応 */

.form-container {
  width: 1100px;
  max-width: 100%;
  padding: 50px 0;
  background-color: #fcf8f3;
  /* この行を追加 */
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
/* 既存の #contact-form を800px幅に調整 */

#contact-form {
  position: relative;
  z-index: 2;
  padding: 0px 0 !important;
  max-width: 800px !important;
  margin: auto !important;
  width: 800px;
}
/* フォームタイトル */

.form-ttl {
  font-size: 32px;
  color: #4d957f;
  font-weight: 400;
  margin-bottom: 40px;
  text-align: center;
}
/* フォーム全体 */

#inquiry-form {
  width: 100%;
}
/* 各フォームフィールドのdivのスタイル調整 */

#inquiry-form > div {
  margin-bottom: 25px !important;
}
/* ラベルのスタイル */

#inquiry-form label {
  display: block;
  font-size: 16px;
  color: #4d957f;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.6;
}
/* 入力フィールド、セレクト、テキストエリアの共通スタイル */

#inquiry-form input,
#inquiry-form select,
#inquiry-form textarea {
  width: 100% !important;
  padding: 12px 16px !important;
  border: 1px solid #d4cfc4 !important;
  border-radius: 8px;
  font-size: 16px;
  color: #4d957f;
  background-color: white;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
/* フォーカス時のスタイル */

#inquiry-form input:focus,
#inquiry-form select:focus,
#inquiry-form textarea:focus {
  outline: none;
  border-color: #4d957f !important;
  box-shadow: 0 0 0 2px rgba(77, 149, 127, 0.1);
}
/* テキストエリアの高さ調整 */

#inquiry-form textarea {
  min-height: 120px;
  resize: vertical;
}
/* 送信ボタンのスタイル */

#inquiry-form button[type="submit"] {
  width: 100% !important;
  background-color: transparent !important;
  color: #4d957f !important;
  border: 2px solid #4d957f !important;
  padding: 18px 60px !important;
  font-size: 24px !important;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}
#inquiry-form button[type="submit"]:hover {
  background-color: #4d957f !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(77, 149, 127, 0.3);
}
/* フォーム下部のキャプション */

.form-cap {
  text-align: center;
  font-size: 18px;
  color: #4d957f;
  margin-top: 30px;
  font-weight: 400;
  line-height: 1.6;
}
/* 送信後メッセージのスタイル調整 */

#form-response {
  margin-top: 30px !important;
  padding: 1em !important;
  border: 2px solid #4d957f !important;
  background: rgba(77, 149, 127, 0.1) !important;
  color: #4d957f !important;
  border-radius: 8px;
  text-align: center !important;
}
/* 会社紹介セクション */

.company-intro-section {
  position: relative;
  width: 100%;
  margin-top: 120px;
}
/* 社名コンテナ（背景色エリア外） */

.company-name-container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  margin-bottom: 60px;
}
.company-name {
  font-size: 32px;
  color: #4d957f;
  font-weight: 400;
  margin: 0;
  text-align: left;
}
/* 写真コンテナ（背景色エリアにはみ出し） */

.company-photo-container {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: -120px;
  /* 写真の40%分を下のエリアに重ねる */
}
.company-staff-photo {
  width: 500px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
/* 背景色エリア */

.company-message-section {
  width: 100%;
  background-color: #fcf8f3;
  padding-top: 120px;
  /* 写真のはみ出し分を考慮 */
  padding-bottom: 80px;
}
.company-message-container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.company-message-title {
  font-size: 36px;
  color: #4d957f;
  font-weight: 400;
  margin-bottom: 40px;
  margin-top: 40px;
}
.company-message-content {
  max-width: 800px;
  margin: 0 auto;
}
.company-message-text {
  font-size: 18px;
  color: #4d957f;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 400;
}
.company-signature {
  font-size: 18px;
  color: #4d957f;
  margin: 0;
  text-align: right;
  font-weight: 400;
}
/* 会社概要セクション */

.company-overview-section {
  width: 100%;
  padding: 80px 0;
  background-color: white;
}
.company-overview-container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.company-overview-title {
  font-size: 32px;
  color: #4d957f;
  font-weight: 400;
  margin-bottom: 40px;
  text-align: center;
}
.company-overview-content {
  width: 900px;
  background-color: #fcf8f3;
  border-radius: 8em;
  padding: 40px 120px;
}
.company-info-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 40px;
}
.company-info-row:last-child {
  margin-bottom: 0;
}
.company-info-label {
  font-size: 18px;
  color: #4d957f;
  font-weight: 400;
  width: 120px;
  flex-shrink: 0;
}
.company-info-value {
  font-size: 18px;
  color: #4d957f;
  line-height: 1.6;
  flex: 1;
}
/* フッター - フローティングバナー用に調整 */

.site-footer {
  width: 100%;
  padding: 20px 0;
  margin-top: 0;
  /* フローティングバナーの高さ分の余白を追加 + 15px余裕 */
  padding-bottom: 215px;
}
.footer-container {
  width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.copyright {
  font-size: 12px;
  color: #4d957f;
  margin: 0;
}

.cta-section {
  width: 100%;
  padding: 40px 15px;
}
.cta-section h2 {
  font-size: 24px;
  color: #f00;
  margin-bottom: 25px;
  text-align: center;
}
.cta-section .btn-wrapper {
  display: flex;
  gap: 20px;
  flex-direction: column;
  text-align: center;
}
.cta-section .btn-wrapper .cta-btn {
  width: 100%;
}
.cta-section .btn-wrapper .cta-btn .btn-mcopy {
  font-size: 16px;
  color: #4d957f;
  display: inline-block;
  margin-bottom: 5px;
  text-align: center;
}
.cta-section .btn-wrapper .cta-btn a {
  font-size: 20px;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  background: #8bd123;
  box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 15px 40px;
  text-align: center;
  display: block;
  width: 600px;
  margin: 0 auto;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cta-section .btn-wrapper .cta-btn a:hover {
  background: #6cb51a;
  color: #fff;
}
.cta-section .btn-wrapper .btn-web a {
  background: #778b44;
}
.cta-section .btn-wrapper .btn-web a::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(img/mail.svg) no-repeat center center;
  background-size: contain;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-section .btn-wrapper .btn-tel a::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url(img/tel.svg) no-repeat center center;
  background-size: contain;
  margin-right: 10px;
  vertical-align: middle;
}
@media (max-width: 1400px) {
  .gardening-background-layer {
    width: 100vw;
  }
  .container {
    width: 100%;
    margin: 0 auto;
  }

  /* バナー レスポンシブ対応 */
  .banner-container {
    width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 1200px) {
  /* ヘッダーのレスポンシブ対応 */
  .top-bar .right {
    display: none !important;
  }
  .top-bar {
    justify-content: space-between;
  }
  .top-bar .left,
  .top-bar .center {
    width: auto;
    flex: 0 0 auto;
  }
  .top-bar .left img,
  .top-bar .center img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
  }
  .gardening-content-area,
  .corporate-content-area,
  .about-content-area,
  .flow-content-area,
  .activities-content-area,
  .reasons-content-area {
    width: 100%;
    padding: 40px 60px;
  }
  .pricing-plan-wrapper {
    width: 100%;
    padding: 40px 60px;
  }
  .pricing-plan-content {
    width: 100%;
  }
  .about-content-area {
    padding: 60px 60px;
  }
  .reasons-layout {
    width: 100%;
  }
  .form-container::before {
    width: calc(100% - 80px);
    margin: 0 40px;
  }
  #contact-form {
    width: calc(100% - 160px);
    max-width: 800px !important;
  }
  .company-name-container,
  .company-message-container,
  .company-overview-container,
  .footer-container {
    width: 100%;
    padding: 0 60px;
  }
  .company-overview-content {
    width: 100%;
    max-width: 900px;
  }
}
@media (max-width: 1150px) {
  .reasons-container {
    width: 100%;
    padding: 00px 0 0px 0;
    background-color: white;
  }
  .reasons-layout {
    position: static;
    height: auto;
  }
  .three-reasons-block,
  .after-support-block,
  .area-info-block {
    position: static !important;
    width: 100% !important;
    margin-bottom: 20px;
  }
  /* バナー レスポンシブ対応 - タブレットまではPCと同じ */
  .banner-container {
    width: 100%;
    padding: 0 20px;
  }
}
@media (max-width: 900px) {
  .experience-container {
    width: 100%;
    max-width: 850px;
    padding: 30px 25px;
  }
  .illustration-area {
    margin-top: 0px;
  }
  .form-container::before {
    width: calc(100% - 40px);
    margin: 0 20px;
  }
  #contact-form {
    width: calc(100% - 120px);
    padding: 40px 0 !important;
  }
  .form-ttl {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  /* ヘッダーのスマホ対応 - 横並びを維持 */
  .pc-view {
    display: none !important;
  }
  .sp-view {
    display: block !important;
  }
  .top-bar {
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  .top-bar .left,
  .top-bar .center {
    width: auto;
    flex: 0 0 auto;
  }
  .top-bar .left img {
    max-height: 48px;
  }
  .top-bar .center img {
    max-height: 48px;
  }
  .gardening-content-area,
  .corporate-content-area,
  .flow-content-area,
  .activities-content-area,
  .reasons-content-area {
    padding: 30px 20px;
  }
  .pricing-plan-wrapper {
    padding: 30px 40px;
  }
  .pricing-plan-content {
    width: 100%;
  }
  .reasons-layout {
    gap: 20px;
  }
  .reason-point {
    padding: 15px;
    text-align: left;
  }
  .reason-point-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .reason-point-image {
    margin: 12px 0;
  }
  .reason-point-description {
    font-size: 14px;
  }
  .gardening-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .gardening-content-section,
  .corporate-content-section {
    flex-direction: column;
    gap: 20px;
  }
  .gardening-header-image {
    width: 100px;
    height: 65px;
  }
  .corporate-image-area {
    width: 100%;
    text-align: center;
  }
  .corporate-left-area {
    width: 100%;
  }
  .corporate-header-layout {
    margin-bottom: 20px;
  }
  .gardening-main-title,
  .corporate-main-title {
    font-size: 22pt;
  }
  .gardening-category-tab,
  .corporate-category-tab {
    font-size: 16pt;
  }
  .gardening-tree-left,
  .gardening-tree-right {
    width: 120px;
  }
  /* Services section responsive */
  .services-icons {
    gap: 20px;
  }
  .service-item {
    width: 120px;
  }
  .service-icon {
    width: 90px;
    height: 90px;
  }
  .service-icon img {
    width: 90px;
    height: 90px;
  }
  .services-main-text {
    font-size: 22px;
  }
  .services-sub-text,
  .services-contact-text {
    font-size: 16px;
  }
  .services-service-title,
  .services-service-description {
    font-size: 14px;
  }
  .services-container {
    padding: 0 20px;
  }
  .services-section .service-title,
  .services-section .service-description {
    font-size: 14px !important;
  }
  .price-button {
    font-size: 20px;
    padding: 15px 40px;
  }
  .sub-info {
    font-size: 20pt;
  }
  .text-overlay {
    bottom: 15%;
    padding: 12px 20px;
  }
  .about-content-area {
    padding: 40px 40px;
  }
  .about-content-section {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .about-vertical-title {
    width: 100%;
    height: auto;
    justify-content: flex-start;
  }
  .vertical-text {
    writing-mode: horizontal-tb;
    font-size: 24px;
    text-align: center;
  }
  .about-text-area {
    max-width: 100%;
    text-align: center;
    padding-top: 0;
  }
  .about-main-title {
    font-size: 20px;
  }
  .about-description {
    font-size: 16px;
  }
  .about-link-wrapper {
    justify-content: center;
  }
  .about-image-area {
    width: 300px;
    height: 344px;
  }
  .flow-steps {
    flex-direction: column;
    gap: 40px;
  }
  .flow-step {
    text-align: center;
  }
  .flow-step-header {
    justify-content: center;
  }
  .activities-grid {
    flex-direction: column;
    gap: 40px;
  }
  .flow-main-title,
  .activities-container .activities-main-title,
  .reasons-main-title,
  .pricing-plan-title {
    font-size: 28px;
  }
  .reasons-main-title .number {
    font-size: 40px;
  }
  .reasons-main-title .text {
    font-size: 28px;
  }
  .flow-step-number {
    font-size: 28px;
  }
  .flow-step-title,
  .activity-title {
    font-size: 18px;
  }
  .pricing-items {
    grid-template-columns: 1fr;
  }
  .flow-step-image {
    width: 100% !important;
    height: auto !important;
    margin: 0 auto 20px auto !important;
    display: flex !important;
    justify-content: center !important;
    overflow: visible !important;
  }
  .flow-step-image img {
    width: 140px !important;
    height: auto !important;
  }
  .header-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .worker-illustration {
    width: 100px;
  }
  .problem-item {
    font-size: 20px;
  }
  .dots {
    font-size: 20px;
  }
  .dots:before {
    margin-right: 3px;
  }
  .experience-container {
    padding: 25px 20px;
  }
  .seasonal-trees-section {
    padding: 40px 0;
  }
  .seasonal-trees-content {
    padding: 0px;
  }
  .seasonal-trees-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .seasonal-trees-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .seasonal-tree-item {
    padding: 5px;
    background-color: transparent;
  }
  .seasonal-tree-name {
    font-size: 14px;
  }
  .tree-types-section {
    margin-top: 40px;
    padding: 30px 0;
  }
  .tree-types-title {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .tree-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 10px;
  }

  .tree-type-name {
    font-size: 14px;
  }
  .form-container {
    padding: 60px 0;
  }
  .form-container::before {
    width: calc(100% - 20px);
    margin: 0 10px;
  }
  #contact-form {
    width: calc(100% - 80px);
    padding: 30px 0 !important;
  }
  .form-ttl {
    font-size: 24px;
    margin-bottom: 25px;
  }
  #inquiry-form > div {
    margin-bottom: 20px !important;
  }
  #inquiry-form label {
    font-size: 14px;
  }
  #inquiry-form input,
  #inquiry-form select,
  #inquiry-form textarea {
    padding: 10px 12px !important;
    font-size: 14px;
  }
  #inquiry-form button[type="submit"] {
    font-size: 20px !important;
    padding: 15px 40px !important;
  }
  .form-cap {
    font-size: 16px;
    margin-top: 20px;
  }
  .company-name-container,
  .company-message-container,
  .company-overview-container,
  .footer-container {
    padding: 0 40px;
  }
  .company-name {
    font-size: 26px;
    text-align: center;
  }
  .company-staff-photo {
    width: 100%;
    max-width: 400px;
    height: 240px;
  }
  .company-message-section {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  .company-message-title {
    font-size: 28px;
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .company-message-text,
  .company-signature {
    font-size: 16px;
  }
  .company-overview-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .company-overview-content {
    padding: 30px 45px;
    border-radius: 4em;
  }
  .company-info-row {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  .company-info-label {
    width: auto;
    font-size: 16px;
  }
  .company-info-value {
    font-size: 16px;
  }
  .company-photo-container {
    margin-bottom: -80px;
  }

  /* バナー スマホ対応 - 画面に収まるよう微調整 */
  .banner-container {
    width: 100%;
    padding: 0 15px;
    /* PCと同じ横並びレイアウトを維持 */
    grid-template-columns: 1fr 1fr;
  }

  .right-section {
    padding: 15px;
    gap: 12px;
  }

  .button-row {
    gap: 8px;
  }

  .banner-price-image {
    max-height: 95px;
    height: auto;
    width: auto;
  }

  .banner-tel-image,
  .banner-form-image {
    height: 75px;
    width: auto;
  }

  .site-footer {
    padding-bottom: 190px;
  }

  .cta-section .btn-wrapper .cta-btn a {
    width: 100%;
  }
  .cta-section h2 {
    font-size: 20px;
    color: #f00;
    margin-bottom: 25px;
    text-align: center;
  }

  .footer-btn {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 0 15px;
    background-color: #8bd123;
    z-index: 999;
  }
  .footer-btn img {
    width: 100%;
  }
  .footer-btn-too img {
    height: 70px;
    object-fit: cover;
    object-position: top;
  }
  .sp-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
}
@media (max-width: 600px) {
  .header-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .worker-illustration {
    width: 100px;
  }
  .problem-item {
    font-size: 20px;
  }
  .dots {
    font-size: 20px;
  }
  .dots:before {
    margin-right: 3px;
  }
  .experience-container {
    padding: 25px 20px;
  }
}
@media (max-width: 480px) {
  /* ヘッダーの小さいスマホ対応 - 横並びを維持 */
  .top-bar {
    gap: 10px;
    padding: 0 5px;
  }
  .top-bar .left img {
    max-height: 36px;
  }
  .top-bar .center img {
    max-height: 36px;
  }
  /* Services section mobile responsive */
  .services-icons {
    justify-content: space-around;
  }
  .service-item {
    width: 100px;
  }
  .service-icon {
    width: 80px;
    height: 80px;
  }
  .service-icon img {
    width: 80px;
    height: 80px;
  }
  .services-service-title,
  .services-service-description {
    font-size: 12px;
  }
  .services-section .service-title,
  .services-section .service-description {
    font-size: 12px !important;
  }
  .sub-info {
    font-size: 16pt;
  }
  .text-overlay {
    bottom: 10%;
    padding: 10px 15px;
    left: 5%;
    right: 5%;
    transform: none;
    width: auto;
  }
  .about-image-area {
    width: 250px;
    height: 287px;
  }
  .about-description {
    font-size: 18px;
  }
  .about-main-title {
    font-size: 18px;
  }
  .flow-step-image {
    width: 100% !important;
    height: auto !important;
    margin: 0 auto 20px auto !important;
    display: flex !important;
    justify-content: center !important;
    overflow: visible !important;
  }
  .flow-step-image img {
    width: 140px !important;
    height: auto !important;
  }
  .flow-step-number {
    font-size: 24px;
  }
  .flow-step-title,
  .activity-title {
    font-size: 22px;
  }
  .activity-image {
    width: 100% !important;
    height: auto !important;
  }
  .reasons-main-title .number {
    font-size: 32px;
  }
  .reasons-main-title .text {
    font-size: 24px;
  }
  .pricing-plan-title {
    font-size: 24px;
  }
  .area-name,
  .pricing-area-title {
    font-size: 16px;
  }
  .after-support-title {
    font-size: 24px;
  }
  .after-support-subtitle {
    font-size: 18px;
  }
  .support-service {
    font-size: 18px;
  }
  .support-service-title {
    font-size: 12px;
  }
  #contact-form {
    width: calc(100% - 40px);
  }
  .form-ttl {
    font-size: 20px;
  }
  #inquiry-form label {
    font-size: 13px;
  }
  #inquiry-form input,
  #inquiry-form select,
  #inquiry-form textarea {
    font-size: 13px;
  }
  #inquiry-form button[type="submit"] {
    font-size: 18px !important;
  }
  .form-cap {
    font-size: 14px;
  }
  .company-name-container,
  .company-message-container,
  .company-overview-container,
  .footer-container {
    padding: 0 20px;
  }
  .company-name {
    font-size: 22px;
  }
  .company-staff-photo {
    max-width: 300px;
    height: 180px;
  }
  .company-message-section {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .company-message-title {
    font-size: 24px;
    margin-bottom: 25px;
    margin-top: 25px;
  }
  .company-message-text,
  .company-signature {
    font-size: 14px;
  }
  .company-overview-title {
    font-size: 22px;
    margin-bottom: 25px;
  }
  .company-overview-content {
    padding: 25px 20px;
  }
  .company-info-label,
  .company-info-value {
    font-size: 14px;
  }
  .company-photo-container {
    margin-bottom: -60px;
  }
  .copyright {
    font-size: 10px;
  }
  /* バナー 小さいスマホ対応 - 画面に収まるよう微調整 */
  .banner-container {
    padding: 0 8px;
    /* PCと同じ横並びレイアウトを維持 */
    grid-template-columns: 1fr 1fr;
  }

  .banner-price-image {
    max-height: 40px;
  }

  .banner-tel-image,
  .banner-form-image {
    height: 37px;
  }

  .right-section {
    padding: 8px;
    gap: 6px;
  }

  .button-row {
    gap: 4px;
  }

  .site-footer {
    padding-bottom: 120px;
  }
}

/* 非常に小さい画面でもPCレイアウト維持 - 画面に収まるよう微調整 */
@media (max-width: 320px) {
  .banner-container {
    /* PCと同じ横並びレイアウトを維持 */
    grid-template-columns: 1fr 1fr;
    padding: 0 5px;
  }

  .banner-price-image {
    max-height: 32px;
  }

  .banner-tel-image,
  .banner-form-image {
    height: 28px;
  }

  .right-section {
    padding: 6px;
    gap: 4px;
  }

  .button-row {
    gap: 3px;
  }

  .site-footer {
    padding-bottom: 100px;
  }
}

/* メインビジュアルの新しいスタイル */
.main-visual {
  position: relative;
  margin-top: -8px;
  padding: 0px 0;
  margin-bottom: 40px;
}

.pc-fv {
  position: relative;
  width: 1100px;
  height: 612px;
  margin: 0 auto;
}

.sp-fv {
  display: none;
}

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

.fv-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fv-sales-image {
  position: absolute;
  bottom: 0;
  left: 70px;
  width: 330px;
  height: 265px;
  z-index: 2;
}

.fv-text1 {
  position: absolute;
  top: 280px;
  left: 90px;
  font-size: 24px;
  color: #398313;
  font-weight: 500;
  z-index: 3;
  line-height: 1.2em;
}

.fv-text2 {
  position: absolute;
  bottom: 30px;
  left: 545px;
  font-size: 30px;
  color: #398313;
  font-weight: 500;
  line-height: 1.4;
  z-index: 3;
}

/* レスポンシブ対応 */
@media (max-width: 1400px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }

  .pc-fv {
    width: 100%;
    max-width: 1100px;
    height: auto;
    aspect-ratio: 1100 / 612;
  }

  .fv-sales-image {
    left: 5%;
    width: 30%;
    height: auto;
    aspect-ratio: 330 / 265;
  }

  .fv-text1 {
    top: 45%;
    left: 8%;
    font-size: clamp(18px, 2.1vw, 24px);
  }

  .fv-text2 {
    left: 50%;
    bottom: 4%;
    font-size: clamp(24px, 2.4vw, 30px);
  }
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0px;
  }

  .pc-fv {
    display: none;
  }

  .sp-fv {
    display: block !important;
    margin-top: 0px;
    position: relative;
  }

  .sp-fv img {
    width: 100%;
    height: auto;
  }
  .sp-fv img.sp-sales {
    width: 74%;
    height: auto;
    margin-left: 13%;
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .sp-fv-deadline-date {
    position: absolute;
    top: 41px;
    left: 62px;
    transform: rotate(-3deg);
    color: #f16a2e;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    z-index: 10;
    padding: 10px;
    line-height: 1.4;
  }
}

/* 新しいバナーのCSS - 隙間完全除去版 */
.banner-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  background-color: #8bd123;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-container {
  width: 1360px;
  max-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  font-size: 0; /* 改行文字による隙間を完全除去 */
  gap: 0;
  margin: 0 auto;
}

.banner-left,
.banner-center,
.banner-right {
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: auto;
  margin: 0;
  padding: 0;
  display: inline-block; /* flexからinline-blockに変更 */
  vertical-align: top;
  font-size: initial; /* 子要素のフォントサイズを復元 */
}

/* 画像の隙間を完全に除去 */
.banner-left img,
.banner-center img,
.banner-right img {
  display: block;
  margin: 0;
  padding: 0;
  border: 0; /* ボーダーによる隙間も除去 */
  outline: 0; /* アウトラインによる隙間も除去 */
}

/* リンクの隙間も除去 */
.banner-center a,
.banner-right a {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
  text-decoration: none;
}

/* PC用画像サイズ（既存の比率：490px、390px、490px） */
.banner-price-image.pc-view {
  width: 490px;
  height: auto;
  display: block;
}

.banner-tel-image.pc-view {
  width: 300px;
  padding: 15px;
  height: auto;
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.banner-form-image.pc-view {
  width: 490px;
  height: auto;
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease;
}

/* スマホ用画像サイズ（新しい比率：400px、400px、500px） */
.banner-price-image.sp-view {
  width: 400px;
  height: auto;
  display: block;
}

.banner-tel-image.sp-view {
  width: 400px;
  height: auto;
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.banner-form-image.sp-view {
  width: 500px;
  height: auto;
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.banner-tel-image:hover,
.banner-form-image:hover {
  transform: translateY(0px);
}

/* レスポンシブ対応 */
@media (max-width: 1400px) {
  .banner-container {
    width: 100%;
    padding: 0 15px;
    justify-content: center;
  }

  /* PC用画像の調整 */
  .banner-price-image.pc-view {
    width: min(490px, 36vw);
    height: auto;
  }

  .banner-tel-image.pc-view {
    width: min(390px, 28vw);
    height: auto;
  }

  .banner-form-image.pc-view {
    width: min(490px, 36vw);
    height: auto;
  }

  /* スマホ用画像の調整 */
  .banner-price-image.sp-view {
    width: min(400px, 30vw);
    height: auto;
  }

  .banner-tel-image.sp-view {
    width: min(400px, 30vw);
    height: auto;
  }

  .banner-form-image.sp-view {
    width: min(500px, 38vw);
    height: auto;
  }
}

@media (max-width: 1200px) {
  .banner-price-image.pc-view {
    width: min(400px, 36vw);
  }

  .banner-tel-image.pc-view {
    width: min(300px, 28vw);
  }

  .banner-form-image.pc-view {
    width: min(400px, 36vw);
  }

  .banner-price-image.sp-view {
    width: min(320px, 30vw);
  }

  .banner-tel-image.sp-view {
    width: min(320px, 30vw);
  }

  .banner-form-image.sp-view {
    width: min(400px, 38vw);
  }
}

@media (max-width: 768px) {
  .banner-wrapper {
    height: auto;
  }

  .banner-container {
    padding: 15px 10px;
    justify-content: center;
  }

  /* 768px以下ではスマホ用画像のサイズ調整 */
  .banner-price-image.sp-view {
    width: min(280px, 32vw);
  }

  .banner-tel-image.sp-view {
    width: min(280px, 32vw);
  }

  .banner-form-image.sp-view {
    width: min(350px, 40vw);
  }
}

@media (max-width: 480px) {
  .banner-container {
    padding: 8px 0px;
  }

  .banner-price-image.sp-view {
    width: min(200px, 30vw);
  }

  .banner-tel-image.sp-view {
    width: min(200px, 30vw);
  }

  .banner-form-image.sp-view {
    width: min(250px, 38vw);
  }
}

/* =============================================
   法人向けヒーローバナー
   ============================================= */
.corporate-hero-section {
  background: #fcf8f3;
  padding: 50px 100px;
}

.corporate-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.corporate-hero-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
  max-width: 562px;
}

.corporate-hero-heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 64px;
  line-height: 1;
  color: #4d957f;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.corporate-hero-body {
  color: #4d957f;
}

.hero-body-small {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 71px;
  text-indent: 1em;
}

.hero-body-large {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 48px;
  line-height: 71px;
}

.hero-em {
  font-weight: bold;
  text-decoration: underline;
}

.corporate-hero-image {
  flex-shrink: 0;
  width: 235px;
  height: 352px;
  overflow: hidden;
}

.corporate-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .corporate-hero-section {
    padding: 40px 20px;
  }

  .corporate-hero-inner {
    flex-direction: column;
  }

  .corporate-hero-heading {
    font-size: 40px;
  }

  .hero-body-small {
    font-size: 20px;
    line-height: 1.6;
  }

  .hero-body-large {
    font-size: 28px;
    line-height: 1.6;
  }

  .corporate-hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
  }
}

/* =============================================
   法人・施設向け 3つの課題カードセクション
   ============================================= */
.corporate-problems-section {
  padding: 60px 20px 80px;
  background: #fff;
}

.corporate-problems-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.corporate-cards-wrapper {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  padding-top: 40px;
}

.corporate-card-outer {
  position: relative;
  flex: 1;
  max-width: 360px;
  display: flex;
  flex-direction: column;
}

.corporate-badge {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 65px;
  border-radius: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 36px;
  line-height: 1;
  color: #fff;
  z-index: 2;
}

.corporate-badge.badge-green {
  background: #4d957f;
}

.corporate-badge.badge-lime {
  background: #8bd123;
}

.corporate-card {
  background: #fcf8f3;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 50px 10px 24px;
  flex: 1;
}

.corporate-card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #4d957f;
  text-align: center;
  line-height: 1.6;
}

.corporate-card-title .title-large {
  font-size: 26px;
}

.corporate-card-title .title-xlarge {
  font-size: 30px;
}

.corporate-card-title .title-small {
  font-size: 18px;
}

.corporate-card-image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.corporate-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.corporate-card-body {
  padding: 0 10px;
}

.corporate-card-body p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: #4d957f;
}

@media (max-width: 768px) {
  .corporate-cards-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding-top: 40px;
  }

  .corporate-card-outer {
    max-width: 100%;
    width: 100%;
  }
}

/* =============================================
   無料ダウンロードCTAセクション
   ============================================= */
.download-cta-section {
  background: #84c325;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 45px;
  padding: 69px 183px;
}

.download-cta-heading {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 48px;
  line-height: 1;
  color: #fff;
  white-space: nowrap;
}

.download-cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 770px;
  height: 117px;
  background: #4d957f;
  border-radius: 200px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 48px;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.download-cta-button:hover {
  opacity: 0.9;
}

@media (max-width: 900px) {
  .download-cta-section {
    padding: 50px 20px;
  }

  .download-cta-heading {
    font-size: 28px;
    white-space: normal;
    text-align: center;
  }

  .download-cta-button {
    width: 100%;
    height: auto;
    padding: 24px 20px;
    font-size: 24px;
    white-space: normal;
    text-align: center;
  }
}
