/* style.css */
/* =================================================
   :root Variables & Global Styles
   ================================================= */ :root {
  --color-primary: #00573D;
  --color-primary-dark: #2B4A63;
  --color-text-primary: #232323;
  --color-text-secondary: #1E1E1E;
  --color-text-light: #CACACA;
  --color-text-white: #FFFFFF;
  --color-background-light: #FFF;
  --color-background-soft: #F4F8F7;
  --color-background-accent: #FAF7ED;
  --color-background-footer: #F5F5F5;
  --color-accent-gold: #EDAB34;
  --color-accent-red: #E31A1A;
  --color-accent-red-soft: #E84F4F;
  --color-border-light: #D8D8D8;
  --font-main: "Noto Sans JP", sans-serif;
  --font-display: "Montserrat", sans-serif;
  --font-roboto: "Roboto", sans-serif;
}

html {
  font-size: 16px;
}
body {
  overflow-x: hidden; /* 横スクロールバーを防止 */
}
.container {
  width: 100% !important;
  max-width: 1070px !important;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box; /* paddingを含めた幅計算に */
}
.full-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  box-sizing: border-box; /* paddingを含めた幅計算に */
}
.section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 2rem;
  /* 32px / 16px */
  letter-spacing: 0.08rem;
  /* 1.28px / 16px */
  color: var(--color-primary);
  text-align: center;
  line-height: 1.4;
  margin-bottom: 40px;
}
.section-sub-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.5rem;
  /* 32px / 16px */
  letter-spacing: 0.08rem;
  /* 1.28px / 16px */
  color: var(--color-text-primary);
  text-align: center;
  position: relative;
}
.section-heading-l .section-sub-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.5rem;
  /* 32px / 16px */
  letter-spacing: 0.08rem;
  /* 1.28px / 16px */
  color: var(--color-text-primary);
  text-align: center;
  position: relative;
}
.section-description {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1rem;
  /* 16px / 16px */
  color: var(--color-text-primary);
  text-align: center;
  line-height: 1.7;
}
.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.section-heading-l {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 14px;
  margin-top: 2rem;
}
.subsidy-description {
  font-size: .85rem;
  /* 16px / 16px */
}
.heading-icon {
  width: 40px;
  height: 2px;
  display: block;
  background: var(--color-primary);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s ease-in-out;
  border: none;
  font-weight: 700;
  /* border-radius: 4px; */
}
.button:hover {
  opacity: 0.9;
}
.button--primary {
  background-color: var(--color-primary);
  color: var(--color-text-white);
  box-shadow: 0px 2px 4px 0px rgba(0, 153, 68, 0.15);
}
.arrow-icon {
  display: inline-block;
  width: 12px;
  height: 10px;
  background: url('data:image/svg+xml;charset=UTF-8,<svg width="8" height="11" viewBox="0 0 8 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8 5.41602L0.5 10.6122L0.5 0.219863L8 5.41602Z" fill="white"/></svg>') no-repeat center;
  background-size: contain;
}
/* =================================================
   Hero Section
   ================================================= */

