@charset "UTF-8";
body {
  color: #333333;
  background: #ffffff;
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", "Yu Mincho", "游明朝", "Noto Serif JP", "MS PMincho", "ＭＳ Ｐ明朝", serif;
  font-size: 1.6rem !important;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  font-weight: normal;
  position: relative;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #aecda1;
  font-weight: normal;
}

#wrapper {
  overflow: hidden;
}

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

.spbr {
  display: none;
}

h2,
h3,
h4 {
  font-weight: normal;
}

/* header
-------------------------------------------------------------------------*/
@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#l-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: transparent;
  /* ✅ inner：3カラム（左ロゴ / 中ナビ / 右ボタン）に変更 */
  /* ✅ ロゴ：absoluteやめて自然配置に */
  /* ✅ ナビ：真ん中固定 */
  /* ✅ 右側：absoluteやめて自然配置 */
  /* ✅ fixed時に少しコンパクト（見た目が締まる） */
}
#l-header.is-fixed {
  position: fixed;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  animation: hd-scrolled 0.3s ease forwards;
}
#l-header .inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  /* ここが肝 */
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  /* ✅ 余白を左右にも追加してバランス */
  padding: 22px 20px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  /* ❌ これがあるとレイアウト破綻しやすいので外す（必要なら戻してOK） */
}
#l-header .logo {
  position: static;
  transform: none;
  z-index: 2;
}
#l-header .logo img {
  display: block;
  height: 56px; /* 70→少し小さくして上品に */
  width: auto;
}
#l-header #header_nav {
  justify-self: center;
  position: relative;
  z-index: 300;
}
#l-header #header_nav ul {
  display: flex;
  gap: 22px; /* 25→少し詰める */
  align-items: center;
}
#l-header #header_nav li {
  position: relative;
}
#l-header #header_nav li a {
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
}
#l-header #header_nav li a:hover {
  opacity: 0.8;
}
#l-header #header_nav .has-dropdown > .nav-parent::after {
  content: "▾";
  font-size: 1.1rem;
  line-height: 1;
  transform: translateY(1px);
  opacity: 0.9;
}
#l-header #header_nav .dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 250px;
  padding: 18px 16px;
  margin: 0;
  list-style: none;
  background: #aecda1;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.22s ease;
  z-index: 9999;
}
#l-header #header_nav .dropdown li a {
  width: 230px;
  color: #ffffff;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  display: block;
  text-align: center;
  padding: 5px 5px;
  white-space: nowrap;
}
#l-header #header_nav .dropdown li a:hover {
  border-bottom: 1px solid #ffffff;
}
#l-header #header_nav .has-dropdown:hover .dropdown,
#l-header #header_nav .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
#l-header #header_nav .has-dropdown::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 100%;
  height: 16px;
}
#l-header .head-right {
  position: static;
  transform: none;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px; /* 6→少しゆとり */
}
#l-header .head-right_instagram a,
#l-header .head-right_line a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}
#l-header .head-right_instagram a:hover,
#l-header .head-right_line a:hover {
  background: #ffffff;
  color: #aecda1;
}
#l-header .head-right_contact a {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  background-color: #aecda1;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
#l-header .head-right_contact a:hover {
  background-color: #ffffff;
  color: #aecda1;
}
#l-header.is-fixed .inner {
  padding: 14px 20px;
}
#l-header.is-fixed .logo img {
  height: 44px;
}

/* overflowはそのまま */
#l-header,
#l-header .inner {
  overflow: visible;
}

/* 右側が長いときの保険（ナビが潰れないように） */
#l-header .inner {
  min-width: 0;
}

#header_nav {
  min-width: 0;
}

#header_nav ul {
  flex-wrap: nowrap;
}

/* hamburger menu */
.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background-color: #ffffff;
  color: #333;
  transition: right 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
  z-index: 1000;
}

.menu.open {
  right: 0;
}

