@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
body {
  background-color: #fcfdf9;
  color: #333333;
}

body {
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}

/*モバイルのみ表示*/

/*画像の縦横比設定*/
img {
  display: block;
  width: 100%;
  height: auto;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
html,
body {
  overflow-x: clip;
}

html {
  /* ベースのフォントサイズ */
  font-size: 16px;
  /* スマートフォン 375px以下 */
  /* タブレット 376px~inner */
  /* PC inner以上 */
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  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;
  padding: 0;
}

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

/* 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]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

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

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

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

/* フォームリセット */
input:not([type="checkbox"]),
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  font: inherit;
}

textarea {
  resize: vertical;
}

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

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

/*addressタグのフォントリセット*/
address {
  font-style: normal;
}

.bg-shadow {
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  aspect-ratio: 375/365;
  mix-blend-mode: multiply;
}

.bg-shadow img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  mask-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(80%, rgb(0, 0, 0)),
    to(rgba(0, 0, 0, 0))
  );
  mask-image: linear-gradient(
    to bottom,
    rgb(0, 0, 0) 80%,
    rgba(0, 0, 0, 0) 100%
  ); /* 100%で完全に透明 */
  -webkit-mask-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(80%, rgb(0, 0, 0)),
    to(rgba(0, 0, 0, 0))
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgb(0, 0, 0) 80%,
    rgba(0, 0, 0, 0) 100%
  );
}

/*blogセクション*/

.blog-card__image {
  aspect-ratio: 320/208;
  margin: auto;
  overflow: hidden;
  border-radius: 0.3125rem;
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.blog-card__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: scale 1s ease-in-out;
  transition: scale 1s ease-in-out;
}
.blog-card__date {
  margin-top: 0.5rem;
  color: #c4c4c4;
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  font-family: "Inter", sans-serif;
}

.blog-card__tags {
  margin-top: 0.5rem;
}

.blog-card__categories {
  margin-top: 1.5rem;
}

