@charset "UTF-8";
/*--------------------------
文字に対して、一括でfont-size、line-height、letter-spacing、font-weightを指定する
---------------------------*/
/*--------------------------------
    remの換算
--------------------------------*/
/*--------------------------------
    vwにする
--------------------------------*/
/*--------------------------------
    親要素に対する割合
--------------------------------*/
/*--------------------------------
    親要素に対する割合
--------------------------------*/
/*--------------------------------
背景のグラデーション
--------------------------------*/
/*--------------------------------
一次関数
画面幅 1440pxの時は、120pxで、そこからどんどん小さくなり、1000pxの時に20pxになるという実装の際に使える関数。
--------------------------------*/
/*--------------------------------
擬似要素の背景
--------------------------------*/
/*--------------------------------
三角形
--------------------------------*/
/*--------------------------------
リキッドの設定
--------------------------------*/
html {
  font-size: 16px;
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 380px) {
  html {
    font-size: 4.2105263158vw;
  }
}

/*--------------------------
  フォント読み込み
---------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #191f20;
}

.l-inner {
  width: 78.125rem;
  max-width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.l-sec {
  padding: 3.75rem 0 5rem;
}
@media screen and (max-width: 768px) {
  .l-sec {
    padding: 5rem 0 6.25rem;
  }
}
.l-sec01 {
  padding: 3.5rem 0 6.875rem;
}
@media screen and (max-width: 768px) {
  .l-sec01 {
    padding: 4.5rem 0 5.75rem;
  }
}

.single-blog-heading {
  padding: 3.125rem 0rem 7.5rem;
}
@media screen and (max-width: 768px) {
  .single-blog-heading {
    padding: 3.125rem 0rem 3.75rem;
  }
}

.single-blog {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .single-blog {
    padding-bottom: 3.75rem;
  }
}

.single-blog__inner {
  display: grid;
  grid-template-columns: 1fr 20rem;
  gap: 3.75rem;
}
@media screen and (max-width: 1100px) {
  .single-blog__inner {
    display: block;
  }
}

.single-blog-main__title {
  font-size: 2.5rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .single-blog-main__title {
    font-size: 1.875rem;
  }
}

.single-blog-main__meta {
  margin-top: 2.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .single-blog-main__meta {
    margin-top: 1.875rem;
  }
}

.single-blog-main__taxonomy {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}

.single-blog-main__categories {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}

.single-blog-main__category-label {
  padding: 0.4375rem 0.875rem;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
  border-radius: 1.25rem;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .single-blog-main__category-label {
    padding: 0.3125rem 0.5625rem;
    font-size: 0.75rem;
  }
}

.single-blog-main__category-label--parent {
  color: #145337;
  background-color: #d8e6de;
  border: 1px solid #d8e6de;
}

.single-blog-main__category-label--sub {
  border: 1px solid #3c845a;
  background-color: #fff;
  color: #191f20;
}

.single-blog-main__category-label--child {
  border: 1px solid #f5f5f5;
  background-color: #f5f5f5;
  color: #191f20;
}

.single-blog-main__tags {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.single-blog-main__tag {
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #008e5c;
}

.single-blog-main__date {
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .single-blog-main__date {
    display: none;
  }
}

.single-blog-main__author {
  margin-top: 2.5rem;
  padding: 1.25rem 0.625rem 1.1875rem;
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.625rem;
  align-items: center;
  gap: 0.625rem;
  border-block: 1px solid #ddd;
}
@media screen and (max-width: 768px) {
  .single-blog-main__author {
    padding: 0.9375rem 0.625rem;
    margin-top: 1.875rem;
  }
}

.single-blog-main__author-image img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  height: auto;
}

.single-blog-main__author-content {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .single-blog-main__author-content {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
}

.single-blog-main__author-text {
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #191f20;
}
@media screen and (max-width: 768px) {
  .single-blog-main__author-text {
    font-size: 0.75rem;
  }
}

.single-blog-main__author-name {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #191f20;
  text-decoration: underline;
}
.single-blog-main__author-name a{
    color: inherit;
}
@media screen and (max-width: 768px) {
  .single-blog-main__author-name {
    font-size: 0.875rem;
  }
}

.single-blog-main__content {
  padding-top: 3.75rem;
}

@media screen and (max-width: 1100px) {
  .single-blog__aside {
    margin-top: 5rem;
  }
}

.single-blog-aside__search input[type="search"] {
  padding: 1.4375rem 1.4375rem 1.4375rem 3.25rem;
  border: 2px solid #ddd;
  width: 100%;
  border-radius: 3.125rem;
  background-image: url("../img/blog/search-icon.svg");
  background-repeat: no-repeat;
  background-position: 1.5625rem center;
  background-size: 1.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .single-blog-aside__search input[type="search"] {
    padding: 0.8125rem 1.125rem 0.8125rem 2.625rem;
    font-size: 0.875rem;
    background-position: 1.25rem center;
    background-size: 0.9375rem 0.9375rem;
  }
}

.search-form {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.search-form label {
  flex: 1;
}

.search-submit {
  background-color: #333;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.625rem;
  height: 100%;
  padding: 0.625rem 0.625rem;
}

.single-blog-aside__category {
  margin-top: 2.5rem;
  padding: 2.0625rem 1.5625rem 2.4375rem;
  background-color: #f1f0eb;
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  .single-blog-aside__category {
    margin-top: 1.25rem;
    padding: 1.5625rem 1.25rem;
  }
}

.single-blog-aside-title {
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #145337;
  padding: 0.3125rem 0.6875rem;
  border-left: 4px solid #3c845a;
}
@media screen and (max-width: 768px) {
  .single-blog-aside-title {
    font-size: 1rem;
  }
}

.single-blog-aside__category-list {
  margin-top: 0.9375rem;
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.single-blog-aside__category-item {
  box-shadow: 0 0.25rem 0 rgba(0, 0, 0, 0.2);
}

.is-parent {
  border-radius: 0.625rem;
}

.single-blog-aside__category-button {
  padding: 0.9375rem;
  background-color: #008e5c;
  color: #ffffff;
  width: 100%;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  border-radius: 0.625rem 0.625rem 0 0;
}
.single-blog-aside__category-button::before {
  content: "";
  display: block;
  background-image: url(../img/blog/accordion-arrow.svg);
  background-repeat: no-repeat;
  width: 0.75rem;
  height: 0.4375rem;
  background-size: contain;
  background-position: center;
  transition: transform 0.3s ease;
}
.single-blog-aside__category-button.is-open::before {
  transform: rotate(180deg);
}

.single-blog-aside__category-button.is-open {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0!important;
}

.single-blog-aside__category-button.is-open,
.single-blog-aside__category-button.is-closing {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.single-blog-aside__subcategory-button {
  padding: 0.9375rem;
  background-color: #fff;
  width: 100%;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  padding-left: 1.875rem;
  color: #191f20;
  border-top: 1px solid #dddddd;
}

.single-blog-aside__subcategory-button.is-active {
  color: #0676ba;
}
.single-blog-aside__subcategory-button.is-active::before {
  display: none;
}
.single-blog-aside__subcategory-button::before {
    content: "";
  display: block;
  background-image: url(../img/blog/accordion-arrow-green.svg);
  width: 0.75rem;
  height: 0.4375rem;
  background-size: contain;
  background-position: center;
  transition: transform 0.3s ease;
}
.single-blog-aside__subcategory-button.is-open::before {
  transform: rotate(180deg);
}

.single-blog-aside__sub-subcategory-button {
  border-top: 1px solid #dddddd;
  padding: 0.9375rem;
  background-color: #fff;
  color: #191f20;
  width: 100%;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4375rem;
  padding-left: 3.375rem;
  color: #0676ba;
}

.accordion-last > * {
/*   border-bottom-left-radius: 0.625rem !important;
  border-bottom-right-radius: 0.625rem !important; */
	  border-bottom-left-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
}

.accordion-last .single-blog-aside__sub-subcategory-button {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.single-blog-aside__archive {
  margin-top: 2.5rem;
  padding: 2.0625rem 1.5625rem 2.4375rem;
  background-color: #f1f0eb;
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  .single-blog-aside__archive {
    margin-top: 1.25rem;
    padding: 1.5625rem 1.25rem;
  }
}

.single-blog-aside__archive-select {
  margin-top: 0.9375rem;
  position: relative;
}
.single-blog-aside__archive-select::after {
  position: absolute;
  content: "";
  width: 0.5625rem;
  height: 0.3125rem;
  display: block;
  background-image: url(../img/common/black-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  top: 50%;
  right: 0.9375rem;
  transform: translateY(-50%);
  pointer-events: none;
}

.single-blog-aside__select {
  border-radius: 0.625rem;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 400;
  border: 1px solid #191f20;
  width: 100%;
  padding: 0.875rem;
  color: #191f20;
  background-color: #fff;
}

.single-blog-aside__service {
  margin-top: 2.5rem;
  background-color: #d8e6de;
  border-radius: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .single-blog-aside__service {
    display: none;
  }
}

.single-blog-aside__service-badge-area {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
}

.single-blog-aside__service-badge {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  padding: 0.5rem 1.375rem 0.5rem 1.25rem;
  background-color: #eac512;
  width: fit-content;
  border-radius: 1.875rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .single-blog-aside__service-badge {
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0em;
    font-weight: 700;
    padding: 0.375rem 1.25rem;
  }
}
.single-blog-aside__service-badge::after {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 13px solid #eac512;
  bottom: -13px;
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translate(-50%, 100%);
  display: block;
  width: 0.4375rem;
  height: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .single-blog-aside__service-badge::after {
    bottom: 6px;
  }
}
.single-blog-aside__service-badge {
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 700;
}

.single-blog-aside__service-image {
  border-radius: 0.9375rem 0.9375rem 0 0;
}

.single-blog-aside__service-content {
  padding: 2rem 2.125rem 1.875rem;
  position: relative;
}

.single-blog-aside__service-title {
  font-size: 1.875rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #145337;
}

.single-blog-aside__service-text {
  margin-top: 0.625rem;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-align: center;
}

.single-blog-aside__service-link {
  margin-top: 0.9375rem;
  background-color: #008e5c;
  color: #ffffff;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
  padding: 0.625rem 1.125rem;
  border: 2px solid #008e5c;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-inline: auto;
  border-radius: 1.875rem;
  gap: 0.4375rem;
}
.single-blog-aside__service-link::after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: block;
  background-image: url(../img/common/white-circle-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.single-blog-company__body {
  border: 4px solid #3c845a;
  border-radius: 1.875rem;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 400fr 720fr;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .single-blog-company__body {
    padding: 1.6875rem 1.0625rem;
    display: flex;
    flex-direction: column;
    border-radius: 0.9375rem;
    border: 3px solid #3c845a;
    gap: 1.5625rem;
  }
}

.single-blog-company__image-wrapper {
  position: relative;
}

.single-blog-company__image {
  border-radius: 1.25rem;
}

.single-blog-company__label {
  padding: 0.4375rem 0.9375rem;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #145337;
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  border-radius: 0.25rem;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(1px);
  width: fit-content;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .single-blog-company__label {
    padding: 0.3125rem 0.625rem;
    font-size: 0.8125rem;
    bottom: 0.9375rem;
  }
}

.single-blog-company__badge {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  padding: 0.5rem 1.375rem 0.5rem 1.25rem;
  background-color: #eac512;
  width: fit-content;
  border-radius: 1.875rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .single-blog-company__badge {
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0em;
    font-weight: 700;
    padding: 0.375rem 1.25rem;
  }
}
.single-blog-company__badge::after {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 13px solid #eac512;
  bottom: -13px;
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translate(-50%, 100%);
  display: block;
  width: 0.4375rem;
  height: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .single-blog-company__badge::after {
    bottom: 6px;
  }
}
.single-blog-company__badge {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .single-blog-company__badge {
    margin-inline: auto;
  }
}

.single-blog-company__name {
  margin-top: 1.1875rem;
  font-size: 2.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .single-blog-company__name {
    margin-top: 0.875rem;
    font-size: 1.75rem;
  }
}

.single-blog-company__description {
  margin-top: 0.9375rem;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .single-blog-company__description {
    font-size: 0.875rem;
  }
}

.single-blog-company__buttons {
  margin-top: 1.875rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .single-blog-company__buttons {
    margin-top: 1.5625rem;
    gap: 0.9375rem;
    flex-direction: column;
    padding: 0rem 1.25rem;
  }
}

.single-blog-company__button {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  padding: 0.8125rem 1.4375rem;
  border-radius: 2.5rem;
}
@media screen and (max-width: 768px) {
  .single-blog-company__button {
    width: 100%;
    justify-content: center;
  }
}
.single-blog-company__button svg {
  width: 1.875rem;
  height: 1.875rem;
}

.single-blog-company__button--mail {
  border: 2px solid #008e5c;
  background-color: #008e5c;
}

.single-blog-company__text {
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .single-blog-company__text {
    font-size: 0.875rem;
  }
}

.single-blog-company__button--line {
  border: 2px solid #36be8e;
  background-color: #36be8e;
}

.single-blog-intro {
  margin-top: 8.9375rem;
}
@media screen and (max-width: 768px) {
  .single-blog-intro {
    margin-top: 4.8125rem;
  }
}

.single-blog-related {
  padding: 6.5rem 0rem 6.25rem;
  margin-top: 5rem;
  background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.08) 1px,
    transparent 2px
  );
  background-size: 16px 16px;
  /* ドットの間隔 */
}
@media screen and (max-width: 768px) {
  .single-blog-related {
    padding: 3.75rem 0rem;
    margin-top: 3.75rem;
  }
}

.single-blog-related__inner {
  max-width: 76.5625rem;
}

.single-blog-related__title {
  text-align: center;
}

.single-blog-related__list {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .single-blog-related__list {
    margin-top: 1.3125rem;
  }
}

@media screen and (max-width: 768px) {
  .single-blog-related__card:nth-of-type(n + 4) {
    display: none;
  }
}

.single-blog-related__button-wrapper {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .single-blog-related__button-wrapper {
    margin-top: 2.5625rem;
  }
}

/*#################################
アーカイブ
#################################*/
.archive-blog-wrap {
    display: flex;
}

.archive-blog__aside.archive-blog-aside {
    width: 20rem;
    margin-bottom: 4rem;
}

.archive-blog {
    padding-bottom: 7.5rem;
    width: calc(100% - 20rem);
}

.inner {
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1330px;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 500px;
    padding-right: 20px;
    padding-left: 20px;
  }

    .archive-blog-wrap {
        display: block;
    }

    .archive-blog {
        width: 100%;
    }

    .archive-blog__list.blog-list.blog-list--col-03 {
/*         grid-template-columns: repeat(1, 1fr) !important; */
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

a {
  transition: 0.3s;
}
a:hover {
  transition: 0.3s;
  opacity: 0.6;
}

/*--------------------------------
PC版では電話をかからないように
--------------------------------*/
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: initial;
  }
}

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

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