.menu ul {
  list-style-type: none;
  padding: 0;
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.menu li {
  border-bottom: none;
  padding: 0;
}

.menu li a {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 10px 4px;
  text-align: center;
  font-size: 1.4rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  line-height: 1.3;
  border-radius: 4px;
  background-color: #f7f7f7;
  transition: background-color 0.3s ease;
  word-break: keep-all;
}

.menu li a:hover {
  background-color: #eee;
}

.hamburger {
  position: fixed;
  top: 20px;
  right: 30px;
  width: 56px;
  height: 56px;
  z-index: 1100;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #aecda1;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  box-sizing: border-box;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: 0.35s;
  transform-origin: center;
}
.hamburger.active {
  background: #fff;
}
.hamburger.active span {
  background: #333;
}
.hamburger.active::after {
  color: #333;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.menu-sns {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.menu-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #aecda1;
  color: #ffffff;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.menu-sns a:hover {
  background-color: #ffffff;
  border: 1px solid #aecda1;
  color: #aecda1;
}

/* page-top
-------------------------------------------------------------------------*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
}
#page-top a {
  display: block;
  background: #aecda1;
  color: #ffffff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  text-align: center;
}
#page-top a:hover {
  background-color: #A4ADCC;
}

/* firstview
-------------------------------------------------------------------------*/
#slideshow {
  position: relative;
  height: 100vh;
  max-width: none;
  margin: 0;
  overflow: hidden;
}

#slideshow .fv-center {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 5;
  pointer-events: none;
  padding: 0 20px;
}

#slideshow .fv-center-inner {
  max-width: 900px;
}

@keyframes fv-fadeup {
  0% {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
#slideshow .fv-logo {
  opacity: 0;
  animation: fv-fadeup 1.2s ease-out forwards;
  animation-delay: 0.25s;
}

#slideshow .fv-catch {
  margin-top: 14px;
  opacity: 0;
  animation: fv-fadeup 1.2s ease-out forwards;
  animation-delay: 0.45s;
  color: #ffffff;
  font-size: 2.2rem;
  letter-spacing: 0.18em;
  padding-left: 10px;
  line-height: 1.8;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  #slideshow .fv-logo,
  #slideshow .fv-catch {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
}
/* page-title
-------------------------------------------------------------------------*/
/* =========================================
  下層ページタイトル（共通）
========================================= */
.page-title {
  position: relative;
  height: 420px;
  overflow: hidden;
  background-size: cover;
  background-position: center top;
  background: rgba(0, 0, 0, 0.25);
}

.page-title__inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-title__text {
  text-align: center;
  color: #ffffff;
}

.page-title__en {
  font-size: 5.2rem;
  font-family: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin: -5px auto;
}

.page-title__ja {
  margin: 0;
  font-size: 1.6rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

.page-title--about {
  background-image: url("../img/fv2.jpg");
}

/* =========================================
  パンくず
========================================= */
.breadcrumb {
  padding: 14px 0;
}

.breadcrumb__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

.breadcrumb a {
  text-decoration: none;
}

/* footer
-------------------------------------------------------------------------*/
.footer {
  background: #ffffff;
  padding: 80px 0 80px;
  text-align: center;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer__logo {
  height: 70px;
  display: block;
}

.footer__name {
  font-family: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.12em;
  color: #aecda1;
  font-size: 1.6rem;
  margin: 0;
}

.footer__info {
  margin: 0 auto 26px;
  font-size: 1.4rem;
}

.footer__buttons {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 18px;
}

.footer__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 52px;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-family: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  transition: all 0.25s ease;
}

.footer__btn--access {
  background: #98a2c5;
}

.footer__btn--contact {
  background: #aecda1;
}

.footer__btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.footer__sns {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.footer__snslink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(174, 205, 161, 0.55);
  color: rgba(174, 205, 161, 0.9);
  font-size: 1.6rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer__snslink:hover {
  background: #aecda1;
  color: #ffffff;
  border-color: #aecda1;
}

.footer__copy {
  margin: 0;
  font-size: 1.1rem;
  color: #9a9a9a;
  font-family: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
}

/* contents
-------------------------------------------------------------------------*/
.single01 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
}

.single02 {
  width: calc(100% - 100px);
  margin: 0 auto;
  padding: 100px 0;
}

.single03 {
  max-width: 960px;
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
}

.margin-top {
  margin-top: -100px;
}

.margin-bottom {
  margin-bottom: -100px;
}

.lsingle,
.rsingle {
  width: 48.44%;
}

.lsingle {
  float: left;
}

.rsingle {
  float: right;
}

#main {
  float: left;
  width: 76%;
}

