@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&family=Noto+Sans+JP:wght@400;700&family=Montserrat:wght@700&display=swap");
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* App Container */
.app-container {
  min-height: 100vh;
  background-color: #ffffff;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  z-index: 50;
}

.header__container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.header__logo img {
  height: 1.5rem;
  width: auto;
}

.header__buttons {
  display: none;
  gap: 0.5rem;
}

.btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 700;
  transition: background-color 0.3s;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  text-align: center;
  text-decoration: none;
}

.btn-line {
  background-color: #3f923f;
  color: #ffffff;
  text-decoration: none;
}

.btn-line:hover {
  background-color: #357a35;
}

.btn-form {
  background-color: #9bca00;
  color: #ffffff;
  text-decoration: none;
}

.btn-form:hover {
  background-color: #87b000;
}

.btn-cta {
  background-color: #3f923f;
  color: #ffffff;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  width: 344px;
}
@media screen and (max-width: 767px) {
  .btn-cta {
    font-size: 16px;
    width: 100%;
  }
}

.btn-cta:hover {
  background-color: #357a35;
}

.btn-cta-alt {
  background-color: #9bca00;
  color: #ffffff;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  width: 344px;
}
@media screen and (max-width: 767px) {
  .btn-cta-alt {
    font-size: 16px;
    width: 100%;
  }
}

.btn-cta-alt:hover {
  background-color: #87b000;
}

.btn-submit {
  background-color: #FF9500;
  color: #ffffff;
  padding: 1rem 3rem;
  font-size: 1rem;
}

.btn-submit:hover {
  background-color: #e68500;
}

@media (min-width: 768px) {
  .header__container {
    padding: 0 2rem;
  }
  .header__content {
    height: 5rem;
  }
  .header__logo img {
    height: 2rem;
  }
  .header__buttons {
    display: flex;
    gap: 0.5rem;
  }
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  .btn-submit {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .header__container {
    padding: 0 4rem;
  }
  .btn-line {
    width: 188px;
  }
  .btn-form {
    width: 188px;
  }
}
/* Hero Section */
.hero {
  padding-top: 5rem;
  position: relative;
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  background-image: url(../image/fv.jpg);
}

.hero__container {
  width: 1000px;
}

.hero__heading {
  padding-left: 14%;
}
.hero__title {
  color: #3F923F;
  text-shadow: -4px -4px 10px #FFF, 0 -4px 10px #FFF, 4px 0 10px #FFF, 0 4px 10px #FFF;
  font-size: clamp(32px, 5vw, 50px);
}

.hero__subheading1 {
  margin-bottom: 10px;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  text-shadow: -4px -4px 10px #FFF, 0 -4px 10px #FFF, 4px 0 10px #FFF, 0 4px 10px #FFF;
}

.hero__subheading2 {
  margin-top: 20px;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  text-shadow: -4px -4px 10px #FFF, 0 -4px 10px #FFF, 4px 0 10px #FFF, 0 4px 10px #FFF;
}

.hero_icon_lists {
  margin-top: 34px;
  display: flex;
  list-style: none;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .hero_icon_lists {
    gap: 16px;
    justify-content: center;
  }
}

.hero_icon_list img {
  width: 100%;
  max-width: 211px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .hero_icon_list img {
    max-width: 150px;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    background-image: url(../image/fv_sp.jpg);
padding-top:0;
	  align-items:flex-start;
	  height:92vh;
  }
  .hero__heading {
    padding: 0 20px 52% 20px;
    text-align: center;
  }
  .hero__title {
    font-size: 26px;
  }
  .hero__subheading1 {
    margin-bottom: 20px;
    font-size: 18px;
    margin-top: 100px;
  }
  .hero__subheading2 {
    margin-bottom: 30px;
    font-size: 16px;
  }
}
/* Concerns Section */
.concerns {
  padding-top: 5rem;
  background: linear-gradient(to bottom, #ffffff, #f5f5f5);
}

.concerns__container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .section-heading {
    margin-bottom: 2rem;
  }
}

.section-heading__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.section-heading__highlight {
  color: #3f923f;
}

.section-heading__underline {
  width: 5rem;
  height: 0.25rem;
  background-color: #9BCA00;
  margin: 0 auto;
}

.concerns__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.concerns__item_1 {
  background-color: #3f923f;
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  text-align: center;
  position: relative;
  display: inline-block;
}
.concerns__item_1::after {
  content: "";
  position: absolute;
  top: 92%;
  right: 64%; /* 親要素の真ん中へ */
  transform: translateX(-50%) rotate(-15deg);
  border-style: solid;
  border-width: 20px 10px 0 10px; /* 上・右・下・左 の幅 */
  border-color: #3f923f transparent transparent transparent; /* 上だけ色、あとは透明 */
}
@media (max-width: 768px) {
  .concerns__item_1::after {
    display: none;
  }
}

.concerns__item_2 {
  background-color: #3f923f;
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  text-align: center;
  position: relative;
  display: inline-block;
}
.concerns__item_2::after {
  content: "";
  position: absolute;
  top: 92%;
  left: 64%;
  transform: translateX(-50%) rotate(15deg);
  border-style: solid;
  border-width: 20px 10px 0 10px; /* 上・右・下・左 の幅 */
  border-color: #3f923f transparent transparent transparent; /* 上だけ色、あとは透明 */
}
@media (max-width: 768px) {
  .concerns__item_2::after {
    display: none;
  }
}

.concerns__item_3 {
  background-color: #3f923f;
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  text-align: center;
  position: relative;
  display: inline-block;
}
.concerns__item_3::after {
  content: "";
  position: absolute;
  top: 92%;
  right: 50%; /* 親要素の真ん中へ */
  transform: translateX(-50%) rotate(-15deg);
  border-style: solid;
  border-width: 20px 10px 0 10px; /* 上・右・下・左 の幅 */
  border-color: #3f923f transparent transparent transparent; /* 上だけ色、あとは透明 */
}
@media (max-width: 768px) {
  .concerns__item_3::after {
    display: none;
  }
}

.concerns__item_4 {
  background-color: #3f923f;
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 9999px;
  text-align: center;
  position: relative;
  display: inline-block;
}
.concerns__item_4::after {
  content: "";
  position: absolute;
  top: 92%;
  left: 50%; /* 親要素の真ん中へ */
  transform: translateX(-50%) rotate(15deg);
  border-style: solid;
  border-width: 20px 10px 0 10px; /* 上・右・下・左 の幅 */
  border-color: #3f923f transparent transparent transparent; /* 上だけ色、あとは透明 */
}
@media (max-width: 768px) {
  .concerns__item_4::after {
    display: none;
  }
}

.concerns__text {
  font-size: 1rem;
  font-weight: 700;
}

.image_center {
  margin: 30px auto 0;
  max-width: 754px;
}
.image_center img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .image_center {
    max-width: 400px;
  }
}