/*--------------------------------
パンクズ
--------------------------------*/
.breadcrumb {
  max-width: 101.875rem;
  width: 100%;
  padding: 0rem 1.5625rem;
  margin-inline: auto;
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    margin-top: 5.3125rem;
  }
}

.breadcrumb__inner {
  padding: 0 prem(20);
  max-width: prem(600);
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  background-color: #f7f7f7;
  width: fit-content;
  padding: 0.34375rem 0.625rem;
  border-radius: 3.125rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .breadcrumb__inner {
    font-size: 0.625rem;
    padding: 0 prem(25);
    max-width: prem(1200);
  }
}

.breadcrumb a {
  color: #008e5c;
  display: inline-block;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 0.8125rem;
  line-height: 1.6;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .breadcrumb a,
  .breadcrumb span {
    font-size: 0.625rem;
  }
}

.breadcrumb span {
  font-weight: 500;
  display: inline-block;
}

.breadcrumb .current-item {
  color: #191f20;
}

/*--------------------------------
footer上のCTAボタン
--------------------------------*/
.contact-banner {
  background-color: #008e5c;
  padding: 3.125rem 0rem 2.9375rem;
}
@media screen and (max-width: 768px) {
  .contact-banner {
    padding: 2.5625rem 0rem 2.4375rem;
  }
}

.contact-banner__inner {
  max-width: 71.6875rem;
}
@media screen and (max-width: 768px) {
  .contact-banner__inner {
    max-width: 31.25rem;
  }
}

.contact-banner__label {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  padding: 0.5rem 1.375rem 0.5rem 1.25rem;
  background-color: #eac512;
  width: fit-content;
  border-radius: 1.875rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .contact-banner__label {
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0em;
    font-weight: 700;
    padding: 0.375rem 1.25rem;
  }
}
.contact-banner__label::after {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 13px solid #eac512;
  bottom: -13px;
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translate(-50%, 100%);
  display: block;
  width: 0.4375rem;
  height: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .contact-banner__label::after {
    bottom: 6px;
  }
}

.contact-banner__text {
  text-align: center;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 0.875rem;
}
@media screen and (max-width: 768px) {
  .contact-banner__text {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

.contact-banner__box {
  border-radius: 1.875rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2.5rem 3.125rem;
  width: 100%;
  margin-top: 1.5rem;
  gap: 0.9375rem;
  box-shadow: 0 0.375rem 0 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .contact-banner__box {
    margin-top: 0.9375rem;
    border-radius: 0.9375rem;
    padding: 1.875rem;
    gap: 0;
    box-shadow: 0 0.25rem 0 0 rgba(0, 0, 0, 0.2);
  }
}

.contact-banner__map {
    margin-top: 3rem;
}
@media screen and (max-width: 768px) {
.contact-banner__map {
    margin-top: 1.675rem;
}
}
.contact-banner__tel-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
}

.contact-banner__tel {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  color: #008e5c;
}
@media screen and (max-width: 768px) {
  .contact-banner__tel {
    font-size: 2.375rem;
    line-height: 1;
    letter-spacing: 0em;
    font-weight: 700;
    padding: 0.625rem 0.9375rem;
    width: 100%;
    text-align: center;
    border-radius: 1.875rem;
    background-color: #f7f7f7;
  }
}

.contact-banner__hours {
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #191f20;
}
@media screen and (max-width: 768px) {
  .contact-banner__hours {
    margin-top: 0.0625rem;
    font-size: 0.75rem;
  }
}

.contact-banner__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .contact-banner__btns {
    margin-top: 0.9375rem;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
}

.contact-banner__btn-mail {
  padding: 1.375rem 3.5625rem;
  border: 0.1875rem solid #008e5c;
  border-radius: 3.75rem;
  background-color: #008e5c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .contact-banner__btn-mail {
    gap: 0.3125rem;
    padding: 0.75rem 1.875rem;
    width: 100%;
  }
}

.contact-banner__btn-mail-icon {
  width: 1.875rem;
  height: 1.875rem;
}

.contact-banner__btn-mail-text {
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .contact-banner__btn-mail-text {
    font-size: 1rem;
  }
}

.contact-banner__btn-line {
  padding: 1.375rem 3.5625rem;
  border: 0.1875rem solid #008e5c;
  border-radius: 3.75rem;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .contact-banner__btn-line {
    gap: 0.3125rem;
    padding: 0.75rem 1.875rem;
    width: 100%;
  }
}

.contact-banner__btn-line-icon {
  width: 1.875rem;
  height: 1.875rem;
}

.contact-banner__btn-line-text {
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #008e5c;
}
@media screen and (max-width: 768px) {
  .contact-banner__btn-line-text {
    font-size: 1rem;
  }
}

/*--------------------------------
下層ページのタイトル
--------------------------------*/
.page-title {
  font-size: 2.5rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page-title {
    font-size: 1.875rem;
  }
}

/*--------------------------------
下層ページのトップセクション
--------------------------------*/
.page-heading-section {
  text-align: center;
}

.page-heading-section__inner {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .page-heading-section__inner {
    padding: 0rem 2.5rem;
  }
}

.page-heading-section__label {
  max-width: 22.125rem;
  width: 100%;
  margin: 0 auto;
  background-color: rgba(60, 132, 90, 0.7);
  font-size: 1.6875rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  color: #fff;
  padding: 0.625rem;
  margin-bottom: 1rem;
}

.page-heading-section__title {
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: #3c845a;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-heading-section__title {
/*     font-size: 2.125rem; */

	font-size: 25px;
    font-size: 1.5625rem;
  }
}
.page-heading-section__title::before {
  content: attr(data-en);
  opacity: 0.07;
  color: #3c845a;
  font-size: 8.75rem;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 700;
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, 0%);
  text-transform: uppercase;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page-heading-section__title::before {
/*     font-size: 4.625rem; */
    font-size: 2.625rem;
  }
}

.page-heading-section__lead {
  margin-top: 1.5625rem;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page-heading-section__lead {
/*     font-size: 0.875rem; */
    font-size: 1rem;
    margin-top: 1.0625rem;
    text-align: left;
  }
}

.page-heading-section__actions {
  margin-top: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 900px) {
  .page-heading-section__actions {
    flex-direction: column;
    padding: 0rem 1.25rem;
    max-width: 31.25rem;
    width: 100%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .page-heading-section__actions {
    display: none;
  }
}
.page-heading-section__actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  padding: 1.0625rem 1.375rem;
  border-radius: 3.125rem;
  box-shadow: 0 0 1.25rem 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 900px) {
  .page-heading-section__actions a {
    width: 100%;
  }
}
.page-heading-section__actions svg {
  width: 2.875rem;
  height: 2.875rem;
}

.page-heading-section__tel {
  background-color: #eac512;
  border: 0.1875rem solid #eac512;
}

.page-heading-section__tel-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.125rem;
}

.page-heading-section__tel-number {
  color: #191f20;
  font-size: 2.125rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
}

.page-heading-section__tel-note {
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #191f20;
}

.page-heading-section__mail {
  background-color: #008e5c;
  border: 0.1875rem solid #008e5c;
}

.page-heading-section__mail-text {
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
}

.page-heading-section__line {
  background-color: #36be8e;
  border: 0.1875rem solid #36be8e;
}

.page-heading-section__line-text {
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
}

/*--------------------------------
menuセクション
--------------------------------*/
.page-menu-section__bg {
  background-color: #f1f0eb;
  padding: 3.75rem 3.125rem 3.75rem;
  border-radius: 1.875rem;
}
@media screen and (max-width: 768px) {
  .page-menu-section__bg {
    padding: 2.1875rem 1.25rem 2.25rem;
    border-radius: 1.25rem;
  }
}

.page-menu-section__label {
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #3c845a;
}
@media screen and (max-width: 768px) {
  .page-menu-section__label {
    font-size: 1rem;
  }
}

.page-menu-section__title {
  text-align: center;
  color: #191f20;
}

.page-menu-section__lead {
  margin-top: 1.875rem;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .page-menu-section__lead {
    margin-top: 1.125rem;
    font-size: 0.875rem;
    text-align: left;
  }
}

.page-menu-section__list {
  margin-top: 1.875rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .page-menu-section__list {
    margin-top: 0.9375rem;
    gap: 0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .page-menu-section__list--repair {
    grid-template-columns: repeat(2, calc(50% - 0.3125rem));
  }
}
.page-menu-section__list--repair .page-menu-section__link {
  max-height: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .page-menu-section__list--repair .page-menu-section__link {
    max-height: initial;
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .page-menu-section__list--repair .page-menu-section__link--nowrap {
    white-space: nowrap;
  }
}
@media screen and (max-width: 768px) {
  .page-menu-section__list--repair .page-menu-section__link--pr12 {
    padding-right: 0.75rem;
  }
}

.page-menu-section__link {
  padding: 1.25rem;
  background-color: #fff;
  color: #191f20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  border-radius: 0.625rem;
  box-shadow: 0 0.25rem 0 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .page-menu-section__link {
    padding: 0.9375rem;
    font-size: 0.875rem;
  }
}
.page-menu-section__link::after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: block;
  background-image: url(../img/common/green-circle-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transform: rotate(90deg);
  flex-shrink: 0;
}

/*--------------------------------
blog
--------------------------------*/
.blog-list--col-03 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5625rem 2.96875rem;
}
@media screen and (max-width: 1280px) {
  .blog-list--col-03 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .blog-list--col-03 {
    grid-template-columns: 1fr;
  }
}

.blog-list--col-04 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5625rem 2.916875rem;
}
@media screen and (max-width: 1280px) {
  .blog-list--col-04 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5625rem;
  }
}
@media screen and (max-width: 900px) {
  .blog-list--col-04 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .blog-list--col-04 {
    gap: 1rem;
  }
}
/* @media screen and (max-width: 450px) {
  .blog-list--col-04 {
    grid-template-columns: 1fr;
  }
} */

.blog-card__image {
  border-radius: 1.25rem;
  aspect-ratio: 200/260;
  object-fit: cover;
  height: auto;
}
@media screen and (max-width: 768px) {
  .blog-card__image {
    aspect-ratio: 200/260;
    border-radius: 0.625rem;
  }
}

.blog-card__image--no {
  border: 1px solid #ccc;
}

.blog-card__content {
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .blog-card__content {
    margin-top: 0.625rem;
  }
}

.blog-card__title {
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #191f20;
}
@media screen and (max-width: 768px) {
  .blog-card__title {
    margin-top: 0.625rem;
    font-size: 0.875rem;
  }
}

.blog-card__title-link {
  color: #191f20;
}

.blog-card__card-meta {
  margin-top: 0.9375rem;
  display: block;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .blog-card__card-meta {
    margin-top: 0.625rem;
  }
}

.blog-card__date {
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #191f20;
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .blog-card__date {
    font-size: 0.75rem;
  }
}

.blog-card__category {
  display: block;
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #145337;
  padding: 0.375rem 0.625rem;
  border-radius: 1.25rem;
  background-color: #d8e6de;
}
@media screen and (max-width: 768px) {
  .blog-card__category {
    font-size: 0.75rem;
	width: fit-content;
  }
}

.blog-card__button-wrapper {
  margin-top: 3.75rem;
  text-align: center;
}

.blog-card__button {
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
  padding: 1.375rem 3.5625rem;
  border-radius: 3.125rem;
  border: 3px solid #008e5c;
  background-color: #008e5c;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .blog-card__button {
    padding: 0.5625rem 1.375rem;
    font-size: 0.875rem;
    gap: 0.3125rem;
  }
}
.blog-card__button::after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: block;
  background-image: url(../img/common/white-circle-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .blog-card__button::after {
    width: 0.8125rem;
    height: 0.8125rem;
  }
}

/*--------------------------------
フローティング
--------------------------------*/
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
  display: none;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(3px);
}
@media screen and (max-width: 768px) {
  .floating-cta {
    display: block;
    padding: 0.9375rem 0rem;
  }
}

@media screen and (max-width: 768px) {
  .floating-cta__inner {
    max-width: 23.75rem;
  }
}

.floating-cta__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.floating-cta__tel-link {
  background-color: #eac512;
  padding: 0.625rem 1.125rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  border-radius: 3.125rem;
  box-shadow: 0 0 1.25rem rgba(0, 0, 0, 0.2);
}

.floating-cta__tel-number {
  font-size: 1.625rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  color: #191f20;
}

.floating-cta__tel-note {
  font-size: 0.5rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #191f20;
}

.floating-cta__mail-link {
  background-color: #3c845a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 3.625rem;
  height: 3.625rem;
  border-radius: 50%;
}
.floating-cta__mail-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.floating-cta__mail-text {
  font-size: 0.6875rem;
  line-height: 1.1;
  letter-spacing: 0em;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.floating-cta__line-link {
  background-color: #36be8e;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3.625rem;
  height: 3.625rem;
  border-radius: 50%;
}
.floating-cta__line-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.floating-cta__line-text {
  color: #ffffff;
  font-size: 0.6875rem;
  line-height: 1.1;
  letter-spacing: 0em;
  font-weight: 700;
  text-align: center;
}

/*--------------------------------
ページネーション
--------------------------------*/
.pagination {
  margin-top: 2rem;
}
.pagination .nav-links {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  background: #fff;
  color: #333;
  text-decoration: none;
  line-height: 1;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}
.pagination .page-numbers:hover {
  background: #008e5c;
  border-color: #008e5c;
  color: #fff;
}
.pagination .page-numbers.current {
  background: #008e5c;
  border-color: #008e5c;
  color: #fff;
  font-weight: 700;
  cursor: default;
}
.pagination .page-numbers:focus-visible {
  outline: 3px solid rgba(0, 142, 92, 0.35);
  outline-offset: 2px;
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
  padding: 0 1rem;
}
.pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  min-width: auto;
  padding: 0 0.25rem;
}
.pagination .page-numbers.dots:hover {
  background: transparent;
  border-color: transparent;
  color: #333;
}