#side {
  float: right;
  position: sticky;
  right: 0;
  top: 0;
  width: 21%;
  padding-right: 10px;
}

.column2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: stretch;
}

.column2 .child {
  height: 100%;
}

.column2 .child > * {
  height: 100%;
}

.column3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.column3 .child {
  height: 100%;
}

/* section
-------------------------------------------------------------------------*/
/* =======================================================
message
======================================================= */
.message {
  position: relative;
  background-color: #fff;
}
.message::before, .message::after {
  content: "";
  position: absolute;
  display: block;
  width: 345px;
  height: 345px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}
.message::before {
  left: 70px;
  top: 60%;
  transform: translateY(-50%);
  background-image: url("../img/sasie02.png");
}
.message::after {
  right: 70px;
  top: 34%;
  transform: translateY(-50%);
  background-image: url("../img/sasie01.png");
}

.message__inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.message__label {
  font-size: 3.4rem;
  letter-spacing: 0.12em;
  color: #aecda1;
  margin-bottom: 18px;
  font-family: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
}

.message__title {
  font-size: 2.4rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 18px;
}

.message__text p {
  margin-bottom: 30px;
}

.message__underline {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid #aecda1;
  margin: 10px 0 14px;
}

/* =======================================================
service
======================================================= */
.service {
  background: #edf5e8;
}

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

.service__title {
  font-size: 3.4rem;
  letter-spacing: 0.12em;
  color: #aecda1;
  margin-bottom: 18px;
  font-family: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.1;
  margin: 0;
}

.service__sub {
  margin: 1px 0 0;
  font-size: 1.8rem;
}

.service__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: stretch;
}

.service__card {
  position: relative;
  overflow: visible;
  z-index: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 20px 40px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
}

.service__badge {
  position: absolute;
  top: -20px;
  right: 0;
  transform: translate(15%, -30%);
  transform-origin: top right;
  z-index: 5;
  width: 80px;
  height: 80px;
  border-radius: 30% 70% 57% 43%/30% 50% 50% 70%;
  background: #dea39d;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  line-height: 1.1;
}

.service__name {
  font-size: 1.6rem;
  font-weight: normal;
  text-align: center;
  margin: 6px 0 14px;
}

.service__thumb {
  border-radius: 15px;
  overflow: hidden;
  height: 150px;
  margin: 0 auto 14px;
}

.service__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.service__text {
  line-height: 2;
  margin: 0 0 16px;
}

.service__btn {
  margin-top: auto;
  display: block;
  width: 165px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  border-radius: 999px;
  background: #aecda1;
  color: #ffffff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
  text-decoration: none;
}

.service__btn:hover {
  background: #ffffff;
  color: #aecda1;
  border: 1px solid #aecda1;
}

/* =======================================================
news
======================================================= */
.news {
  background: #ffffff;
}

.news__head {
  text-align: center;
  margin-bottom: 46px;
}

.news__title {
  font-size: 3.4rem;
  letter-spacing: 0.12em;
  color: #aecda1;
  margin-bottom: 18px;
  font-family: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.1;
  margin: 0;
}

.news__sub {
  margin: 1px 0 0;
  font-size: 1.8rem;
}

.news__list {
  max-width: 768px;
  margin: 0 auto;
}

