@charset "UTF-8";
/* Reset / Base
======================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2d2d2d;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 200ms ease;
}
a:hover {
  opacity: 0.75;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  font-family: inherit;
  color: inherit;
}

/* PC / SP 出し分け
======================================================== */
.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

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

/* Main
======================================================== */
/* Inner — コンテンツ幅コンテナ
======================================================== */
.l-inner {
  width: min(1168px, 100%);
  padding-inline: 24px;
  margin-inline: auto;
}

.l-inner_wide {
  width: min(1488px, 100%);
  padding-inline: 24px;
  margin-inline: auto;
}

/* Header（メインサイト用・ティール帯）
======================================================== */
.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #3d9478;
  color: #ffffff;
}

.l-header_inner {
  width: min(1488px, 100%);
  margin-inline: auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .l-header_inner {
    padding-block: 18px;
  }
}

.l-header_start {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.l-header_catch {
  font-size: clamp(11px, 7.4px + 0.5vw, 13px);
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.l-header_logo {
  line-height: 1.3;
}
.l-header_logo:hover {
  opacity: 0.9;
}

.l-header_logo-name {
  display: block;
  font-size: clamp(16px, 8.9px + 0.9vw, 20px);
  font-weight: 700;
  color: #ffffff;
}

.l-header_logo-en {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
}

/* --- ナビ（PC） --- */
.l-header_nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header_nav {
    display: block;
  }
}

.l-header_nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.l-header_nav-list > li > a {
  display: inline-block;
  padding: 4px 0;
  font-size: clamp(13px, 9.4px + 0.5vw, 15px);
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
}
.l-header_nav-list > li > a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* --- ハンバーガー（SP） --- */
.l-header_toggle {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 22px;
}
@media screen and (min-width: 768px) {
  .l-header_toggle {
    display: none;
  }
}
.l-header_toggle > span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #ffffff;
  transition: top 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.l-header_toggle > span:nth-child(1) {
  top: 0;
}
.l-header_toggle > span:nth-child(2) {
  top: 10px;
}
.l-header_toggle > span:nth-child(3) {
  top: 20px;
}
.l-header_toggle.is-active > span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.l-header_toggle.is-active > span:nth-child(2) {
  opacity: 0;
}
.l-header_toggle.is-active > span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/* --- SPドロワーメニュー --- */
body.is-header-drawer-open {
  overflow: hidden;
}

.l-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background-color: #3d9478;
  padding: 96px 24px 60px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (min-width: 768px) {
  .l-drawer {
    display: none;
  }
}
.is-header-drawer-open .l-drawer {
  opacity: 1;
  visibility: visible;
}

.l-drawer_list {
  width: 100%;
  text-align: center;
}
.l-drawer_list > li > a {
  display: block;
  padding: 18px 12px;
  font-size: clamp(16px, 12.4px + 0.5vw, 18px);
  font-weight: 700;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Footer
======================================================== */
.l-footer {
  background-color: #2e6b4f;
  color: #ffffff;
  padding: 56px 0 28px;
}

.l-footer_inner {
  width: min(1168px, 100%);
  padding-inline: 24px;
  margin-inline: auto;
}

.l-footer_brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer_brand {
    align-items: flex-start;
    text-align: left;
  }
}

.l-footer_name {
  font-size: 20px;
  font-weight: 700;
}

.l-footer_address {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.l-footer_copy {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 12px;
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}

/* Section Title
======================================================== */
.c-section_title {
  text-align: center;
  margin-bottom: 40px;
}

.c-section_title-en {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #3d9478;
  margin-bottom: 8px;
}

.c-section_title-ja {
  font-size: clamp(24px, 9.8px + 1.9vw, 32px);
  font-weight: 700;
  color: #2d2d2d;
}

/* Button
======================================================== */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 260px;
  padding: 16px 32px;
  border-radius: 999px;
  background-color: #3d9478;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: background-color 200ms ease, opacity 200ms ease;
}
.c-btn:hover {
  opacity: 1;
  background-color: #2e6b4f;
}

.c-btn-orange {
  background-color: #e8712a;
}
.c-btn-orange:hover {
  background-color: color-mix(in srgb, #e8712a 85%, #000);
}

/* TOP - Main Visual（画像に中央・白文字を重ねる）
======================================================== */
.top-mv {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-mv {
    min-height: 860px;
  }
}

.top-mv_bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.top-mv_bg > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.top-mv_bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(46, 107, 79, 0.35), rgba(46, 107, 79, 0.6));
}

