@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

ul,
ol {
  list-style: none;
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: clamp(0.9375rem, 0.3636363636vw + 0.8522727273rem, 1.125rem);
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
a:hover, a:focus {
  opacity: 0.7;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  display: block;
}

.btn-apply {
  display: block;
  width: 31.25rem;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .btn-apply {
    width: 18.75rem !important;
  }
}

.stripe {
  background-image: repeating-linear-gradient(-45deg, #3daa64 0, #3daa64 4px, transparent 4px, transparent 8px);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100% 0.4em;
}

.stripe2 {
  background-image: repeating-linear-gradient(-45deg, #3daa64 0, #3daa64 4px, transparent 4px, transparent 8px);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100% 0.4em;
  width: 15rem;
  margin: 0 auto;
  padding: 0 0 0.5em;
}

.stripe3 {
  background-image: repeating-linear-gradient(-45deg, #fff 0, #fff 4px, transparent 4px, transparent 8px);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100% 0.4em;
  width: 20.625rem;
  margin: 0 auto;
  padding: 0 0 0.5em;
}

.marker {
  display: inline-block;
  padding: 0 0.12em;
  background: linear-gradient(to bottom, transparent 0%, transparent 60%, #fff3a4 60%, #fff3a4 100%);
}

#loading {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loading.loaded {
  opacity: 0;
  visibility: hidden;
}
#loading .spinner {
  width: 48px;
  height: 48px;
  border: 5px solid #ddd;
  border-top-color: #3daa64;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.6s ease-out, transform 1.6s ease-out;
}

.fade-up.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* Header / Hero */
.hero {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 1000;
  width: 100%;
  height: 80px;
}

/* 内部コンテナ調整（flex崩れ防止） */
.hero__inner.l-container {
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Site brand */
.site-brand {
  padding-left: 40px;
  flex: 0 0 auto;
}
.site-brand__link {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: inherit;
}
.site-brand__logo {
  height: 40px;
  width: auto;
  display: block;
}
.site-brand__text {
  display: inline-block;
  font-size: clamp(0.875rem, 0.4848484848vw + 0.7613636364rem, 1.125rem);
  line-height: 1.4;
  color: #666;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 1190px) {
  .site-brand__text {
    display: none;
  }
}

/* Global navigation */
.global-nav {
  font-size: clamp(0.875rem, 0.2424242424vw + 0.8181818182rem, 1rem);
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: auto;
  position: relative;
}

/* Desktop list */
.global-nav__list {
  list-style: none;
  margin: 0;
  padding: 0 30px;
  display: flex;
  gap: 24px;
  align-items: center;
  height: 100%;
}
.global-nav__list .global-nav__item a {
  display: inline-block;
  color: #555;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: color 0.2s;
  white-space: nowrap;
}
.global-nav__list .global-nav__item a:hover {
  color: #555;
}

/* CTA */
.hero__cta {
  height: 100%;
  flex: 0 0 auto;
}
.hero__cta .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 50px;
  background: #3daa64;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(1rem, 0.2424242424vw + 0.9431818182rem, 1.125rem);
  border-radius: 0;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.hero__cta .btn:hover {
  opacity: 0.9;
}

/* Mobile Menu (Hamburger) */
.global-nav__toggle {
  display: none;
  background: none;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.global-nav__toggle .global-nav__icon {
  display: block;
  width: 24px;
  height: 2px;
  background: #333;
  position: relative;
  transition: transform 0.25s ease, background 0.25s ease;
  will-change: transform;
}
.global-nav__toggle .global-nav__icon::before, .global-nav__toggle .global-nav__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
  transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s ease;
  will-change: transform, top, opacity;
}
.global-nav__toggle .global-nav__icon::before {
  top: -8px;
}
.global-nav__toggle .global-nav__icon::after {
  top: 8px;
}
.global-nav.open .global-nav__toggle .global-nav__icon, .global-nav__toggle.is-open .global-nav__icon {
  background: transparent;
  transform: rotate(45deg);
}
.global-nav.open .global-nav__toggle .global-nav__icon::before, .global-nav__toggle.is-open .global-nav__icon::before {
  top: 0;
  transform: rotate(90deg);
}
.global-nav.open .global-nav__toggle .global-nav__icon::after, .global-nav__toggle.is-open .global-nav__icon::after {
  top: 0;
  opacity: 0;
}

/* Mobile panel & overlay */
.global-nav__panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  max-width: 320px;
  background: #fff;
  transform: translateX(110%);
  transition: transform 0.28s cubic-bezier(0.2, 0.9, 0.3, 1), visibility 0.28s;
  z-index: 2000;
  padding: 20px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.12);
  pointer-events: none;
  will-change: transform;
}
.global-nav__panel.open {
  transform: translateX(0);
  pointer-events: auto;
}
.global-nav__panel .global-nav__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
.global-nav__panel .global-nav__panel-list {
  margin-top: 50px;
  list-style: none;
  padding: 0;
}
.global-nav__panel .global-nav__panel-list li {
  border-bottom: 1px solid #eee;
}
.global-nav__panel .global-nav__panel-list li a {
  display: block;
  padding: 15px 0;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}
.global-nav__panel .global-nav__panel-cta {
  margin-top: 20px;
  padding: 0 1.25rem;
}
.global-nav__panel .global-nav__panel-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.125rem;
  background-color: #fff;
  border: 2px solid #3daa64;
  color: #3daa64;
  font-weight: 700;
  text-decoration: none;
  border-radius: 1.5625rem;
  transition: all 0.3s ease;
}
.global-nav__panel .global-nav__panel-cta .btn:hover {
  background-color: #3daa64;
  color: #fff;
  opacity: 1;
}

/* Overlay */
.global-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s;
  pointer-events: none;
  will-change: opacity;
}
.global-nav__overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  .global-nav__panel,
  .global-nav__overlay,
  .global-nav__icon,
  .global-nav__icon::before,
  .global-nav__icon::after {
    transition: none !important;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .hero {
    height: 60px;
  }
  .site-brand {
    padding-left: 20px;
    flex-shrink: 1;
  }
  .site-brand__link {
    min-width: 0;
  }
  .site-brand__text {
    font-size: clamp(0.75rem, 0.2424242424vw + 0.6931818182rem, 0.875rem);
    max-width: 200px;
    display: inline;
  }
  .site-brand__logo {
    height: 30px;
    flex-shrink: 0;
  }
  /* PCメニューは消す */
  .global-nav__list,
  .hero__cta {
    display: none;
  }
  /* ハンバーガーを表示 */
  .global-nav__toggle {
    display: flex;
    align-items: center;
  }
}
.site-footer {
  background: #2fbf71;
  color: #ffffff;
  width: 100%;
  box-sizing: border-box;
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.site-footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.site-footer__left small {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.95);
}