.hero-section {
  padding: 0px 0 0px;
	background-image: url(../images/fv_bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% auto;
}
@media (max-width: 1500px) {
  .hero-section {
  padding: 0px 0 0px;
	background-image: url(../images/fv_bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
}
}
@media (max-width: 900px) {

	.hero-section {
    background-position: -80vw center;
}
}
@media (max-width: 767px) {

	.hero-section {
		background-position: right center;
		margin-bottom: 60px;
    /*background-image: none;*/
}
}
.hero-section__inner {
  display: flex;
  /*align-items: center;*/
  gap: 30px;
  flex-wrap: nowrap;
	position: relative;
}
.hero-section__content {
  /*flex: 1;*/
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 50px 0;
	background: linear-gradient(90deg,rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.8) 90%, rgba(255, 255, 255, 0) 100%);
}
.hero-section__visual {
  margin-left: -50px;
  margin-right: -30px;
  width: 100%;
}
.hero-section__visual figure {
  height: 100%;
  width: 100%;
  display: none;
  position: relative;
  overflow: hidden;
}
/*@media (max-width: 767px) {
.hero-section__visual figure {
  display: block;
}
}*/
.hero-section__visual img {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1500px) {
  .hero-section__visual {
    margin-left: 0px;
    margin-right: -30px;
  }
  .hero-section__visual img {
    height: 100%;
    width: auto;
    max-width: 140% !important;
    object-fit: cover;
  }
}
.hero__text-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero__subtitle {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.075rem;
  color: #000;
}
.hero__title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0.2rem;
  color: var(--color-primary);
  line-height: 56px;
}
.hero__description {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1rem;
  line-height: 24px;
  color: #000;
}
.hero__cta-button {
  max-width: 360px;
  padding: 10px 10px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.5rem;
  justify-content: center;
  align-items: center;
  gap: 20px;
	letter-spacing: 5%;
}
.hero__stats-group {
  display: flex;
  gap: 12px;
}
.stat-card {
  position: relative;
  width: 200px;
  height: 128px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 30px;
}
.stat-card__background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.stat-card__background img {
  position: absolute;
  width: 169.96%;
  height: 159.82%;
  top: -33.54%;
  left: -34.66%;
  max-width: none;
}
.stat-card__label {
  width: 100%;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.0675rem;
  line-height: 140%;
  color: var(--color-text-secondary);
}
.stat-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.10625rem;
  color: var(--color-primary);
  white-space: nowrap;
  line-height: 100%;
}
.stat-card__unit {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.16rem;
}
.hero__certification-group {
  display: flex;
  align-items: center;
  gap: 32px;
}
.cert-card {
  position: relative;
  width: 128px;
  height: 132px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cert-card__icon {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}
.cert-card__title {
  width: 100%;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-primary);
  text-align: center;
}
.cert-card__label {
  width: 100%;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1rem;
  line-height: 140%;
  color: var(--color-primary);
  text-align: center;
}
.cert-card__id {
  width: 100%;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.045rem;
  color: var(--color-text-primary);
  text-align: center;
  line-height: 140%;
}
.cert-card__id-l {
  font-size: 1rem;
}
.hero__cert-image {
  width: 115px;
}
/* =================================================
   About & Overview Sections
   ================================================= */
.about-section {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about-section-end {
  display: flex;
  gap: 30px;
  max-width: 800px;
  margin: auto;
  align-items: center;
}
.about-section-end > div:first-child {
  width: 65%;
}
.about-section-end > div:last-child {
  width: 35%;
}
.about-section-end img {
  max-width: 100%;
  height: auto;
}
.about-section .section-title {
  margin-bottom: 10px;
}
.overview-card__image-wrapper {
  background: var(--color-background-light);
  padding: 30px 60px;
}
/* =================================================
   Video Sections
   ================================================= */
.video-section {
  padding: 80px 0;
  background-color: var(--color-background-soft);
  display: flex;
  flex-direction: column;
  gap: 0px;
}
/* =================================================
   Recommend Section
   ================================================= */
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}
.about-section-table {
  margin-bottom: .5rem;
}
.about-section-table table {
  width: 100%;
  color: #6b7280;
  text-align: left;
  border-collapse: collapse;
  margin-top: 50px;
}
.about-section-table thead {}
.about-section-table th, .about-section-table td {
  padding: 1rem;
  border: 1px solid #d1d5db;
}
.section-table-center th, .section-table-center td {
  text-align: center;
}
.about-section-table th {
  font-weight: 700;
  background-color: #F2F2F2;
  color: var(--color-text-primary);
  text-align: center;
}
.about-section-table tr {
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
  color: var(--color-text-primary);
}
.about-section-table tr span {
  color: var(--color-primary);
  display: block;
  text-align: center;
}
.about-section-table td:first-child {
  color: var(--color-primary);
  white-space: nowrap;
  padding: 1rem 1.5rem;
}
/* =================================================
   Brochure Promo Section
   ================================================= */
.brochure-promo-section {
  padding: 80px 0;
  background-image: url(../images/brochure_bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.brochure-promo-section__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* コンテンツが背景より手前に来るように */
  z-index: 1;
}
.brochure-promo__content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 1080px;
  /* 元の幅を維持 */
  max-width: 100%; /* はみ出し防止 */
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, .8);
}
.brochure-promo__icon {
  width: 60px;
  height: 58px;
}
.brochure-promo__catchphrase {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1.28px;
  color: var(--color-text-primary);
  text-align: center;
  line-height: 1.5;
}
.brochure-promo__title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 1.28px;
  color: var(--color-primary);
  text-align: center;
}
.brochure-promo__tag {
  position: relative;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1.08px;
  color: var(--color-accent-red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}
.brochure-promo__tag .free {
  color: #000;
  /* 元のデザインでは "無料" の部分だけ色が違う */
}
.tag-icon {
  width: 29.188px;
  height: 1px;
  position: relative;
}
.tag-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent-red-soft);
}
.tag-icon--left::after {
  transform: matrix(0.579, 0.815, 0.915, -0.402, 0, 0);
}
.tag-icon--right::after {
  transform: matrix(0.579, -0.815, -0.915, 0.402, 0, 0);
}
.brochure-promo__button {
  padding: 12px 40px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1.28px;
}
/* =================================================
   Achievements Section (採択実績)
   ================================================= */