.news__item {
  display: grid;
  grid-template-columns: 130px 1fr 44px;
  align-items: center;
  -moz-column-gap: 0px;
       column-gap: 0px;
  padding: 20px 0;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
}

.news__item:first-child {
  border-top: 1px dashed rgba(0, 0, 0, 0.15);
}

.news__date {
  color: #aecda1;
  font-size: 1.2rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

.news__text {
  margin: 0;
}

.news__arrow {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #98a2c5;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 2rem;
  line-height: 1;
  justify-self: end;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.news__item:hover .news__arrow {
  transform: translateX(2px);
  opacity: 0.9;
}

.news__item:hover .news__text {
  opacity: 0.85;
}

.news__more {
  max-width: 760px;
  margin: 18px auto 0;
  text-align: right;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

.news__morelink {
  color: #9fbe93;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.news__morelink:hover {
  opacity: 0.75;
}

/* =======================================================
blog
======================================================= */
.blog {
  background: #f3f3f3;
}

.blog__illust {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.blog__illust img {
  width: 150px;
  height: auto;
  display: block;
}

.blog__head {
  text-align: center;
  margin-bottom: 46px;
}

.blog__title {
  font-size: 3.4rem;
  letter-spacing: 0.12em;
  color: #aecda1;
  margin-bottom: 18px;
  font-family: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.1;
  margin: 0;
}

.blog__sub {
  margin: 1px 0 0;
  font-size: 1.8rem;
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  align-items: stretch;
}

.blog__grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

.blog__card {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog__card:hover {
  transform: translateY(-2px);
}

.blog__thumb {
  aspect-ratio: 4/3;
}

.blog__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog__body {
  padding: 14px 16px 14px;
}

.blog__name {
  margin: 0 0 5px;
}

.blog__text {
  margin: 0 0 14px;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog__date {
  display: block;
  color: #aecda1;
  font-size: 1.2rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

.blog__more {
  margin-top: 18px;
  text-align: right;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

.blog__morelink {
  color: #9fbe93;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.blog__morelink:hover {
  opacity: 0.75;
}

/* =======================================================
company-origin
======================================================= */
.company-origin {
  padding: 100px 0;
  background: #ffffff;
}

.company-origin__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.company-origin__title {
  margin: 0 0 32px;
  font-size: 2.8rem;
  color: #aecda1;
}

.company-origin__text {
  max-width: 720px;
}

.company-origin__text p {
  margin: 0 0 22px;
  line-height: 2;
  font-size: 1.8rem;
}

.company-origin__text p:last-child {
  margin-bottom: 0;
}

.company-origin__logo {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.company-origin__logo img {
  max-width: 320px;
  width: 100%;
  height: auto;
}

/* =======================================================
aim
======================================================= */
.aim__title__big {
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 40px;
  text-align: center;
}

.aim {
  background: #ffffff;
  padding: 40px 0;
}

.aim__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.aim__row {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 40px;
  align-items: center;
  padding: 34px 0;
}

.aim__row:nth-of-type(-n+3) {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 34px;
}

.aim__eyebrow {
  margin: 0 0 8px;
  font-size: 5rem;
  font-weight: 500;
  font-family: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
  color: #aecda1;
  letter-spacing: 0.12em;
  line-height: 1;
}

.aim__title {
  margin: 0 0 14px;
  font-size: 2.2rem;
  letter-spacing: 0.12em;
}

.aim__desc {
  margin: 0;
  line-height: 2;
}
.aim__desc span {
  font-size: 1.4rem;
}

.aim__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.aim__media img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 360px;
}

/* =======================================================
About Message
======================================================= */
.about_message {
  position: relative;
  padding: 90px 0;
  /* 背景画像 */
  background-image: url("../img/bg03.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 文字を読みやすくするための白ベール */
.about_message::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 244, 242, 0.5);
  z-index: 0;
}

.about_message__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.about_message__eyebrow {
  margin: 0 0 8px;
  font-size: 3.4rem;
  font-weight: 500;
  font-family: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
  color: #aecda1;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
}

.about_message__title {
  margin: 0 0 26px;
  font-size: 2.4rem;
  letter-spacing: 0.12em;
  text-align: center;
}

.about_message__text {
  text-align: center;
}

.about_message__text p {
  margin-bottom: 30px;
}

/* =======================================================
self_retreat
======================================================= */
.self_ri {
  padding: 0px;
}

.self_ri__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.self_ri__card {
  background: #edf5e8;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 56px 70px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 90px;
  align-items: center;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
}

.self_ri__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.self_ri__logoFrame {
  width: 320px;
}

.self_ri__logoFrame img {
  width: 100%;
  height: auto;
  display: block;
}

.self_ri__title {
  margin: 0 0 26px;
  font-size: 2.4rem;
  letter-spacing: 0.12em;
  text-align: center;
}

.self_ri__text {
  text-align: left;
}

.self_ri__text p {
  margin: 0 0 20px;
}

.self_ri__text p:last-child {
  margin-bottom: 0;
}

/* =======================================================
company
======================================================= */
.company__title {
  font-size: 3.4rem;
  letter-spacing: 0.12em;
  color: #aecda1;
  margin-bottom: 18px;
  font-family: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.1;
  margin: 0;
  text-align: center;
}

.company__sub {
  margin: 1px 0 40px;
  font-size: 1.8rem;
  text-align: center;
}

.company {
  position: relative;
  padding: 60px 20px;
  overflow: hidden;
}

.company__inner {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.company__list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.company__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.company__dt {
  margin: 0;
}

.company__dd {
  margin: 0;
}

.company__block {
  margin-bottom: 16px;
}

.company__block:last-child {
  margin-bottom: 0;
}

.company__office {
  margin: 0 0 6px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.78);
}

.company__addr {
  margin: 0;
  color: rgba(0, 0, 0, 0.62);
}

.company__line {
  margin: 0 0 6px;
}

.company__line:last-child {
  margin-bottom: 0;
}

.company__ul {
  margin-top: 5px;
}

.company__ul li {
  margin: 0 0 6px;
}

.company__ul li:last-child {
  margin-bottom: 0;
}

/* =======================================================
Profile
======================================================= */
.profile {
  background: #F5F4F2;
  padding: 80px 20px;
}

.profile__inner {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 70px;
  align-items: start;
}

.profile__visual {
  position: relative;
  height: 640px;
}

.profile__photo {
  position: absolute;
  width: 300px;
}

.profile__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.profile__content {
  padding-top: 12px;
  color: rgba(0, 0, 0, 0.75);
}

.profile__name {
  margin: 0;
  font-size: 1.6rem;
}

.profile__role {
  margin: 0px 0 22px;
  font-family: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2rem;
}

.profile__section {
  margin-top: 22px;
}

.profile__label {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
}

.profile__text {
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.profile__list {
  margin: 0;
  font-size: 1.4rem;
}

/* =======================================================
Access
======================================================= */
.access {
  padding: 0px 20px 0px;
  background: #F2F3F2;
}

.access__inner {
  margin: 0 auto;
}

.access__map {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.access__map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

.access__btnWrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.access__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 44px;
  padding: 0 34px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.35);
  color: #333333;
  text-decoration: none;
  font-size: 1.4rem;
  margin-bottom: 40px;
}

.access__btn:hover {
  background: #F5F4F2;
  border-color: rgba(0, 0, 0, 0.45);
  transform: translateY(-1px);
}

/* =======================================================
route
======================================================= */
.route {
  position: relative;
  margin: 0;
  padding: 0 10px 0 6px;
  list-style: none;
  counter-reset: route;
  margin-bottom: 40px;
}

.route li {
  position: relative;
  margin: 12px 20px 0 24px;
  padding: 0;
  line-height: 1.5;
}

.route > li::before {
  position: absolute;
  counter-increment: route;
  content: counter(route);
  left: -28px;
  top: -1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #aecda1;
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  line-height: 20px;
  box-sizing: border-box;
}

.route-wrap {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 40px;
  align-items: start;
}

.route-image {
  overflow: hidden;
}

.route-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =======================================================
contact
======================================================= */
.contact {
  padding: 40px 0;
}

.contact__inner {
  max-width: 860px;
  margin: 0 auto;
}

.contact__text {
  text-align: center;
  margin-bottom: 40px;
}

.contact__text p {
  text-align: center;
  margin-bottom: 20px;
}

.contact__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: start;
  padding: 14px 0;
}

.contact__label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
}

.contact__req {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  padding: 0 8px;
  border-radius: 2px;
  background: #dea39d;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact__field input,
.contact__field textarea,
.contact__field select {
  width: 100%;
  background: #F2F3F2;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  padding: 12px 12px;
  outline: none;
  box-sizing: border-box;
}

.contact__field textarea {
  min-height: 170px;
  resize: vertical;
  line-height: 1.9;
}

.contact__field input::-moz-placeholder, .contact__field textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: rgba(0, 0, 0, 0.35);
}

.contact__field input:focus,
.contact__field textarea:focus,
.contact__field select:focus {
  border-color: rgba(0, 0, 0, 0.28);
  background: #f3f5f6;
}

.contact__actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.contact__submit {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.35);
  background: #ffffff;
  color: rgba(0, 0, 0, 0.75);
  cursor: pointer;
  font-size: 1.4rem;
  min-width: 240px;
  height: 48px;
  padding: 0 36px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.contact__submit:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.45);
  transform: translateY(-1px);
}

.contact__submit:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.contact__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* =======================================================
privacy
======================================================= */
.privacy {
  background: #F2F3F2;
}

.privacy__inner {
  padding: 40px;
  background-color: #ffffff;
  margin: 0 auto;
  border-radius: 20px;
}

.privacy__heading {
  margin: 0;
  padding: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.8);
  position: relative;
  margin-bottom: 10px;
}

.privacy__heading::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4) 2px, transparent 2px, transparent 5px);
}