.site-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.site-footer__nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  opacity: 0.95;
  transition: opacity 0.15s ease, text-decoration 0.15s ease;
}
.site-footer__nav a:hover, .site-footer__nav a:focus {
  opacity: 1;
  text-decoration: underline;
  outline: none;
}

.site-footer__right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-footer__right .icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}
.site-footer__right .icon-link svg {
  display: block;
}

/* フォーカススタイル */
.site-footer__nav a:focus,
.icon-link:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  outline: none;
}

/* モバイル */
@media (max-width: 768px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 14px 16px;
  }
  .site-footer__nav ul {
    gap: 12px;
  }
  .site-footer__left,
  .site-footer__right {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.section-hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
@media (min-width: 769px) {
  .section-hero {
    height: clamp(21.25rem, 48vh, 40rem);
    min-height: 46.875rem;
  }
}
.section-hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #fff;
}
.section-hero .hero-bg picture,
.section-hero .hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
@media (max-width: 768px) {
  .section-hero .hero-bg {
    position: relative;
    min-height: 12.5rem;
  }
  .section-hero .hero-bg img {
    object-position: center;
  }
  .section-hero .hero-bg::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 35%;
    pointer-events: none;
    background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.8) 25%, rgba(255, 255, 255, 0.4) 60%, rgba(255, 255, 255, 0) 100%);
  }
}
.section-hero .hero-container {
  position: absolute;
  left: 0;
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  z-index: 2;
}
.section-hero .hero-content-box {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 2.8125rem 2.1875rem;
  max-width: 41.875rem;
  border-radius: 0.25rem;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.05);
}
.section-hero .hero-content-box .hero-catch {
  font-size: clamp(1.25rem, 1.9393939394vw + 0.7954545455rem, 2.25rem);
  font-weight: 700;
  color: #7d7d7d;
  margin-bottom: 1.5rem;
  font-family: vdl-penletter, sans-serif;
}
.section-hero .hero-content-box .hero-catch span {
  color: #000;
  line-height: 1.2;
  background: linear-gradient(transparent 80%, rgba(61, 170, 100, 0.3) 80%);
  padding: 0 0.25rem;
}
.section-hero .hero-content-box .hero-title {
  font-size: clamp(2rem, 1.9393939394vw + 1.5454545455rem, 3rem);
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin-bottom: 2.5rem;
  font-feature-settings: "palt";
}
.section-hero .hero-content-box .hero-btns {
  display: flex;
  gap: 1.25rem;
}
.section-hero .hero-content-box .hero-btns .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 1.875rem;
  border: 1px solid #3daa64;
  color: #3daa64;
  background-color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}
.section-hero .hero-content-box .hero-btns .btn-outline:hover {
  background-color: #3daa64;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0.25rem 0.75rem rgba(61, 170, 100, 0.3);
}
.section-hero .hero-content-box .hero-btns .btn-outline {
  width: 12.5rem;
  height: 3.125rem;
  font-size: 0.875rem;
}
.section-hero .leaf-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.section-hero .leaf-decorations .leaf {
  position: absolute;
  opacity: 0.9;
}
.section-hero .leaf-decorations .leaf-1 {
  top: 10%;
  left: 5%;
  width: 3.75rem;
  transform: rotate(-15deg);
}
.section-hero .leaf-decorations .leaf-2 {
  bottom: 15%;
  left: 15%;
  width: 2.5rem;
  filter: blur(1px);
}
.section-hero .leaf-decorations .leaf-3 {
  bottom: 20%;
  left: 40%;
  width: 1.875rem;
}
@media (max-width: 768px) {
  .section-hero {
    min-height: auto;
    flex-direction: column;
  }
  .section-hero .hero-container {
    padding: 0;
    left: 0;
    position: relative;
  }
  .section-hero .hero-content-box {
    padding: 2.5rem 1.25rem;
    max-width: 100%;
    border-radius: 0;
    background-color: #fff;
  }
  .section-hero .hero-content-box .hero-title {
    text-align: center;
  }
  .section-hero .hero-content-box .hero-catch {
    text-align: center;
  }
  .section-hero .hero-content-box .hero-btns {
    width: 100%;
  }
  .section-hero .hero-content-box .hero-btns .btn-outline {
    width: 100%;
  }
  .section-hero .leaf-decorations {
    display: none;
  }
  .section-hero .bg-decoration-text {
    font-size: 3.75rem;
    opacity: 0.5;
  }
}

/* container */
.l-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
  padding: 2.25rem 1.25rem;
}

/* section heading */
.legal-notice__heading {
  text-align: center;
  font-size: clamp(1.5rem, 0.4848484848vw + 1.3863636364rem, 1.75rem);
  font-weight: 700;
  margin-bottom: 3.125rem;
  color: #333;
}

/* card */
.legal-notice__card {
  background: #fff;
  border-radius: 8px;
  padding: 1.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* label / value row */
.ln-row {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.ln-row:last-of-type {
  border-bottom: none;
}

.ln-label {
  flex: 0 0 9.375rem;
  font-weight: 600;
  color: #333;
  font-size: 0.875rem;
}

.ln-value {
  flex: 1;
  color: #333;
  font-size: 0.875rem;
  word-break: break-word;
}

/* divider */
.ln-divider {
  margin: 1.25rem 0;
  height: 0.0625rem;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.01));
  border: 0;
}

/* block title/body */
.ln-block {
  padding: 0.625rem 0;
}

.ln-block__title {
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0.75rem 0 0.5rem;
  color: rgb(35.7, 35.7, 35.7);
}

.ln-block__body {
  font-size: 0.8125rem;
  color: #7d7d7d;
  line-height: 1.8;
}

/* links */
.legal-notice__card a {
  color: #3daa64;
  text-decoration: none;
  transition: color 0.15s, text-decoration 0.15s;
}

.legal-notice__card a:hover,
.legal-notice__card a:focus {
  text-decoration: underline;
  color: rgb(66.387012987, 185.012987013, 108.8311688312);
  outline: none;
}

/* responsive */
@media (max-width: 768px) {
  .ln-row {
    flex-direction: column;
    gap: 0.375rem;
    padding: 0.5rem 0;
  }
  .ln-label {
    flex: 0 0 auto;
    width: auto;
    font-weight: 700;
  }
}
/* Breakpoints */
/* -------------------------
   Line care banner styles
   ------------------------- */