.achievements-section {
  padding: 0px 0 80px 0;
}
.achievements-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  /* タイトルとボタンの間のスペース */
}
.achievements-section .section-sub-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 18px;
  /* 元のCSSからフォントサイズを反映 */
  letter-spacing: 1.08px;
  color: var(--color-text-primary);
  /* 元のCSSから色を反映 */
  margin-bottom: 0;
  /* section-titleのデフォルトマージンをリセット */
}
.achievements-section__button {
  padding: 12px 40px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1.28px;
}

.achiev-carousel-container {
  display: flex;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  margin-top: 40px;
}
.achiev-carousel-track {
  display: flex;
  gap: 20px;
  animation: scroll 60s linear infinite;
}
.achiev-carousel-track:hover {
  /*animation-play-state: paused;*/
}
.achiev-carousel-item {
  display: flex;
  flex-direction: column;
  min-width: 300px;
  gap: 20px;
}
.achiev-carousel-item > div {
  border: 1px solid var(--color-primary);
  display: flex;
  justify-content: center;
  padding: 1rem;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}
.achiev-carousel-item > div:hover {}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =================================================
   Contact Section
   ================================================= */
.contact-section {
  padding: 80px 0;
}
.contact-section .container {
  max-width: 1120
}
.contact-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.contact-section__inner .section-title {
  margin-bottom: .5rem;
}
.contact-section__content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}
.brochure-promo-contact {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.brochure-promo-contact__image-wrapper {
  position: absolute;
  right: 0;
  top: 0;
  width: 160px;
  height: 160px;
  transform: translate(3rem, -30%);
}
.brochure-promo-contact__image {
  width: 100%;
  height: 100%;
}
.list-promo-contact {
  background-color: var(--color-background-accent);
  padding: 1rem 160px 1rem 1rem;
  position: relative;
  display: block;
}
.promo-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.0675rem;
  color: var(--color-text-white);
  text-align: center;
  line-height: 24px;
  width: 100%;
}
.brochure-promo-contact__text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 70px;
}
.promo-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.075rem;
  text-align: center;
  color: var(--color-primary);
}
.promo-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.promo-list li {
  /*display: flex;
  align-items: center;:
  gap: 8px;*/
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.08rem;
  color: var(--color-text-primary);
position: relative;
	padding-left: 25px;
}
.check-icon-green {
  width: 20px!important;
  height: 20px!important;
  background: url('../images/cfbb60084d50b48778d1e1b95fe27238bb36de76.svg') no-repeat;
	position: absolute;
	top: 3px;
	left: 0;
}
.promo-note {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.08rem;
  color: var(--color-text-primary);
}
.contact-form {
  width: 50%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.form-label {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.0675rem;
  color: var(--color-text-primary);
}
.form-label--required {
  color: var(--color-accent-red);
  margin-left: 2px;
}
.form-input, .form-textarea {
  width: 100%;
  padding: 18px 17px;
  font-size: 1rem;
  font-family: var(--font-main);
  font-weight: 500;
  color: var(--color-text-primary);
  border: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.form-input {
  height: 60px;
  background-color: #FBFBFB;
  border: 1px solid #CACACA;
}
.form-textarea {
  height: 216px;
  resize: none;
  background-color: #FBFBFB;
  border: 1px solid #CACACA;
}
.form-input::placeholder, .form-textarea::placeholder {
  color: var(--color-text-light);
}
.form-group--checkbox {
  flex-direction: row;
  align-items: center;
  margin-top: 10px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.0675rem;
  color: var(--color-text-primary);
}
.checkbox-input {
  display: none;
}
.checkbox-visual {
  width: 100% !important;
	max-width: 28px !important;
  height: 28px !important;
  background-color: #FBFBFB;
  position: relative;
  border: 1px solid #CACACA;
}
.checkbox-tick {
  display: none;
    width: 17.03px;
    height: 9.22px;
    /*background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="10" fill="none"><path d="M1.379 5.373l4.974 3.718L16.65.5" stroke="%2300573D" stroke-width="2"/></svg>') no-repeat;*/
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-70%)rotate(-45deg);
    border-bottom: 2px solid rgba(0,0,0,1.00);
    border-left: 2px solid rgba(0,0,0,1.00);
}
.checkbox-input:checked + .checkbox-label .checkbox-visual .checkbox-tick {
  display: block;
}
.form-submit-button {
  width: 100%;
  padding: 16px 100px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.0675rem;
  margin-top: 20px;
  max-width: 280px;
}
.contact_img {
  padding: 0 1.5rem;
}


/* =================================================
   Responsive Styles
   ================================================= */
/* --- Tablet (1024px以下) --- */
@media (max-width: 1024px) {
  /* Hero Section */
  .hero-section__inner {
    /*flex-direction: column;
    text-align: center;*/
    gap: 40px;
    padding-top: 0px;
  }
	
  .hero-section__visual {
    margin: 0;
    width: 100%;
    max-width: 1000px;
    /*order: -1; */ 画像を上に */
  }
  .hero-section__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 50px 0 50px 0;
  }
  .hero-section__visual img {
    position: relative;
    height: auto;
    width: 100%;
    max-width: 100% !important;
    object-fit: cover;
  }
  /*.hero-section__content {
    align-items: center;
  }
  .hero__stats-group, .hero__certification-group {
    justify-content: center;
    flex-wrap: wrap;
  }*/
  .about-section-end {
    flex-direction: column;
    gap: 40px;
    max-width: 100%;
    justify-content: center;
  }
  .about-section-end > div:first-child {
    width: 100%;
    max-width: 600px; /* テキストが広がりすぎないように */
  }
  .about-section-end > div:last-child {
    width: 40%;
    max-width: 600px; /* テキストが広がりすぎないように */
  }
	.section-title {
  font-size: 1.6rem;
}
	.section-sub-title {
  font-size: 1.4rem;
}
	.section-heading-l .section-sub-title {
  font-size: 1.4rem;
}
	.brochure-promo-contact__image-wrapper {
  transform: translate(0rem, -10%);
}
	.brochure-promo-contact__text-content {
  gap: 40px;
}
	.section-title {
  margin-bottom: 20px;
}
}
@media (min-width: 767px) {
  .d-md-none {
    display: none;
  }
}