.privacy__body {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.04em;
  color: rgba(0, 0, 0, 0.72);
  margin-bottom: 30px;
}

.privacy__body p {
  margin: 0 0 12px;
}

.privacy__body ul {
  margin: 0;
  padding-left: 1.2em;
}

.privacy__body li {
  margin: 0 0 6px;
}

.privacy__body li:last-child {
  margin-bottom: 0;
}

/* =======================================================
new list
======================================================= */
.new_list {
  background: #f5f5f5;
  padding: 60px 20px 100px;
}

.new_list__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 40px;
  align-items: start;
}

.new_list__main {
  background: #ffffff;
  padding: 60px 40px 80px;
}

.new_list__title {
  margin: 0;
  text-align: center;
  font-size: 3.6rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: #4b4b4b;
}

.new_list__title span {
  display: block;
  margin-top: 10px;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  font-weight: 400;
  color: #6b6b6b;
}

.new_list__side {
  background: transparent;
}

.new_list__sideTitle {
  margin: 0 0 14px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 6px;
}

.new_list__sideTitle::before {
  content: "≡";
  font-size: 1.6rem;
  line-height: 1;
}

.new_list__archive {
  list-style: none;
  margin: 0;
  padding: 0;
}

.new_list__archive li {
  margin-bottom: 10px;
}