.line-care-banner {
  background: url("../images/banner-line.png") no-repeat center center;
  padding: 34px 24px;
  box-sizing: border-box;
  margin: 0 auto;
  background-size: cover;
}
@media (max-width: 450px) {
  .line-care-banner {
    background: url("../images/SP/banner-line-sp.png") no-repeat center center;
    background-size: cover;
  }
}

.banner-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  /* layout: left content / right image */
}
.banner-container .banner-content {
  flex: 1 1 60%;
  padding: 18px 22px;
}
.banner-container .banner-content .banner-title {
  margin: 0 0 8px 0;
  font-size: 28px;
  line-height: 1.15;
  color: #1f3f36;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.banner-container .banner-content .banner-subtitle {
  margin: 0 0 18px 0;
  color: #6b6f6b;
  font-size: 15px;
  line-height: 1.6;
}
.banner-container .banner-content .line-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.875rem 5rem;
  min-height: 44px;
  background: #2fbf71;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(47, 191, 113, 0.18);
  transition: transform 0.14s ease, box-shadow 0.14s ease, filter 0.14s ease;
  cursor: pointer;
}
.banner-container .banner-content .line-button:hover {
  transform: translateY(-2px);
  filter: brightness(0.98);
}
.banner-container .banner-content .line-button:active {
  transform: translateY(0);
}
.banner-container .banner-content .line-button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(47, 191, 113, 0.18);
}
.banner-container .banner-image {
  flex: 0 0 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
}
.banner-container .banner-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  border-radius: 8px;
}

/* -------------------------
     Responsive: tablet / mobile
     ------------------------- */
@media (max-width: 880px) {
  .banner-container {
    gap: 18px;
  }
  .banner-container .banner-content .banner-title {
    font-size: 22px;
  }
  .banner-container .banner-content .banner-subtitle {
    font-size: 14px;
  }
  .banner-container .banner-image {
    flex: 0 0 220px;
  }
  .banner-container .banner-image img {
    max-height: 180px;
  }
}
@media (max-width: 600px) {
  .banner-container {
    flex-direction: column-reverse; /* 画像下、テキスト上に（画像下に置きたい場合は column） */
    align-items: stretch;
    padding: 14px;
  }
  .banner-container .banner-content {
    order: 1;
    padding: 12px 8px;
    text-align: center;
  }
  .banner-container .banner-content .banner-title {
    font-size: 20px;
  }
  .banner-container .banner-content .banner-subtitle {
    font-size: 13px;
  }
  .banner-container .banner-content .line-button {
    width: 100%;
    justify-content: center;
  }
  .banner-container .banner-image {
    order: 2;
    width: 100%;
    padding: 0 8px 12px;
  }
  .banner-container .banner-image img {
    width: 100%;
    height: auto;
    max-height: none;
  }
}
.bg-decoration-text {
  position: absolute;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 5.5rem;
  color: #fff4da;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  writing-mode: vertical-rl;
}
@media (max-width: 1100px) {
  .bg-decoration-text {
    display: none;
  }
}

.section-flow-company {
  position: relative;
  padding: 3.75rem 0 6.25rem;
  overflow: hidden;
  background-color: #fff;
}
.section-flow-company .flow-text {
  top: 3.125rem;
  right: 0;
  left: auto;
  transform: rotate(180deg);
  letter-spacing: 0.1em;
}
.section-flow-company .heading-primary {
  text-align: center;
  font-size: clamp(1.5rem, 0.4848484848vw + 1.3863636364rem, 1.75rem);
  font-weight: 700;
  color: #333;
  margin-bottom: 3.75rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.section-flow-company .heading-primary::after {
  content: "";
  position: absolute;
  bottom: 0.125rem;
  left: -0.625rem;
  width: calc(100% + 1.25rem);
  height: 0.5rem;
  background-color: #fff7b9;
  z-index: -1;
  border-radius: 0.25rem;
}
.section-flow-company .heading-primary {
  color: #000;
}
.section-flow-company .flow-area {
  position: relative;
  max-width: 1140px;
  margin: 0 auto 7.5rem;
  padding: 0 0.625rem;
}
.section-flow-company .flow-area .flow-text {
  top: 0;
  right: -2.5rem;
  left: auto;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.1em;
}
.section-flow-company .flow-area .flow-steps-container {
  display: flex;
  justify-content: space-between;
  gap: 0.9375rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.section-flow-company .flow-area .step-card {
  flex: 1 1 10rem;
  border: 3px solid #3daa64;
  background: #fff;
  padding: 2.5rem 0.625rem 1.25rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 0.25rem;
}
.section-flow-company .flow-area .step-card .step-badge {
  position: absolute;
  top: -1.5625rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #3daa64;
  color: #fff;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.1);
}
.section-flow-company .flow-area .step-card .step-badge .step-label {
  font-size: 0.625rem;
  font-weight: 700;
}
.section-flow-company .flow-area .step-card .step-badge .step-number {
  font-size: 1.125rem;
  font-weight: 700;
}
.section-flow-company .flow-area .step-card .step-icon {
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-flow-company .flow-area .step-card .step-icon img {
  width: 100%;
  height: auto;
  display: block;
}
.section-flow-company .flow-area .step-card .step-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
}
.section-flow-company .flow-area .step-card .step-desc {
  font-size: 0.75rem;
  color: #000;
}
.section-flow-company .company-area {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 0.625rem;
}
.section-flow-company .company-area .about-text {
  top: 0;
  left: -2.5rem;
  right: auto;
  writing-mode: vertical-rl;
  transform: none;
  letter-spacing: 0.1em;
}
.section-flow-company .company-area .company-container {
  display: flex;
  gap: 1.875rem;
  position: relative;
  z-index: 1;
}
.section-flow-company .company-area .company-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.3125rem 1.25rem rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.section-flow-company .company-area .info-card {
  flex: 1.2;
}
.section-flow-company .company-area .info-card .company-dl {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.8;
}
.section-flow-company .company-area .info-card .company-dl .dl-row {
  display: flex;
  margin-bottom: 0.9375rem;
}
.section-flow-company .company-area .info-card .company-dl .dl-row dt {
  font-weight: 700;
  width: 12.5rem;
  flex-shrink: 0;
  color: #000;
}
.section-flow-company .company-area .info-card .company-dl .dl-row dd {
  margin: 0;
  color: #000;
}
.section-flow-company .company-area .ceo-card {
  flex: 1;
}
.section-flow-company .company-area .ceo-card .card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.625rem;
}
.section-flow-company .company-area .ceo-card .ceo-content {
  font-size: 0.875rem;
  line-height: 1.8;
}
.section-flow-company .company-area .ceo-card .ceo-content .ceo-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.625rem;
}
.section-flow-company .company-area .ceo-card .ceo-content .ceo-birth {
  font-weight: 400;
  font-size: 0.8125rem;
  color: #000;
  margin-left: 0.3125rem;
}
.section-flow-company .company-area .ceo-card .ceo-content .ceo-desc {
  color: #000;
}
@media (max-width: 768px) {
  .section-flow-company .flow-area .flow-steps-container {
    justify-content: center;
    flex-direction: column;
    gap: 2.5rem;
    align-content: center;
  }
  .section-flow-company .flow-area .flow-steps-container .step-card {
    flex: 1 1 100%;
    min-width: 300px;
    padding: 2.5rem 1.25rem 1.875rem;
  }
  .section-flow-company .flow-area .flow-steps-container .step-card .step-badge {
    transform: translateX(-50%);
    margin-right: 0;
    width: 3.125rem;
    height: 3.125rem;
    flex-shrink: 0;
  }
  .section-flow-company .flow-area .flow-steps-container .step-card .step-icon {
    margin-bottom: 0.9375rem;
    width: 3.125rem;
    height: 3.125rem;
  }
  .section-flow-company .company-area .company-container {
    flex-direction: column;
  }
  .section-flow-company .company-area .info-card {
    padding: 1.25rem;
  }
  .section-flow-company .company-area .info-card .company-dl .dl-row {
    flex-direction: column;
  }
  .section-flow-company .company-area .info-card .company-dl .dl-row dt {
    margin-bottom: 0.3125rem;
  }
  .section-flow-company .bg-decoration-text {
    position: absolute;
    font-family: sans-serif;
    font-weight: 700;
    font-size: 5rem;
    color: #fff4da;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    writing-mode: vertical-rl;
  }
}
@media (max-width: 768px) and (max-width: 1100px) {
  .section-flow-company .bg-decoration-text {
    display: none;
  }
}
@media (max-width: 768px) {
  .section-flow-company .company-card {
    padding: 1.25rem !important;
  }
}