.u-text-align--right {
  text-align: right;
}

.sub-contact-heading {
  padding: 3.125rem 0rem 7.5rem;
}
@media screen and (max-width: 768px) {
  .sub-contact-heading {
    padding: 3.125rem 0rem 3.75rem;
  }
}

@media screen and (max-width: 768px) {
  .sub-contact-heading__inner {
    padding: 0rem 1.5625rem;
  }
}

.sub-contact-shop {
  padding-bottom: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .sub-contact-shop {
    padding-bottom: 2.6875rem;
  }
}

.sub-contact-shop__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .sub-contact-shop__inner {
    flex-direction: column-reverse;
    gap: 0;
  }
}

.sub-contact-shop__text-block {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .sub-contact-shop__text-block {
    margin-top: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .sub-contact-shop__heading {
    font-size: 1.875rem;
    line-height: 1.4;
    letter-spacing: 0.03em;
    font-weight: 700;
  }
}

.sub-contact-shop__info {
  margin-top: 1.25rem;
  padding: 0.625rem 0.9375rem;
  background-color: #edf5f1;
  color: #145337;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: fit-content;
  border-radius: 0.375rem;
}
@media screen and (max-width: 768px) {
  .sub-contact-shop__info {
    margin-top: 2rem;
    padding: 0.625rem 0.8125rem;
    font-size: 0.875rem;
  }
}

.sub-contact-shop__description {
  margin-top: 2.5rem;
  max-width: 43.75rem;
}
@media screen and (max-width: 768px) {
  .sub-contact-shop__description {
    max-width: 100%;
    margin-top: 0.9375rem;
  }
}

.sub-contact-shop__paragraph {
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-contact-shop__paragraph {
    font-size: 0.875rem;
  }
}

.sub-contact-shop__link-text {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .sub-contact-shop__link-text {
    margin-top: 1.5625rem;
  }
}

.sub-contact-shop__link {
  padding-bottom: 0.25rem;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  border-bottom: 1px solid #008e5c;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: #191f20;
}
@media screen and (max-width: 768px) {
  .sub-contact-shop__link {
    font-size: 0.875rem;
  }
}
.sub-contact-shop__link::after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: block;
  background-image: url(../img/common/green-circle-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.sub-contact-shop__image-block {
  width: clamp(320px, 40vw, 500px);
}
@media screen and (max-width: 768px) {
  .sub-contact-shop__image-block {
    width: 100%;
  }
}

.sub-contact-shop__image {
  border-radius: 1.25rem;
  aspect-ratio: 500/440;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .sub-contact-shop__image {
    border-radius: 0.625rem;
    aspect-ratio: 340/299;
  }
}

.sub-contact-shop__caption {
  width: 100%;
  padding: 0.625rem 0rem;
  text-align: center;
  border-radius: 0.625rem;
  background-color: #f7f7f7;
  margin-top: 0.6875rem;
}
@media screen and (max-width: 768px) {
  .sub-contact-shop__caption {
    margin-top: 0.9375rem;
    padding: 0.375rem 0.625rem;
  }
}

.sub-contact-shop__store-name {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sub-contact-shop__store-name {
    font-size: 0.8125rem;
  }
}

.sub-contact-shop__store-address {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-contact-shop__store-address {
    font-size: 0.8125rem;
  }
}

.sub-contact-flow__list {
  background-color: #f1f0eb;
  border-radius: 1.25rem;
  padding: 3.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-contact-flow__list {
    padding: 1.875rem 1.25rem 1.5625rem;
  }
}
.sub-contact-flow__list::before {
  position: absolute;
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 10rem);
  background-color: rgba(60, 132, 90, 0.3);
  top: 50%;
  left: 5.9375rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .sub-contact-flow__list::before {
    left: 3rem;
  }
}

.sub-contact-flow__step {
  display: flex;
  justify-content: space-between;
  gap: 1.5625rem;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .sub-contact-flow__step {
    flex-direction: column;
    gap: 0;
  }
}

.sub-contact-flow__step-left {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  width: 21.0625rem;
}
@media screen and (max-width: 768px) {
  .sub-contact-flow__step-left {
    width: auto;
    gap: 0.625rem;
  }
}

.sub-contact-flow__step-label {
  background-color: #3c845a;
  border-radius: 50%;
  color: #ffffff;
  width: 4.375rem;
  height: 4.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .sub-contact-flow__step-label {
    width: 3.4375rem;
    height: 3.4375rem;
  }
}

.sub-contact-flow__step-number {
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .sub-contact-flow__step-number {
    font-size: 0.8125rem;
  }
}

.sub-contact-flow__step-title {
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sub-contact-flow__step-title {
    font-size: 1.25rem;
  }
}

.sub-contact-flow__step-content {
  width: 46.875rem;
  margin-top: 1.3125rem;
}
@media screen and (max-width: 768px) {
  .sub-contact-flow__step-content {
    width: 100%;
    margin-top: 0.3125rem;
    max-width: clamp(235px, 118 * (100vw - 380px) / 120 + 235px, 353px);
    margin-left: auto;
  }
}

.sub-contact-flow__step-text {
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-contact-flow__step-text {
    font-size: 0.875rem;
  }
}

.sub-contact-flow__time-list {
  padding: 0.9375rem;
  border-radius: 1.25rem;
  background-color: #fff;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-top: 0.9375rem;
}

.sub-contact-flow__time-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-contact-flow__time-item {
    flex-direction: column;
    gap: 0.3125rem;
    align-items: flex-start;
    font-size: 0.875rem;
  }
}

.sub-contact-flow__time-item-num {
  background-color: #edf5f1;
  border-radius: 3.125rem;
  border: 1px solid #3c845a;
  padding: 0.0625rem 0.875rem;
  color: #3c845a;
}
@media screen and (max-width: 768px) {
  .sub-contact-flow__time-item-num {
    font-size: 0.875rem;
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-weight: 700;
  }
}

/*--------------------------------
フォーム
--------------------------------*/
/*#################################
ラジオボタン
#################################*/
/* ===== 共通 ===== */
.sub-contact__radio,
.sub-contact__checkbox {
  cursor: pointer;
  display: block;
}

/* input 非表示 */
.sub-contact__radio input,
.sub-contact__checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* テキスト */
.sub-contact__radio > span,
.sub-contact__checkbox > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  line-height: 1.6;
  padding-left: 2.375rem;
  color: #191f20;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-contact__radio > span,
  .sub-contact__checkbox > span {
/*     font-size: 0.875rem; */
    font-size: 1rem;
    padding-left: 1.8125rem;
  }
}

/* 外枠（丸） */
.sub-contact__radio label > span::before,
.sub-contact__checkbox label span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
  transform: translateY(-50%);
  transition: border-color 0.2s ease;
}
@media screen and (max-width: 768px) {
  .sub-contact__radio label > span::before,
  .sub-contact__checkbox label span::before {
    width: 1.3125rem;
    height: 1.3125rem;
	  
	top: 0.1em;
	transform: none;
  }
}

.sub-contact__checkbox label span::before {
  border-radius: 0.25rem;
}

/* 中の丸 */
.sub-contact__radio label span::after {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 50%;
  width: 0.96875rem;
  height: 0.96875rem;
  background-color: #3c845a;
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.2s ease;
}
@media screen and (max-width: 768px) {
  .sub-contact__radio label span::after {
    width: 0.5625rem;
    height: 0.5625rem;
    left: 0.375rem;
  }
}

.sub-contact__checkbox label span::after {
  content: "";
  position: absolute;
  left: 0.375rem;
  top: 48%;
  width: 0.75rem;
  height: 0.375rem;
  border-left: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: translateY(-50%) scale(0) rotate(-45deg);
  transition: transform 0.2s ease;
}
@media screen and (max-width: 768px) {
  .sub-contact__checkbox label span::after {
    left: 0.3125rem;
  }
}

/* checked 時（radio / checkbox 共通） */
.sub-contact__radio input:checked + span::before,
.sub-contact__checkbox input:checked + span::before {
  border-color: #3c845a;
}

.sub-contact__checkbox input:checked + span::before {
  background-color: #3c845a;
}

.sub-contact__radio input:checked + span::after,
.sub-contact__checkbox input:checked + span::after {
  transform: translateY(-50%) scale(1) rotate(-45deg);
}

/* hover */
.sub-contact__radio label:hover span::before,
.sub-contact__checkbox label:hover span::before {
  border-color: #3c845a;
}

/* focus（アクセシビリティ） */
.sub-contact__radio input:focus-visible + span::before,
.sub-contact__checkbox input:focus-visible + span::before {
  outline: 2px solid #3c845a;
  outline-offset: 3px;
}

.sub-contact {
  background-color: #3c845a;
  /* ベースの緑 */
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 1px,
    transparent 1px
  );
  background-size: 16px 16px;
  /* ドットの間隔 */
  padding: 3.125rem 0rem 6.25rem;
	
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .sub-contact {
    padding: 1.5625rem 0rem 3.75rem;
    background-size: 24px 24px;
    /* ドットの間隔 */
  
    margin-bottom: 3rem;
  }
}

.sub-contact__header {
  text-align: center;
}

.sub-contact__title {
  color: #ffffff;
}

.sub-contact__tel {
  background-color: #ffffff;
  border-radius: 1.25rem;
  width: fit-content;
  padding: 1.25rem 2.5rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .sub-contact__tel {
    padding: 0.9375rem 1.5625rem;
    border-radius: 0.625rem;
    gap: 0.3125rem;
    flex-direction: column;
  }
}

.sub-contact__tel-number {
  color: #008e5c;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .sub-contact__tel-number {
    font-size: 2.375rem;
  }
}

.sub-contact__tel-time {
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-contact__tel-time {
    font-size: 0.75rem;
  }
}

.sub-contact__lead {
  margin-top: 1.25rem;
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-contact__lead {
    margin-top: 0.9375rem;
/*     font-size: 0.875rem; */
    font-size: 1rem;
  }
}

.sub-contact__form {
  margin-top: 3.125rem;
  background-color: #ffffff;
  padding: 2.5rem 3.75rem 3.75rem;
  border-radius: 1.875rem;
}
@media screen and (max-width: 768px) {
  .sub-contact__form {
    margin-top: 1.875rem;
    border-radius: 0.9375rem;
    padding: 0rem 1.25rem 1.5625rem;
  }
}

.sub-contact__form-item {
  display: grid;
  grid-template-columns: 21.25rem 1fr;
  gap: 0rem;
}
@media screen and (max-width: 1000px) {
  .sub-contact__form-item {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .sub-contact__form-item {
    display: block;
  }
}

.sub-contact__label {
  padding: 1.5625rem 1.25rem;
  border-bottom: 1px solid #3c845a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .sub-contact__label {
    border-bottom: 1px solid #ddd;
  }
}
@media screen and (max-width: 768px) {
  .sub-contact__label {
    padding: 1.5625rem 0.625rem 0.875rem;
/*     font-size: 1rem; */
    font-size: 1.125rem;
	font-feature-settings: "palt";
  }
}

.sub-contact__label + * {
  padding: 1.5625rem 1.875rem;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 1000px) {
  .sub-contact__label + * {
    border-bottom: 1px solid #3c845a;
  }
}
@media screen and (max-width: 768px) {
  .sub-contact__label + * {
    padding: 0.9375rem 0.625rem 0.875rem 0.625rem;
  }
}

.sub-contact__required {
  padding: 0.375rem 0.625rem;
  background-color: #eac512;
  color: #191f20;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
  border-radius: 2.5rem;
}
@media screen and (max-width: 768px) {
  .sub-contact__required {
/*     font-size: 0.6875rem; */
    font-size: 0.875rem;
  }
}

.sub-contact__radio,
.sub-contact__checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .sub-contact__radio,
  .sub-contact__checkbox {
    flex-direction: column;
    gap: 0.625rem;
  }
}

.sub-contact__checkbox:last-of-type {
  width: 100%;
}

.sub-contact__building-age {
  display: flex;
  align-items: center;
}

.sub-contact__text {
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-contact__text {
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 768px) {
  .sub-contact__input-wrap {
    padding-left: initial;
    padding-right: initial;
  }
}

.sub-contact__input {
  font-size: 1rem;
  line-height: 1.40625;
  letter-spacing: 0.05em;
  font-weight: 400;
  padding: 1.03125rem 1.25rem;
  background-color: #f7f7f7;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sub-contact__input {
    font-size: 1rem;
    line-height: 1.4375;
    line-height: 1.125rem;
    padding: 0.75rem 0.625rem;
  }
}

.sub-contact__input[name="building-age"] {
  background-color: #f7f7f7;
  min-width: 9.375rem;
  margin: 0 0.9375rem;
  width: auto;
}
@media screen and (max-width: 768px) {
  .sub-contact__input[name="building-age"] {
    min-width: 7.5rem;
  }
}

@media screen and (max-width: 768px) {
  .sub-contact__textarea-wrapper {
    padding-left: initial;
    padding-right: initial;
  }
}

.sub-contact__textarea {
  margin-top: 0.9375rem;
  width: 100%;
  padding: 1.25rem;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 400;
  background-color: #f7f7f7;
}
.sub-contact__textarea::placeholder {
  opacity: 0.4;
}
@media screen and (max-width: 768px) {
  .sub-contact__textarea {
    padding: 0.625rem 0.625rem;
    font-size: 1rem;
    height: 10rem;
  }
}