.new_list__archive a {
  display: block;
  padding: 10px 16px;
  background: #ffffff;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: 0.25s ease;
  border: 1px solid #aecda1;
  color: #aecda1;
  transition: all 0.25s ease;
}

.new_list__archive a:hover {
  background-color: #edf5e8;
}

.new_list__pager {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.new_list__pagerBtn {
  min-width: 140px;
  padding: 10px 18px;
  background: #aecda1;
  color: #ffffff;
  border-radius: 999px;
  text-align: center;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.new_list__pagerBtn:hover {
  background: #ffffff;
  color: #aecda1;
  border: 1px solid #aecda1;
}

/* =======================================================
article
======================================================= */
.article__content {
  margin-top: 40px;
}

.article__date {
  display: block;
  font-size: 1.2rem;
  color: #9fbe93;
  margin-bottom: 8px;
  font-family: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
}

.article__title {
  margin: 10px 0 0;
  font-size: 2.2rem;
}

/* =======================================================
group
======================================================= */
.group_main {
  width: 768px;
  display: block;
  margin: 0 auto 40px;
}
.group_main p {
  margin-bottom: 20px;
}

.group {
  background: #F5F4F2;
  padding: 40px 0 70px;
}

.group * {
  box-sizing: border-box;
}

.group__lead {
  margin: 18px auto 28px;
  padding: 0 20px;
  line-height: 2;
}

.group__cards {
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.group__card {
  background: #ffffff;
  padding: 40px;
  margin-bottom: 40px;
}

.group__cardInner {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 24px;
  align-items: center;
}

.group__card.no-image .group__cardInner {
  grid-template-columns: 1fr;
}

.group__cardContent p {
  margin-bottom: 20px;
}

.group__cardTitle {
  margin: 0 0 12px;
  font-size: 2.2rem;
  position: relative;
  padding-left: 28px;
}

.group__cardTitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 16px;
  height: 2px;
  background: #aecda1;
}

.group__cardImage {
  overflow: hidden;
  border-radius: 10px;
}

.group__cardImage img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.group__minibox {
  margin: 20px auto;
  padding: 20px 40px;
  background-color: #F5F4F2;
  border-radius: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.group__minibox h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #589458;
}

.minibox__image {
  flex: 0 0 250px;
}

.minibox__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.minibox__content {
  flex: 1;
}

.group__minibox.image-left {
  flex-direction: row;
}

.group__minibox.image-right {
  flex-direction: row-reverse;
}

.group__subbox {
  width: 768px;
  margin: 20px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 20px;
  border: 3px solid #aecda1;
  font-size: 1.4rem;
}

.group__list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.group__list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.9;
}

.group__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #aecda1;
  font-weight: 700;
}