.section-service-merit {
  background-color: #fff4da;
  padding: 5rem 0 6.25rem;
  position: relative;
  overflow: hidden;
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #333;
  border-radius: 6.25rem 6.25rem 0 0;
}
@media (max-width: 768px) {
  .section-service-merit {
    border-radius: 0;
    padding-bottom: 3.75rem;
  }
}
.section-service-merit .heading-primary {
  text-align: center;
  font-size: clamp(1.5rem, 0.4848484848vw + 1.3863636364rem, 1.75rem);
  font-weight: 700;
  color: #333;
  margin-bottom: 3.75rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.section-service-merit .heading-primary::after {
  content: "";
  position: absolute;
  bottom: 0.125rem;
  left: -0.625rem;
  width: calc(100% + 1.25rem);
  height: 0.5rem;
  background-color: #fff7b9;
  z-index: -1;
  border-radius: 0.25rem;
}
.section-service-merit .heading-primary {
  margin-bottom: 2.5rem;
}
.section-service-merit .bg-decoration-text {
  position: absolute;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 6.25rem;
  color: #fff;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  writing-mode: vertical-rl;
}
@media (max-width: 1100px) {
  .section-service-merit .bg-decoration-text {
    display: none;
  }
}
.section-service-merit .service-text {
  top: 10%;
  letter-spacing: 0.05em;
  transform: rotate(180deg);
  right: 0;
}
.section-service-merit .service-area,
.section-service-merit .merit-area {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
}
.section-service-merit {
  /* ---------- service-area ---------- */
}
.section-service-merit .service-area {
  margin-bottom: 6.25rem;
}
.section-service-merit .service-area .service-container {
  position: relative;
  z-index: 1;
  max-width: 60rem;
  margin: 0 auto;
}
.section-service-merit .service-area .prepare-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 1.875rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.875rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 3.125rem;
  position: relative;
}
.section-service-merit .service-area .prepare-card .prepare-content {
  flex: 1;
}
.section-service-merit .service-area .prepare-card .prepare-content .prepare-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
  color: #333;
}
.section-service-merit .service-area .prepare-card .prepare-content .prepare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
  color: #7d7d7d;
  line-height: 1.6;
}
.section-service-merit .service-area .prepare-card .prepare-content .prepare-list li {
  margin-bottom: 0.25rem;
  padding-left: 1em;
  text-indent: -1em;
}
.section-service-merit .service-area .prepare-card .prepare-content .prepare-list li::before {
  content: "・";
}
.section-service-merit .service-area .prepare-card .prepare-image {
  flex: 0 0 10rem;
  transition: transform 0.3s ease;
  z-index: 2;
}
.section-service-merit .service-area .prepare-card .prepare-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.375rem;
}
.section-service-merit .service-area .prepare-card .prepare-image {
  /* デスクトップで右下へ少しずらす */
}
@media (min-width: 769px) {
  .section-service-merit .service-area .prepare-card .prepare-image {
    transform: translate(0.8125rem, -3.25rem);
  }
}
@media (max-width: 768px) {
  .section-service-merit .service-area .prepare-card .prepare-image {
    transform: none;
    display: none; /* モバイルでは非表示（既存の挙動に合わせる） */
  }
}
.section-service-merit .service-area .sub-heading {
  text-align: left;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #333;
}
.section-service-merit .service-area .steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.section-service-merit .service-area .steps-grid .step-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 2.5rem 0.9375rem 1.25rem;
  text-align: center;
  position: relative;
  box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.03);
}
.section-service-merit .service-area .steps-grid .step-item .step-num {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffa800;
  color: #fff;
  font-weight: bold;
  font-size: 0.875rem;
  padding: 0.375rem 0.75rem;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 0.75rem;
}
.section-service-merit .service-area .steps-grid .step-item .step-icon {
  height: 3.125rem;
  margin-bottom: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-service-merit .service-area .steps-grid .step-item .step-icon img {
  max-height: 100%;
  width: auto;
}
.section-service-merit .service-area .steps-grid .step-item .step-desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #333;
}
@media (max-width: 768px) {
  .section-service-merit .service-area .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .section-service-merit .service-area .steps-grid {
    grid-template-columns: 1fr;
  }
}
.section-service-merit .service-area .btn-container {
  text-align: center;
  margin-bottom: 3.75rem;
}
.section-service-merit .service-area .btn-container .btn-line-rect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0.875rem 5rem;
  min-height: 44px;
  background: #2fbf71;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(47, 191, 113, 0.18);
  transition: transform 0.14s ease, box-shadow 0.14s ease, filter 0.14s ease;
  cursor: pointer;
}
.section-service-merit .service-area .btn-container .btn-line-rect:hover {
  transform: translateY(-2px);
  filter: brightness(0.98);
}
.section-service-merit .service-area .btn-container .btn-line-rect:active {
  transform: translateY(0);
}
.section-service-merit .service-area .btn-container .btn-line-rect:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(47, 191, 113, 0.18);
}
.section-service-merit .service-area .features-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}
.section-service-merit .service-area .features-grid .feature-item {
  flex: 1;
  text-align: center;
  max-width: 15rem;
}
.section-service-merit .service-area .features-grid .feature-item .feature-circle {
  width: 12.5rem;
  height: 12.5rem;
  border-radius: 50%;
  border: 2px solid #3daa64;
  background: #fff;
  margin: 0 auto 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-service-merit .service-area .features-grid .feature-item .feature-circle img {
  width: 66.65%;
  height: auto;
}
.section-service-merit .service-area .features-grid .feature-item .feature-circle img:nth-child(1) {
  width: 58%;
}
.section-service-merit .service-area .features-grid .feature-item .feature-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.625rem;
  color: #333;
}
.section-service-merit .service-area .features-grid .feature-item .feature-text {
  font-size: 0.75rem;
  line-height: 1.6;
  color: #7d7d7d;
  text-align: left;
  text-align-last: center;
}
@media (max-width: 768px) {
  .section-service-merit .service-area .features-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.875rem;
  }
}
.section-service-merit {
  /* ---------- merit-area ---------- */
}
.section-service-merit .merit-area .merit-text {
  bottom: 0;
  left: -1.25rem;
  transform: rotate(180deg);
}
.section-service-merit .merit-area .merit-container {
  position: relative;
  z-index: 1;
  max-width: 60rem;
  margin: 0 auto;
  display: flex;
  gap: 1.875rem;
}
.section-service-merit .merit-area .merit-card {
  flex: 1;
  background: #fff;
  border: 3px solid rgba(61, 170, 100, 0.3);
  border-radius: 8px;
  padding: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.section-service-merit .merit-area .merit-card .merit-content {
  flex: 1;
}
.section-service-merit .merit-area .merit-card .merit-content .merit-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.9375rem;
  color: #333;
}
.section-service-merit .merit-area .merit-card .merit-content .merit-desc {
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #7d7d7d;
}
.section-service-merit .merit-area .merit-card .merit-image {
  flex: 0 0 6.25rem;
}
.section-service-merit .merit-area .merit-card .merit-image img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .section-service-merit .merit-area .merit-container {
    flex-direction: column;
    gap: 3.125rem;
  }
  .section-service-merit .merit-area .merit-card {
    flex-direction: column;
    text-align: center;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    overflow: visible;
  }
  .section-service-merit .merit-area .merit-card .merit-content {
    background: #fff;
    border: 0.5rem solid rgba(61, 170, 100, 0.4);
    border-radius: 1.25rem;
    padding: 2.5rem 1.25rem;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    max-width: 450px;
  }
  .section-service-merit .merit-area .merit-card .merit-content .merit-title {
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
  }
  .section-service-merit .merit-area .merit-card .merit-content .merit-desc {
    text-align: center;
  }
  .section-service-merit .merit-area .merit-card .merit-image {
    width: clamp(11.25rem, 60vw, 17.5rem);
    margin-top: -2.1875rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
  }
  .section-service-merit .merit-area .merit-card .merit-image img {
    width: 100%;
    height: auto;
  }
  .section-service-merit .merit-area .bg-decoration-text {
    position: absolute;
    font-family: sans-serif;
    font-weight: 700;
    font-size: 3.75rem;
    color: #fff;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    writing-mode: vertical-rl;
    opacity: 0.5;
  }
}
@media (max-width: 768px) and (max-width: 1100px) {
  .section-service-merit .merit-area .bg-decoration-text {
    display: none;
  }
}