.concerns_solution {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 500px;
  background-image: url(../image/background.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.concerns_solution_text {
  position: relative;
  padding-bottom: 8%;
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #333;
  line-height: 1.75;
}
.concerns_solution_text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -226px;
  width: 228px;
  height: 264px;
  background-image: url(../image/image2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.concerns_solution_text::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -226px;
  width: 228px;
  height: 264px;
  background-image: url(../image/image3.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* PCでは何もしない（またはインライン指定） */
.sp-br {
  display: inline;
}

/* 768px未満（767px以下）のときだけ改行 */
@media screen and (max-width: 767px) {
  .sp-br {
    display: block;
  }
}
@media screen and (max-width: 1100px) {
  .concerns_solution_text::after {
    display: none;
  }
  .concerns_solution_text::before {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .concerns {
    padding-top: 4rem;
  }
  .concerns_solution {
    height: 400px;
  }
  .concerns_solution_text {
    font-size: 18px;
    padding-bottom: 43%;
  }
  .concerns_solution_text::after {
    display: block;
    left: 6%;
    max-width: 130px;
    height: 185px;
    top: 70%;
  }
  .concerns_solution_text::before {
    display: block;
    right: 6%;
    max-width: 130px;
    height: 185px;
    top: 73%;
  }
}
.color_green {
  color: #3F923F;
}

.color_red {
  color: #D90000;
  background: linear-gradient(transparent 70%, #FFF265 70%);
  display: inline;
}

@media (min-width: 768px) {
  .concerns__container {
    padding: 0 2rem;
  }
  .section-heading {
    margin-bottom: 4rem;
  }
  .section-heading__title {
    font-size: 2.25rem;
  }
  .section-heading__underline {
    width: 6rem;
  }
  .concerns__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .concerns__text {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .section-heading__title {
    font-size: 2.5rem;
  }
}
/* About Service Section */
.about-service {
  padding: 3rem 0;
  background-color: #ffffff;
}

.about-service__container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.about-service__content {
  margin-bottom: 3rem;
}

.about-service__image-wrapper {
  margin-top: 58px;
  text-align: center;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 1334px;
}
.about-service__image-wrapper img {
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .about-service__image-wrapper {
    margin-top: 30px;
  }
}

.about-service_text {
  text-align: center;
}

.about-service_p {
  color: #D90000;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .about-service_p {
    font-size: 18px;
  }
}

.about-service_pp {
  margin-top: 26px;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .about-service_pp {
    font-size: 14px;
    margin-top: 16px;
  }
}

.about-service__text-wrapper {
  text-align: center;
}

.about-service__notes {
  font-size: 0.875rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .about-service__notes {
    text-align: justify;
  }
}

.about-service__notes p {
  margin-bottom: 0.5rem;
}

.cat_container {
  margin: 130px auto 20px;
  max-width: 64rem;
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .cat_container {
    margin: 50px auto 20px;
  }
}

.about-service__cta {
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  background-size: 300px 300px;
  background-position: top left;
  position: relative;
}
.about-service__cta::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 56px;
  width: 180px;
  height: 129px;
  background-image: url(../image/image4.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .about-service__cta::before {
    display: none;
  }
}

.about-service__cta2 {
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  background-size: 300px 300px;
  background-position: top left;
  position: relative;
}
.about-service__cta2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 56px;
  width: 180px;
  height: 129px;
  background-image: url(../image/image5.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .about-service__cta2::before {
    display: none;
  }
}

.about-service__cta-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .about-service__cta-text {
    font-size: 1.1rem;
  }
}

.about-service__cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.btn-full-width {
  width: 100%;
}

@media (min-width: 768px) {
  .about-service {
    padding: 5rem 0;
  }
  .about-service__container {
    padding: 0 2rem;
  }
  .about-service__content {
    margin-bottom: 4rem;
  }
  .about-service__notes {
    font-size: 1rem;
  }
  .about-service__cta {
    padding: 3rem;
  }
  .about-service__cta2 {
    padding: 3rem;
  }
  .about-service__cta-text {
    font-size: 1.5rem;
  }
  .btn-full-width {
    width: auto;
  }
}
/* Why Choose Us Section */
.why-choose-us {
  padding: 3rem 0;
  background-image: url(../image/background_midori.png);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}

.why-choose-us__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.why-choose-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.why-choose-us__card {
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  border: 1px #3F923F solid;
  text-align: center;
}

.why-choose-us__icon {
  width: 70px;
}

.why-choose-us__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
}

.why-choose-us__title_span {
  background: linear-gradient(transparent 70%, #FFF265 70%);
  color: #D90000;
  display: inline;
}

.why-choose-us__description {
  padding-top: 20px;
  font-size: 0.875rem;
  color: #333;
  line-height: 1.6;
  font-weight: 500;
}

@media (min-width: 768px) {
  .why-choose-us {
    padding: 5rem 0;
  }
  .why-choose-us__container {
    padding: 0 2rem;
  }
  .why-choose-us__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  .why-choose-us__card {
    padding: 2rem;
  }
  .why-choose-us__icon {
    font-size: 3.75rem;
  }
  .why-choose-us__title {
    font-size: 1.25rem;
  }
  .why-choose-us__description {
    font-size: 1rem;
  }
}
/* Pricing Section */
.pricing {
  padding: 3rem 0;
  background-color: #ffffff;
}

.pricing__container {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.pricing_text {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.8;
}
.pricing_text span {
  color: #D90000;
}
@media screen and (max-width: 767px) {
  .pricing_text {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .pricing_text.sub {
    font-size: 14px;
    text-align: justify;
  }
}

.pricing_contents {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 30px;
  margin-bottom: 40px;
}
.pricing_contents p {
  font-size: 40px;
  font-weight: 800;
}
@media screen and (max-width: 767px) {
  .pricing_contents {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
  }
  .pricing_contents p {
    font-size: 20px;
  }
}

.pricing_content_item {
  max-width: 600px;
}
.pricing_content_item img {
  width: 100%;
}

@media (min-width: 768px) {
  .pricing {
    padding: 5rem 0;
  }
  .pricing__container {
    padding: 0 2rem;
  }
}
/* Services Section */
.services {
  padding: 3rem 0;
  background: rgba(255, 254, 240, 0.85);
  position: relative;
}
.services p {
  margin-top: 30px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .services p {
    font-size: 12px;
  }
}
.services::after {
  content: "";
  position: absolute;
  width: 310px;
  height: 253px;
  bottom: -10%;
  right: 10%;
  background-image: url(../image/image6.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .services::after {
    width: 170px;
    height: 139px;
    bottom: -4%;
    right: 3%;
  }
}

.services__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.services__section {
  margin-bottom: 3rem;
}

.services__section-title-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .services__section-title-wrapper {
    margin-bottom: 1rem;
  }
}

.services__section-title-inner {
  display: inline-block;
  position: relative;
}

.services__section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #333;
  position: relative;
  z-index: 10;
  padding: 0 1rem;
}

.services__section-title-bg {
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  right: 0;
  height: 0.75rem;
  background-color: #FFF265;
  z-index: 0;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.services__grid2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.services__grid3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.services__item {
  background-color: #ffffff;
  border: 2px solid #3f923f;
  border-radius: 9999px;
  padding: 0.75rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.services__icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.services__item-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #333;
}

.services__cta {
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  background-size: 300px 300px;
  background-position: top left;
}

.services__cta-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 2rem;
}

.services__cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .services {
    padding: 5rem 0;
  }
  .services__container {
    padding: 0 2rem;
  }
  .services__section-title {
    font-size: 1.5rem;
  }
  .services__item-text {
    font-size: 1rem;
  }
  .services__cta {
    padding: 3rem;
  }
  .services__cta-text {
    font-size: 1.5rem;
  }
  .services__cta-buttons {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .services__grid2 {
    grid-template-columns: repeat(4, 1fr);
  }
  .services__grid3 {
    grid-template-columns: none;
    justify-content: center;
  }
}
/* Flow Section */
.flow {
  padding: 3rem 0;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 2rem 0 6rem;
  }
}

.flow__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.flow__steps {
  display: flex;
  padding: 6% 8%;
  flex-direction: column;
  gap: 2rem;
  background: #FAFAFA;
  border-radius: 10px;
  position: relative;
}
.flow__steps::after {
  content: "";
  position: absolute;
  width: 333px;
  height: 236px;
  bottom: -7%;
  right: 10%;
  background-image: url(../image/image7.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .flow__steps::after {
    width: 226px;
    height: 160px;
    bottom: -18%;
    right: 0%;
  }
}
@media screen and (max-width: 767px) {
  .flow__steps {
    padding: 6% 4%;
    gap: 1rem;
  }
}

.flow__step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.flow__number-badge {
  flex-shrink: 0;
}

.flow__number-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #FF9500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow__number {
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
}

.flow__content {
  flex: 1;
}

.flow__step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .flow__step-title {
    font-size: 1rem;
  }
}

.flow__step-description {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .flow {
    padding: 5rem 0;
  }
  .flow__container {
    padding: 0 2rem;
  }
  .flow__steps {
    gap: 3rem;
  }
  .flow__step {
    gap: 3rem;
  }
  .flow__number-circle {
    width: 4rem;
    height: 4rem;
  }
  .flow__number {
    font-size: 1.25rem;
  }
  .flow__step-title {
    font-size: 1.25rem;
  }
  .flow__step-description {
    font-size: 1rem;
  }
}
/* Company Info Section */
.company-info {
  padding: 3rem 0;
  background: rgba(255, 254, 240, 0.85);
}

.company-info__container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.company-info_table {
  margin: 0 auto 30px;
}

.table_design03 {
  border-collapse: collapse;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .table_design03 {
    font-size: 14px;
  }
}

.table_design03 th, .table_design03 td {
  border-bottom: 2px solid #c1c7c6;
  padding: 1em;
}

.table_design03 th {
  border-bottom: 2px solid #3F923F;
  font-weight: 500;
  text-align: justify;
  width: 30%;
  min-width: 4em;
}

.company-info__table {
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 2rem;
}

.company-info__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.company-info__row:last-child {
  border-bottom: none;
}

.company-info__label {
  font-weight: 700;
  color: #333;
  font-size: 0.875rem;
}

.company-info__value {
  color: #666;
  font-size: 0.875rem;
}

.company-info__policies {
  text-align: center;
  margin-bottom: 20px;
}

.company-info__policies-intro {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1rem;
}

.company-info__policies-grid {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}

.company-info__policy-link {
  font-size: 0.875rem;
  color: #3f923f;
  text-decoration: underline;
  transition: color 0.3s;
}

.company-info__policy-link:hover {
  color: #357a35;
}

@media (min-width: 768px) {
  .company-info {
    padding: 5rem 0;
  }
  .company-info__container {
    padding: 0 2rem;
  }
  .company-info__row {
    grid-template-columns: 1fr 2fr;
    padding: 1.5rem;
  }
  .company-info__label,
.company-info__value {
    font-size: 1rem;
  }
  .company-info__policies-intro {
    font-size: 1rem;
  }
  .company-info__policies-grid {
    flex-direction: row;
    gap: 1rem;
  }
  .company-info__policy-link {
    font-size: 1rem;
  }
}
/* Contact Section */
.contact {
  padding: 3rem 0;
  background-color: #ffffff;
}

/* 基本設定 */
.form-container {
  width: 100%;
  margin: 40px auto;
  padding: 0 20px;
  color: #333;
}
@media screen and (max-width: 767px) {
  .form-container {
    padding: 0 10px;
  }
}

/* フォームグループのレイアウト */
.form-group {
  display: flex;
  padding: 25px 0;
  border-bottom: 1px solid #ddd;
  align-items: center;
}

.border-bottom-none {
  border-bottom: none;
}

/* ラベルエリア */
.label-box {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 40px;
}

.label-box label {
  font-weight: 500;
  font-size: 15px;
}

/* 必須バッジ */
.badge-required {
  background-color: #d93333;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 10px;
}

/* 入力エリア */
.input-box {
  width: 70%;
}

input[type=text],
input[type=tel],
input[type=email],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #eee;
  background-color: #f5f5f5;
  border-radius: 0;
  box-sizing: border-box;
  font-size: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* セレクトボックスの矢印（簡易版） */
select {
  background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23999" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

/* 同意エリア */
.privacy-policy {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.privacy-policy p {
  font-size: 14px;
  margin-bottom: 20px;
}

.wpcf7-spinner {
  display: none;
}

.checkbox-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .checkbox-container {
    font-size: 14px;
  }
}
.checkbox-container p {
  display: flex;
}

.checkbox-container a {
  color: #333;
  text-decoration: underline;
}

/* 送信ボタン */
.submit-container {
  text-align: center;
  margin-top: 40px;
}

.btn-submit {
  background-color: #f29e3a; /* 画像に近いオレンジ */
  color: white;
  border: none;
  padding: 18px 80px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 0.3s;
}

.btn-submit:hover {
  opacity: 0.8;
}

/* レスポンシブ対応 (スマホ) */
@media (max-width: 768px) {
  .form-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .label-box {
    width: 100%;
    margin-bottom: 10px;
    padding-right: 0;
  }
  .input-box {
    width: 100%;
  }
  .btn-submit {
    width: 100%;
    padding: 15px 0;
  }
}
.contact__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact__intro {
  text-align: center;
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .contact__intro {
    font-size: 14px;
  }
}

.contact__line-cta {
  text-align: center;
}

@media (min-width: 768px) {
  .contact {
    padding: 5rem 0;
  }
  .contact__container {
    padding: 0 2rem;
  }
}
/* Footer */
.footer {
  background-color: #fafafa;
  padding-top: 3rem;
}

.footer__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer__logo {
  text-align: center;
}

.footer__logo img {
  height: 2.5rem;
  margin: 0 auto 1.5rem;
}

.footer__icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__icon {
  height: 2.5rem;
  width: auto;
}

.footer__company-info {
  text-align: center;
  font-size: 0.875rem;
  color: #333;
  margin-bottom: 1.5rem;
}

.footer__company-info p {
  margin-bottom: 0.25rem;
}

.footer__corporate-link-wrapper {
  text-align: center;
  margin-bottom: 2rem;
}

.footer__corporate-link {
  font-size: 0.875rem;
  color: #333;
  text-decoration: underline;
  transition: color 0.3s;
}

.footer__corporate-link:hover {
  color: #3f923f;
}

.footer__copyright {
  background-color: #3f923f;
  padding: 10px 20px;
}

.footer__copyright-content {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
  font-size: 0.875rem;
}

.footer__copyright-text {
  order: 2;
}

.footer__privacy-link {
  order: 1;
  text-decoration: underline;
  transition: opacity 0.3s;
  color: #fff;
}

.footer__privacy-link:hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .footer__container {
    padding: 0 2rem;
  }
  .footer__logo img {
    height: 3rem;
  }
  .footer__icon {
    height: 3rem;
  }
  .footer__company-info {
    font-size: 1rem;
  }
  .footer__corporate-link {
    font-size: 1rem;
  }
  .footer__copyright-content {
    flex-direction: row;
    font-size: 1rem;
  }
  .footer__copyright-text {
    order: 1;
  }
  .footer__privacy-link {
    order: 2;
  }
}
/* Utility Classes */
.text-highlight-green {
  color: #3f923f;
}

.text-highlight-red {
  color: #d90000;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.space-y-1 > * + * {
  margin-top: 0.25rem;
}