/* =======================================================
mindfulness
======================================================= */
.mindfulness {
  padding: 0 0 40px;
}

.mindfulness__inner {
  width: min(1200px, 100% - 48px);
  margin: 0 auto;
}

.mindfulness__head {
  text-align: center;
  margin-bottom: 42px;
}

.mindfulness__title {
  margin: 0;
  font-size: 3rem;
  display: inline-block;
  position: relative;
}

.mindfulness__layout {
  display: grid;
  grid-template-columns: 4.5fr 5.5fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.mindfulness__media {
  position: relative;
  padding-left: 14px;
}

.mindfulness__photo {
  margin: 0;
  overflow: hidden;
}

.mindfulness__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.mindfulness__photo--main {
  width: min(500px, 100%);
  aspect-ratio: 4/3;
  border-radius: 22px;
}

.mindfulness__photo--sub {
  position: absolute;
  left: -70px;
  bottom: -70px;
  width: 230px;
  aspect-ratio: 1/1;
  border-radius: 22px;
}

.mindfulness__card {
  border-radius: 28px;
}

.mindfulness__card p {
  margin: 0 0 18px;
}

/* =======================================================
mindfulness
======================================================= */
.course {
  padding: 0px 0　30px;
  margin-bottom: 100px;
}

.course__grid {
  width: min(1100px, 100% - 40px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 横2つ */
  gap: 28px;
}

.course__card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.course__thumb {
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f3f6fb;
}

.course__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  display: block;
  transition: transform 0.25s ease;
}

.course__thumb:hover img {
  transform: scale(1.02);
}

.course__body {
  padding: 22px 22px 18px;
}

.course__title {
  margin: 0 0 12px;
  font-size: 2rem;
  letter-spacing: 0.02em;
}

.course__title a {
  color: #111;
  text-decoration: none;
}

.course__text {
  margin: 0 0 20px;
  font-size: 1.4rem;
}

.course__footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 16px 22px 22px;
}