.section-vision {
  background-color: #fff;
  padding: 5rem 0 6.25rem;
  position: relative;
  overflow: hidden;
  font-family: "Zen Maru Gothic", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.section-vision .heading-primary {
  text-align: center;
  font-size: clamp(1.5rem, 0.4848484848vw + 1.3863636364rem, 1.75rem);
  font-weight: 700;
  color: #333;
  margin-bottom: 3.75rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.section-vision .heading-primary::after {
  content: "";
  position: absolute;
  bottom: 0.125rem;
  left: -0.625rem;
  width: calc(100% + 1.25rem);
  height: 0.5rem;
  background-color: #fff7b9;
  z-index: -1;
  border-radius: 0.25rem;
}
.section-vision .vision-bg-text {
  position: absolute;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 7.5rem;
  color: #fff4da;
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  writing-mode: vertical-rl;
}
@media (max-width: 1100px) {
  .section-vision .vision-bg-text {
    display: none;
  }
}
.section-vision .vision-bg-text {
  top: 3.125rem;
  left: -1.875rem;
  opacity: 0.8;
}
.section-vision .vision-container {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
}
.section-vision .vision-card {
  flex: 1;
  text-align: left;
}
.section-vision .vision-card .vision-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
  height: 5rem;
}
.section-vision .vision-card .vision-icon img {
  height: 100%;
  width: auto;
}
.section-vision .vision-card .vision-content .vision-label {
  display: inline-block;
  color: #3daa64;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
}
.section-vision .vision-card .vision-content .vision-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.9375rem;
  padding-bottom: 0.9375rem;
  border-bottom: 1px solid #56c679;
}
.section-vision .vision-card .vision-content .vision-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #7d7d7d;
  text-align: justify;
}
@media (max-width: 768px) {
  .section-vision {
    padding: 3.75rem 0;
  }
  .section-vision .vision-bg-text {
    position: absolute;
    font-family: sans-serif;
    font-weight: 700;
    font-size: 5rem;
    color: #fff4da;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    writing-mode: vertical-rl;
    left: -1.25rem;
    opacity: 0.5;
  }
}
@media (max-width: 768px) and (max-width: 1100px) {
  .section-vision .vision-bg-text {
    display: none;
  }
}
@media (max-width: 768px) {
  .section-vision .vision-container {
    flex-direction: column;
    gap: 3.75rem;
    max-width: 31.25rem;
  }
  .section-vision .vision-card {
    text-align: center;
  }
  .section-vision .vision-card .vision-content {
    text-align: left;
  }
}