/* --- Mobile (768px以下) --- */
@media (max-width: 767px) {
	 .hero-section__content {
   width: 100vw;
		 margin-left: -16px;
		 padding: 20px 16px;
  }
	.contact-section__content {
  flex-direction: column;
}
	.brochure-promo-contact {
  width: 100%;
}
	.contact-form {
  width: 100%;
}
	.brochure-promo-contact__image-wrapper {
    /*position: static;*/
    transform: translate(.7rem, -20%);
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
  }

  .promo-badge {
    font-size: .7rem;
  }
  .hero__certification-group {
    gap: 10px;
  }
   .cert-card {
    width: 20vw;
    height: 25vw;
  }
	.hero__cert-image {
  width: 23vw;
}
	.cert-card__id {
  font-size: 1.8vw;
}
	.cert-card__id-l {
  font-size: 3vw;
}
  .cert-card__label {
    font-size: 3vw;
  }
  .cert-card__title {
    font-size: 4vw;
  }
	/*.hero-section__content {
    align-items: center;
  }
  .hero__stats-group, .hero__certification-group {
    justify-content: center;
    flex-wrap: nowrap;
  }
	 .hero-section__inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding-top: 0px;
  }
	.hero-section__visual {
		order: -1;
		
  }*/
	  .list-promo-contact {
    margin-left: 0;
    padding: 1rem 6rem 1rem 1rem;
    width: 100%;
  }
	.hero__description {
  font-size: .9rem;
}
  .d-sm-none {
    display: none;
  }
  .container, .full-container {
    padding-left: 15px;
    padding-right: 15px;
  }
  .about-section-end > div:last-child {
    width: 60%;
    max-width: 600px; /* テキストが広がりすぎないように */
  }
	.overview-card__image-wrapper {
  background: var(--color-background-light);
  padding: 20px 20px;
}
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  /* Typography */
  .section-title {
    font-size: 1.35rem; /* 24px */
    margin-bottom: 0px;
  }
  .section-sub-title {
    font-size: 1.25rem !important;
  }
  .section-description {
    text-align: left;
  }
  .hero__subtitle {
    font-size: 1.25rem;
  }
  .hero__title {
    font-size: 1.8rem; /* 28.8px */
    line-height: 1.5;
  }
  .hero__cta-button {
    font-size: 1.2rem;
    margin: auto;
    padding: 10px 20px;
  }
  .hero__stats-group {
    flex-wrap: nowrap;
  }
  .stat-card {
    position: relative;
    width: 29vw;
    height: 22vw;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 30px;
  }
  .stat-card__label {
    width: 100%;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 3vw;
    letter-spacing: 0.0675rem;
    line-height: 140%;
    color: var(--color-text-secondary);
  }
  .stat-card__value {
    font-size: 5vw;
  }
  .stat-card__unit {
    font-size: .6em;
  }
  /* About Section */
  .about-section {
    padding: 30px 0;
  }
  .section-heading-l {
    justify-content: center;
  }
  .about-section-table {
    overflow-x: auto; /* テーブルを横スクロール可能に */
    -webkit-overflow-scrolling: touch; /* iOSでのスムーズスクロール */
  }
  .about-section-table table {
    min-width: 700px; /* テーブルの最小幅を設定し、内容が潰れないようにする */
  }
  .about-section-table th, .about-section-table td {
    padding: 0.8rem 1rem;
  }
  /* Brochure Promo Section */
  .brochure-promo-section {
    padding: 60px 0;
  }
  .brochure-promo__content {
    padding: 40px 20px;
  }
  .brochure-promo__title {
    font-size: 1.8rem;
  }
  .brochure-promo__tag {
    font-size: 1rem;
  }
  .brochure-promo__catchphrase {
    font-size: 0.9rem;
  }
  /* Achievements Section */
  .achievements-section {
    padding: 0px 0 60px 0;
  }
  .achiev-carousel-item {
    min-width: 250px;
  }
	
	
}
.achievements-section__button:hover,.brochure-promo__button:hover,.hero__cta-button:hover {
  color: white!important;
  text-decoration: none!important;
}
header .container {
    max-width: 1260px!important;
  }