.sub-contact__description {
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-contact__description {
/*     font-size: 0.875rem; */
    font-size: 1rem;
  }
}

.sub-contact__photo-area {
  margin-top: 3.75rem;
  background-color: #f7f7f7;
  border-radius: 1.875rem;
  padding: 3.75rem;
}
@media screen and (max-width: 768px) {
  .sub-contact__photo-area {
    margin-top: 2.5rem;
    padding: 1.5625rem 0.75rem;
    border-radius: 0.625rem;
  }
}

.sub-contact__photo-title {
  font-size: 1.875rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub-contact__photo-title {
    font-size: 1.5rem;
  }
}

.sub-contact__photo-description {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub-contact__photo-description {
    margin-top: 0.9375rem;
/*     font-size: 0.875rem; */
    font-size: 1rem;
    padding: 0rem 0.5rem;
  }
}

.sub-contact__photo-button {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 2rem;  
}
@media screen and (max-width: 768px) {
  .sub-contact__photo-button {
    margin-top: 0.9375rem;
	flex-direction: column;
	gap: 1rem;
  }
}

.sub-contact__photo-link {
  padding: 1.125rem 1.46875rem 1.125rem 1.125rem;
  border: 2px solid #008e5c;
  border-radius: 0.625rem;
  background-color: #008e5c;
  width: fit-content;
  margin-inline: 0;
  display: flex;
  align-items: center;
  gap: 0.78125rem;
  justify-content: start;
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  box-shadow: 0 0.25rem 0 0 rgba(0, 0, 0, 0.2);
}
.sub-contact__photo-link::after {
  content: "";
  width: 0.3125rem;
  height: 0.5625rem;
  display: block;
  background-image: url(../img/common/white-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .sub-contact__photo-link::after {
    width: 0.375rem;
    height: 0.625rem;
    box-shadow: 0 0.1875rem 0 0 rgba(0, 0, 0, 0.15);
  }
}
@media screen and (max-width: 768px) {
  .sub-contact__photo-link {
/*     font-size: 0.875rem; */
    font-size: 1rem;
    padding: 0.8125rem 1.3125rem 0.8125rem 0.8125rem;
    gap: 1rem;
	width: 100%;
	justify-content: space-between;
  }
}

.sub-contact__photo-choice {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 1.875rem;
  margin-top: 1.875rem;
  display: flex;
  gap: 5.3125rem;
}
@media screen and (max-width: 768px) {
  .sub-contact__photo-choice {
    gap: 0;
    flex-direction: column;
    padding: 1.25rem 1.25rem;
    border-radius: 0.625rem;
  }
}

.sub-contact__photo-choice-title {
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.sub-contact__photo-files {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .sub-contact__photo-files {
    gap: 0;
  }
}

.sub-contact__file-item {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .sub-contact__file-item {
    margin-top: 0.9375rem;
  }
}

.sub-contact__file {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .sub-contact__file {
    font-size: 0.875rem;
  }
}

.sub-contact__submit {
  margin-top: 3.125rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub-contact__submit {
    margin-top: 1.5625rem;
  }
}

.sub-contact__submit-button {
  padding: 1.375rem 3.5625rem;
  border-radius: 3.125rem;
  border: 3px solid #008e5c;
  background-color: #008e5c;
  width: fit-content;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sub-contact__submit-button {
    font-size: 1rem;
    padding: 0.75rem 1.375rem;
  }
}

.sub-contact__note {
  margin-top: 3.125rem;
  padding: 1.875rem 4.15625rem 0rem;
  border-top: 1px solid #ddd;
}
@media screen and (max-width: 768px) {
  .sub-contact__note {
    margin-top: 1rem;
    padding: 0.9375rem 0rem 0rem;
  }
}

.sub-contact__note-title {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.sub-contact__note-text {
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
	.sub-contact__note-text {
		font-size: 1rem;
	}
}

.sub-contact__note-strong {
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.sub-contact-other {
  padding: 7.5rem 0rem;
}
@media screen and (max-width: 768px) {
  .sub-contact-other {
    padding: 3.75rem 0rem;
  }
}

.sub-contact-other__title {
  text-align: center;
}

.sub-contact-other__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .sub-contact-other__list {
    margin-top: 1.3125rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
}

.sub-contact-other__link {
  padding: 1.875rem;
  display: grid;
  grid-template-columns: 10.625rem 1fr;
  gap: 1.25rem;
  align-items: center;
  background-color: #f1f0eb;
  border-radius: 1.25rem;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .sub-contact-other__link {
    grid-template-columns: 6.25rem 1fr;
    gap: 0.625rem;
    padding: 1.25rem;
    border-radius: 0.625rem;
  }
}

.sub-contact-other__image {
  border-radius: 0.625rem;
}
.sub-contact-other__image img {
  aspect-ratio: 170/180;
  object-fit: cover;
  border-radius: 0.625rem;
}

@media screen and (max-width: 768px) {
  .sub-contact-other__content {
    display: contents;
  }
}

.sub-contact-other__heading {
  font-size: 1.375rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 700;
  color: #145337;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.375rem;
}
@media screen and (max-width: 768px) {
  .sub-contact-other__heading {
    font-size: 1.125rem;
  }
}
.sub-contact-other__heading::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  background-image: url(../img/common/green-circle-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .sub-contact-other__heading::after {
    width: 1rem;
    height: 1rem;
  }
}

.sub-contact-other__text {
  margin-top: 0.9375rem;
  color: #191f20;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-contact-other__text {
    grid-column: 1/3;
    margin-top: 0;
    font-size: 0.875rem;
  }
}

.wpcf7-response-output {
  background-color: #fff;
  border-color: #fff !important;
}

.wpcf7-list-item {
  margin: 0;
}

/* エラー文の上に余白 */
.wpcf7-not-valid-tip {
  margin-top: 0.625rem;
}

.wpcf7-spinner {
  display: none;
}

.footer__body {
  padding: 5rem 0rem 5rem;
  background-color: #191f20;
}
@media screen and (max-width: 768px) {
  .footer__body {
    padding: 3.75rem 1.3125rem;
  }
}

.footer-nav__columns {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: flex-start;
}
@media screen and (max-width: 1100px) {
  .footer-nav__columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .footer-nav__columns {
    display: flex;
    flex-direction: column;
    gap: 0.9375rem;
  }
}

.footer-nav__group {
  padding-top: 0.9375rem;
  padding-left: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .footer-nav__group {
    padding-top: 0.625rem;
    padding-left: 1.3125rem;
  }
}

.footer-nav__link {
  color: #ffffff;
  display: flex;
  gap: 0.625rem;
  align-items: center;
  font-size: 1rem;
  line-height: 1.625;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .footer-nav__link {
    font-size: 0.875rem;
    line-height: 1.5714285714;
    gap: 0.3125rem;
  }
}
.footer-nav__link::before {
  content: "";
  width: 0.375rem;
  height: 0.625rem;
  display: block;
  background-image: url(../img/common/white-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.footer-nav__link:hover {
  text-decoration: underline;
}

.footer-nav__heading {
  display: flex;
  gap: 0.625rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer-nav__heading {
    gap: 0.3125rem;
  }
}
.footer-nav__heading::before {
  flex-shrink: 0;
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  background-image: url(../img/common/green-circle-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .footer-nav__heading::before {
    width: 1rem;
    height: rm(16);
  }
}

.footer-nav__group + .footer-nav__heading {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .footer-nav__group + .footer-nav__heading {
    margin-top: 0.9375rem;
  }
}

.footer-nav__heading + .footer-nav__heading {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .footer-nav__heading + .footer-nav__heading {
    margin-top: 0.625rem;
  }
}

.footer-nav__heading-link {
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.6111111111;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: block;
}
@media screen and (max-width: 768px) {
  .footer-nav__heading-link {
    font-size: 0.875rem;
  }
}
.footer-nav__heading-link:hover {
  text-decoration: underline;
}

.footer__bottom {
  padding: 2.1875rem 0rem;
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    padding: 1.875rem 0rem 1.25rem;
  }
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__bottom-inner {
    flex-direction: column;
    gap: 1.5625rem;
  }
}

.footer__text {
  text-align: right;
  color: #666666;
}
@media screen and (max-width: 768px) {
  .footer__text {
    text-align: center;
  }
}

.footer__copy small {
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
  display: block;
}
@media screen and (max-width: 768px) {
  .footer__copy small {
    font-size: 0.5625rem;
  }
}

.footer__adress {
  display: block;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .footer__adress {
    font-size: 0.5625rem;
  }
}

.footer__logo-link {
  height: inherit;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  .footer__logo-link {
    gap: 0.3125rem;
  }
}

.footer__logo-icon {
  width: 3.625rem;
  height: 3.75rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .footer__logo-icon {
    width: 2.875rem;
    height: 2.9375rem;
  }
}

.footer__logo-contents {
  width: 18.75rem;
}
@media screen and (max-width: 768px) {
  .footer__logo-contents {
    width: 13.3125rem;
  }
}

.footer__logo-title {
  font-size: 0.6875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #191f20;
}
@media screen and (max-width: 768px) {
  .footer__logo-title {
    font-size: 0.4375rem;
  }
}

.footer__logo-name {
  width: 100%;
  padding-right: 1.1875rem;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .footer__logo-name {
    margin-top: 0.25rem;
    padding-right: initial;
  }
}

.layout-header {
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .layout-header {
    position: absolute;
  }
}

.header {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .header {
    box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.1);
  }
}

.header__inner {
  max-width: 101.875rem;
  width: 100%;
  margin-inline: auto;
  padding: 0rem 1.5625rem;
}
@media screen and (max-width: 930px) {
  .header__inner {
    padding: 0rem 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.625rem 0.625rem;
  }
}

.header__top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.875rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1.875rem 3.125rem 1.25rem;
  z-index: 99999;
}
@media screen and (max-width: 1280px) {
  .header__top-inner {
    flex-direction: column;
    padding: 1rem 3.125rem;
    gap: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .header__top-inner {
    position: static;
    padding: initial;
  }
}

.header__logo {
  max-width: 28.125rem;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 1280px) {
  .header__logo {
    max-width: 25rem;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    max-width: 16.25rem;
  }
}

.header__logo-link {
  height: inherit;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .header__logo-link {
    gap: 0.3125rem;
  }
}

.header__logo-icon {
  width: 4.25rem;
  height: 4.375rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .header__logo-icon {
    width: 2.8125rem;
    height: 2.875rem;
  }
}

.header__logo-contents {
  width: 22.9375rem;
}
@media screen and (max-width: 768px) {
  .header__logo-contents {
    width: 14.375rem;
  }
}

.header__logo-title {
  font-size: 0.6875rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #191f20;
}
@media screen and (max-width: 768px) {
  .header__logo-title {
    font-size: 0.4375rem;
  }
}

.header__logo-name {
  width: 100%;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .header__logo-name {
    margin-top: 0.25rem;
  }
}

.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__nav {
  position: relative;
  height: inherit;
  background-color: #191f20;
  padding: 1.375rem 0rem;
  border-radius: 3.125rem;
  margin-top: 7.5rem;
}
@media screen and (max-width: 1440px) {
  .header__nav {
    padding: 1.375rem 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
}

.header__nav-item {
  height: 100%;
  position: relative;
}

.header__nav-item.header__nav-item--contact {
  display: flex;
  align-items: center;
}

.header__nav-item > a {
  padding: 0.09375rem clamp(10px, -10 * (100vw - 1550px) / -782 + 20px, 20px);
  height: inherit;
  font-size: 1rem;
  line-height: 1.4375;
  letter-spacing: 0em;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  text-align: center;
  display: block;
}
@media screen and (max-width: 1440px) {
  .header__nav-item > a {
    padding: 0.09375rem 0.75rem;
  }
  .header__nav-item > a span {
    display: inline-block;
  }
}
@media screen and (max-width: 1280px) {
  .header__nav-item > a {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 1100px) {
  .header__nav-item > a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
@media screen and (max-width: 900px) {
  .header__nav-item > a {
    font-size: 0.75rem;
    padding: 0.09375rem 0.5rem;
  }
}

.header__nav-item:not(:last-of-type):after {
  content: "";
  display: block;
  position: absolute;
  width: 0.125rem;
  height: 100%;
  background-color: #333333;
  top: 0;
  right: 0;
}

.header__nav-modal-wrap > p {
  position: relative;
  transition: 0.3s;
}

.header__nav-modal-wrap > p::before {
  content: "";
  position: absolute;
  top: 1.625rem;
  right: 0.3125rem;
  width: 0.3125rem;
  height: 0.3125rem;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(135deg);
  transition: 0.3s;
}

.header__nav-modal-wrap:hover > p::before {
  top: 1.8125rem;
  transform: rotate(-45deg);
}

.header__nav-modal {
  padding: 1.875rem 0;
  position: absolute;
  top: 5rem;
  left: -4.6875rem;
  transform: rotateX(90deg);
  max-width: 34.375rem;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.header__nav-modal-wrap:hover > .header__nav-modal {
  transform: rotateX(0deg);
  opacity: 1;
  visibility: visible;
}

.header__nav-modal-item + .header__nav-modal-item {
  margin-left: 4.375rem;
}

.header__nav-modal-item a {
  padding: 0 0.9375rem;
  display: block;
}

.header__nav-modal-item-img {
  margin: auto;
  max-width: 3.125rem;
  width: 100%;
}

.header__nav-modal-item-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.header__nav-modal-item-text {
  margin-top: 0.9375rem;
  position: relative;
  font-size: 1rem;
  line-height: 1;
}

.header__nav-modal-item-text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.9375rem;
  width: 0.3125rem;
  height: 0.3125rem;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

.header__nav-item.header__nav-item--tel a {
  font-size: 0.75rem;
  color: #1d4765;
  background-color: rgba(242, 216, 132, 0.2);
}

.header__nav-item.header__nav-item--tel a span {
  margin-top: initial;
  margin-bottom: 0.625rem;
  display: block;
  font-size: 1.25rem;
  color: #1d4765;
}

.header__nav-item.header__nav-item--tel a span::before {
  content: "";
  margin-right: 0.5rem;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  background-image: url(./../images/common/tel-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__nav-item.header__nav-item--contact a {
  padding: 0 2.8125rem;
  font-size: 0.75rem;
  color: #785e0b;
  background-color: #f2d884;
}

.header__nav-item.header__nav-item--contact a span {
  margin-top: initial;
  margin-bottom: 0.625rem;
  display: block;
  font-size: 0.9375rem;
  color: #785e0b;
}

.header__nav-item.header__nav-item--contact a span::before {
  content: "";
  margin-right: 0.625rem;
  width: 0.9375rem;
  height: 0.6875rem;
  display: inline-block;
  background-image: url(./../images/common/mail-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__right {
  height: inherit;
  display: flex;
}
@media screen and (max-width: 768px) {
  .header__right {
    display: none;
  }
}

.header__tel-btn {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 0.1875rem;
}
@media screen and (max-width: 768px) {
  .header__tel-btn {
    flex-direction: column-reverse;
    align-items: center;
    background-color: #eac512;
    padding: 0.375rem 0.625rem 0.3125rem;
    border-radius: 2.5rem;
  }
}

.header__tel-number {
  font-size: 2.625rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  color: #008e5c;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1280px) {
  .header__tel-number {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 768px) {
  .header__tel-number {
    font-size: 0.875rem;
    color: #191f20;
  }
}

.header__tel-note {
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #191f20;
}
@media screen and (max-width: 1280px) {
  .header__tel-note {
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .header__tel-note {
    font-size: 0.25rem;
    line-height: 1;
    letter-spacing: 0.05em;
    font-weight: 400;
    display: none;
  }
}

.header__mail-btn {
  padding: 1rem 1.6875rem;
  background-color: #008e5c;
  border-radius: 3.125rem;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  border: 0.1875rem solid #008e5c;
  margin-left: 1.25rem;
}
@media screen and (max-width: 1280px) {
  .header__mail-btn {
    padding: 0.625rem 1rem;
  }
}
.header__mail-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.header__mail-text {
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 1280px) {
  .header__mail-text {
    font-size: 0.875rem;
  }
}

.header__line-btn {
  padding: 1rem 1.6875rem;
  background-color: #ffffff;
  border-radius: 3.125rem;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  border: 0.1875rem solid #008e5c;
  margin-left: 0.625rem;
}
@media screen and (max-width: 1280px) {
  .header__line-btn {
    padding: 0.625rem 1rem;
  }
}
.header__line-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.header__line-text {
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #008e5c;
}
@media screen and (max-width: 1280px) {
  .header__line-text {
    font-size: 0.875rem;
  }
}

.header__tel-btn img {
  width: 1.5rem;
  height: 100%;
  object-fit: contain;
}

.header__hamburger-wrapper {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__hamburger-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.1875rem;
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    position: relative;
    z-index: 9999999;
    width: 3rem;
    height: 3rem;
    border-radius: 100%;
    background-color: #191f20;
    cursor: pointer;
    transition: 0.3s;
    position: fixed;
    top: 0.375rem;
    right: 0.625rem;
  }
}

.header__hamburger-text {
  font-size: 0.5rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  text-transform: uppercase;
  color: #ffffff;
  margin-top: 0.3125rem;
}

.header__hamburger {
  width: 0.9375rem;
  height: 0.5625rem;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0.9375rem;
  height: 1px;
  background-color: #ffffff;
  transition: 0.5s;
  border-radius: 0.3125rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
  margin: 0.3125rem 0;
}

.header__hamburger-wrapper.is-open span:nth-of-type(1) {
  top: 0.375rem;
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger-wrapper.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger-wrapper.is-open span:nth-of-type(3) {
  top: -0.375rem;
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__drawer {
    max-width: 21.25rem;
    padding: 3.75rem 0;
    display: none;
    position: fixed;
    z-index: 900000;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    overflow-y: scroll;
    scrollbar-width: none;
  }
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-nav {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}

.header__drawer-nav-cta {
  padding: 0.9375rem;
  border-radius: 0.625rem;
  background-color: #f7f7f7;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.header__drawer-nav-cta svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.header__drawer-nav-cta a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2.5rem;
  gap: 0.3125rem;
}

.outer__tel-btn {
  grid-area: 1/1/2/3;
  background-color: #eac512;
  padding: 0.4375rem;
}

.outer__tel-number {
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  color: #191f20;
}

.outer__tel-note {
  margin-top: 0.125rem;
  font-size: 0.625rem;
  line-height: 1.7;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-align: center;
  color: #191f20;
}

.outer__mail-btn {
  background-color: #008e5c;
  padding: 0.46875rem;
}

.outer__mail-text {
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
}

.outer__line-btn {
  padding: 0.3125rem 0.4375rem;
  border: 2px solid #008e5c;
  background-color: #fff;
}

.outer__line-text {
  color: #008e5c;
  font-size: 0.875rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.header__drawer-overlay {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  /* Safari対策 */
  z-index: 900000;
  background-color: rgba(255, 255, 255, 0.5);
}

.header__drawer-list {
  margin-top: 0.8125rem;
}

.header__drawer-item > a,
.header__drawer-accordion-title {
  padding: 0.875rem 0.9375rem 0.8125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
  color: #191f20;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.header__drawer-item > a::after,
.header__drawer-accordion-title::after {
  content: "";
  display: block;
  width: 0.3125rem;
  height: 0.5rem;
  background-image: url(../img/common/green-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.header__drawer-item > a span,
.header__drawer-accordion-title span {
  margin-top: 0.3125rem;
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #191f20;
}

.header__drawer-accordion-title {
  position: relative;
  cursor: pointer;
}

.header__drawer-accordion-title::before {
  content: "";
  position: absolute;
  top: 1.25rem;
  left: calc(50% - -3.125rem);
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(135deg);
  transition: 0.3s;
}

.header__drawer-accordion-title.is-open::before {
  top: 1.4375rem;
  transform: rotate(-45deg);
}

.header__drawer-item.header__drawer-item--contact a::after {
  content: "";
  margin-bottom: 0.3125rem;
  margin-left: 1.25rem;
  width: 0.9375rem;
  height: 0.9375rem;
  display: inline-block;
  background-image: url(./../images/common/contact-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__drawer-accordion-list-wrap {
  margin: 0 auto 0.9375rem;
  padding: 1rem 1.5rem;
  display: none;
  max-width: 18.75rem;
  width: 100%;
  border-radius: 0.625rem;
  background-color: #fff;
}

.header__drawer-accordion-list {
  display: grid;
  column-gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}

.header__drawer-accordion-item a {
  position: relative;
  display: block;
  font-size: 0.9375rem;
  line-height: 1;
  text-align: center;
}

.header__drawer-accordion-item a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.625rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

.header__drawer-accordion-item-img {
  margin: auto;
  max-width: 1.875rem;
  width: 100%;
}

.header__drawer-accordion-item-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.header__drawer-accordion-item-text {
  margin-top: 0.625rem;
  position: relative;
  font-size: 0.75rem;
  line-height: 1;
}

.header__drawer-accordion-item-text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.3125rem;
  height: 0.3125rem;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

.top-title {
  font-size: 3.5rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .top-title {
    font-size: 2.25rem;
  }
}

.top-subtitle {
  font-size: 1.875rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .top-subtitle {
    font-size: 1.375rem;
  }
}

/*--------------------------------
fv
--------------------------------*/
.top-fv {
  padding: 2.625rem 0rem 6.375rem;
}
@media screen and (max-width: 768px) {
  .top-fv {
    padding: 5rem 0rem 3.75rem;
  }
}

.top-fv__inner {
  max-width: 101.875rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-fv__inner {
    flex-direction: column;
    gap: 0;
  }
}

.top-fv__content {
  width: 74.6835443038%;
}
@media screen and (max-width: 768px) {
  .top-fv__content {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}

.top-fv__title {
  font-size: 3.75rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: #008e5c;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .top-fv__title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .top-fv__title {
    font-size: 2.125rem;
    order: 2;
    margin-top: 0.1875rem;
  }
}

.top-fv__subtitle {
  margin-top: 0.625rem;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9375rem;
}
@media screen and (max-width: 1280px) {
  .top-fv__subtitle {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .top-fv__subtitle {
    order: 1;
    font-size: 0.9375rem;
    margin-top: initial;
    gap: 0.3125rem;
  }
}
.top-fv__subtitle::before,
.top-fv__subtitle::after {
  content: "";
  display: block;
  width: 1.875rem;
  height: 0.125rem;
  background-color: #191f20;
}
@media screen and (max-width: 768px) {
  .top-fv__subtitle::before,
  .top-fv__subtitle::after {
    width: 0.9375rem;
  }
}

.top-fv__image-main {
  margin-top: 1.125rem;
  position: relative;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .top-fv__image-main {
    order: 3;
    margin-top: 0.9375rem;
  }
}
.top-fv__image-main img {
  border-radius: 2.5rem;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right 50%;
}
@media screen and (max-width: 768px) {
  .top-fv__image-main img {
    aspect-ratio: 340/300;
    border-radius: 1.25rem;
  }
}

.top-fv__image-sub-outer {
  position: absolute;
  bottom: -1.25rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  .top-fv__image-sub-outer {
    left: -0.375rem;
    bottom: -4.75rem;
  }
}

.top-fv__image-sub {
  width: 18.75rem;
  border-radius: 1.25rem;
  border: 0.625rem solid #f1f0eb;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-fv__image-sub {
    border: 0.375rem solid #f1f0eb;
    width: 13.25rem;
  }
}
.top-fv__image-sub img {
  aspect-ratio: 300/200;
  border-radius: 0.625rem;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .top-fv__image-sub img {
    aspect-ratio: 200/130;
  }
}

.top-fv__badge-wrapper {
  background-color: #eac512;
  width: 7.1875rem;
  height: 7.1875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4.375rem 4.375rem 0rem 4.375rem;
  position: absolute;
  top: -4.3125rem;
  left: -1.625rem;
}
@media screen and (max-width: 768px) {
  .top-fv__badge-wrapper {
    border-radius: 6.25rem 4.375rem 4.375rem 0;
    width: 9.375rem;
    height: 3.75rem;
    right: -7.75rem;
    left: initial;
    bottom: 1.75rem;
    top: initial;
  }
}

.top-fv__badge {
  font-size: 1.125rem;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 900;
  transform: rotate(-15deg);
  display: inline-block;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-fv__badge {
    transform: none;
    font-size: 0.875rem;
  }
}

.top-menu {
  background-color: #e2dbb8;
  border-radius: 2.5rem;
  padding: 1.875rem 1.875rem 2.3125rem;
}
@media screen and (max-width: 768px) {
  .top-menu {
    margin-top: 6.625rem;
    width: 100%;
    padding: 1.5625rem 1.25rem 1.875rem;
    border-radius: 1.25rem;
  }
}

.top-menu__title {
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  color: #e2dbb8;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  mix-blend-mode: multiply;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-menu__title {
    font-size: 1.875rem;
  }
}

.top-menu__lead {
  margin-top: 1.125rem;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  padding: 0.5rem 1.375rem 0.5rem 1.25rem;
  background-color: #eac512;
  width: fit-content;
  border-radius: 1.875rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-menu__lead {
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0em;
    font-weight: 700;
    padding: 0.375rem 1.25rem;
  }
}
.top-menu__lead::after {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 13px solid #eac512;
  bottom: -13px;
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translate(-50%, 100%);
  display: block;
  width: 0.4375rem;
  height: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .top-menu__lead::after {
    bottom: 6px;
  }
}
.top-menu__lead {
  font-size: 1.125rem;
  line-height: 1.4444444444;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .top-menu__lead {
    font-size: 0.875rem;
    margin-top: 0.375rem;
  }
}

.top-menu__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9375rem 0.625rem;
  margin-top: 1.6875rem;
}
@media screen and (max-width: 768px) {
  .top-menu__items {
    grid-template-rows: repeat(3, 4.875rem);
    gap: 0.75rem 0.625rem;
    margin-top: 1.1875rem;
  }
}

@media screen and (max-width: 768px) {
  .top-menu__item {
    height: 100%;
  }
}

.top-menu__link {
  background-color: #fff;
  padding: 0.75rem 0 0.8125rem;
  display: block;
  border-radius: 1.25rem;
  width: 9.0625rem;
  box-shadow: 0 0.25rem 0 0 rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .top-menu__link {
    padding: 0.625rem 0.5rem 0.625rem 0.9375rem;
    display: grid;
    grid-template-columns: 2.8125rem 1fr;
    width: 100%;
    height: 100%;
    align-items: center;
  }
}
.top-menu__link img {
  width: 4.375rem;
  height: 4.375rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-menu__link img {
    margin-inline: initial;
    width: 2.8125rem;
    height: 2.8125rem;
  }
}

.top-menu__text {
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 700;
  color: #191f20;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  align-items: center;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .top-menu__text {
    font-size: 0.8125rem;
    gap: 0.1875rem;
    margin-top: initial;
    justify-content: center;
  }
}
.top-menu__text::after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: block;
  background-image: url(../img/common/green-circle-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.top-menu__button {
  margin-top: 1.875rem;
}

.top-menu__button-link {
  padding: 1.125rem 2.375rem;
  background-color: #008e5c;
  border-radius: 3.125rem;
  border: 2px solid #008e5c;
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .top-menu__button-link {
    font-size: 0.875rem;
    padding: 0.625rem 1.4375rem;
    gap: 0.3125rem;
    width: fit-content;
    margin-inline: auto;
  }
}
.top-menu__button-link::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  background-image: url(../img/common/white-circle-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .top-menu__button-link::after {
    width: 0.8125rem;
    height: 0.8125rem;
  }
}

.sub-intro.top-intro {
  padding-bottom: initial;
  padding-top: 8.9375rem;
}
@media screen and (max-width: 768px) {
  .sub-intro.top-intro {
    padding-top: 4.5625rem;
  }
}

.top-feature {
  padding: 7.5rem 0rem 8.75rem;
}
@media screen and (max-width: 768px) {
  .top-feature {
    padding: 5rem 0rem;
  }
}

.top-feature__title-wrapper {
  text-align: center;
}

.top-feature__subtitle {
  color: #3c845a;
}

.top-feature__list {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, auto);
  gap: 1.5625rem;
}
@media screen and (max-width: 1280px) {
  .top-feature__list {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin-inline: auto;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .top-feature__list {
    margin-top: 0.9375rem;
    grid-template-columns: 1fr;
  }
}

.top-feature__item {
  background-color: #edf5f1;
  border-radius: 1.875rem;
  padding: 3.125rem 1.75rem 3.5625rem;
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  gap: 0;
}
@media screen and (max-width: 1280px) {
  .top-feature__item {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .top-feature__item {
    display: grid;
    grid-template-columns: 6.875rem 1fr;
    grid-template-rows: repeat(3, auto);
    padding: 1.875rem 1.25rem 1.9375rem;
    column-gap: 0.625rem;
  }
}

.top-feature__icon {
  width: 10.875rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-feature__icon {
    grid-area: 1/1/3/2;
    width: 6.875rem;
  }
}

.top-feature__text-group {
  display: contents;
}
@media screen and (max-width: 1280px) {
  .top-feature__text-group {
    display: block;
    margin-top: 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  .top-feature__text-group {
    display: contents;
  }
}

.top-feature__heading {
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #145337;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .top-feature__heading {
    grid-area: 1/2/2/3;
    display: flex;
    align-items: flex-end;
    font-size: 1rem;
    text-align: left;
  }
}

.top-feature__highlight {
  font-size: 4rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 700;
  text-align: center;
  margin-top: 0rem;
  color: #eac512;
}
@media screen and (max-width: 768px) {
  .top-feature__highlight {
    grid-area: 2/2/3/3;
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-size: 2rem;
    margin-top: 0.5rem;
    white-space: nowrap;
  }
}
.top-feature__highlight span {
  font-size: 2.25rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .top-feature__highlight span {
    font-size: 1.5rem;
  }
}
.top-feature__highlight:not(:has(span)) {
  font-size: 3.125rem;
  line-height: 1.4;
  letter-spacing: 0em;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .top-feature__highlight:not(:has(span)) {
    font-size: 1.75rem;
    margin-top: 0.5rem;
  }
}

.top-feature__text {
  margin-top: 0.625rem;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
  max-width: 20rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-feature__text {
    grid-area: 3/1/4/3;
    margin-inline: initial;
    font-size: 0.875rem;
    max-width: 100%;
  }
}

.top-craftsmanship {
  padding: 6.25rem 0rem 7.5rem;
  background-color: #3c845a;
  /* ベースの緑 */
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 1px,
    transparent 1px
  );
  background-size: 16px 16px;
  /* ドットの間隔 */
}
@media screen and (max-width: 768px) {
  .top-craftsmanship {
    padding: 4.1875rem 0rem 4.375rem;
  }
}

@media screen and (max-width: 768px) {
  .top-craftsmanship__inner {
    padding-left: 1.875rem;
  }
}

.top-craftsmanship__title-wrapper {
  text-align: center;
  color: #ffffff;
}

.top-craftsmanship__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-craftsmanship__list {
    grid-template-columns: 1fr;
    margin-top: 1.5625rem;
    gap: 1.5625rem;
  }
}

.top-craftsmanship__item {
  padding: 4.0625rem 1.5625rem 3.25rem;
  background-color: #fff;
  border-radius: 1.875rem;
  position: relative;
  box-shadow: 0 0.375rem 0 0 rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .top-craftsmanship__item {
    padding: 1.875rem 1.25rem;
    box-shadow: 0 0.25rem 0 0 rgba(0, 0, 0, 0.2);
    border-radius: 0.9375rem;
  }
}

.top-craftsmanship__label {
  background-color: #eac512;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  border-radius: 3.125rem 3.125rem 0 3.125rem;
  position: absolute;
  top: -0.9375rem;
  left: -0.9375rem;
}
@media screen and (max-width: 768px) {
  .top-craftsmanship__label {
    font-size: 0.8125rem;
    top: -0.625rem;
    left: -0.625rem;
    width: 4.375rem;
    height: 4.375rem;
  }
}

.top-craftsmanship__label-num {
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .top-craftsmanship__label-num {
    font-size: 1.5rem;
  }
}

.top-craftsmanship__icon {
  width: 7.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-craftsmanship__icon {
    width: 5rem;
  }
}

.top-craftsmanship__heading {
  font-size: 1.875rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #145337;
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (max-width: 1280px) {
  .top-craftsmanship__heading {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .top-craftsmanship__heading {
    margin-top: 1.5625rem;
    font-size: 1.25rem;
  }
}

.top-craftsmanship__text {
  margin-top: 1.25rem;
  max-width: 20rem;
  width: 100%;
  margin-inline: auto;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .top-craftsmanship__text {
    font-size: 0.875rem;
  }
}

.top-name-swiper {
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .top-name-swiper {
    padding-bottom: 1.875rem;
  }
}

.top-name-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.top-name-swiper img {
  display: block;
  width: 100%;
  aspect-ratio: 330/500;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .top-name-swiper img {
    aspect-ratio: 130/270;
  }
}

.top-name-swiper .swiper-slide:nth-of-type(odd) {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-name-swiper .swiper-slide:nth-of-type(odd) {
    margin-top: 1.875rem;
  }
}

.top-message {
  padding: 7.5rem 0rem 7.875rem;
}
@media screen and (max-width: 768px) {
  .top-message {
    padding: 3.75rem 0rem;
  }
}

.top-message__body {
  box-shadow: 0 0 1.875rem 0 rgba(60, 132, 90, 0.2);
  border-radius: 1.875rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3.125rem 3.75rem;
  gap: 2.5rem;
}
@media screen and (max-width: 1280px) {
  .top-message__body {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    gap: 0;
    padding: 2.5rem 1.25rem;
  }
}

.top-message__image-left,
.top-message__image-right {
  width: clamp(120px, -150 * (100vw - 1280px) / -280 + 270px, 270px);
  flex: 0 0 23.2758621%;
}
@media screen and (max-width: 1280px) {
  .top-message__image-left,
  .top-message__image-right {
    width: 9.6875rem;
  }
}
.top-message__image-left img,
.top-message__image-right img {
  border-radius: 1.25rem;
}
@media screen and (max-width: 1280px) {
  .top-message__image-left img,
  .top-message__image-right img {
    border-radius: 0.625rem;
  }
}

@media screen and (max-width: 1280px) {
  .top-message__image-left {
    margin-right: -0.9375rem;
    margin-left: auto;
    transform: translateY(24px);
    grid-area: 1/1/2/2;
  }
}

@media screen and (max-width: 1280px) {
  .top-message__image-right {
    margin-left: -0.9375rem;
    grid-area: 1/2/2/3;
  }
}

.top-message__content {
  flex: 1;
}
@media screen and (max-width: 1280px) {
  .top-message__content {
    margin-top: 3.5rem;
    grid-area: 2/1/3/3;
  }
}

.top-message__label {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  padding: 0.5rem 1.375rem 0.5rem 1.25rem;
  background-color: #eac512;
  width: fit-content;
  border-radius: 1.875rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-message__label {
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0em;
    font-weight: 700;
    padding: 0.375rem 1.25rem;
  }
}
.top-message__label::after {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 13px solid #eac512;
  bottom: -13px;
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translate(-50%, 100%);
  display: block;
  width: 0.4375rem;
  height: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .top-message__label::after {
    bottom: 6px;
  }
}
.top-message__label {
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .top-message__label {
    font-size: 0.875rem;
  }
}

.top-message__title {
  font-size: 2.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 1280px) {
  .top-message__title {
    font-size: 1.5rem;
    margin-inline: -0.1875rem;
  }
}

.top-message__highlight {
  color: #3c845a;
}

.top-message__text {
  margin-top: 0.9375rem;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .top-message__text {
    font-size: 1rem;
    padding: 0rem 0.625rem;
  }
}

.top-message__button {
  margin-top: 1.875rem;
  text-align: center;
}

.top-message__link {
  padding: 0.8125rem 2.375rem;
  background-color: #008e5c;
  border-radius: 3.125rem;
  border: 2px solid #008e5c;
  display: inline-flex;
  gap: 0.4375rem;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 1280px) {
  .top-message__link {
    font-size: 0.875rem;
  }
}
.top-message__link::after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: block;
  background-image: url(../img/common/white-circle-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1280px) {
  .top-message__link::after {
    width: 0.8125rem;
    height: 0.8125rem;
  }
}

.top-service {
  padding: 7.5rem 0rem;
  background-color: #f1f0eb;
  /* ベースの緑 */
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-service {
    padding: 3.8125rem 0rem 4.375rem;
  }
}
.top-service::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/top/service-bgi.png");
  background-repeat: repeat;
  background-size: 3.0625rem 3.0625rem;
  /* ドットの間隔 */
  opacity: 0.1;
  /* ← ここで透過 */
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-service::before {
    background-size: 1.75rem 1.75rem;
  }
}

.top-service__inner {
  position: relative;
  z-index: 2;
}

.top-service__title {
  text-align: center;
}
.top-service__title span {
  color: #008e5c;
}
@media screen and (max-width: 768px) {
  .top-service__title span {
    display: block;
  }
}

.top-service__list {
  margin-top: 3.125rem;
  gap: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1280px) {
  .top-service__list {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .top-service__list {
    grid-template-columns: 1fr;
    margin-top: 1.25rem;
    gap: 1.25rem;
  }
}

.top-service__category-group {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-service__category-group {
    display: contents;
  }
}

.top-service__category {
  background-color: #fff;
  padding: 1.875rem;
  border-radius: 1.875rem;
  box-shadow: 0 0.25rem 0 0 rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .top-service__category {
    padding: 1.25rem;
    border-radius: 0.9375rem;
  }
}

.top-service__header {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  padding: 1.25rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .top-service__header {
    padding: 1.0625rem 0.75rem;
    gap: 0.3125rem;
  }
}

.top-service__header--exchange {
  background-color: #3c845a;
}

.top-service__header--unlock {
  background-color: #5b843c;
}

.top-service__header--duplicate {
  background-color: #3a8fb3;
}

.top-service__header--shop {
  background-color: #ea7e12;
}

.top-service__header--security {
  background-color: #c25e8e;
}

.top-service__icon {
  width: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-service__icon {
    width: 2.25rem;
  }
}

.top-service__heading {
  flex: 1;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .top-service__heading {
    font-size: 1.125rem;
  }
}

.top-service__lead {
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-service__lead {
    font-size: 0.875rem;
    margin-top: 0.9375rem;
  }
}

.top-service__items {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .top-service__items {
    margin-top: 0.9375rem;
    gap: 0.3125rem;
    grid-template-columns: 1fr;
  }
}

.top-service__item {
  background-color: #f7f7f7;
  border-radius: 0.625rem;
  display: flex;
  padding: 1.25rem 0.9375rem;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #191f20;
  justify-content: space-between;
  align-items: center;
  max-height: 3.875rem;
}
@media screen and (max-width: 768px) {
  .top-service__item {
    padding: 0.9375rem;
    font-size: 0.875rem;
  }
}
.top-service__item::after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.top-service__category--exchange .top-service__item::after {
  background-image: url(../img/common/green-circle-arrow.svg);
}

.top-service__category--unlock .top-service__item::after {
  background-image: url(../img/common/olive-circle-arrow.svg);
}

.top-service__category--duplicate .top-service__item::after {
  background-image: url(../img/common/blue-circle-arrow.svg);
}

.top-service__category--shop .top-service__item::after {
  background-image: url(../img/common/orange-circle-arrow.svg);
}

.top-service__category--security .top-service__item::after {
  background-image: url(../img/common/pink-circle-arrow.svg);
}

.top-achievement {
  background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.08) 1px,
    transparent 2px
  );
  background-size: 16px 16px;
  /* ドットの間隔 */
  padding: 7.25rem 0rem 7.5rem;
}
@media screen and (max-width: 768px) {
  .top-achievement {
    padding: 3.75rem 0rem;
  }
}

.top-achievement__inner {
  max-width: 101.875rem;
}

.top-achievement__label {
  text-align: center;
  margin-inline: auto;
  width: fit-content;
  background-color: #3c845a;
  border-radius: 1.875rem;
  padding: 0.625rem 1.875rem;
  color: #ffffff;
  font-size: 1.875rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .top-achievement__label {
    padding: 0.375rem 1.25rem;
    font-size: 1.125rem;
  }
}

.top-achievement__title {
  font-size: 2.75rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: center;
  padding-top: 1.3125rem;
}
@media screen and (max-width: 768px) {
  .top-achievement__title {
    padding-top: 0.75rem;
    font-size: 1.75rem;
  }
}

.top-achievement__highlight {
  font-size: 3.375rem;
  line-height: 1.3888888889;
  letter-spacing: 0.05em;
  font-weight: 700;
  background-color: #eac512;
  border-radius: 0.5rem;
  display: inline-block;
  padding: 0rem 0.625rem;
  margin-left: -0.625rem;
}
@media screen and (max-width: 768px) {
  .top-achievement__highlight {
    font-size: 2.25rem;
    margin-top: 0.3125rem;
    margin-left: initial;
  }
}

.top-achievement__catch {
  margin-top: 2.5rem;
  padding: 0.8125rem 1.0625rem;
  width: fit-content;
  margin-inline: auto;
  border-block: 2px solid #145337;
  font-size: 1.875rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #145337;
}
@media screen and (max-width: 768px) {
  .top-achievement__catch {
    padding: 0.625rem 0.4375rem;
    font-size: 1.125rem;
    text-align: center;
  }
}

.top-achievement__text {
  margin-top: 2.5rem;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-achievement__text {
    margin-top: 1.5625rem;
    font-size: 0.875rem;
  }
}

.top-achievement__list {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-achievement__list {
    margin-top: 1.5625rem;
  }
}

@media screen and (max-width: 768px) {
  .top-achievement__card:nth-of-type(n + 4) {
    display: none;
  }
}

.top-achievement__button-wrapper {
  margin-top: 4.5rem;
}
@media screen and (max-width: 768px) {
  .top-achievement__button-wrapper {
    margin-top: 1.875rem;
  }
}

.top-product {
  padding: 7.5rem 0rem 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-product {
    padding: 3.75rem 0rem 1.875rem;
  }
}

.top-product__bg {
  border-radius: 1.875rem;
  border: 0.25rem solid #3c845a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3.25rem 3.8125rem;
}
@media screen and (max-width: 768px) {
  .top-product__bg {
    flex-direction: column;
    padding: 1.75rem 1rem;
  }
}

.top-product__image-wrapper img {
  border-radius: 1.25rem;
}

.top-product__image-wrapper--left {
  flex-basis: 19.1304347826%;
}
@media screen and (max-width: 768px) {
  .top-product__image-wrapper--left {
    width: 100%;
  }
}

.top-product__content {
  max-width: 33.75rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top-product__content {
    margin-top: 0.625rem;
  }
}

.top-product__label {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  padding: 0.5rem 1.375rem 0.5rem 1.25rem;
  background-color: #eac512;
  width: fit-content;
  border-radius: 1.875rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-product__label {
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0em;
    font-weight: 700;
    padding: 0.375rem 1.25rem;
  }
}
.top-product__label::after {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 13px solid #eac512;
  bottom: -13px;
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translate(-50%, 100%);
  display: block;
  width: 0.4375rem;
  height: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .top-product__label::after {
    bottom: 6px;
  }
}
.top-product__label {
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #191f20;
}
@media screen and (max-width: 768px) {
  .top-product__label {
    font-size: 1rem;
  }
}

.top-product__heading {
  font-size: 2.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #145337;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .top-product__heading {
    font-size: 1.5rem;
    gap: 0.3125rem;
    margin-top: 0.8125rem;
  }
}
.top-product__heading::after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: block;
  flex-shrink: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/common/green-circle-arrow.svg);
}

.top-product__text {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #191f20;
}
@media screen and (max-width: 768px) {
  .top-product__text {
    font-size: 0.875rem;
    padding: 0rem 0.625rem;
    margin-top: 0.9375rem;
  }
}

.top-product__image-wrapper--right {
  flex-basis: 19.1304347826%;
}
@media screen and (max-width: 768px) {
  .top-product__image-wrapper--right {
    display: none;
  }
}

.top-caution {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .top-caution {
    padding-bottom: 3.75rem;
  }
}

.top-caution__bg {
  background-color: #f1f0eb;
  display: flex;
  align-items: center;
  padding: 3.75rem 5rem 3.875rem;
  border-radius: 1.875rem;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-caution__bg {
    flex-direction: column;
    padding: 1.9375rem 1.875rem 2.25rem;
    gap: 0;
  }
}

.top-caution__img {
  width: 17.8571428571%;
}
@media screen and (max-width: 768px) {
  .top-caution__img {
    width: 63.5714285714%;
    padding-right: 1.1875rem;
  }
}

.top-caution__contents {
  max-width: 55rem;
  width: 100%;
}

.top-caution__heading {
  font-size: 2.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #145337;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .top-caution__heading {
    margin-top: 1.25rem;
    font-size: 1.5rem;
    gap: 0.3125rem;
    justify-content: center;
  }
}
.top-caution__heading::after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: block;
  flex-shrink: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/common/green-circle-arrow.svg);
}

.top-caution__text {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #191f20;
}
@media screen and (max-width: 768px) {
  .top-caution__text {
    margin-top: 0.9375rem;
    font-size: 0.875rem;
  }
}

.sub-repair-heading {
  padding: 3.125rem 0rem 5rem;
}
@media screen and (max-width: 768px) {
  .sub-repair-heading {
    padding: 4.375rem 0rem 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .sub-repair-heading__inner {
    padding: 0rem 1.25rem;
  }
}

.sub-repair-heading__actions {
  padding-bottom: 7.5rem;
}

.sub-repair-heading__bottom-text {
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-repair-heading__bottom-text {
    margin-top: 5rem;
    font-size: 0.875rem;
    text-align: left;
  }
}

.sub-repair-detail {
  padding: 6.25rem 0 7.5rem;
}
@media screen and (max-width: 768px) {
  .sub-repair-detail {
    padding: 3.75rem 0rem 4.8125rem;
  }
}

.sub-repair-detail__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.sub-repair-detail__item {
  border-radius: 1.25rem;
  background-color: #fff;
  box-shadow: 0 0 1.25rem 0 rgb(0 0 0 / 10%);
}

@media (min-width: 769px) {
    .sub-repair-detail__item > a {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
}

.sub-repair-detail__image {
  border-radius: 1.25rem 1.25rem 0 0;
}
@media screen and (max-width: 768px) {
  .sub-repair-detail__image {
    border-radius: 0.625rem 0.625rem 0 0;
  }
}
.sub-repair-detail__image img {
  border-radius: 1.25rem 1.25rem 0 0;
  aspect-ratio: 400/260;
  object-fit: cover;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sub-repair-detail__image img {
    border-radius: 0.625rem 0.625rem 0 0;
    aspect-ratio: 340/221;
  }
}

.sub-repair-detail__contents {
  padding: 1.875rem 1.875rem 2.0625rem;
}

@media (min-width: 769px) { /* 768px */
    .sub-repair-detail__contents {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
}
@media screen and (max-width: 768px) {
  .sub-repair-detail__contents {
    padding: 1.25rem 1.25rem 1.5625rem;
  }
}

.sub-repair-detail__title {
  padding: 0.75rem 0.9375rem;
  background-color: #3c845a;
  color: #ffffff;
  font-size: 1.375rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  border-radius: 0.375rem;
}
@media screen and (max-width: 768px) {
  .sub-repair-detail__title {
    padding: 0.625rem;
    font-size: 1.125rem;
  }
}

.sub-repair-detail__text {
  margin-top: 0.9375rem;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #191f20;
}
@media screen and (max-width: 768px) {
  .sub-repair-detail__text {
    margin-top: 0.75rem;
    font-size: 0.875rem;
  }
}

.sub-repair-detail__button-area {
  margin-top: 0.9375rem;
  text-align: right;
}

@media (min-width: 769px) { 
    .sub-repair-detail__button-area {
        margin-top: auto;
        padding-top: 1rem;
    }
}

@media screen and (max-width: 768px) {
  .sub-repair-detail__button-area {
    margin-top: 0.75rem;
  }
}

.sub-repair-detail__button {
  color: #191f20;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: inline-flex;
  gap: 0.625rem;
  align-items: center;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #008e5c;
}
@media screen and (max-width: 768px) {
  .sub-repair-detail__button {
    font-size: 0.875rem;
  }
}
.sub-repair-detail__button::after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: block;
  background-image: url(../img/common/green-circle-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.sub-service-heading {
  padding: 3.125rem 0 7.375rem;
}
@media screen and (max-width: 768px) {
  .sub-service-heading {
/*     padding: 1.5625rem 0rem 3.8125rem; */
    padding: 1.5625rem 0rem 3rem;
  }
}

.sub-service-flow {
  padding: 6.375rem 0rem 0rem;
}
@media screen and (max-width: 768px) {
  .sub-service-flow {
    padding: 3.75rem 0rem 0rem;
  }
}

.sub-service-flow__inner {
  max-width: 59.375rem;
}
@media screen and (max-width: 768px) {
  .sub-service-flow__inner {
    max-width: 31.25rem;
  }
}

.sub-service-flow__title {
  text-align: center;
}

.sub-service-flow__list {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  margin-top: 1.25rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .sub-service-flow__list {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .sub-service-flow__list {
    margin-top: 1.125rem;
  }
}
.sub-service-flow__list::before {
  position: absolute;
  content: "";
  display: block;
  width: 4px;
  height: calc(100% - 10rem);
  background-color: #3c845a;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sub-service-flow__list::before {
    width: 2px;
  }
}

.sub-service-flow__item {
  background-color: #edf5f1;
  border-radius: 1.875rem;
  padding: 3.8125rem 3.125rem 3.125rem;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .sub-service-flow__item {
    padding: 1.5625rem 1.25rem;
    border-radius: 0.9375rem;
  }
}
.sub-service-flow__item:nth-of-type(n + 2) {
  padding: 3.125rem;
}
@media screen and (max-width: 768px) {
  .sub-service-flow__item:nth-of-type(n + 2) {
    padding: 1.5625rem 1.25rem;
  }
}

.sub-service-flow__content {
  display: grid;
  grid-template-columns: 10rem 1fr;
  gap: 1.875rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sub-service-flow__content {
    grid-template-columns: 6.875rem 1fr;
    gap: 0 0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .sub-service-flow__body {
    display: contents;
  }
}

.sub-service-flow__step-label {
  color: #008e5c;
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .sub-service-flow__step-label {
    font-size: 0.9375rem;
  }
}

.sub-service-flow__step-title {
  margin-top: 0.125rem;
  font-size: 1.75rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sub-service-flow__step-title {
    font-size: 1.25rem;
  }
}

.sub-service-flow__contact {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .sub-service-flow__contact {
    grid-column: 1/3;
  }
}

.sub-service-flow__tel {
  display: flex;
  align-items: baseline;
  gap: 1.0625rem;
}
@media screen and (max-width: 768px) {
  .sub-service-flow__tel {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }
}

.sub-service-flow__tel-number {
  font-size: 2.375rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 700;
  color: #008e5c;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .sub-service-flow__tel-number {
    padding: 0.625rem 1.1875rem;
    background-color: #fff;
    border-radius: 3.125rem;
    margin-inline: auto;
  }
}

.sub-service-flow__tel-note {
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #191f20;
}
@media screen and (max-width: 768px) {
  .sub-service-flow__tel-note {
    margin-top: 0.375rem;
    font-size: 0.75rem;
    text-align: center;
    display: block;
    margin-inline: auto;
  }
}

.sub-service-flow__buttons {
  margin-top: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .sub-service-flow__buttons {
    margin-top: 0.75rem;
    flex-direction: column;
    padding: 0rem 0.625rem;
  }
}
.sub-service-flow__buttons svg {
  width: 1.875rem;
  height: 1.875rem;
}
.sub-service-flow__buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  padding: 0.5rem 1.75rem;
  border-radius: 2.5rem;
  border: 0.125rem solid #008e5c;
}
@media screen and (max-width: 768px) {
  .sub-service-flow__buttons a {
    width: 100%;
    padding: 0.9375rem 1.25rem;
  }
}
.sub-service-flow__buttons a span {
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.sub-service-flow__btn-mail {
  background-color: #008e5c;
}

.sub-service-flow__btn-mail-text {
  color: #ffffff;
}

.sub-service-flow__btn-line {
  background-color: #fff;
}

.sub-service-flow__btn-line-text {
  color: #008e5c;
}

.sub-service-flow__step-text {
  margin-top: 0.9375rem;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-service-flow__step-text {
    grid-column: 1/3;
    font-size: 0.875rem;
  }
}

.sub-service-info {
  padding: 8.625rem 0 7.5rem;
}
@media screen and (max-width: 768px) {
  .sub-service-info {
    padding: 3.75rem 0;
  }
}

.sub-service-info__bg {
  background-color: #f1f0eb;
  display: grid;
  grid-template-columns: 600fr 680fr;
  border-radius: 1.875rem;
}
@media screen and (max-width: 768px) {
  .sub-service-info__bg {
    display: block;
    border-radius: 0.9375rem;
  }
}

.sub-service-info__media {
  position: relative;
}

.sub-service-info__label-area {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sub-service-info__label {
  position: relative;
  display: block;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  padding: 0.5rem 1.375rem 0.5rem 1.25rem;
  background-color: #eac512;
  width: fit-content;
  border-radius: 1.875rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-service-info__label {
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0em;
    font-weight: 700;
    padding: 0.375rem 1.25rem;
  }
}
.sub-service-info__label::after {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 13px solid #eac512;
  bottom: -13px;
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translate(-50%, 100%);
  display: block;
  width: 0.4375rem;
  height: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .sub-service-info__label::after {
    bottom: 6px;
  }
}

.sub-service-info__image {
  aspect-ratio: 600/526;
  object-fit: cover;
  border-radius: 1.875rem 0 0 1.875rem;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .sub-service-info__image {
    border-radius: 0.9375rem 0.9375rem 0 0;
    aspect-ratio: 340/230;
  }
}

.sub-service-info__content {
  padding: 3.125rem 3.75rem 3.125rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .sub-service-info__content {
    padding: 1.25rem 1.25rem 1.9375rem;
  }
}

.sub-service-info__title {
  color: #145337;
}
@media screen and (max-width: 768px) {
  .sub-service-info__title {
    font-size: 1.5rem;
    line-height: 1.4;
    text-align: center;
  }
}

.sub-service-info__list {
  margin-top: 1.25rem;
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 1.3125rem 1.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .sub-service-info__list {
    margin-top: 0.9375rem;
    padding: 1.375rem 1.25rem 1.1875rem;
  }
}

.sub-service-info__term {
  padding: 0.625rem 0.9375rem;
  background-color: #fff;
  background-color: #3c845a;
  border-radius: 0.5rem;
  color: #ffffff;
  font-size: 1.375rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sub-service-info__term {
    padding: 0.5rem 0.625rem;
    font-size: 1rem;
    border-radius: 0.625rem;
    border-radius: 0.375rem;
  }
}

.sub-service-info__description {
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 400;
  padding: 0.625rem 0 0 0.9375rem;
}
@media screen and (max-width: 768px) {
  .sub-service-info__description {
    padding: 0.3125rem 0rem 0rem 0rem;
    font-size: 0.875rem;
  }
}

.sub-service-info__item:nth-of-type(-n + 2) {
  padding-bottom: 0.9375rem;
}

.sub-service-area {
  padding: 6.25rem 0rem 7.8125rem;
  position: relative;
  background-color: #f7f7f7;
  position: relative;
  z-index: 3;
}
.sub-service-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/top/service-bgi.png");
  background-repeat: repeat;
  background-size: 3.0625rem 3.0625rem;
  /* ドットの間隔 */
  opacity: 0.06;
  /* ← ここで透過 */
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .sub-service-area::before {
    background-size: 1.75rem 1.75rem;
  }
}
@media screen and (max-width: 768px) {
  .sub-service-area {
    padding: 3.75rem 0rem;
  }
}

.sub-service-area__inner {
  position: relative;
  z-index: 4;
}
.sub-service-area__title {
  color: #145337;
  text-align: center;
}

.sub-service-area__contents {
  display: grid;
  grid-template-columns: 730fr 500fr;
  align-items: flex-end;
  gap: 3.125rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .sub-service-area__contents {
    margin-top: 1.125rem;
    gap: 1.5625rem;
    display: flex;
    flex-direction: column-reverse;
  }
}

.sub-service-area__item + .sub-service-area__item {
  margin-top: 1.5rem;
}
@media screen and (max-width: 768px) {
  .sub-service-area__item + .sub-service-area__item {
    margin-top: 1rem;
  }
}

.sub-service-area__term {
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #145337;
}
@media screen and (max-width: 768px) {
  .sub-service-area__term {
    font-size: 0.875rem;
  }
}

.sub-service-area__description {
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-top: 0.25rem;
}
@media screen and (max-width: 768px) {
  .sub-service-area__description {
    font-size: 0.875rem;
    margin-top: 0.375rem;
  }
}

.sub-service-area__note {
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .sub-service-area__note {
    margin-top: 0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .sub-service-area__map {
    padding: 0rem 1.25rem;
  }
}

.sub-service-area__map-image {
  border-radius: 1.875rem;
}

.sub-service-area-outside {
  padding: 7.5rem 0rem;
}
@media screen and (max-width: 768px) {
  .sub-service-area-outside {
    padding: 3.75rem 0rem;
  }
}

.sub-service-area-outside__inner {
  gap: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .sub-service-area-outside__inner {
    gap: 1.5625rem;
    flex-direction: column;
  }
}

.sub-service-area-outside__media {
  width: 34.375%;
}
@media screen and (max-width: 768px) {
  .sub-service-area-outside__media {
    width: 100%;
  }
}

.sub-service-area-outside__image {
  border-radius: 1.25rem;
}

.sub-service-area-outside__content {
  flex: 1;
}

.sub-service-area-outside__title {
  color: #145337;
  padding-bottom: 1.1875rem;
  border-bottom: 1px solid #dddddd;
}
@media screen and (max-width: 768px) {
  .sub-service-area-outside__title {
    padding-bottom: 0.875rem;
  }
}

.sub-service-area-outside__text {
  margin-top: 1.875rem;
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-service-area-outside__text {
    margin-top: 1.125rem;
    font-size: 0.875rem;
  }
}

.sub-service-faq {
  padding: 6.25rem 0rem 7.0625rem;
  background-image: url(../img/service/faq-bgi.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .sub-service-faq {
    padding: 3.75rem 0rem;
  }
}

.sub-service-faq__inner {
  max-width: 64.375rem;
}

.sub-service-faq__title {
  text-align: center;
}

.sub-service-faq__list {
  padding-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .sub-service-faq__list {
    padding-top: 1.125rem;
  }
}

.sub-service-faq__item + .sub-service-faq__item {
  padding-top: 1.25rem;
}

.sub-service-faq__question {
  padding: 1.25rem 1.4375rem 1.25rem 1.875rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  background-color: #fff;
  border-radius: 2.5rem;
  box-shadow: 0 0.25rem 0 0 rgba(0, 0, 0, 0.15);
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .sub-service-faq__question {
    padding: 0.9375rem 3rem 0.9375rem 1.25rem;
    gap: 0.625rem;
    border-radius: 1.25rem;
  }
}

.sub-service-faq__q-icon {
  background-color: #145337;
  border-radius: 50%;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 0.99;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  color: #ffffff;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .sub-service-faq__q-icon {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 1rem;
  }
}

.sub-service-faq__q-text {
  font-size: 1.375rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .sub-service-faq__q-text {
    text-align: left;
    font-size: 1.125rem;
  }
}

.sub-service-faq__answer {
  padding: 1.875rem 3.125rem 3.125rem 1.875rem;
  background-color: #fff;
  margin-top: 1.25rem;
  border-radius: 1.875rem;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .sub-service-faq__answer {
    padding: 1.25rem;
    margin-top: 1rem;
  }
}

.sub-service-faq__answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .sub-service-faq__answer-inner {
    gap: 0.625rem;
  }
}

.sub-service-faq__a-icon {
  background-color: #eac512;
  border-radius: 50%;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 0.99;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  color: #191f20;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .sub-service-faq__a-icon {
    width: 1.875rem;
    height: 1.875rem;
    font-size: 1rem;
  }
}

.sub-service-faq__a-body {
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-service-faq__a-body {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.sub-service-faq__a-text {
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-service-faq__a-text {
    font-size: 1rem;
    line-height: 1.6;
  }
}

.sub-service-faq__question::after {
  content: "";
  position: absolute;
  background-image: url(../img/service/accordion-open.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  font-size: 1.25rem;
  line-height: 0.99;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.sub-service-faq__question.is-open::after {
  content: "";
  background-image: url(../img/service/accordion-close.svg);
}

.sub-service-links {
    margin: 7.5rem 0rem 8.9375rem;
}
@media screen and (max-width: 768px) {
  .sub-service-links {
    margin: 3.75rem 0rem 4.8125rem;
  }
}

.sub-service-links__list {
  display: grid;
  gap: 2.3125rem 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1280px) {
  .sub-service-links__list {
    grid-template-columns: 1fr;
    max-width: 43.75rem;
    margin-inline: auto;
  }
}
@media screen and (max-width: 768px) {
  .sub-service-links__list {
    display: flex;
    flex-direction: column;
    gap: 0.9375rem;
  }
}

.sub-service-links__link {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1.875rem;
  padding: 3.5625rem 2.3125rem;
  border: 0.1875rem solid #3c845a;
  border-radius: 1.25rem;
}
@media screen and (max-width: 768px) {
  .sub-service-links__link {
    grid-template-columns: 6.25rem 1fr;
    gap: 0 0.9375rem;
    padding: 1.6875rem 1.0625rem;
    border-radius: 0.625rem;
  }
}

@media screen and (max-width: 768px) {
  .sub-service-links__content {
    display: contents;
  }
}

.sub-service-links__title {
  font-size: 2.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #145337;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .sub-service-links__title {
    font-size: 1.5rem;
  }
}
.sub-service-links__title::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  background-image: url(../img/common/green-circle-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .sub-service-links__title::after {
    width: 1rem;
    height: 1rem;
  }
}

.sub-service-links__text {
  margin-top: 0.9375rem;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #191f20;
}
@media screen and (max-width: 768px) {
  .sub-service-links__text {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    grid-column: 1/3;
  }
}

.sub-intro {
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .sub-intro {
    padding-bottom: 3.75rem;
  }
}

.sub-intro__bg {
  background-color: #f1f0eb;
  border-radius: 1.875rem;
  display: grid;
  grid-template-columns: 530fr 750fr;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sub-intro__bg {
    border-radius: 0.9375rem;
    display: flex;
    flex-direction: column;
  }
}

.sub-intro__media {
  position: relative;
  height: 100%;
}

.sub-intro__badge-area {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.sub-intro__badge {
  position: relative;
  display: block;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0em;
  font-weight: 700;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  padding: 0.5rem 1.375rem 0.5rem 1.25rem;
  background-color: #eac512;
  width: fit-content;
  border-radius: 1.875rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-intro__badge {
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 0em;
    font-weight: 700;
    padding: 0.375rem 1.25rem;
  }
}
.sub-intro__badge::after {
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 13px solid #eac512;
  bottom: -13px;
  content: "";
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translate(-50%, 100%);
  display: block;
  width: 0.4375rem;
  height: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .sub-intro__badge::after {
    bottom: 6px;
  }
}
@media screen and (max-width: 768px) {
  .sub-intro__badge {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}

.sub-intro__image {
  height: 100%;
  aspect-ratio: 530/358;
  object-fit: cover;
  border-radius: 1.875rem 0 0 1.875rem;
}
@media screen and (max-width: 768px) {
  .sub-intro__image {
    aspect-ratio: 340/229;
    border-radius: 0.9375rem 0.9375rem 0 0;
  }
}

.sub-intro__content {
  padding: 2.5rem 3.75rem 2.5rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .sub-intro__content {
    padding: 1.25rem 1.25rem 1.875rem;
  }
}

.sub-intro__title {
  font-size: 2.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #145337;
}
@media screen and (max-width: 768px) {
  .sub-intro__title {
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
    font-weight: 700;
    text-align: center;
  }
}

.sub-intro__catch {
  margin-top: 1.25rem;
  font-size: 1.375rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 0.5625rem;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .sub-intro__catch {
    font-size: 1rem;
    padding-bottom: 0.3125rem;
    width: 100%;
    margin-inline: auto;
    text-align: center;
  }
}

.sub-intro__text {
  margin-top: 0.625rem;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sub-intro__text {
    font-size: 0.875rem;
  }
}

.sub-intro__button {
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .sub-intro__button {
    text-align: center;
  }
}

.sub-intro__link {
  background-color: #008e5c;
  color: #ffffff;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 0.8125rem 2.375rem;
  border-radius: 2.5rem;
  border: 0.125rem solid #008e5c;
  display: inline-flex;
  gap: 0.4375rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sub-intro__link {
    font-size: 0.875rem;
    padding: 0.625rem 1.4375rem;
  }
}
.sub-intro__link::after {
  content: "";
  width: 1rem;
  height: 1rem;
  display: block;
  background-image: url(../img/common/white-circle-arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .sub-intro__link::after {
    width: 0.8125rem;
    height: 0.8125rem;
  }
}


/*------------------------------------------------------------
FVスライダー
------------------------------------------------------------*/

.top-fv__image-main {
    position: relative;
}

.top-fv__slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.top-fv__slider .swiper-wrapper,
.top-fv__slider .swiper-slide,
.top-fv__slider picture,
.top-fv__slider img {
    width: 100%;
    height: 100%;
}

.top-fv__slider picture,
.top-fv__slider img {
    display: block;
}

.top-fv__slider img {
    object-fit: cover;
}

.top-fv__image-sub-outer {
    position: absolute;
    z-index: 10;
}

/*------------------------------------------------------------
プライバシーポリシー
------------------------------------------------------------*/

.privacy-policy-area {max-width: 40rem;margin: auto;text-align: center;}

.privacy-policy-area .privacy-policy-area__checkbox {
    display: inline;
}

.privacy-policy-area .privacy-policy-area__text {
    margin-bottom: 1rem;
}

.privacy-policy-area .privacy-policy-area__text a {
    text-decoration: underline;
    color: #d57a36;
}

@media screen and (max-width: 768px) {
  .privacy-policy-area .privacy-policy-area__text {
    line-height: 1.8
  }
}


/*問合せ用モーダルウィンドウ*/
.sub-contact__modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.sub-contact__modal.is-open {
  display: block;
}

.sub-contact__modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.sub-contact__modal-dialog {
  position: relative;
  z-index: 1;
  width: min(60rem, calc(100% - 2rem)); /* 960px → 60rem, 32px → 2rem */
  max-height: calc(100vh - 12rem);       /* 32px → 2rem */
  margin: 10rem auto;                    /* 16px → 1rem */
  padding: 2rem 1.5rem 1.5rem;          /* 32px 24px 24px */
  background: #fff;
  border-radius: 0.75rem;               /* 12px → 0.75rem */
  overflow-y: auto;
  box-sizing: border-box;
}

.sub-contact__modal-close {
  position: absolute;
  top: 0.75rem;     /* 12px */
  right: 0.75rem;   /* 12px */
  width: 2.5rem;    /* 40px */
  height: 2.5rem;   /* 40px */
  border: 0;
  background: #fff;
  font-size: 1.75rem; /* 28px */
  line-height: 1;
  cursor: pointer;
  color: #ea7e12;
}

.sub-contact__modal .photo-thumbnail-stn ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;        /* 16px */
  list-style: none;
  padding: 0;
  margin: 0;
}

.sub-contact__modal .photo-thumbnail-stn li {
  width: calc(50% - 0.5rem); /* 8px */
}

.sub-contact__modal .photo-thumbnail-stn img {
  display: block;
  width: 100%;
  height: auto;
}

body.is-modal-open {
  overflow: hidden;
}

.sub-contact__modal .middle-title {
    text-align: center;
    border-bottom: 1px solid #60b597;
    font-size: 2rem;
    padding-bottom: 1rem;
}

.photo-modal__desc {
    font-size: 1.275rem;
    color: #008e5c;
    font-weight: bold;
    text-align: center;
    margin: 1rem 0 2rem;
}

.photo-modal__catch {
    font-size: 1.275rem;
    color: #008e5c;
    font-weight: bold;
    margin-bottom: 1rem;
}

.photo-thumbnail-stn {
    background: #edf5f1;
    padding: 2rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
}

.photo-thumbnail-stn img {
    margin-bottom: 1rem;
}

.photo-note {
    background: #fff;
    padding: 1rem 1.275rem;
    margin: 1rem 0 0;
    border-radius: 1rem;
}

.photo-note strong {
    color: #ea7e12;
}

.sub-contact__modal-footer {
  margin-top: 2rem;
  text-align: center;
}

.sub-contact__modal-close-text {
  background: none;
  border: none;
  font-size: 1.475rem;
  color: #ea7e12;
  text-decoration: underline;
  cursor: pointer;
}

.sub-contact__modal-close-text:hover {
  opacity: 0.7;
}

@media (max-width: 767px) { /* 767px */
  .sub-contact__modal-dialog {
    width: calc(100% - 1.25rem);     /* 20px */
    max-height: calc(100vh - 1.25rem);
    margin: 0.625rem auto;           /* 10px */
    padding: 1.75rem 1rem 1rem;      /* 28px 16px 16px */
}

.sub-contact__modal .photo-thumbnail-stn li {
    width: 100%;
}
.sub-contact__modal-close-text {
  padding: 1rem 0;
  display: inline-block;
}
}
/*# sourceMappingURL=sourcemaps/style.css.map */