.hero-main__media {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f4f4f4;
}
@supports (aspect-ratio: 1/1) {
  .hero-main__media {
    aspect-ratio: 1200/520;
    max-height: 59.375rem;
    min-height: 15rem;
  }
}
@supports not (aspect-ratio: 1/1) {
  .hero-main__media {
    height: 0;
    padding-top: 43.3333%;
  }
}
.hero-main__media > picture {
  display: block;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  box-sizing: border-box;
  pointer-events: none;
}
.hero-main__img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: auto;
}
@media (max-width: 768px) {
  @supports (aspect-ratio: 1/1) {
    .hero-main__media {
      aspect-ratio: 375/700;
      max-height: none;
      min-height: 13.75rem;
    }
  }
  @supports not (aspect-ratio: 1/1) {
    .hero-main__media {
      padding-top: 186.6667%;
    }
  }
  .hero-main__media > picture {
    padding: 0 0.5rem;
  }
  .hero-main__img {
    object-position: center top;
  }
}

.concept-section {
  position: relative;
  z-index: 2;
  margin-top: -5.625rem;
}
.concept-section__media {
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
  position: relative;
}
.concept-section__media > picture {
  display: block;
  width: 100%;
  max-width: 1140px;
  box-sizing: border-box;
  padding: 0 1.25rem;
}
.concept-section__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 75rem;
  margin: 0 auto;
  pointer-events: auto;
  border-radius: 0.375rem;
  position: relative;
  z-index: 3;
  transition: transform 240ms ease;
}
.concept-section__card {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4.375rem;
  width: 100%;
  max-width: 57.5rem;
  z-index: 4;
  pointer-events: auto;
  padding: 0 1rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}
.concept-section .concept-card {
  width: 100%;
  background: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.125rem;
}
.concept-section .concept-card__thumb {
  flex: 0 0 6rem;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  overflow: hidden;
}
.concept-section .concept-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.concept-section .concept-card__body {
  flex: 1 1 auto;
  color: #ffa800;
}
.concept-section .concept-card__body h3 {
  margin: 0 0 0.375rem;
  font-size: 1.125rem;
  color: #ffa800;
}
.concept-section .concept-card__body p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 168, 0, 0.85);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .concept-section {
    margin-top: -1.75rem;
  }
  .concept-section__media > picture {
    padding: 0 0.75rem;
  }
  .concept-section__img {
    max-width: none;
    width: 100%;
    transform: translateY(0);
  }
  .concept-section__card {
    position: relative;
    left: auto;
    transform: none;
    bottom: auto;
    margin-top: -0.75rem;
    padding: 0 0.75rem;
  }
  .concept-section .concept-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem;
  }
  .concept-section .concept-card__thumb {
    width: 4.5rem;
    height: 4.5rem;
  }
  .concept-section .concept-card__body h3 {
    font-size: 1rem;
  }
  .concept-section .concept-card__body p {
    font-size: 0.8125rem;
  }
}

@media (max-width: 1024px) {
  .hero-main__media {
    padding-top: 60%;
  }
  .concept-section__img {
    width: 80%;
  }
}
@media (max-width: 768px) {
  .hero-main__media {
    padding-top: 66.66%;
  }
  .concept-section__img {
    width: 90%;
  }
}
.c-card {
  background: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
  padding: 1.25rem;
  margin-top: 1.25rem;
}

.c-card__title {
  text-align: center;
  color: #3daa64;
  margin-bottom: 0.875rem;
  font-weight: 700;
}

.c-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.c-table th,
.c-table td {
  text-align: left;
  padding: 0.75rem 0.875rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.04);
}

.c-table__label {
  width: 11.25rem;
  color: rgba(0, 0, 0, 0.45);
  font-weight: 600;
}

.c-card__cta {
  text-align: center;
  margin-top: 1rem;
}

.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: 1.75rem;
  background-color: #3daa64;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}
.c-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.side-tag {
  position: fixed;
  right: 0rem;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 0.375rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  z-index: 1000;
  font-weight: 700;
}
.side-tag img {
  display: block;
  width: 3.75rem;
  height: auto;
}
@media (max-width: 768px) {
  .side-tag {
    display: none;
  }
}

@media (max-width: 768px) {
  .l-container {
    padding: 1rem 0.75rem;
  }
  .c-hero__inner {
    flex-direction: column;
    align-items: center;
  }
  .c-hero__side {
    width: 7.5rem;
    flex: 0 0 7.5rem;
  }
  .c-hero__avatar {
    height: 7.5rem;
  }
  .c-table__label {
    width: 8.75rem;
  }
  .side-tag {
    right: 0.5rem;
  }
}
.event-summary {
  background-color: #fcfaf8;
  padding: 80px 20px;
  text-align: center;
}
.event-summary__title {
  font-size: 2.25rem;
  font-weight: 500;
  color: #ffa800;
  margin: 0 0 40px;
  display: inline-block;
}
.event-summary__title::after {
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  margin-top: 10px;
  background-size: 10px 10px;
}