/* css/addition.css */

.news-topics-section {
  padding: 80px 0;
  background-color: #fff;
}

.news-topics-section .container {
  max-width: 960px;
}

.section-title-news {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary); /* #00573D */
  text-align: center;
  margin-bottom: 40px;
}

.news-topics-content {
  display: flex;
	align-items: flex-start;
	gap: 40px
}

.news-topics-header {
  background-color: var(--color-primary);
  color: #fff;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
	width: 35%;
  max-width: 380px;
}

.news-topics-header h3 {
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
  margin: 0;
  color: #fff; /* 明示的に指定 */
}

.news-topics-header h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #fff;
}

.news-topics-list {
  /*flex-grow: 1;
  padding: 1.5rem 2rem;*/
	width: 100%;
}

.news-topics-list dl {
  margin: 0;
}

.news-topics-list .news-item {
  display: flex;
  padding: 1rem 0;
}
.news-topics-list .news-item:first-child {
    padding-top: 0;
}
.news-topics-list .news-item:last-child {
  padding-bottom: 0;
}

.news-topics-list dt {
  font-weight: bold;
  margin-right: 2rem;
  flex-shrink: 0;
  min-width: 90px;
	padding-bottom: 1rem;
	border-bottom: 1px solid #D9D4D4;
}

.news-topics-list dd {
  margin: 0;
  line-height: 1.7;
	padding-bottom: 1rem;
	border-bottom: 1px solid #D9D4D4;
}

.news-topics-list .view-more {
  display: block;
  text-align: right;
  margin-top: 1.5rem;
  color: var(--color-primary);
  text-decoration: none;
}

.news-topics-list .view-more:hover {
  opacity: .7;
}

.news-topics-list .view-more::after {
  content: '▶';
  margin-left: 8px;
  font-size: 0.8em;
  display: inline-block;
  vertical-align: middle;
}
.achievements-section__bottom{
	margin-top: 40px;
	text-align: center;
}
/* レスポンシブ対応 */
@media (max-width: 767px) {
	.carousel-container {
  margin-top: 20px;
}
	.news-topics-header h3 {
  font-size: 1rem;
}
  .news-topics-section {
    padding: 0px 0 60px 0;
  }
  .news-topics-content {
    flex-direction: column;
	  gap: 0px;
  }
  .news-topics-header {
    width: 100%;
    padding: 1rem;
	  max-width: 3000px;
  }
  .news-topics-list {
    padding: 1.5rem 0rem;
  }
  .news-topics-list .news-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-topics-list dt {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .section-title-news {
    font-size: 1.5rem;
  }
	.form-submit-button {
  max-width: 5000px;
}
}