.course__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* 3つ均等 */
  gap: 10px;
}

.course__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: 10px;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  padding: 0 10px;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease, border-color 0.12s ease;
}

.course__btn:active {
  transform: translateY(1px);
}

.course__btn--ghost {
  background: rgba(0, 0, 0, 0.04);
  color: #333;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.course__btn--outline {
  background: #fff;
  color: #aecda1;
  border: 1px solid #aecda1;
}

.course__btn--solid {
  background: #aecda1;
  color: #fff;
  border: 1px solid #aecda1;
}

.course__btn:hover {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.1);
}

/* =======================================================
program
======================================================= */
.program {
  background: #ffffff;
  padding: 30px;
}

.program__inner {
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: 32px;
}

.program__media {
  overflow: hidden;
  border-radius: 6px;
}

.program__media img {
  width: 100%;
  height: auto;
  display: block;
}

.program__title {
  margin: 0 0 16px;
  font-size: 1.8rem;
  color: #589458;
}

.program__text {
  margin: 0;
  font-size: 1.4rem;
  line-height: 2;
}

/* title
-------------------------------------------------------------------------*/
/* ========= セクション見出し ========= */
.title {
  font-size: 3.4rem;
  letter-spacing: 0.12em;
  color: #aecda1;
  margin-bottom: 18px;
  font-family: "Nunito Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.1;
  margin: 0;
  text-align: center;
}

.sub {
  margin: 1px 0 40px;
  font-size: 1.8rem;
  text-align: center;
}

/* ========= セクション見出し（サブ） ========= */
.section_title {
  position: relative;
  margin: 0 0 30px;
  padding: 18px 0 16px;
  font-size: 1.8rem;
  border-bottom: 2px solid #aecda1;
}

.section_title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-image: repeating-linear-gradient(to right, #aecda1, #aecda1 1px, transparent 1px, transparent 4px);
}

/* ========= 角カッコ見出し ========= */
.corner_title {
  position: relative;
  display: inline-block;
  padding: 5px 20px;
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.corner_title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 16px;
  border-left: 1px solid rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}

.corner_title::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 16px;
  border-right: 1px solid rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}

.emphasis_title {
  font-size: 1.8rem;
  color: #589458;
  font-weight: bold;
  margin-bottom: 20px;
}

/* tbl
-------------------------------------------------------------------------*/
.table_design01 {
  border-collapse: collapse;
  width: 100%;
  font-size: 1.4rem;
}

.table_design01 th, .table_design01 td {
  border: 2px solid #fff;
  background-color: #edf5e8;
  padding: 1em;
}

.table_design01 th {
  background-color: #aecda1;
  text-align: center;
  font-weight: normal;
  width: 20%;
  min-width: 4em;
}

.table_design02 {
  border-collapse: collapse;
  width: 100%;
  font-size: 1.4rem;
}

.table_design02 th, .table_design02 td {
  border: 2px solid #fff;
  background-color: #F5F4F2;
  padding: 1em;
}

.table_design02 th {
  background-color: #edf5e8;
  text-align: center;
  font-weight: normal;
  width: 40%;
  min-width: 4em;
}

/* btn
-------------------------------------------------------------------------*/
.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  border-radius: 999px;
  background-color: #a9c99a;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-more__arrow {
  display: inline-block;
  font-size: 1.4rem;
  transform: translateY(1px);
  transition: transform 0.3s ease;
}

.btn-more:hover {
  opacity: 0.9;
}

.btn-more:hover .btn-more__arrow {
  transform: translateX(4px) translateY(1px);
}/*# sourceMappingURL=basis.css.map */