.summary-box {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.summary-box__list {
  margin: 0;
  text-align: left;
}
.summary-box__item {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
  border-bottom: 1px solid #3daa64;
}
.summary-box__item:last-child {
  border-bottom: none;
}
.summary-box__item dt {
  flex-shrink: 0;
  width: 120px;
  font-weight: bold;
  color: #333;
}
.summary-box__item dd {
  margin: 0;
  color: #333;
  line-height: 1.8;
}
.summary-box__item dd ul {
  list-style-type: "・";
  padding-left: 1.2em;
}
@media (min-width: 769px) {
  .summary-box__item {
    flex-direction: row;
  }
  .summary-box__item dt {
    flex-shrink: 0;
    width: 120px;
    margin-bottom: 0;
  }
}

.c-tickets {
  background-image: url("../images/bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 3rem 0;
}
.c-tickets .c-tickets__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
}
.c-tickets .c-tickets__inner .btn-apply {
  display: block;
  max-width: 31.25rem;
  margin: 0 auto;
}
.c-tickets__heading {
  text-align: center;
  font-size: 2.25rem;
  color: #ffa800;
  font-weight: 500;
  margin-bottom: 1.25rem;
  position: relative;
  margin-bottom: 6.25rem;
}
.c-tickets__list {
  display: flex;
  gap: 1.875rem;
  justify-content: center;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 1.75rem;
}
.c-tickets__list .c-ticket {
  display: flex;
}
.c-tickets__list .c-ticket .c-ticket__box {
  width: 12.5rem;
  border: 0.0625rem solid rgba(61, 170, 100, 0.22);
  border-color: #3daa64;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.04);
  background: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .c-tickets__list .c-ticket .c-ticket__box {
    width: 18.75rem;
  }
}
.c-tickets__list .c-ticket .c-ticket__head {
  background: #3daa64;
  color: #fff;
  padding: 0.75rem 0.625rem;
}
.c-tickets__list .c-ticket .c-ticket__head .c-ticket__title {
  font-weight: 500;
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}
.c-tickets__list .c-ticket .c-ticket__head .c-ticket__price {
  display: inline-block;
  background: #fff;
  color: #3daa64;
  padding: 0rem 1.875rem;
  font-weight: 800;
  font-size: 1.125rem;
}
.c-tickets__list .c-ticket .c-ticket__head .c-ticket__price .c-ticket__yen {
  font-size: 0.75rem;
  color: #3daa64;
  font-weight: 500;
  margin-left: 0.375rem;
}
.c-tickets__list .c-ticket .c-ticket__body {
  background: #fff;
  padding: 0.75rem;
  color: #333;
}
.c-tickets__list .c-ticket .c-ticket__body .c-ticket__meta {
  margin-top: 0.625rem;
  background: rgba(0, 0, 0, 0.02);
  padding: 0.5rem;
  border-radius: 0.25rem;
  display: inline-block;
  font-size: 0.8125rem;
}
.c-tickets__list .c-ticket .c-ticket__body .c-ticket__meta .c-ticket__label {
  background: #ffa800;
  color: #fff;
  padding: 0.25rem 0.5rem;
  margin-right: 0.375rem;
}
.c-tickets__list .c-ticket__meta {
  margin-top: 0.625rem;
  background: rgba(0, 0, 0, 0.02);
  padding: 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.8125rem;
  color: rgba(0, 0, 0, 0.6);
}
.c-tickets__list .c-ticket__meta strong {
  font-size: 1.125rem;
  color: #ffa800;
  margin-left: 0.375rem;
  font-weight: 700;
}
.c-tickets__list .c-ticket__label {
  background: #ffa800;
  color: #fff;
  padding: 0.25rem 0.5rem;
}
.c-tickets__list .c-ticket__note {
  margin-top: 0.375rem;
  font-size: 0.75rem;
  color: rgba(255, 168, 0, 0.9);
}
.c-tickets__detail {
  text-align: center;
  background: #fff;
  border-radius: 0.625rem;
  padding: 0.875rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  max-width: 56.25rem;
  margin: 0 auto 1.125rem;
  overflow: hidden;
}
.c-tickets__detail-head {
  background: #3daa64;
  color: #fff;
  padding: 0.625rem 0.75rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.75rem;
  font-size: 1.875rem;
}
.c-tickets__detail-body {
  padding: 0.75rem;
  color: #333;
  line-height: 1.8;
}
.c-tickets__detail-body p {
  color: #3daa64;
  margin: 1.125rem 0;
  font-size: 1.5rem;
}
.c-tickets__detail-body .c-tickets__feature {
  border-width: 4px;
  border-style: double;
  border-color: rgba(61, 170, 100, 0.18);
  padding: 0.625rem;
  margin: 0.625rem 0;
}
.c-tickets__detail-body .c-tickets__feature h4 {
  color: #3daa64;
  margin: 1.25rem 0;
  font-size: 1.5rem;
}
.c-tickets__detail-body .c-tickets__feature ul {
  color: #ffa800;
  margin: 0;
  padding-left: 1.125rem;
}
.c-tickets__detail-body .c-tickets__feature ul li {
  margin-bottom: 0.375rem;
}
.c-tickets__detail-body .c-tickets__note-bottom {
  margin-top: 0.5rem;
  padding: 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.8125rem;
  color: #ffa800;
}
@media (max-width: 768px) {
  .c-tickets {
    padding: 1.75rem 0;
  }
  .c-tickets__list {
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
  }
  .c-tickets__detail {
    padding: 0.625rem;
    margin: 0.75rem;
  }
}

.c-note {
  padding: 20px;
  text-align: center;
}
.c-note__title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #7b5e4a;
}
.c-note__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
}
.c-note__list li {
  font-size: 14px;
  line-height: 1.8;
  color: #5a4a42;
  margin-bottom: 6px;
}
.c-note__list li::before {
  content: "・";
  margin-right: 4px;
  color: #a67b5b;
}

.seminar-benefits {
  padding: 2rem 1rem;
  background-image: url("../images/bg2.png");
  text-align: center;
}
.seminar-benefits .benefits-title {
  font-size: 2.25rem;
  color: #d35400;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.seminar-benefits .benefits-grid {
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.seminar-benefits .benefits-grid .benefit-item img {
  width: 100%;
  height: auto;
  display: block;
}
.seminar-benefits .benefits-grid .benefit-item .benefit-text {
  padding: 0.8rem;
  font-size: 0.95rem;
  color: #4e4e4e;
  line-height: 1.4;
}
.seminar-benefits .benefits-grid--top {
  display: grid;
  grid-template-columns: repeat(3, 0.2fr);
  justify-content: center;
  margin: 0 6.25rem;
}
@media screen and (max-width: 768px) {
  .seminar-benefits .benefits-grid--top {
    margin: 0 1.875rem;
  }
}
.seminar-benefits .benefits-grid--bottom {
  display: grid;
  grid-template-columns: repeat(2, 0.2fr);
  justify-content: center;
  margin: 0 6.25rem;
}
@media screen and (max-width: 768px) {
  .seminar-benefits .benefits-grid--bottom {
    margin: 0 1.875rem;
  }
}
.seminar-benefits .btn-apply {
  display: inline-block;
  max-width: 31.25rem;
  margin: 3.125rem;
}

@media (max-width: 768px) {
  .seminar-benefits .benefits-grid--top,
  .seminar-benefits .benefits-grid--bottom {
    grid-template-columns: none;
  }
}
@media (max-width: 480px) {
  .seminar-benefits .benefits-grid--top,
  .seminar-benefits .benefits-grid--bottom {
    grid-template-columns: 1fr;
  }
}
.ceo-capital {
  margin: 12px 0;
  font-weight: 600;
}

.hero-contact {
  height: 450px;
  background: url("../images/common/bg.png") no-repeat center top/cover;
  display: flex;
  align-items: center;
  text-align: left;
  color: #fff;
  padding: 0 1.875rem;
}
.hero-contact .hero-contact__inner {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}
.hero-contact .hero-contact__news {
  width: 100%;
}
.hero-contact .hero-contact__sub-title {
  margin: 0 0 10px;
  font-size: 1.5rem;
}
.hero-contact .hero-contact__main-title {
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
  letter-spacing: 2px;
}

#contents {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
  padding: 4rem 1rem 0 1rem;
}