.top-mv_body {
  width: 100%;
  padding: 48px 24px;
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.top-mv_lead {
  font-size: clamp(14px, 6.9px + 0.9vw, 18px);
  font-weight: 500;
  margin-bottom: 14px;
}

.top-mv_title {
  font-size: clamp(26px, -6px + 4.2vw, 44px);
  font-weight: 700;
  line-height: 1.5;
}

.top-mv_saimu {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 28px auto 0;
  padding: 8px;
  border-radius: 12px;
  background-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  text-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.top-mv_saimu:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.top-mv_saimu-thumb {
  display: block;
  width: min(340px, 100%);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-mv_saimu-thumb {
    width: 440px;
  }
}
.top-mv_saimu-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.top-mv_saimu-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #e8712a;
  color: #ffffff;
  font-size: clamp(14px, 10.4px + 0.5vw, 16px);
  font-weight: 700;
}
.top-mv_saimu-label::after {
  content: "▶";
  font-size: 0.75em;
}

.top-mv_meta {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 40px auto 0;
  padding: 16px clamp(20px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  background-color: rgba(46, 107, 79, 0.28);
  line-height: 1.9;
}

.top-mv_name {
  font-size: clamp(15px, 9.7px + 0.7vw, 18px);
  font-weight: 700;
}

.top-mv_reg {
  font-size: 13px;
}

.top-mv_office {
  margin-top: 8px;
  font-size: clamp(13px, 11.2px + 0.2vw, 14px);
}

/* TOP - Blog（最新ブログ）
======================================================== */
.top-blog {
  padding: 100px 0;
  background-color: #f0f7f4;
}

.top-blog_list {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .top-blog_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.top-blog_item {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.top-blog_thumb {
  aspect-ratio: 16/10;
  background-color: #e8f5ef;
}
.top-blog_thumb > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-blog_body {
  padding: 18px 20px 22px;
}

.top-blog_date {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #9e9e9e;
}

.top-blog_ttl {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.top-blog_more {
  text-align: center;
}

/* Page Head（下層共通の見出し帯）
======================================================== */
.p-pagehead {
  padding: 48px 0;
  background-color: #e8f5ef;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-pagehead {
    padding: 72px 0;
  }
}

.p-pagehead_title {
  font-size: clamp(22px, 4.2px + 2.3vw, 32px);
  font-weight: 700;
  color: #2e6b4f;
}

/* Blog Archive
======================================================== */
.p-blog {
  padding: 64px 0 96px;
}

.p-blog_list {
  display: grid;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-blog_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.p-blog_item {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.p-blog_thumb {
  aspect-ratio: 16/10;
  background-color: #e8f5ef;
}
.p-blog_thumb > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-blog_body {
  padding: 18px 20px 22px;
}

.p-blog_date {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #9e9e9e;
}

.p-blog_ttl {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}

/* Single（左サイドバー＋本文の2カラム）
======================================================== */
.p-single {
  padding: 48px 0 96px;
}

.p-single_layout {
  display: grid;
  gap: 40px;
}
@media screen and (min-width: 1024px) {
  .p-single_layout {
    grid-template-columns: 1fr 280px;
    gap: 56px;
    align-items: start;
  }
}

.p-single_main {
  order: 1;
  min-width: 0;
}
@media screen and (min-width: 1024px) {
  .p-single_main {
    order: 0;
  }
}

.p-single_meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.p-single_date {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #9e9e9e;
}

.p-single_cat {
  padding: 3px 12px;
  border-radius: 999px;
  background-color: #e8f5ef;
  color: #2e6b4f;
  font-size: 13px;
}
.p-single_cat:hover {
  opacity: 0.8;
}

.p-single_title {
  margin: 12px 0 32px;
  font-size: clamp(22px, 7.8px + 1.9vw, 30px);
  font-weight: 700;
  line-height: 1.5;
}

.p-single_content {
  line-height: 1.9;
}
.p-single_content > * + * {
  margin-top: 1.4em;
}
.p-single_content h2 {
  margin-top: 2em;
  padding: 8px 16px;
  border-left: 5px solid #3d9478;
  background-color: #f0f7f4;
  font-size: 20px;
}
.p-single_content h3 {
  margin-top: 1.6em;
  font-size: 18px;
  color: #2e6b4f;
}
.p-single_content a {
  color: #3d9478;
  text-decoration: underline;
}
.p-single_content img {
  border-radius: 8px;
}

.p-single_back {
  margin-top: 48px;
  text-align: center;
}

/* Sidebar
======================================================== */
.p-sidebar {
  order: 2;
}
@media screen and (min-width: 1024px) {
  .p-sidebar {
    order: 1;
  }
}

.p-sidebar_block + .p-sidebar_block {
  margin-top: 36px;
}

.p-sidebar_title {
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #3d9478;
  font-size: 17px;
  font-weight: 700;
  color: #2d2d2d;
}

.p-sidebar_posts > li + li {
  margin-top: 4px;
}
.p-sidebar_posts > li > a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.p-sidebar_posts-ttl {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.p-sidebar_posts-date {
  display: block;
  margin-top: 4px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #9e9e9e;
}

.p-sidebar_list > li {
  border-bottom: 1px solid #e0e0e0;
}
.p-sidebar_list a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
}
.p-sidebar_list a:hover {
  color: #3d9478;
  opacity: 1;
}

/* Generic Page（プライバシーポリシー等）
======================================================== */
.p-page {
  padding: 56px 0 96px;
}

.p-page_inner {
  width: min(848px, 100%);
  padding-inline: 24px;
  margin-inline: auto;
}

.p-page_content {
  line-height: 1.9;
}
.p-page_content > * + * {
  margin-top: 1.2em;
}
.p-page_content h2 {
  margin-top: 2em;
  font-size: 22px;
  color: #2e6b4f;
}
.p-page_content h3 {
  margin-top: 1.6em;
  font-size: 18px;
}
.p-page_content a {
  color: #3d9478;
  text-decoration: underline;
}
.p-page_content ul {
  padding-left: 1.4em;
  list-style: disc;
}

/* 404
======================================================== */
.p-404 {
  padding: 96px 0;
  text-align: center;
}

.p-404_code {
  font-family: "Inter", sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #9dd4b8;
}

.p-404_text {
  margin: 16px 0 32px;
  font-size: 16px;
  color: #666666;
}/*# sourceMappingURL=style.css.map */