.blog-card__title {
  margin-top: 0.5rem;
  color: #333333;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.6;
  word-wrap: break-word; /* IE対応（古） */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  word-break: break-word; /* 非標準だけど現役 */
  overflow-wrap: anywhere; /* 標準仕様 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumb {
  z-index: 70;
  position: relative;
}

.breadcrumb span {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
}

.breadcrumb span:not(:first-child) {
  margin-left: 0.5rem;
}

.breadcrumb__arrow {
  display: inline-block;
  position: relative;
  margin-right: 0.5rem;
}

.breadcrumb__arrow::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.25rem;
  height: 1lh;
  translate: 0 -50%;
  background-image: url(../images/00_common/breadcrumbs/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.breadcrumb a,
.breadcrumb span {
  color: #5c8273;
}

.btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.btn.btn--top-blog {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.btn.btn--error {
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-left: 4.5rem;
}

.btn::before,
.btn::after {
  z-index: -1;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.btn::before {
  top: -1.375rem;
  left: -2.9375rem;
  width: 19.6875rem;
  height: 7.25rem;
  background-image: url(../images/00_common/text/handwriting-ellipse1.svg);
}

.btn::after {
  top: -1.125rem;
  left: 0.6875rem;
  width: 15.875rem;
  height: 6.5rem;
  background-image: url(../images/00_common/text/handwriting-ellipse2.svg);
}

.btn.btn--top-blog::before {
  top: -1.375rem;
  left: 0.5625rem;
}

.btn.btn--top-blog::after {
  top: -1.125rem;
  left: 3.3125rem;
}

.btn.btn--error::before {
  background-image: url(../images/07_404/handwriting-ellipse-gold1.svg);
}

.btn.btn--error::after {
  background-image: url(../images/07_404/handwriting-ellipse-gold2.svg);
}

.btn__text {
  position: relative;
  color: #5c8273;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.21875;
  font-family: "Inter", sans-serif;
}

.btn__text.btn__text--white {
  color: #fff;
}

.btn__icon {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
}

.btn__icon::before {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url(../images/00_common/btn/after/icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.sp-btn {
  display: block;
  width: 16.875rem;
  padding-block: 0.5625rem;
  background-color: #5c8273;
  border-radius: 40px;
  font-size: 1.25rem;
  color: #fff;
  position: relative;
  text-align: center;
}
.sp-btn::before {
  position: absolute;
  top: 60%;
  right: 1.25rem;
  translate: 0 -50%;
  width: 1rem;
  height: 1.5rem;
  background-image: url(../images/00_common/btn/sp_btn_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.btn.btn--contact::before {
  left: -2.3125rem;
}

.btn.btn--contact::after {
  left: 0.4375rem;
}

.btn__text.btn__text--contact {
  margin-left: 3.125rem;
}

.btn.btn--contact-page {
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  margin-inline: auto;
}

.btn__text.btn__text--contact-page {
  margin-left: 4.375rem;
}

.btn.btn--contact-page::before {
  left: -3.5rem;
}

.btn.btn--contact-page::after {
  left: -0.625rem;
}

.btn.btn--contact-form {
  margin-inline: auto;
}

.btn.btn--contact-form::before {
  left: -3.5625rem;
}

.btn.btn--contact-form::after {
  left: -0.875rem;
}

.btn__text input[type="submit"] {
  padding-right: 4.3125rem;
  padding-left: 0;
  color: #5c8273;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.21875;
  font-family: "Inter", sans-serif;
}

.btn__text.btn__text--contact-form {
  margin-left: 4rem;
}

.btn__text.btn__text--contact-form::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/00_common/btn/before/icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  -webkit-transition: background-image 0.3s;
  transition: background-image 0.3s;
}

.btn__line {
  display: none;
}

.category-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.25rem;
  -moz-column-gap: 0.25rem;
  column-gap: 0.25rem;
  row-gap: 0.25rem;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.category-item.category-item--works-single-info {
  gap: 0.75rem;
}

.category-item.category-item--archive-head {
  -webkit-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
  row-gap: 1rem;
  width: 32.5rem;
}

.category-item__item {
  min-width: 7.5rem;
  border: 1px solid #5c8273;
  border-radius: 20px;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  font-family: "Inter", sans-serif;
  text-align: center;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.category-item__item.category-item__item--small {
  min-width: initial;
  padding-inline: 1.5rem;
  padding-block: 0.25rem;
}

.category-item__item a {
  display: inline-block;
  width: 100%;
  padding-inline: 0.625rem;
  padding-block: 0.25rem;
  color: #333333;
  line-height: 1;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.category-item__item.category-item__item--archive-head a {
  padding-block: 0.625rem;
}
.common-text {
  display: grid;
  gap: 2rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
}

.contact-cta-section {
  margin-top: 4.5625rem;
}

.contact-cta__inner {
  position: relative;
}

.contact-cta__content {
  padding-block: 6rem 10.1875rem;
  color: #5c8273;
  text-align: center;
}

.contact-cta__question {
  z-index: 1;
  position: relative;
  font-weight: 400;
  font-size: 1rem;
}

.contact-cta__question::before {
  position: absolute;
  top: -2.6875rem;
  left: 50%;
  width: 2.6875rem;
  height: 2.6875rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: url(../images/00_common/motif/hanabi.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.contact-cta__question {
  position: relative;
  font-weight: 400;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}

.contact-cta__btn {
  z-index: 1;
  margin-top: 2.9375rem;
  margin-inline: auto;
}

.contact-cta__text {
  z-index: 2;
  position: relative;
}

.contact-cta__text span {
  display: inline-block;
  position: relative;
  margin-top: 2.3125rem;
  padding-left: 1.8125rem;
  font-weight: 400;
  font-size: 0.875rem;
}

.contact-cta__text span::before {
  position: absolute;
  top: 60%;
  left: 0;
  width: 1.5625rem;
  height: 1.4375rem;
  -webkit-transform: translateY(-50%) scaleX(-1) rotate(15deg);
  transform: translateY(-50%) scaleX(-1) rotate(15deg);
  background-image: url(../images/00_common/eye/green.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.contact-cta__image {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 0.3125rem;
}

.contact-cta__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.contact-cta__image.contact-cta__image--first {
  aspect-ratio: 142/97;
  width: 8.875rem;
}

.contact-cta__image.contact-cta__image--second {
  aspect-ratio: 163/111;
  width: 10.1875rem;
}

.contact-cta__image.contact-cta__image--third {
  aspect-ratio: 99/137;
  width: 6.1875rem;
}

.contact-cta__image.contact-cta__image--fourth {
  aspect-ratio: 160/110;
  width: 10rem;
}

.contact-cta__image.contact-cta__image--sixth {
  aspect-ratio: 120/83;
  width: 7.5rem;
}

.contact-cta__image.contact-cta__image--seventh {
  aspect-ratio: 92/129;
  width: 5.75rem;
}

.customer-voice-section {
  margin-top: 5rem;
}

.footer {
  padding-block: 4.75rem 2.9375rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@supports (background-image: url(../images/00_common/footer/sp/img.webp)) {
  .footer {
    background-image: url(../images/00_common/footer/sp/img.webp);
  }
}

.footer__title-wrap {
  position: relative;
}

/* 回転アニメーション */
@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.footer__title-icon {
  position: absolute;
  top: -1.875rem;
  left: 0;
  width: 3.375rem;
  height: 3.375rem;
  -webkit-animation: rotation 10s linear infinite;
  animation: rotation 10s linear infinite;
}

.footer__title {
  z-index: 1;
  position: relative;
  max-width: 16.5rem;
  margin-left: 1.6875rem;
}

.footer__text {
  display: block;
  margin-top: 1.5rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.5;
}

.footer__nav {
  margin-top: 0.875rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 1.5625rem;
  width: calc(268/375*100%);
  min-width: 268px;
}


.footer__nav-item {
  position: relative;
}

.footer__nav-link {
  color: #218598;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  transition: opacity 0.3s;
  padding-left: 0.3125rem;
}

.footer__nav-link:hover {
  opacity: 0.7;
}

/* 花火の擬似要素 */
.footer__nav-link::after {
  content: '';
  position: absolute;
  top: -0.3125rem;
  left: 0;
  width: 0.625rem;
  height: 0.625rem;
  background-image: url(../images/00_common/motif/hanabi.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.footer__privacy {
  margin-top: 2rem;
}

.footer__privacy-link {
  color: #218598;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  transition: opacity 0.3s;
}

.footer__privacy-link:hover {
  opacity: 0.7;
}

.footer__copy {
  margin-top: 2rem;
  color: #B8A274;
  font-weight: 400;
  font-size: 0.875rem;
  text-align: center;
}

/*ハンバーガーメニュー*/
.hamburger {
  z-index: 20;
  width: 2.25rem;
  padding-top: 0.625rem;
  padding-inline: 0;
  -webkit-transition: opacity 0.3s 0s ease;
  transition: opacity 0.3s 0s ease;
}

.hamburger__icon.hamburger__icon--close {
  display: none;
}

.hamburger.is-openSP .hamburger__icon.hamburger__icon--close {
  display: block;
}

.hamburger.is-openSP .hamburger__icon.hamburger__icon--open {
  display: none;
}

.hamburger__text {
  margin-top: 0;
  color: #5c8273;
  font-size: 0.75rem;
  font-family: "Inter", sans-serif;
}

body.js-fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

.header {
  z-index: 61;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.header:has(.is-openSP) {
  z-index: 80;
}

.inner.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  height: inherit;
}

.header__logo {
  z-index: 100;
  max-width: 9.5625rem;
  width: 100%;
}

.image-box {
  z-index: 2;
  position: absolute;
}

.image-box.image-box--first {
  z-index: 60;
  top: -0.8125rem;
  left: 1rem;
  aspect-ratio: 214/130;
  width: 57.0666666667%;
}

.image-box.image-box--second {
  top: 4.3125rem;
  right: -2.125rem;
  aspect-ratio: 159/96;
  width: 42.4%;
}

.image-box.image-box--third {
  top: 17.9375rem;
  left: -2.125rem;
  aspect-ratio: 145/88;
  width: 38.6666666667%;
}

.image-box.image-box--fourth {
  top: 13.125rem;
  right: 2.5rem;
  aspect-ratio: 105/147;
  width: 28%;
}

.image-box.image-box--fifth {
  bottom: 8.6875rem;
  left: -2.5625rem;
  aspect-ratio: 198/120;
  width: 52.8%;
}

.image-box.image-box--seventh {
  right: -3.25rem;
  bottom: -0.1875rem;
  aspect-ratio: 281/170;
  width: 74.9333333333%;
}

.inner {
  width: 100%;
  max-width: 37.5rem;
  margin-inline: auto;
  padding-inline: 24px;
}

.js-parallax.vision__image img {
  height: 110%;
}

.js-parallax.top-blog__banner img {
  height: 110%;
}

.kirakira {
  position: absolute;
  top: 0;
  right: -1rem;
  width: 58.4097859327%;
  height: 48.3180428135%;
}

.page-title {
  position: relative;
  width: 19.875rem;
}

.page-title.page-title--privacy {
  width: 19.875rem;
  margin-inline: auto;
}

.page-title::before,
.page-title::after {
  position: absolute;
  background-image: url(../images/00_common/motif/hanabi.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.page-title::before {
  top: -1.3125rem;
  left: 0.4375rem;
  width: 3rem;
  height: 3rem;
}

.page-title::after {
  right: 2.3125rem;
  bottom: -0.8125rem;
  width: 2.4375rem;
  height: 2.4375rem;
}

.page-title__en {
  display: inline-block;
  z-index: 1;
  position: relative;
  padding-left: 1.1875rem;
  color: #5c8273;
  font-weight: 700;
  font-size: 4.5rem;
  line-height: 1.21;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.04em;
}

.page-title__en.page-title__en--contact {
  padding-left: 0;
}

.page-title__en.page-title__en--privacy {
  font-size: 2.5rem;
  line-height: 1;
}

.page-title__images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-title__image {
  position: absolute;
}

.page-title__image.page-title__image--first {
  top: 0.875rem;
  left: 0;
  width: 19.875rem;
  height: 7.25rem;
}

.page-title__image.page-title__image--second {
  top: 1.3125rem;
  right: 1.25rem;
  width: 16.125rem;
  height: 6.625rem;
}

.page-title__image.page-title__image--privacy {
  top: -0.6875rem;
  left: 0;
  width: 19.875rem;
  height: 7.25rem;
}

/*トップへ戻る*/
.pagetop {
  display: none;
  z-index: 60;
  position: fixed;
  bottom: 5.75rem;
  left: 1.375rem;
}

.pagetop__link {
  display: grid;
  place-items: center;
  gap: 0.25rem;
}

.pagetop__icon {
  width: 1.3125rem;
  height: 1.3125rem;
}

.pagetop__text {
  width: 1.625rem;
  height: 0.875rem;
}

.pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2.875rem;
}

.pagination__item {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.page-numbers {
  color: #333333;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  font-family: "Inter", sans-serif;
}

.page-numbers.current {
  display: inline-block;
  position: relative;
  color: #fff;
}

.page-numbers.current::before {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.375rem;
  height: 2.375rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #5c8273;
  content: "";
}

.page-numbers.next,
.page-numbers.prev {
  position: relative;
}

.page-numbers.next::before,
.page-numbers.prev::before {
  position: absolute;
  top: 50%;
  width: 0.375rem;
  height: 0.875rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/00_common/arrow.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.page-numbers.next::before {
  right: 0;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.page-numbers.prev::before {
  left: 0;
}

.scroll {
  width: 100vw;
  overflow-x: auto;
}

.section-description {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.8;
  font-family: "Shippori Mincho", serif;
  opacity: 0;
}

.section-description.section-description--visible {
  opacity: 1;
}

.section-title {
  position: relative;
  width: 8.875rem;
  text-align: center;
}

.section-title.js-section-title {
  --before-opacity: 0;
  --after-opacity: 0;
}

.section-title.section-title--no-motif::before,
.section-title.section-title--no-motif::after {
  display: none;
}

.section-title::before,
.section-title::after {
  position: absolute;
  background-image: url(../images/00_common/motif/hanabi.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.section-title::before {
  top: -1.3125rem;
  left: 0.4375rem;
  width: 2.4375rem;
  height: 2.4375rem;
}

.section-title::after {
  right: 0.125rem;
  bottom: -0.6875rem;
  width: 2rem;
  height: 2rem;
}

.section-title.js-section-title::before {
  opacity: var(--before-opacity, 0);
}

.section-title.js-section-title::after {
  opacity: var(--after-opacity, 0);
}

.section-title__en {
  display: inline-block;
  z-index: 1;
  position: relative;
  color: #5c8273;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}

.section-title__en.js-section-title-en {
  opacity: 0;
}

.section-title__en.section-title__en--white {
  color: #fff;
  opacity: 1;
}

.section-title__images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section-title__image {
  position: absolute;
}

.section-title__image--first {
  top: 0.375rem;
  left: 0;
  width: 8.875rem;
  height: 3.0625rem;
}

.section-title__image--second {
  top: 0.3125rem;
  right: -0.125rem;
  width: 7.8125rem;
  height: 3.125rem;
}

.share {
  padding-block: 2.5rem;
  background-color: #f7f6ef;
  text-align: center;
}

.share__title {
  color: #5c8273;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
}

.share__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 3.1875rem;
}

.share__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 5.625rem;
  height: 3.25rem;
  border-radius: 0.625rem;
}

.share__item.share__item--facebook {
  background-color: #316ff6;
}

.share__item.share__item--x {
  background-color: #333333;
}

.share__link {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.share__link.share__link--facebook img {
  width: 2.25rem;
  height: 2.25rem;
}

.share__link.share__link--x img {
  width: 1.875rem;
  height: 1.875rem;
}

/* スマホメニュー*/
.sp-nav {
  visibility: hidden;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-x: clip;
  overflow-y: auto;
  background-color: #fcfdf9;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.sp-nav.is-openSP {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.sp-nav::before,
.sp-nav::after {
  position: absolute;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.sp-nav::before {
  background-image: url(../images/00_common/header/mail.png);
}

.sp-nav::after {
  right: -0.625rem;
  bottom: -0.3125rem;
  width: 16.375rem;
  height: 14.125rem;
  background-image: url(../images/00_common/motif/kirakira.svg);
}

.sp-nav__drawer {
  position: absolute;
  right: 3.75rem;
}

.sp-nav__inner {
  padding: 6.25rem 1.5rem 0 1.5rem;
}

.sp-nav__container {
  display: grid;
  row-gap: 3.0625rem;
}

.sp-nav__items {
  display: grid;
  gap: 3.0625rem;
}

.sp-nav__link {
  display: block;
  position: relative;
  color: #5c8273;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  font-family: "Inter", sans-serif;
}

.sp-nav__image {
  position: absolute;
}

.sp-nav__image.sp-nav__image--first {
  top: -0.4375rem;
  left: -1.125rem;
  width: 20.5625rem;
  height: 7.4375rem;
}

.sp-nav__image.sp-nav__image--second {
  top: 0.6875rem;
  left: 1.625rem;
  width: 16.6875rem;
  height: 6.8125rem;
}

.sp-nav__link span {
  display: block;
  position: relative;
}

.sp-nav__link span::before {
  z-index: -1;
  position: absolute;
  top: -1.0625rem;
  left: -1.125rem;
  width: 3rem;
  height: 3rem;
  background-image: url(../images/00_common/motif/hanabi.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.sp-nav__btn {
  margin-top: 3.5rem;
  margin-inline: auto;
}
@-webkit-keyframes twinkle {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes twinkle {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.star {
  -webkit-animation: twinkle 2s ease-in-out infinite;
  animation: twinkle 2s ease-in-out infinite;
}

.star:nth-child(18) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.star:nth-child(17) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.star:nth-child(16) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.star:nth-child(15) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.star:nth-child(14) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.star:nth-child(13) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.star:nth-child(12) {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

.star:nth-child(11) {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

.star:nth-child(10) {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

.star:nth-child(9) {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

.star:nth-child(8) {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.star:nth-child(7) {
  -webkit-animation-delay: 2.2s;
  animation-delay: 2.2s;
}

.star:nth-child(6) {
  -webkit-animation-delay: 2.4s;
  animation-delay: 2.4s;
}

.star:nth-child(5) {
  -webkit-animation-delay: 2.6s;
  animation-delay: 2.6s;
}

.star:nth-child(4) {
  -webkit-animation-delay: 2.8s;
  animation-delay: 2.8s;
}

.star:nth-child(3) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.star:nth-child(2) {
  -webkit-animation-delay: 3.2s;
  animation-delay: 3.2s;
}

.star:nth-child(1) {
  -webkit-animation-delay: 3.4s;
  animation-delay: 3.4s;
}

.svg-animation path {
  stroke-dasharray: var(--path-length, 500);
  stroke-dashoffset: var(--path-length, 500);
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

@-webkit-keyframes draw {
  0% {
    stroke-dashoffset: var(--path-length, 500);
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes draw {
  0% {
    stroke-dashoffset: var(--path-length, 500);
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.svg-animation.svg-animation--first path {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  -webkit-animation-name: draw;
  animation-name: draw;
}

.svg-animation.svg-animation--second path {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  -webkit-animation-name: draw;
  animation-name: draw;
}

.tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.75rem;
  -moz-column-gap: 0.75rem;
  column-gap: 0.75rem;
  row-gap: 0.5rem;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.tag-list__item a {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #5c8273;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.2142857143;
}

.title-wrap:has(.section-title) .title-wrap__description {
  margin-top: 1.5625rem;
}

.title-wrap__quote {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  line-height: 2;
  font-family: "Inter", sans-serif;
}

.we-think {
  margin-top: 6.125rem;
}

.we-think__list {
  display: grid;
  row-gap: 2.5rem;
  margin-top: 2.5rem;
}

.we-think__column {
  display: contents;
}

.we-think__item {
  position: relative;
  min-height: 22.4375rem;
  padding: 2rem 1.5rem;
  border-radius: 0.3125rem;
  background-color: #f7f6ef;
}

.we-think__item.we-think__item--first {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.we-think__item.we-think__item--second {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.we-think__item.we-think__item--third {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
}

.we-think__item.we-think__item--fourth {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
}

.we-think__item.we-think__item--fifth {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
  -ms-flex-order: 5;
  order: 5;
}

.we-think__item.we-think__item--sixth {
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
  -ms-flex-order: 6;
  order: 6;
}

.we-think__image {
  width: 5.4375rem;
  margin-inline: auto;
}

.we-think__item.we-think__item--fifth .we-think__image {
  width: 9.4375rem;
}

.we-think__item.we-think__item--sixth .we-think__image {
  width: 12.875rem;
}

.we-think__text {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 2;
}

.works-card {
  display: block;
  color: #333333;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.works-card__img {
  position: relative;
  aspect-ratio: 327/256;
  overflow: hidden;
  border-radius: 0.3125rem;
}

.works-card.works-card--new,
.works-card__img-wrap {
  position: relative;
}

.works-card.works-card--new::before,
.works-card__img-wrap::before {
  display: block;
  z-index: 1;
  position: absolute;
  top: -2.4375rem;
  right: -1rem;
  width: 4.8125rem;
  height: 4.8125rem;
  background-image: url(../images/00_common/motif/star.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.works-card__img img {
  height: 100%;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: scale(1);
  transform: scale(1);
  border-radius: 0.3125rem;
  -webkit-transition: -webkit-transform 1.5s ease;
  transition: -webkit-transform 1.5s ease;
  transition: transform 1.5s ease;
  transition: transform 1.5s ease, -webkit-transform 1.5s ease;
}

.works-card__content {
  margin-top: 1.5rem;
}

.works-card__title {
  position: relative;
  margin-top: 0.25rem;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 2;
  word-wrap: break-word; /* IE対応（古） */
  text-overflow: ellipsis;
  word-break: break-word; /* 非標準だけど現役 */
  overflow-wrap: anywhere; /* 標準仕様 */
}

.works-card__title::after {
  display: block;
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #b3b3b3;
  content: "";
}

.works-card__info {
  display: grid;
  margin-top: 2.125rem;
  gap: 0.5rem;
}

.works-card__info-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  gap: 1.5rem;
}

.works-card__info-item dt {
  color: #5c8273;
  font-weight: 500;
  height: 100%;
  font-size: 0.875rem;
}

.works-card__info-item dd {
  font-weight: 400;
}

.js-fade-in,
.js-stagger-fade {
  opacity: 0;
}

.about-concept {
  z-index: -1;
  position: relative;
  margin-top: 5.3125rem;
  padding: 8.25rem 1rem 3rem;
  border-radius: 0.3125rem;
  background-color: #f7f6ef;
}

.about-concept__concept {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.about-concept__title {
  margin-top: 2.125rem;
  margin-inline: auto;
}

.about-concept__concept-circle {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 17.875rem;
  border-radius: 50%;
  background-color: #5c8273;
  color: #fff;
  text-align: center;
}

.about-concept__concept-circle::before {
  z-index: -1;
  position: absolute;
  top: -5.6875rem;
  left: -0.125rem;
  width: 18.5625rem;
  height: 27.0625rem;
  background-image: url(../images/02_about/concept_sp.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.about-concept__concept-text {
  margin-top: 1.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 2;
}

.about-concept__concept-subtext {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 2;
  font-family: "Inter", sans-serif;
}

.about-concept__details {
  display: grid;
  margin-top: 3.375rem;
  gap: 1.5rem;
  text-align: center;
}

.about-concept__detail {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 13.75rem;
  border: 1px dotted #5c8273;
  border-radius: 50%;
  color: #5c8273;
  text-align: center;
}

.about-concept__detail::before,
.about-concept__detail::after {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/00_common/motif/hanabi.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.about-concept__detail.about-concept__detail--first::after,
.about-concept__detail.about-concept__detail--second::after {
  display: none;
}

.about-concept__detail.about-concept__detail--first::before {
  top: 7.9375rem;
  right: -2.5625rem;
  width: 3.9375rem;
  height: 3.9375rem;
}

.about-concept__detail.about-concept__detail--second::before {
  top: -1.8125rem;
  left: -5.1875rem;
  width: 5.75rem;
  height: 5.75rem;
}

.about-concept__detail.about-concept__detail--third::before {
  top: -2.5rem;
  left: 1.375rem;
  width: 3.9375rem;
  height: 3.9375rem;
}

.about-concept__detail.about-concept__detail--third::after {
  top: -0.125rem;
  right: -3.5rem;
  width: 5.75rem;
  height: 5.75rem;
}

.about-concept__detail.about-concept__detail--fourth::before {
  top: 0.375rem;
  left: -2.125rem;
  width: 4.1875rem;
  height: 4.1875rem;
}

.about-concept__detail.about-concept__detail--fourth::after {
  top: -4.3125rem;
  right: -0.25rem;
  width: 4.1875rem;
  height: 4.1875rem;
}

.about-concept__detail:nth-child(even) {
  margin-left: auto;
}

.about-concept__detail-title {
  margin-top: 2.625rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 2;
}

.about-concept__detail-text {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 2;
}

.vision {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.vision__description {
  margin-top: 1.5625rem;
}

.vision__image {
  aspect-ratio: 327/216;
  width: 100%;
  height: 66.0550458716%;
  margin-top: 1.5rem;
  overflow: hidden;
  border-radius: 0.3125rem;
}

.vision__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.3125rem;
}

.vision__text {
  margin-top: 2.5rem;
}

.vision__btn {
  margin-top: 3.9375rem;
  margin-inline: auto;
}

.who-we-are {
  margin-top: 6rem;
}

.who-we-are__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 3rem;
  gap: 3.625rem;
}

.who-we-are__media {
  position: relative;
}

.who-we-are__motif {
  position: absolute;
}

.who-we-are__motif.who-we-are__motif--first {
  top: -1.625rem;
  left: 3.4375rem;
  width: 2.9375rem;
  height: 2.9375rem;
}

.who-we-are__motif.who-we-are__motif--second {
  top: -2.125rem;
  right: -0.5625rem;
  width: 5.8125rem;
  height: 5.8125rem;
}

.who-we-are__motif.who-we-are__motif--third {
  bottom: -2.6875rem;
  left: -0.8125rem;
  width: 6.5rem;
  height: 6.5rem;
}

.who-we-are__motif.who-we-are__motif--fourth {
  right: 1.375rem;
  bottom: -2rem;
  width: 3.75rem;
  height: 3.75rem;
}

.who-we-are__image {
  aspect-ratio: 327/198;
  width: 100%;
}

.who-we-are__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.3125rem;
}

.wo-we-are__contents {
  display: grid;
  row-gap: 2.625rem;
}

.blog-archive__list {
  margin-top: 3.5rem;
}

.blog-archive__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5.3125rem;
}

.blog-archive__filter-group {
  z-index: 70;
}

.blog-archive__tag-list {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #c4c4c4;
}

.blog-archive__tag-list-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 2.3125rem;
}
summary {
  display: block;
}

/* Safariで表示されるデフォルトの三角形アイコンを消します */
summary::-webkit-details-marker {
  display: none;
}

.blog-archive__tag-list-en {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  font-family: "Inter", sans-serif;
}

.blog-archive__tag-list-ja {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.5rem;
}

.blog-archive__tag-list-ja-text {
  color: #5c8273;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.1875;
}

.blog-archive__tag-list-ja-icon {
  display: inline-block;
  position: relative;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background-color: #5c8273;
}

.blog-archive__tag-list-ja-icon::before,
.blog-archive__tag-list-ja-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.625rem;
  height: 0.125rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 10px;
  background-color: #fff;
  content: "";
}

.blog-archive__tag-list-ja-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

/* アコーディオンが開いた時のスタイル */
.blog-archive__tag-list[open] .blog-archive__tag-list-ja-icon::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
}

@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.blog-archive__tag-list[open] .blog-archive__tag-list-content {
  -webkit-animation: fadeIn 0.5s ease;
  animation: fadeIn 0.5s ease;
}

.blog-archive__tag-list-content {
  padding-top: 1.5rem;
}

.blog-archive__tag-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
  row-gap: 1.3125rem;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-archive__tag-item a {
  color: #333333;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.2142857143;
}

.blog-archive__pagination {
  margin-top: 3.5rem;
}

.blog-archive__recommend {
  margin-top: 6.6875rem;
}

.blog-list {
  display: grid;
  -webkit-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem;
  row-gap: 2.5rem;
}

.blog-recommend__list {
  margin-top: 2.5rem;
}

.contact-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.contact-btn::before,
.contact-btn::after {
  z-index: -1;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.contact-btn::before {
  top: -1.375rem;
  left: -2.9375rem;
  width: 19.6875rem;
  height: 7.25rem;
  background-image: url(../images/00_common/text/handwriting-ellipse1.svg);
}

.contact-btn::after {
  top: -1.125rem;
  left: 0.6875rem;
  width: 15.875rem;
  height: 6.5rem;
  background-image: url(../images/00_common/text/handwriting-ellipse2.svg);
}

.contact-btn__text {
  position: relative;
  color: #5c8273;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.21875;
  font-family: "Inter", sans-serif;
}

.contact-btn__text::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.3125rem;
  background-color: #5c8273;
  content: "";
  -webkit-transition: width 0.6s;
  transition: width 0.6s;
}

.contact-btn__text input[type="submit"] {
  color: #5c8273;
}

.contact-btn__icon {
  display: inline-block;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 1.8125rem;
}

.contact-btn__icon::before {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url(../images/00_common/btn/after/icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.contact-footer {
  margin-top: 8.375rem;
}

.contact-form__row:not(:first-child) {
  margin-top: 2.5rem;
}

.contact-form__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  row-gap: 1rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contact-form__label {
  width: 100%;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
}

.contact-form__required {
  position: relative;
}

.contact-form__required::before {
  display: inline;
  position: absolute;
  top: 0;
  right: -20px;
  content: "※";
  color: #911111;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.5;
  font-family: "Zen Old Mincho", serif;
}

.contact-form input:not([type="submit"], [type="button"], [type="checkbox"]),
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.6875rem 0.5rem;
  border-radius: 5px;
  background-color: #fff;
  font-size: 1rem;
}

.contact-form textarea {
  field-sizing: content;
  min-height: 13.5625rem;
}

.contact-form ::-webkit-input-placeholder {
  color: #bababa;
}

.contact-form ::-webkit-input-placeholder,
.contact-form ::-moz-placeholder,
.contact-form :-ms-input-placeholder,
.contact-form ::-ms-input-placeholder,
.contact-form ::placeholder {
  color: #bababa;
}

select[name="contact-type"] {
  color: #bababa; /* デフォルト色 */
}

.contact-form__privacy {
  margin-top: 5.4375rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.1875;
  text-align: center;
}

.contact-form__privacy a {
  color: #5c8273;
}

.contact-form__btn {
  margin-top: 2.5rem;
  margin-inline: auto;
}

.contact-form__btn {
  margin-top: 2.875rem;
}

.wpcf7-form-control-wrap {
  width: 100%;
}

.wpcf7-form-control-wrap:has(select) {
  position: relative;
}

.wpcf7-form-control-wrap:has(select)::before {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 1.1875rem;
  height: 1rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #5c8273;
  content: "";
  -webkit-clip-path: polygon(0% 0%, 80% 0%, 40% 80%);
  clip-path: polygon(0% 0%, 80% 0%, 40% 80%);
}

.wpcf7-spinner {
  display: none !important;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output {
  display: none;
}

.wpcf7-list-item:has(input[type="checkbox"]) {
  margin: 0;
}

input[type="checkbox"] {
  display: block !important;
  position: relative;
  top: 8px;
  left: -2px;
  width: 1.5625rem;
  height: 1.5625rem;
  border: 1px solid #cacaca;
  border-radius: 0.375rem;
}

.wpcf7-not-valid-tip {
  margin-top: 0.5rem;
  color: #911111;
}

.contact-page__container {
  margin-top: 5rem;
}

.contact-page__thanks-btn {
  margin-top: 5rem;
  text-align: center;
}

.contact-thanks {
  z-index: -1;
  position: relative;
  margin-top: 1.625rem;
  padding: 8.25rem 1rem 2.3125rem;
  border-radius: 0.3125rem;
  background-color: #f7f6ef;
}

.contact-thanks__concept {
  display: grid;
  gap: 3.5rem;
}

.contact-thanks__title {
  margin-top: 1.625rem;
  margin-inline: auto;
}

.contact-thanks__concept-circle {
  position: relative;
  aspect-ratio: 1/1;
  width: 100%;
  min-width: 19.0625rem;
  max-width: 19.0625rem;
  margin-inline: auto;
  border-radius: 50%;
  background-color: #5c8273;
  color: #fff;
  text-align: center;
}

.contact-thanks__concept-circle::before {
  z-index: -1;
  position: absolute;
  top: -5.6875rem;
  left: -0.125rem;
  width: 18.5625rem;
  height: 27.0625rem;
  background-image: url(../images/02_about/concept_sp.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.contact-thanks__concept-text {
  margin-top: 1.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 2;
}

.contact-thanks__concept-subtext {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 2;
  font-family: "Inter", sans-serif;
}

.contact-thanks__details {
  display: grid;
  gap: 2.0625rem;
}

.contact-thanks__detail {
  position: relative;
  color: #5c8273;
  font-weight: 700;
  font-size: 1rem;
  line-height: 2;
  text-align: center;
}

.contact-thanks__detail::before,
.contact-thanks__detail::after {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/00_common/motif/hanabi.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.contact-thanks__detail.contact-thanks__detail--first::after,
.contact-thanks__detail.contact-thanks__detail--second::after {
  display: none;
}

.contact-thanks__detail.contact-thanks__detail--first::before {
  right: 2.6875rem;
  bottom: -0.625rem;
  width: 3.9375rem;
  height: 3.9375rem;
}

.contact-thanks__detail.contact-thanks__detail--second::before {
  top: 0.25rem;
  left: -0.5rem;
  width: 5.75rem;
  height: 5.75rem;
}

.contact-thanks__detail.contact-thanks__detail--third::before {
  top: -3.3125rem;
  left: 1.4375rem;
  width: 3.9375rem;
  height: 3.9375rem;
}

.contact-thanks__detail.contact-thanks__detail--third::after {
  top: -0.875rem;
  right: 1.9375rem;
  width: 5.75rem;
  height: 5.75rem;
}

body:has(.error-page) {
  background-color: #2d2d2d;
}

.error-page {
  position: relative;
  height: 100vh;
}

.error-page__inner {
  position: relative;
}

.error-page__main {
  padding-top: 7.3125rem;
}

.error-page__title {
  width: 10.5625rem;
  margin-inline: 0 auto;
}

.error-page__sub-text {
  display: inline-block;
  position: relative;
  margin-top: 0.5rem;
  padding-right: 0.875rem;
  padding-left: 4.3125rem;
  color: #b8a274;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
}

.error-page__sub-text::before {
  display: inline-block;
  position: absolute;
  top: 0.5rem;
  right: 0;
  width: 0.6875rem;
  height: 0.6875rem;
  background-image: url(../images/00_common/motif/hanabi.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.error-page__btn {
  margin-top: 15.3125rem;
}

.error-page__star {
  position: absolute;
  top: 16.25rem;
  right: 0;
  width: 12rem;
  height: 10.375rem;
}

.error-page__star svg {
  width: 100%;
  height: 100%;
}

.privacy-page {
  margin-top: 5rem;
  margin-inline: auto;
}

.privacy-page__breadcrumb {
  margin-top: 6.0625rem;
}

.privacy-page__container {
  display: grid;
  row-gap: 2.5rem;
  margin-top: 2.5rem;
}

.privacy-page__article-content {
  display: grid;
  row-gap: 0.5rem;
  margin-top: 1rem;
}

.privacy-page__article-title {
  position: relative;
  padding-left: 1rem;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}

.privacy-page__article-title::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.5rem;
  height: 1.8125rem;
  border-radius: 0.125rem;
  background-color: #5c8273;
  content: "";
}

.privacy-page__article-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
}

.privacy-page__article-list {
  display: grid;
  row-gap: 0.5rem;
  counter-reset: number;
}

.privacy-page__article-list-item {
  position: relative;
  padding-left: 1.375rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
}

.privacy-page__article-list-item::before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(number) ")";
  counter-increment: number;
}

.privacy-page__article-list.privacy-page__article-list--child {
  padding-left: 1.75rem;
}

.privacy-page__article-list.privacy-page__article-list--grandchild {
  padding-left: 3.5rem;
}

.service-list {
  display: grid;
  row-gap: 3.5rem;
  margin-top: 6.25rem;
}

.service-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
}

.service-list__image {
  aspect-ratio: 327/223;
}

.service-list__image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.625rem;
}

.service-list__image video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.625rem;
}

.service-list__texts {
  margin-top: 1.5rem;
}

.single-detail {
  margin-top: 2.5rem;
}

.single-detail__wrapper {
  margin-top: 2.5rem;
}

.single-detail__thumbnail {
  aspect-ratio: 345/222;
  margin-top: 2.5rem;
}

.single-detail__thumbnail img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.3125rem;
}

.single-detail__title {
  font-size: 1.5rem;
  line-height: 1.6;
  word-wrap: break-word; /* 古いブラウザ向け保険 */
  word-break: break-word;
  overflow-wrap: anywhere; /* モダンブラウザ対応 */
}

.single-detail__meta {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 1rem;
  gap: 1.5rem;
}

.single-detail__date {
  font-size: 0.875rem;
  line-height: 1.2142857143;
  font-family: "Inter", sans-serif;
}

.single-detail__content {
  margin-top: 2.5rem;
}

.single-detail__content p {
  font-size: 1rem;
  line-height: 1.8;
}

.single-detail__content h2 {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
}

.single-detail__content h3 {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
}

.single-detail__content h4 {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
}

.single-detail__content a {
  display: inline-block;
  color: #333333;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  text-decoration: underline;
}

ul.wp-block-list li,
ol.wp-block-list li {
  position: relative;
  padding-left: 1.25rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
}

ul.wp-block-list li:not(:nth-child(1 of li)),
ol.wp-block-list li:not(:nth-child(1 of li)) {
  margin-top: 1rem;
}

ul.wp-block-list li::before,
ol.wp-block-list li::before {
  position: absolute;
  top: 0;
  left: 0;
}

ul.wp-block-list li::before {
  content: "・";
}

ol.wp-block-list li::before {
  content: counter(number) ".";
  counter-increment: number;
}

.single-detail__pagination {
  margin-top: 5rem;
  margin-inline: auto;
}

.single-detail__share {
  margin-top: 2.5rem;
}

.single-detail__archive-link {
  display: block;
  margin-top: 2.5rem;
  color: #333333;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.1875;
  text-align: center;
  text-decoration: underline;
}

.single-detail__info {
  margin-top: 2.5rem;
}

.single-heading {
  display: inline-block;
  position: relative;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.6;
}

.single-heading::before,
.single-heading::after {
  display: block;
  position: absolute;
  content: "";
}

.single-heading::before {
  bottom: 0.375rem;
  left: 2.75rem;
  width: 3.75rem;
  height: 0.03125rem;
  border-bottom: 1px dotted #5c8273;
}

.single-heading::after {
  top: 50%;
  right: -5.3125rem;
  width: 1.0625rem;
  height: 1.0625rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/00_common/motif/hanabi.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.single-label {
  display: inline-block;
  position: relative;
  margin-right: 0.5rem;
  padding-right: 1.125rem;
  color: #5c8273;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.6;
}

.single-label.single-label--number {
  font-family: "Inter", sans-serif;
}

.single-label::before {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.1875rem;
  height: 0.8125rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 0.0625rem;
  background-color: #d9d9d9;
  content: "";
}

.single-page {
  margin-top: 5.3125rem;
}

.single-page__breadcrumb {
  margin-top: 5.3125rem;
}

.single-page__recommend {
  margin-top: 6.9375rem;
}

.single-toc {
  margin-bottom: 2.5rem;
  padding-inline: 1rem;
  padding-block: 1.5rem;
  border-radius: 0.3125rem;
  background-color: #f7f6ef;
}

.single-detail__content h2.single-toc__title {
  display: inline-block;
  position: relative;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.6;
}

.single-detail__content h2.single-toc__title::before,
.single-detail__content h2.single-toc__title::after {
  display: block;
  position: absolute;
  content: "";
}

.single-detail__content h2.single-toc__title::before {
  bottom: 0.375rem;
  left: 2.75rem;
  width: 3.75rem;
  height: 0.03125rem;
  border-bottom: 1px dotted #5c8273;
}

.single-detail__content h2.single-toc__title::after {
  top: 50%;
  right: -5.3125rem;
  width: 1.0625rem;
  height: 1.0625rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url(../images/00_common/motif/hanabi.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.single-detail__content .single-toc a {
  color: #333333;
  text-decoration: none;
}

.single-toc__list {
  display: grid;
  row-gap: 1rem;
  margin-top: 1rem;
}

.single-toc__sublist li:not(:last-child),
.indent-level-3:has(.level-4) .single-toc__link {
  margin-bottom: 0.5rem;
}

.single-detail__content .single-toc a.single-toc__link:has(.single-label) {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.6;
}

.single-toc__sublist.level-3 {
  padding-left: 3rem;
}

.single-detail__content .single-toc .level-3 a.single-toc__link {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.6;
}

.customer-voice__header {
  margin-top: 0.375rem;
}

.customer-voice__description {
  margin-top: 1.5625rem;
}

.customer-voice__container {
  display: grid;
  row-gap: 2.625rem;
  margin-top: 4.4375rem;
}

.customer-voice__list {
  display: grid;
  gap: 2.625rem;
}

.customer-voice__item {
  position: relative;
  padding: 2.5rem 2rem;
  border-radius: 0.625rem;
  background-color: #f7f6ef;
}

.customer-voice__item::before,
.customer-voice__item::after {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}

.customer-voice__item::before {
  top: -1.125rem;
  left: 0;
  width: 3.125rem;
  height: 2.25rem;
}

.customer-voice__item::after {
  right: -0.1875rem;
  bottom: -1.9375rem;
  width: 4.125rem;
  height: 3.875rem;
}

.customer-voice__item.customer-voice__item--green::before {
  background-image: url("../images/00_common/check/green.svg");
}

.customer-voice__item.customer-voice__item--green::after {
  background-image: url("../images/00_common/eye/green.svg");
}

.customer-voice__item.customer-voice__item--blue::before {
  background-image: url("../images/00_common/check/blue.svg");
}

.customer-voice__item.customer-voice__item--blue::after {
  background-image: url("../images/00_common/eye/blue.svg");
}

.customer-voice__item.customer-voice__item--red::before {
  background-image: url("../images/00_common/check/red.svg");
}

.customer-voice__item.customer-voice__item--red::after {
  background-image: url("../images/00_common/eye/red.svg");
}

.customer-voice__item.customer-voice__item--orange::before {
  background-image: url("../images/00_common/check/orange.svg");
}

.customer-voice__item.customer-voice__item--orange::after {
  background-image: url("../images/00_common/eye/orange.svg");
}

.customer-voice__title {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2;
}

.customer-voice__detail {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
}

.customer-voice__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 1.875rem;
  height: 1.875rem;
  background-size: contain;
  background-repeat: no-repeat;
}

.customer-voice__icon--green {
  background-image: url("./images/icon-green.svg");
}

.customer-voice__icon--blue {
  background-image: url("./images/icon-blue.svg");
}

.customer-voice__icon--brown {
  background-image: url("./images/icon-brown.svg");
}

.customer-voice__icon--pink {
  background-image: url("./images/icon-pink.svg");
}

.fv {
  position: relative;
}

.fv__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-block: 9.1875rem 12.625rem;
}

.fv__title {
  z-index: 70;
  width: 100%;
  pointer-events: none;
}

.fv__title-first {
  position: relative;
  aspect-ratio: 219/177;
  width: 66.9724770642%;
}

.fv__title-first:before {
  position: absolute;
  top: 6.7796610169%;
  right: -36.0730593607%;
  width: 36.0730593607%;
  height: 42.3728813559%;
  background-image: url(../images/01_top/fv/move-eye.gif);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.fv__title-second {
  position: relative;
  width: 94.1896024465%;
  margin-top: 1.5625rem;
  margin-left: auto;
}

.fv__title-second-text {
  z-index: 1;
  position: relative;
  aspect-ratio: 308/160;
}

.fv__title-first,
.fv__title-second {
  opacity: 0;
}

.fv__title-second-svg {
  position: absolute;
  top: -1.5rem;
  left: -2.375rem;
  aspect-ratio: 360/137;
  width: 96%;
  width: 100%;
  min-width: 22.5rem;
  height: 100%;
  min-height: 8.5625rem;
}

.top-blog-section {
  margin-top: 5.9375rem;
}

.top-blog__description {
  margin-top: 1.5625rem;
}

.top-blog__banner {
  position: relative;
  height: 65.749235474%;
  margin-top: 2.5rem;
  overflow: hidden;
  border-radius: 0.3125rem;
}

.top-blog__image {
  aspect-ratio: 327/215;
}

.top-blog__btn {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.top-flow-section {
  margin-top: 8.9375rem;
}

.top-flow__description {
  margin-top: 1.5625rem;
}

.top-flow__list {
  display: grid;
  row-gap: 3rem;
  margin-top: 2.5rem;
}

.top-flow__item {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: 0.3125rem;
  background-color: #f8f8f3;
}

.top-flow__step {
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 1;
  width: 4.625rem;
  padding: 1rem;
  border-radius: 0.3125rem 0 0 0;
  background-color: #5c8273;
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  font-family: "Inter", sans-serif;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.top-flow__image {
  aspect-ratio: 278/200;
}

.top-flow__title,
.top-flow__text {
  color: #5c8273;
}

.top-flow__title {
  margin-top: 1rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
}

.top-flow__text {
  margin-top: 0.5rem;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.8;
}

.top-footer {
  margin-top: 5rem;
}

.top-service-section {
  margin-top: 9.125rem;
}

.top-service {
  position: relative;
}

.top-service__star {
  position: absolute;
  top: -13.875rem;
  right: -1.375rem;
  width: 11.9375rem;
  height: 10.3125rem;
}

.top-service__inner {
  position: relative;
}

.top-service__description {
  margin-top: 1.5625rem;
}

.top-service__list {
  display: grid;
  row-gap: 2.5rem;
  margin-top: 2.5rem;
}

.top-service__column {
  display: contents;
}

.top-service__item {
  position: relative;
  padding: 2.6875rem 1.25rem 2rem 1.25rem;
  border-radius: 0.3125rem;
  background-color: #f7f6ef;
}

.top-service__item.top-service__item--first {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.top-service__item.top-service__item--second {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
}

.top-service__item.top-service__item--third {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
  -ms-flex-order: 3;
  order: 3;
}

.top-service__item.top-service__item--fourth {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
  -ms-flex-order: 4;
  order: 4;
}

.top-service__item.top-service__item--fifth {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
  -ms-flex-order: 5;
  order: 5;
}

.top-service__item.top-service__item--sixth {
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
  -ms-flex-order: 6;
  order: 6;
}

.top-service__item.top-service__item--seventh {
  -webkit-box-ordinal-group: 8;
  -webkit-order: 7;
  -ms-flex-order: 7;
  order: 7;
}

.top-service__item.top-service__item--eighth {
  -webkit-box-ordinal-group: 9;
  -webkit-order: 8;
  -ms-flex-order: 8;
  order: 8;
}

.top-service__item::before {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 5.25rem;
  height: 5.25rem;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.top-service__item.top-service__item--first::before,
.top-service__item.top-service__item--fifth::before {
  background-image: url(../images/00_common/motif/guruguru.svg);
}

.top-service__item.top-service__item--second::before,
.top-service__item.top-service__item--sixth::before {
  background-image: url(../images/00_common/motif/kurukuru.svg);
}

.top-service__item.top-service__item--third::before,
.top-service__item.top-service__item--seventh::before {
  background-image: url(../images/00_common/motif/hanabi.svg);
}

.top-service__item.top-service__item--fourth::before,
.top-service__item.top-service__item--eighth::before {
  background-image: url(../images/00_common/motif/naname.svg);
}

.top-service__label {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 2;
  font-family: "Inter", sans-serif;
}

.top-service__title {
  z-index: 1;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2;
}

.top-service__text {
  margin-top: 2.125rem;
}

.top-service__btn {
  margin-top: 3.9375rem;
  margin-inline: auto;
}

.top-works-section {
  margin-top: 9.3125rem;
}

.top-works__description {
  margin-top: 1.5625rem;
}

.top-works__container {
  margin-top: 2.5rem;
}

.top-works__list {
  display: grid;
  row-gap: 3.5rem;
  margin-top: 3.5rem;
}

.top-works__btn {
  margin-top: 3.9375rem;
  margin-inline: auto;
}

.top-vision-section {
  margin-top: 2.9375rem;
}

.under-breadcrumb {
  margin-top: 0.3125rem;
}

.under-fv {
  padding-top: 3.5rem;
}

.under-fv__inner {
  position: relative;
}

.under-fv__inner::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8.75rem;
  height: 8.75rem;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-image: url(../images/00_common/motif/hanabi.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.under-fv__img {
  aspect-ratio: 327/418;
}

.under-fv__img img {
  border-radius: 0.3125rem;
}

.under-page__container {
  margin-top: 3.0625rem;
}

.works-archive-recommend__list {
  margin-top: 2.5rem;
}

.works-archive__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5.3125rem;
}

.works-archive__container {
  margin-top: 2.5rem;
}

.works-archive__sp-list {
  display: grid;
  gap: 2.5rem;
}

.works-archive__pagination {
  margin-top: 3.5rem;
}

.works-archive__recommend {
  margin-top: 6.6875rem;
}

.works-list {
  display: grid;
  row-gap: 2.5rem;
}

.works-single-info {
  padding: 1.5rem 1rem 2.25rem;
  border-radius: 0.3125rem;
  background-color: #f7f6ef;
}

.works-single-info__block {
  margin-top: 1.5rem;
}

.works-single-info__block.works-single-info__block--first {
  margin-top: 1rem;
}

.works-single-info__tags {
  margin-top: 1rem;
}

.works-single-info__date {
  margin-top: 0.5rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
}

.works-single-info__link {
  display: block;
  margin-top: 0.5rem;
  color: #333333;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  text-decoration: underline;
}

.works-single-recommend__list {
  margin-top: 2.5rem;
}
.works-archive .swiper-slide:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (any-hover: hover) and (min-width: 768px) {
  .btn:hover .btn__text.btn__text--contact-form::before {
    width: 55%;
  }
}
@media screen and (min-width: 768px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
  html {
    font-size: 1.3793103448vw;
  }
  .bg-shadow {
    aspect-ratio: 1440/768;
  }
  .blog-card {
    display: grid;
    grid-template-rows: subgrid;
    row-gap: 0;
    grid-row: span 5;
  }
  .blog-card__image {
    aspect-ratio: 284/185;
  }
  .blog-card__categories {
    margin-top: 1rem;
  }
  .btn {
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem;
    width: 26.0625rem;
  }
  .btn.btn--top-blog {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 26.0625rem;
  }
  .btn.btn--error {
    -webkit-column-gap: 4.5625rem;
    -moz-column-gap: 4.5625rem;
    column-gap: 4.5625rem;
    width: initial;
    margin-inline: initial;
    padding-left: 3.125rem;
  }
  .btn::before {
    top: -1.375rem;
    left: -1.9375rem;
    width: 26.0625rem;
    height: 9.5rem;
  }
  .btn::after {
    top: -1.0625rem;
    left: 1.5625rem;
    width: 21.125rem;
    height: 8.625rem;
  }
  .btn.btn--top-blog::before {
    top: -1.375rem;
    left: -1.9375rem;
  }
  .btn.btn--top-blog::after {
    top: -1.0625rem;
    left: 1.5625rem;
  }
  .btn__text {
    position: relative;
    font-size: 3.5rem;
    line-height: 1.2142857143;
  }
  .btn.btn--contact {
    -webkit-column-gap: 0.4375rem;
    -moz-column-gap: 0.4375rem;
    column-gap: 0.4375rem;
  }
  .btn.btn--contact::before {
    left: -0.125rem;
  }
  .btn.btn--contact::after {
    left: 4rem;
  }
  .btn__text.btn__text--contact {
    margin-left: -0.4375rem;
    text-transform: uppercase;
  }
  .btn.btn--contact-page {
    -webkit-column-gap: 72px;
    -moz-column-gap: 72px;
    column-gap: 72px;
  }
  .btn__text.btn__text--contact-page {
    margin-left: 7rem;
  }
  .btn.btn--contact-page::before {
    left: 0px;
  }
  .btn.btn--contact-page::after {
    left: 3.5rem;
  }
  .btn.btn--contact-form::before {
    left: 0;
  }
  .btn.btn--contact-form::after {
    left: 3.625rem;
  }
  .btn__text input[type="submit"] {
    padding-right: 6.6875rem;
    font-size: 3.5rem;
    line-height: 1.2142857143;
  }
  .btn__text.btn__text--contact-form {
    margin-right: -6.375rem;
    margin-left: initial;
  }
  .btn__line {
    display: block;
    position: absolute;
    bottom: -4px;
    left: 2.1875rem;
    width: 17.1875rem;
    height: auto;
    pointer-events: none;
  }
  .btn__line-path {
    stroke-dasharray: 1100;
    stroke-dashoffset: 1100;
    -webkit-transition: stroke-dashoffset 0.8s ease-out;
    transition: stroke-dashoffset 0.8s ease-out;
  }
  .category-item.category-item--archive-head {
    width: 100%;
    max-width: inherit;
    padding-left: 0.625rem;
    overflow-x: visible;
  }
  .category-item__item.category-item__item--archive-head a {
    padding-block: 0.25rem;
  }
  .contact-cta-section {
    margin-top: 7.1875rem;
  }
  .contact-cta__content {
    padding-block: 6rem 15.4375rem;
  }
  .contact-cta__btn {
    margin-top: 1.875rem;
  }
  .contact-cta__btn .btn__icon {
    margin-left: 1.75rem;
  }
  .contact-cta__text span {
    margin-top: 2.625rem;
  }
  .contact-cta__image.contact-cta__image--first {
    aspect-ratio: 261/179;
    width: 100%;
    max-width: 16.3125rem;
  }
  .contact-cta__image.contact-cta__image--second {
    aspect-ratio: 222/151;
    width: 100%;
    max-width: 13.875rem;
  }
  .contact-cta__image.contact-cta__image--third {
    aspect-ratio: 178/247;
    width: 100%;
    max-width: 11.125rem;
  }
  .contact-cta__image.contact-cta__image--fourth {
    aspect-ratio: 238/164;
    width: 100%;
    max-width: 14.875rem;
  }
  .contact-cta__image.contact-cta__image--fifth {
    aspect-ratio: 175/120;
    width: 100%;
    max-width: 10.9375rem;
  }
  .contact-cta__image.contact-cta__image--sixth {
    aspect-ratio: 205/141;
    width: 100%;
    max-width: 12.8125rem;
  }
  .contact-cta__image.contact-cta__image--seventh {
    aspect-ratio: 220/307;
    width: 100%;
    max-width: 13.75rem;
  }
  .customer-voice-section {
    margin-top: 7.25rem;
  }
  .footer {
    padding-block: 5rem 3.875rem;
    background-image: url(../images/00_common/footer/pc/img.jpg);
  }
  @supports (background-image: url(../images/00_common/footer/pc/img.webp)) {
    .footer {
      background-image: url(../images/00_common/footer/pc/img.webp);
    }
  }
  .footer__title-icon {
    top: -2.375rem;
    left: -2.125rem;
    width: 4.25rem;
    height: 4.25rem;
  }
  .footer__title {
    max-width: 30.9375rem;
    margin-left: 0;
  }
  .footer__text {
    margin-top: 1rem;
  }
  .footer__copy {
    margin-top: 10rem;
    text-align: left;
  }
  .hamburger {
    width: 4.75rem;
    padding-top: 2rem;
  }
  .hamburger__text {
    margin-top: -0.75rem;
    font-size: 0.875rem;
  }
  .hamburger.is-openSP .hamburger__text {
    color: #fff;
  }
  .inner.header__inner {
    position: relative;
    max-width: 86.125rem;
  }
  .header__drawer {
    margin-right: 5.25rem;
  }
  .image-box {
    z-index: 1;
  }
  .image-box.image-box--first {
    top: -0.5625rem;
    left: 30.4375rem;
    aspect-ratio: 284/172;
    width: 19.7222222222%;
    max-width: 17.75rem;
  }
  .image-box.image-box--second {
    top: 8.5rem;
    right: 4rem;
    aspect-ratio: 304/184;
    width: 21.1111111111%;
    max-width: 19rem;
  }
  .image-box.image-box--third {
    top: 13.5625rem;
    left: 8.4375rem;
    aspect-ratio: 284/172;
    width: 19.7222222222%;
    max-width: 17.75rem;
  }
  .image-box.image-box--fourth {
    top: 10.9375rem;
    right: 28.25rem;
    aspect-ratio: 158/221;
    width: 10.9722222222%;
    max-width: 9.875rem;
  }
  .image-box.image-box--fifth {
    bottom: 8.375rem;
    left: -5.5rem;
    aspect-ratio: 430/260;
    width: 29.8611111111%;
    max-width: 26.875rem;
  }
  .image-box.image-box--sixth {
    bottom: 4.375rem;
    left: 29.25rem;
    aspect-ratio: 313/189;
    width: 21.7361111111%;
    max-width: 19.5625rem;
  }
  .image-box.image-box--seventh {
    right: -1.5rem;
    bottom: -3.875rem;
    aspect-ratio: 568/344;
    width: 39.4444444444%;
    max-width: 35.5rem;
  }
  .inner {
    max-width: 1210px;
    padding-inline: 25px;
  }
  .kirakira {
    right: -1.1875rem;
    width: 22.375rem;
    height: 19.3125rem;
  }
  .page-title {
    width: 26.0625rem;
    margin-left: -2.5625rem;
    text-align: center;
  }
  .page-title.page-title--privacy {
    width: 47.0625rem;
  }
  .page-title::before {
    top: -1.3125rem;
    left: 1.0625rem;
    width: 4.5625rem;
    height: 4.5625rem;
  }
  .page-title::after {
    right: 0.5rem;
    bottom: -1.61rem;
    width: 3.5625rem;
    height: 3.5625rem;
  }
  .page-title__en {
    padding-left: initial;
    font-size: 6.25rem;
  }
  .page-title__en.page-title__en--service {
    padding-left: 2.375rem;
  }
  .page-title__en.page-title__en--contact {
    padding-left: 2.5625rem;
  }
  .page-title__en.page-title__en--privacy {
    font-size: 6.25rem;
  }
  .page-title__image.page-title__image--first {
    top: 1rem;
    left: 0.5625rem;
    width: 26.0625rem;
    height: 9.5rem;
  }
  .page-title__image.page-title__image--second {
    top: 1.4375rem;
    right: 0.6875rem;
    width: 21.0625rem;
    height: 8.625rem;
  }
  .page-title__image.page-title__image--privacy {
    top: 0;
    width: 47.0625rem;
    height: 9.5rem;
  }
  .pagetop {
    right: 2.5rem;
    bottom: 6.25rem;
    left: initial;
  }
  .scroll {
    width: 100%;
  }
  .section-description {
    font-size: 1.5rem;
  }
  .section-title.section-title--left {
    margin-left: -1.5rem;
  }
  .share__list {
    margin-top: 1.4375rem;
    gap: 1.875rem;
  }
  .share__item {
    width: 11.25rem;
    height: 4.375rem;
  }
  .sp-nav {
    top: 1.25rem;
    left: 50%;
    aspect-ratio: 1408/706;
    width: 97.7777777778%;
    max-width: 88rem;
    height: inherit;
    min-height: 44.125rem;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 1.25rem;
    background-image: url(../images/00_common/header/bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .sp-nav::before {
    z-index: 1;
    right: 15.78125%;
    bottom: 36.8271954674%;
    width: 14.375rem;
    height: 10.125rem;
  }
  .sp-nav::after {
    right: 1.953125%;
    bottom: 17.4220963173%;
    width: 22.375rem;
    height: 19.3125rem;
  }
  .sp-nav__inner {
    padding: 6.25rem 3.75rem 5.875rem 3.75rem;
  }
  .sp-nav__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0;
  }
  .sp-nav__link {
    display: inline-block;
    font-size: 4.5rem;
  }
  .title-wrap:has(.section-title) .title-wrap__description {
    margin-top: 1.5rem;
  }
  .title-wrap__quote {
    margin-top: 0.5rem;
  }
  .we-think {
    margin-top: 7.8125rem;
  }
  .we-think__list {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 3rem;
  }
  .we-think__column {
    display: grid;
    row-gap: 5rem;
  }
  .we-think__column:nth-child(2) {
    margin-top: 5rem;
  }
  .we-think__item {
    min-height: 27rem;
    padding-inline: 2.5rem;
    padding-block: 0 2.5rem;
    border-radius: 0.625rem;
  }
  .we-think__image {
    width: 9.625rem;
    margin-top: 4rem;
  }
  .we-think__item.we-think__item--fifth .we-think__image {
    width: 16.625rem;
  }
  .we-think__item.we-think__item--sixth .we-think__image {
    width: 21.25rem;
    margin-top: 0.9375rem;
  }
  .we-think__text {
    margin-top: 2.875rem;
  }
  .we-think__item.we-think__item--sixth .we-think__text {
    margin-top: 0.9375rem;
  }
  .works-card {
    display: grid;
    grid-template-rows: subgrid;
    row-gap: 0;
    grid-row: span 4;
  }
  .works-archive__pickup .works-card {
    display: initial;
  }
  .works-card.works-card--slide {
    height: 15rem;
    overflow: hidden;
  }
  .works-card.works-card--pickup {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 2.5rem;
  }
  .works-card__img {
    aspect-ratio: 556/380;
  }
  .works-card__img.works-card__img--new {
    aspect-ratio: 689/540;
  }
  .works-card.works-card--new,
  .works-card__img-wrap {
    width: 59%;
  }
  .works-card__img.works-card__img--slide {
    aspect-ratio: 360/240;
  }
  .works-card__img.works-card__img--new-archive {
    aspect-ratio: 650/434;
    max-width: 40.625rem;
  }
  .works-card.works-card--new::before,
  .works-card__img-wrap::before {
    top: -3.875rem;
    right: -3.8125rem;
    width: 9.6875rem;
    height: 9.6875rem;
  }
  .works-card__img img {
    border-radius: 0.625rem;
  }
  .works-card__content {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
  }
  .works-card.works-card--pickup .works-card__content {
    width: 37%;
    max-width: 26.875rem;
  }
  .works-card__title {
    font-size: 1.5rem;
  }
  .about-concept {
    margin-top: 4.0625rem;
    padding: 6.25rem 2.375rem;
    border-radius: 0.625rem;
  }
  .about-concept__concept-circle {
    max-width: 21.875rem;
  }
  .about-concept__concept-circle::before {
    top: -3.3125rem;
    left: -11.875rem;
    width: 44.4375rem;
    height: 27.0625rem;
    background-image: url(../images/02_about/concept_pc.svg);
  }
  .about-concept__concept-text {
    margin-top: 2.25rem;
    font-size: 1.5rem;
  }
  .about-concept__concept-subtext {
    margin-top: 1rem;
    font-size: 1rem;
  }
  .about-concept__details {
    grid-template-columns: repeat(4, 1fr);
    max-width: 67.5rem;
    margin-top: 3.5rem;
    gap: 2.5rem;
  }
  .about-concept__detail {
    max-width: 15rem;
  }
  .about-concept__detail::before,
  .about-concept__detail::after {
    display: none;
  }
  .about-concept__detail:nth-child(even) {
    margin-left: 0;
  }
  .about-concept__detail-title {
    margin-top: 3.3125rem;
  }
  .vision__description {
    margin-top: 1.5rem;
  }
  .vision__image {
    aspect-ratio: 1160/390;
    height: 24.375rem;
    margin-top: 2.5rem;
    border-radius: 0.625rem;
  }
  .vision__image img {
    border-radius: 0.625rem;
  }
  .vision__text {
    max-width: 43.125rem;
    margin-top: 1.5rem;
  }
  .vision__btn {
    margin-top: 6.375rem;
  }
  .who-we-are {
    margin-top: 7.5rem;
  }
  .who-we-are__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 0;
    gap: 0.75rem;
  }
  .who-we-are__motif.who-we-are__motif--first {
    top: -3.375rem;
    left: 4.5rem;
    width: 7.125rem;
    height: 7.125rem;
  }
  .who-we-are__motif.who-we-are__motif--second {
    top: -8.5rem;
    right: 0.125rem;
    width: 10.75rem;
    height: 10.75rem;
  }
  .who-we-are__motif.who-we-are__motif--third {
    bottom: -7.75rem;
    left: -3.5625rem;
    width: 11.75rem;
    height: 11.75rem;
  }
  .who-we-are__motif.who-we-are__motif--fourth {
    right: 3.5625rem;
    bottom: -2.6875rem;
    width: 5.3125rem;
    height: 5.3125rem;
  }
  .who-we-are__image {
    aspect-ratio: 568/344;
    max-width: 35.5rem;
  }
  .wo-we-are__contents {
    row-gap: 2.8125rem;
    max-width: 36.25rem;
    margin-top: 2.5rem;
  }
  .blog-archive__list {
    margin-top: 4rem;
  }
  .blog-archive__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 7.6875rem;
  }
  .blog-archive__title {
    max-width: 26.0625rem;
  }
  .blog-archive__filter-group {
    max-width: 40.625rem;
  }
  .blog-archive__category-list {
    padding-top: 3rem;
  }
  .blog-archive__tag-list {
    margin-top: 2rem;
  }
  .blog-archive__pagination {
    margin-top: 5rem;
  }
  .blog-archive__recommend {
    margin-top: 7.875rem;
  }
  .blog-list {
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem;
    row-gap: 3rem;
  }
  .blog-recommend__list {
    margin-top: 3rem;
  }
  .contact-btn::before {
    top: -1.375rem;
    left: -1.9375rem;
    width: 26.0625rem;
    height: 9.5rem;
  }
  .contact-btn::after {
    top: -1.0625rem;
    left: 1.5625rem;
    width: 21.125rem;
    height: 8.625rem;
  }
  .contact-btn__text {
    font-size: 3.5rem;
    line-height: 1.2142857143;
  }
  .contact-btn__icon {
    margin-left: 4.1875rem;
  }
  .contact-footer {
    margin-top: 11.5rem;
  }
  .contact-form {
    width: 100%;
    max-width: 43.75rem;
    margin-inline: auto;
  }
  .contact-form__row:not(:first-child) {
    margin-top: 3.5625rem;
  }
  .contact-form__wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .contact-form__label {
    min-width: 195px;
    max-width: 195px;
  }
  .contact-form input:not([type="submit"], [type="button"], [type="checkbox"]),
  .contact-form textarea,
  .contact-form select {
    max-width: 31.5625rem;
  }
  .contact-form textarea {
    min-height: 18.75rem;
  }
  .contact-form__privacy {
    margin-top: 1.1875rem;
  }
  .contact-form__btn {
    margin-top: 2.9375rem;
  }
  input[type="checkbox"] {
    top: 0.5rem;
    left: -0.125rem;
  }
  .contact-page__container {
    margin-top: 8.6875rem;
  }
  .contact-page__thanks-btn {
    margin-top: 7.625rem;
  }
  .contact-thanks {
    margin-top: 5.75rem;
    padding: 7.5rem 1rem 5rem;
    border-radius: 0.625rem;
  }
  .contact-thanks__concept {
    gap: 6.25rem;
  }
  .contact-thanks__title {
    margin-top: 3.75rem;
  }
  .contact-thanks__concept-circle {
    max-width: 27.375rem;
  }
  .contact-thanks__concept-circle::before {
    top: -3.8125rem;
    left: -14rem;
    width: 55.5625rem;
    height: 33.8125rem;
    background-image: url(../images/02_about/concept_pc.svg);
  }
  .contact-thanks__concept-text {
    margin-top: 2.25rem;
    font-size: 1.5rem;
  }
  .contact-thanks__concept-subtext {
    margin-top: 1.6875rem;
    font-size: 1rem;
  }
  .contact-thanks__details {
    max-width: 43.75rem;
    margin-inline: auto;
  }
  .contact-thanks__detail::before,
  .contact-thanks__detail::after {
    display: none;
  }
  .error-page__main {
    max-width: 25.75rem;
    margin-inline: auto;
    padding-top: 12.1875rem;
  }
  .error-page__title {
    width: 14.625rem;
    margin-inline: auto;
  }
  .error-page__sub-text {
    text-align: right;
  }
  .error-page__btn {
    margin-top: 6.1875rem;
  }
  .error-page__star {
    top: 8.3125rem;
    right: -10rem;
    width: 28.0625rem;
    height: 24.25rem;
  }
  .privacy-page {
    margin-top: 6.25rem;
  }
  .privacy-page__inner.inner {
    max-width: 49.375rem;
  }
  .privacy-page__breadcrumb {
    margin-top: 3.5625rem;
  }
  .privacy-page__container {
    margin-top: 3.5rem;
  }
  .privacy-page__article-content {
    margin-top: 0.8125rem;
  }
  .service-list {
    row-gap: 7.5rem;
    margin-top: 5.9375rem;
  }
  .service-list__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .service-list__content {
    max-width: 36.25rem;
  }
  .service-list__image {
    aspect-ratio: 556/380;
    max-width: 34.75rem;
    margin-top: 3.5rem;
  }
  .service-list__texts {
    margin-top: 2.5rem;
  }
  .single-detail {
    margin-top: 3.5rem;
  }
  .single-detail__inner.inner {
    max-width: 49.375rem;
  }
  .single-detail__wrapper {
    margin-top: 3.5rem;
  }
  .single-detail__thumbnail {
    aspect-ratio: 700/450;
    margin-top: 3.5rem;
  }
  .single-detail__thumbnail img {
    border-radius: 0.625rem;
  }
  .single-detail__title {
    font-size: 2rem;
  }
  .single-detail__content {
    margin-top: 3.5rem;
  }
  .single-detail__content h2 {
    font-size: 1.5rem;
    line-height: 1.6;
  }
  .single-detail__content h3 {
    font-size: 1.25rem;
  }
  .single-detail__share {
    margin-top: 6.25rem;
  }
  .single-detail__info {
    margin-top: 3.5rem;
  }
  .single-heading::before {
    bottom: 0.25rem;
    width: 12.5rem;
  }
  .single-heading::after {
    top: 1.125rem;
    right: -14.0625rem;
    -webkit-transform: none;
    transform: none;
  }
  .single-page {
    margin-top: 3.5625rem;
  }
  .single-page__breadcrumb {
    margin-top: 3.5625rem;
  }
  .single-page__recommend {
    margin-top: 7.875rem;
  }
  .single-toc {
    margin-bottom: 3.5rem;
    padding-bottom: 2.5rem;
  }
  .single-detail__content h2.single-toc__title::before {
    bottom: 0.25rem;
    width: 12.5rem;
  }
  .single-detail__content h2.single-toc__title::after {
    top: 1.125rem;
    right: -14.0625rem;
    -webkit-transform: none;
    transform: none;
  }
  .single-toc__list {
    row-gap: 1.5rem;
  }
  .customer-voice__header {
    margin-top: 0.3125rem;
  }
  .customer-voice__description {
    margin-top: 1.5rem;
  }
  .customer-voice__container {
    row-gap: 7.625rem;
    width: 100%;
    margin-top: 4.8125rem;
  }
  .customer-voice__list {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 3.375rem;
    -moz-column-gap: 3.375rem;
    column-gap: 3.375rem;
    max-width: 69.125rem;
  }
  .customer-voice__list:nth-child(2) {
    margin-left: 3.375rem;
  }
  .customer-voice__item {
    padding: 3.125rem 0.625rem 2.625rem 2.5rem;
    border-radius: 1.25rem;
  }
  .customer-voice__item::before {
    top: -2.3125rem;
    left: 0.625rem;
    width: 6.3125rem;
    height: 4.5625rem;
  }
  .customer-voice__item::after {
    right: 0.5rem;
    bottom: -2.625rem;
    width: 4.8125rem;
    height: 4.5625rem;
  }
  .fv {
    max-width: 90rem;
    margin-inline: auto;
  }
  .fv__inner {
    padding-block: 7.8125rem 14.625rem;
  }
  .fv__title {
    aspect-ratio: 613/478;
    width: 38.3125rem;
    margin-left: -1.3125rem;
  }
  .fv__title-first {
    aspect-ratio: 405/215;
    width: 100%;
    max-width: 25.3125rem;
  }
  .fv__title-first:before {
    top: 0.1875rem;
    right: -6.9375rem;
    width: 6.8125rem;
    height: 6.4375rem;
  }
  .fv__title-second {
    width: 100%;
    max-width: 28.875rem;
    margin-top: 3.4375rem;
  }
  .fv__title-second-text {
    aspect-ratio: 462/197;
  }
  .fv__title-second-svg {
    top: -1.125rem;
    left: -3.9375rem;
    aspect-ratio: 553/190;
    width: 37.5rem;
    height: 12.5rem;
  }
  .top-blog-section {
    margin-top: 9.8125rem;
  }
  .top-blog__description {
    margin-top: 1.5rem;
  }
  .top-blog__banner {
    height: 18.375rem;
    margin-top: 3rem;
    border-radius: 0.625rem;
  }
  .top-blog__image {
    aspect-ratio: 1160/314;
  }
  .top-blog__btn {
    top: 8.125rem;
    left: 4.5rem;
    -webkit-transform: unset;
    transform: unset;
  }
  .top-flow-section {
    margin-top: 9.5625rem;
  }
  .top-flow__description {
    margin-top: 1.5rem;
  }
  .top-flow__list {
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 4.1875rem;
    -moz-column-gap: 4.1875rem;
    column-gap: 4.1875rem;
    row-gap: 2.5rem;
    margin-top: 2.75rem;
  }
  .top-flow__item {
    min-height: 23.75rem;
    padding: 1.75rem 2rem;
  }
  .top-footer {
    margin-top: 7.5rem;
  }
  .top-service-section {
    margin-top: 3.125rem;
  }
  .top-service__star {
    top: -7.875rem;
    right: 7.5rem;
    width: 22.375rem;
    height: 19.3125rem;
  }
  .top-service__header {
    margin-top: 10.875rem;
  }
  .top-service__description {
    margin-top: 1.5rem;
  }
  .top-service__list {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 3rem;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 3rem;
  }
  .top-service__column {
    display: grid;
    row-gap: 2rem;
  }
  .top-service__column:nth-child(2) {
    margin-top: 5rem;
  }
  .top-service__item {
    height: 23.75rem;
    padding: 2.1875rem 2.5rem 0 2.5rem;
    border-radius: 0.625rem;
  }
  .top-service__item::before {
    top: 2.1875rem;
    right: 2.5rem;
  }
  .top-service__title {
    line-height: 1.4;
  }
  .top-service__text {
    margin-top: 3.4375rem;
  }
  .top-service__text.top-service__text--second {
    margin-top: 1.5rem;
  }
  .top-service__btn {
    margin-top: 8.875rem;
  }
  .top-works-section {
    margin-top: 11.125rem;
  }
  .top-works__description {
    margin-top: 1.5rem;
  }
  .top-works__container {
    margin-top: 4rem;
  }
  .top-works__list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3rem;
    gap: 3rem;
  }
  .top-works__btn {
    margin-top: 6.375rem;
  }
  .under-breadcrumb {
    max-width: 80.625rem;
  }
  .under-fv {
    padding-top: 7.5rem;
  }
  .under-fv__inner {
    max-width: 80.625rem;
  }
  .under-fv__img {
    aspect-ratio: 1240/418;
  }
  .under-fv__img img {
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0.625rem;
  }
  .under-page__container {
    margin-top: 5.625rem;
  }
  .works-archive-recommend__list {
    margin-top: 3rem;
  }
  .works-archive__head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 7.6875rem;
  }
  .works-archive__title {
    max-width: 26.0625rem;
  }
  .works-archive__filter-group {
    z-index: 70;
    max-width: 40.625rem;
  }
  .works-archive__category-list {
    padding-top: 3rem;
  }
  .works-archive__container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: 4.1875rem;
    gap: 9.375rem;
  }
  .works-archive__list {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 31.0344827586%;
    max-width: 22.5rem;
    padding-bottom: 50vh;
  }
  .swiper.js-works-swiper {
    height: auto;
    overflow: visible;
  }
  .works-archive__pickup {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    width: 56.0344827586%;
    max-width: 40.625rem;
  }
  .works-archive__pickup-card {
    min-height: 43rem;
  }
  .works-archive__recommend {
    margin-top: 6.5625rem;
  }
  .works-list {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 3rem;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
    row-gap: 3rem;
  }
  .works-list.works-list--column {
    grid-template-columns: 1fr;
    -webkit-column-gap: 0;
    -moz-column-gap: 0;
    column-gap: 0;
    row-gap: 2.5rem;
  }
  .works-single-info {
    padding-bottom: 3rem;
  }
  .works-single-info__block {
    margin-top: 2.5rem;
  }
  .works-single-info__block.works-single-info__block--first {
    margin-top: 2.5rem;
  }
  .works-single-recommend__list {
    margin-top: 3rem;
  }
  .works-archive .swiper-slide:not(:first-child) {
    margin-top: 0;
  }
}
@media (min-width: 1160px) {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .works-archive .swiper,
  .works-archive .swiper-wrapper,
  .works-archive .swiper-slide {
    all: unset;
    display: block !important;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
  .blog-card:hover {
    opacity: 1;
  }
  .blog-card:hover .blog-card__image img {
    scale: 1.2;
  }
  .btn:hover {
    opacity: 1;
  }
  .btn:hover .btn__text::before {
    width: 100%;
  }
  .btn:hover .btn__icon::before {
    opacity: 1;
  }
  .btn:hover .btn__text.btn__text--contact-form::after {
    background-image: url(../images/00_common/btn/after/icon.svg);
  }
  .btn:hover .btn__text.btn__text--contact-form::before {
    width: 55%;
  }
  .btn:hover .btn__line-path {
    stroke-dashoffset: 0;
  }
  .category-item__item:hover {
    background-color: #5c8273;
  }
  .category-item__item:hover a {
    color: #fff;
  }
  .pagination__item:hover {
    opacity: 0.7;
  }
  .pagination__item:has(.page-numbers.current):hover {
    opacity: 1;
  }
  .sp-nav__link:hover {
    opacity: 1;
  }
  .sp-nav__link:hover::before,
  .sp-nav__link:hover::after {
    opacity: 1;
  }
  .works-card:hover {
    opacity: 0.8;
  }
  .works-card:hover .works-card__img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  .blog-archive__tag-list-head:hover {
    cursor: pointer;
  }
  .contact-btn:hover {
    opacity: 1;
  }
  .contact-btn:hover .contact-btn__text::before {
    width: 100%;
  }
  .contact-btn:hover .contact-btn__icon::before {
    opacity: 1;
  }
}

/* 動画サムネイル用スタイル */
.works-video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.single-detail__thumbnail video {
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

@media screen and (min-width: 1024px) {
  .single-detail__thumbnail video {
    border-radius: 0.625rem;
  }
}

/* アーカイブページ用動画サムネイル */
.works-archive-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* フッターレスポンシブデザイン */
@media screen and (min-width: 768px) {
  .footer {
    padding-block: 6rem 4rem;
  }
  
  @supports (background-image: url(../images/00_common/footer/pc/img.webp)) {
    .footer {
      background-image: url(../images/00_common/footer/pc/img.webp);
    }
  }
  
  .footer__inner {
    position: relative;
  }
  
  .footer__title-wrap {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  
  .footer__title {
    max-width: 20rem;
    margin-left: 0;
  }
  
  .footer__title-icon {
    position: static;
    width: 4rem;
    height: 4rem;
  }
  
  .footer__nav {
    grid-template-columns: repeat(5, 1fr);
    column-gap: 2rem;
    row-gap: 0;
    max-width: 27.1875rem;
    margin-top: 2.0625rem;
  }

  .footer__privacy {
    position: absolute;
    bottom: 0;
    left: 25px;
    margin-top: 0;
  }
  
  .footer__privacy-link {
    font-size: 1rem;
  }
  
  .footer__copy {
    margin-top: 9.4375rem;
    text-align: center;
  }
}

/*# sourceMappingURL=map/styles.css.map */