.hero-contact-form {
  background-color: #f6f6f6;
}

#cf7-area {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
  padding: 2rem 1rem;
  font-size: 1rem;
}
#cf7-area .cf7-item {
  margin-bottom: 2rem;
}
#cf7-area .cf7-item .cf7-title {
  color: #3daa64;
  font-size: 1.875rem;
}
#cf7-area .cf7-item .cf7-q {
  margin-bottom: 0.5rem;
}
#cf7-area .cf7-item .cf7-q label {
  font-weight: bold;
  display: block;
}
#cf7-area .cf7-item .cf7-q label .cf7-req {
  color: #d9534f;
  margin-left: 0.5em;
  font-size: 0.9em;
}
#cf7-area .cf7-item .cf7-a input,
#cf7-area .cf7-item .cf7-a textarea {
  background-color: #fff;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
#cf7-area .cf7-item .cf7-a input:focus,
#cf7-area .cf7-item .cf7-a textarea:focus {
  border-color: #3daa64;
  outline: none;
  box-shadow: 0 0 0 3px rgba(43, 169, 111, 0.2);
}
#cf7-area .cf7-item .cf7-a textarea {
  min-height: 150px;
  resize: vertical;
}
#cf7-area .cf7-accept-check {
  text-align: center;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
#cf7-area .cf7-accept-check input[type=checkbox] {
  margin-right: 0.5rem;
  transform: scale(1.2);
  appearance: auto;
}
#cf7-area .tips {
  text-align: center;
  font-size: 0.85rem;
  color: #555;
}
#cf7-area .tips a.greentxt {
  color: #3daa64;
  text-decoration: underline;
}
#cf7-area .tips a.greentxt:hover {
  text-decoration: none;
}
#cf7-area .cf7-submit {
  text-align: center;
  margin: 1.875rem 0 0 2.8125rem;
}
#cf7-area .cf7-submit input[type=submit] {
  background-color: #ffa800;
  color: #fff;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#cf7-area2 {
  background-color: #fff;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
  padding: 2rem 1rem;
  font-size: 1rem;
}
#cf7-area2 .cf7-item {
  margin-bottom: 2rem;
}
#cf7-area2 .cf7-item .cf7-title {
  color: #3daa64;
  font-size: 1.875rem;
}
#cf7-area2 .cf7-item .cf7-q {
  margin-bottom: 0.5rem;
}
#cf7-area2 .cf7-item .cf7-q label {
  font-weight: bold;
  display: block;
}
#cf7-area2 .cf7-item .cf7-q label .cf7-req {
  color: #d9534f;
  margin-left: 0.5em;
  font-size: 0.9em;
}
#cf7-area2 .cf7-item .cf7-a input,
#cf7-area2 .cf7-item .cf7-a textarea,
#cf7-area2 .cf7-item .cf7-a select {
  background-color: #f6f6f6;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
#cf7-area2 .cf7-item .cf7-a input:focus,
#cf7-area2 .cf7-item .cf7-a textarea:focus,
#cf7-area2 .cf7-item .cf7-a select:focus {
  border-color: #3daa64;
  outline: none;
  box-shadow: 0 0 0 3px rgba(43, 169, 111, 0.2);
}
#cf7-area2 .cf7-item .cf7-a textarea {
  min-height: 150px;
  resize: vertical;
}
#cf7-area2 .cf7-accept-check {
  text-align: center;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
#cf7-area2 .cf7-accept-check input[type=checkbox] {
  margin-right: 0.5rem;
  transform: scale(1.2);
  appearance: auto;
}
#cf7-area2 .tips {
  text-align: center;
  font-size: 0.85rem;
  color: #555;
}
#cf7-area2 .tips a.greentxt {
  color: #3daa64;
  text-decoration: underline;
}
#cf7-area2 .tips a.greentxt:hover {
  text-decoration: none;
}
#cf7-area2 .cf7-submit {
  text-align: center;
  margin: 1.875rem 0 0 2.8125rem;
}
#cf7-area2 .cf7-submit input[type=submit] {
  background-color: #ffa800;
  color: #fff;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#cf7-area2 .cf7-submit input[type=submit]:hover {
  background-color: #3daa64;
}

.wpcf7-response-output {
  width: 90%;
  max-width: 800px;
  margin: 2rem auto !important;
  padding: 1rem 2rem;
  font-size: 1rem;
  text-align: center;
  display: block;
}

/* reCAPTCHAバッジを左下に配置 */
.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  left: 4px !important;
  bottom: 10px !important;
}
.grecaptcha-badge:hover {
  width: 256px !important;
}

.policy-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #000;
  padding: 2rem 4rem;
  max-width: 1140px;
  margin: 2rem auto;
}
.policy-card__title {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
}
.policy-card__heading {
  font-size: 1.125rem;
  margin: 1rem 0 0.5rem;
  font-weight: bold;
}
.policy-card__heading::before {
  content: "";
  display: inline-block;
  background-color: #3daa64;
  margin-right: 1rem;
  width: 10px;
  height: 20px;
  align-items: center;
  vertical-align: middle;
}
.policy-card__text {
  font-size: 1rem;
  line-height: 1.6;
  margin: 2rem auto;
}
.policy-card__text:last-child {
  text-align: end;
}
.policy-card__list {
  margin-bottom: 1rem;
  counter-reset: number;
  list-style: none;
  padding-left: 1.5em;
  position: relative;
}
.policy-card__list--decimal ol {
  list-style: none;
  counter-reset: number;
}
.policy-card__list--decimal li {
  position: relative;
  padding-left: 40px;
}
.policy-card__list--decimal li::before {
  counter-increment: number;
  content: "（" counter(number) "）";
  position: absolute;
  left: 0;
}
.policy-card__list--decimal {
  padding-left: 2rem;
}
.policy-card__list--bullet {
  list-style: disc inside;
  padding-left: 2rem;
}
.policy-card__list li {
  margin: 0.5rem auto;
  line-height: 1.5;
}

.not-found-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90vh;
  padding: 2rem;
  text-align: center;
  background-color: #fff;
}
.not-found-page .not-found-main {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
  width: 100%;
}
.not-found-page .not-found__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #333;
}
.not-found-page .not-found__text {
  font-size: 1rem;
  color: #555;
}
.not-found-page .not-found__text .not-found__link {
  color: #0073aa;
  text-decoration: underline;
}
.not-found-page .not-found__text .not-found__link:hover {
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */