@charset "UTF-8";
/*================================================================
Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  letter-spacing: 0;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

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

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

input,
textarea,
select {
  font: inherit;
}

button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* ===============================================
# header
=============================================== */
.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-inline: 40px;
  background: #fff;
  padding-block: 27.5px;
}
@media screen and (max-width: 767px) {
  .header {
    height: 64px;
  }
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
}
@media (max-width: 1000px) {
  .header__list {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
.header__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
}

.header__list--item {
  position: relative;
}

.header__list--sub {
  color: #a3b18a;
  display: inline-block;
  font-size: 14px;
  line-height: 100%; /* 14px */
  letter-spacing: 0.7px;
  text-align: center;
}

.header__list--main {
  font-size: 18px;
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
  font-weight: 500;
}

.header__list--img {
  position: absolute;
  bottom: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 100%;
  width: 96px;
  height: auto;
}

@media (any-hover: hover) {
  .header__list--item:hover .header__list--img {
    opacity: 1;
    visibility: visible;
    cursor: pointer;
  }
}

/* ===============================================
# ドロワー
=============================================== */
.drawer__icon {
  position: fixed;
  z-index: 102;
  top: 17px;
  right: 10px;
  width: 44px;
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px ) {
  .drawer__icon {
    display: none;
  }
}

.drawer__icon--bar {
  width: 100%;
  height: 2px;
  background: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 11.5px;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -11.5px;
}

.drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: #f7f5eb;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.drawer.js-show {
  opacity: 1;
  visibility: visible;
}

.drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 69px 10px 69px 24px;
}

.drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
  margin-bottom: 24px;
}
.drawer__list li a {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%; /* 18px */
  padding-block: 8px;
}

.drawer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}

.drawer__text {
  color: #fff;
  font-size: 20px;
  line-height: 100%; /* 20px */
  padding: 8px 16px;
  background: #000;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.drawer__line {
  width: 48px;
  height: 48px;
}

.drawer__info--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-top: 24px;
}

.drawer__info--container-img {
  width: 76px;
  height: auto;
}

.footer__company {
  font-size: 18px;
  line-height: 150%; /* 27px */
}

.footer__adress {
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
}

.footer__phone {
  font-size: 20px;
  line-height: 150%; /* 30px */
  letter-spacing: 1px;
}

.footer__time {
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
}

/* ===============================================
# sub-fv
=============================================== */
.sub-fv {
  background: #fff;
  padding-block: 64px 42px;
  margin-top: 72px;
}
@media screen and (max-width: 767px) {
  .sub-fv {
    margin-top: 64px;
    padding-block: 32px 34px;
  }
}

.sub-fv__img {
  width: 100%;
  height: auto;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .sub-fv__img {
    height: 96px;
  }
}

@media screen and (max-width: 767px) {
  .sub-fv__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.sub-fv__title--container {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .sub-fv__title--container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 16px;
  }
}

.sub-fv__subtitle {
  color: #a3b18a;
  font-size: clamp(1.125rem, 1.0620805369rem + 0.2684563758vw, 1.25rem);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .sub-fv__subtitle {
    line-height: 100%; /* 18px */
  }
}

.sub-fv__title {
  font-size: clamp(2rem, 1.4966442953rem + 2.1476510067vw, 3rem);
  letter-spacing: 2.4px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .sub-fv__title {
    letter-spacing: 1.6px;
    margin-top: 12px;
  }
}

.sub-a {
  padding-block: 76px 82px;
}
@media screen and (max-width: 767px) {
  .sub-a {
    padding-block: 36px;
  }
}

.post-type-archive-voice .sub-a {
  padding-block: 76px 0px;
}
@media screen and (max-width: 767px) {
  .post-type-archive-voice .sub-a {
    padding-block: 36px 0px;
  }
}

.sub-a__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  max-width: 1440px;
  margin-inline: auto;
  width: 100%;
  padding-inline: 160px;
}
@media (max-width: 1200px) {
  .sub-a__inner {
    grid-template-columns: 1fr 280px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    padding-inline: 100px 40px;
  }
}
@media screen and (max-width: 767px) {
  .sub-a__inner {
    padding-inline: 16px;
    grid-template-columns: 1fr;
  }
}

.post-type-archive-voice .sub-a__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
}
@media (max-width: 1200px) {
  .post-type-archive-voice .sub-a__inner {
    grid-template-columns: 280px 1fr;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    padding-inline: 100px 40px;
  }
}
@media (max-width: 800px) {
  .post-type-archive-voice .sub-a__inner {
    grid-template-columns: 240px 1fr;
  }
}
@media screen and (max-width: 767px) {
  .post-type-archive-voice .sub-a__inner {
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
    grid-template-columns: 1fr;
    padding-inline: 16px;
  }
}

.sub-a__item--container {
  width: 100%;
}

.post-type-archive-voice .sub-a__item--container {
  grid-column: 2;
}
@media screen and (max-width: 767px) {
  .post-type-archive-voice .sub-a__item--container {
    grid-column: 1;
  }
}

.service-tabs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  color: #000 !important;
}

.service-tabs__item {
  font-size: 20px;
  padding-inline: 0px;
}
@media screen and (max-width: 767px) {
  .service-tabs__item {
    font-size: 18px;
  }
}
.service-tabs__item[aria-selected=true] {
  pointer-events: none;
  font-weight: 500;
}
.service-tabs__item[aria-selected=false] {
  font-weight: 400;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .service-tabs__item[aria-selected=false]:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

.service-tabs__contents {
  margin-top: 32px;
  width: 100%;
  margin-inline: auto;
}

.service-tabs__content-wrap {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.service-tabs__content-wrap.js-show {
  opacity: 1;
  visibility: visible;
  height: auto;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

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

.sub-a__item {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding-bottom: 40px;
  border-bottom: 1px solid #a3b18a;
  margin-bottom: 38px;
}
.sub-a__item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .sub-a__item:last-of-type {
    padding-bottom: 38px;
  }
}
@media (any-hover: hover) {
  .sub-a__item:hover .arrow {
    color: #d9a96a;
    translate: 4px;
  }
  .sub-a__item:hover .arrow::before, .sub-a__item:hover .arrow::after {
    background: #d9a96a;
  }
}

@media screen and (max-width: 767px) {
  .post-type-archive-voice .sub-a__item {
    padding-bottom: 38px;
  }
}

.sub-a__date {
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
}

.sub-a__new {
  color: #fff;
  font-size: 14px;
  line-height: 100%; /* 14px */
  letter-spacing: 0.7px;
  padding: 4px;
  background: #d9a96a;
}
@media screen and (max-width: 767px) {
  .sub-a__new {
    margin-left: 2px;
  }
}

.sub-a__item--title {
  font-size: clamp(1.25rem, 1.1241610738rem + 0.5369127517vw, 1.5rem);
  font-weight: 500;
  line-height: 150%; /* 36px */
  letter-spacing: 1.2px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 制限したい行数が2の場合 */
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .sub-a__item--title {
    letter-spacing: 1px;
    display: block;
  }
}

.sub-a__item--text {
  margin-top: 24px;
  font-weight: 400;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 行数指定（2 行） */
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 767px) {
  .sub-a__item--text {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
    text-overflow: unset;
  }
}

.sub-a-voice__item--contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 24px;
}

.arrow.sub-a__item--arrow {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 20px;
  line-height: 150%; /* 30px */
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .arrow.sub-a__item--arrow {
    font-size: 18px;
  }
}

.post-type-archive-voice .sub-a__item--arrow {
  margin-top: 0;
}

#new-arrow {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 20px;
  line-height: 150%; /* 30px */
}

.sub-a__banners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
}
@media screen and (max-width: 767px) {
  .sub-a__banners {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 36px;
  }
}

.post-type-archive-voice .sub-a__banners {
  grid-column: 1;
  grid-row: 1;
}
@media screen and (max-width: 767px) {
  .post-type-archive-voice .sub-a__banners {
    padding-inline: 11.5px;
    grid-row: 2;
  }
}

@media screen and (max-width: 767px) {
  .sub-a__banner {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 343/180;
  }
  .sub-a__banner img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (max-width: 767px) {
  .post-type-archive-voice .sub-a__banner {
    aspect-ratio: 320/167;
  }
}

.sub-s {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .sub-s {
    padding-block: 40px;
  }
}

.sub-s__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  max-width: 1440px;
  margin-inline: auto;
  min-width: 0;
  width: 100%;
  padding-inline: 160px;
}
@media (max-width: 1200px) {
  .sub-s__inner {
    grid-template-columns: 1fr 280px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    padding-inline: 100px 40px;
  }
}
@media screen and (max-width: 767px) {
  .sub-s__inner {
    padding-inline: 16px;
    grid-template-columns: 1fr;
  }
}

.single-voice .sub-s__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  max-width: 1440px;
  margin-inline: auto;
  min-width: 0;
  width: 100%;
  padding-inline: 160px;
}
@media (max-width: 1200px) {
  .single-voice .sub-s__inner {
    grid-template-columns: 280px 1fr;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    padding-inline: 100px 40px;
  }
}
@media (max-width: 960px) {
  .single-voice .sub-s__inner {
    grid-template-columns: 240px 1fr;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    padding-inline: 100px 20px;
  }
}
@media screen and (max-width: 767px) {
  .single-voice .sub-s__inner {
    padding-inline: 16px;
    grid-template-columns: 1fr;
  }
}

.sub-s__date {
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
}

.sub-s__new {
  color: #fff;
  font-size: 14px;
  line-height: 100%; /* 14px */
  letter-spacing: 0.7px;
  padding: 4px;
  background: #d9a96a;
}

.sub-s__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .sub-s__sns {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

@media screen and (max-width: 767px) {
  .single-voice .sub-s__sns {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.sub-s__sns--text {
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
  font-weight: 500;
}

.single-voice .sub-s__container {
  grid-row: 1;
}

.sub-s__item--date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

.sub-s__item--title {
  font-size: clamp(1.25rem, 1.1241610738rem + 0.5369127517vw, 1.5rem);
  line-height: 150%; /* 36px */
  letter-spacing: 1.2px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .sub-s__item--title {
    letter-spacing: 1px;
  }
}

.sub-s__item--text {
  font-weight: 400;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
  margin-top: 24px;
}

.sub-s__banners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
}
@media screen and (max-width: 767px) {
  .sub-s__banners {
    min-width: 343px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.sub-s__banners a img {
  width: 100%;
}

.sub-s-blog__item--text {
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
}

.sub-s__arrow {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%; /* 30px */
  padding-left: 56px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .sub-s__arrow {
    font-size: 18px;
  }
}
.sub-s__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -9px;
  width: 16px;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(135deg) translate(-50%, 0);
          transform: rotate(135deg) translate(-50%, 0);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .sub-s__arrow::before {
    left: -4px;
    width: 10px;
  }
}
.sub-s__arrow::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 1px;
  background: #000;
  top: 50%;
  left: 26px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .sub-s__arrow::after {
    width: 49px;
  }
}
@media (any-hover: hover) {
  .sub-s__arrow:hover {
    color: #d9a96a;
  }
  .sub-s__arrow:hover::before, .sub-s__arrow:hover::after {
    background: #d9a96a;
    translate: -4px;
  }
}

.sub-s__aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
}
@media screen and (max-width: 767px) {
  .sub-s__aside {
    margin-top: 40px;
  }
}

.single-voice .sub-s__aside {
  grid-row: 1;
}
@media screen and (max-width: 767px) {
  .single-voice .sub-s__aside {
    grid-row: unset;
  }
}

.sub-s__aside--article {
  padding: 24px;
  border-radius: 4px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 11px;
}
@media screen and (max-width: 767px) {
  .sub-s__aside--article {
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
    row-gap: 10px;
  }
}

.sub-s__aside--title {
  color: #a3b18a;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
  text-align: center;
}

.sub-s__aside--item {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 制限したい行数が3の場合 */
  overflow: hidden;
}

.sub-s__aside--items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4px;
}
@media screen and (max-width: 767px) {
  .sub-s__aside--items {
    row-gap: 8px;
  }
}

.sub-s__aside--date {
  color: #1e1e1e;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%; /* 14px */
  letter-spacing: 0.7px;
}

.sub-s__aside--text {
  font-weight: 500;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .sub-s__aside--text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* 制限したい行数が3の場合 */
    overflow: hidden;
    line-height: 160%; /* 27.2px */
  }
}

.sub-s__acf--heads {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
@media (max-width: 900px) {
  .sub-s__acf--heads {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .sub-s__acf--heads {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px; /* 上下の余白 */
  }
}

.sub-s__acf--head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}

.sub-s__voice--acf {
  border-radius: 4px;
  background: #fff;
  padding: 24px;
  margin-top: 24px;
}

.sub-s__acf--star {
  font-size: 20px;
  font-weight: 500;
  line-height: 150%; /* 30px */
}

.sub-s__acf--name {
  font-weight: 500;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

@media screen and (max-width: 767px) {
  .sub-s__acf--star,
  .sub-s__acf--name {
    display: block;
  }
}

.sub-s__acf--reputation {
  color: #fff;
  font-weight: 500;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
  background: #000;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding-inline: 8px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .sub-s__acf--reputation {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.sub-s__acf--body {
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
  margin-top: 16px;
}

.company {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .company {
    padding-block: 40px;
  }
}

.company__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 35px;
}
@media screen and (max-width: 767px) {
  .company__inner {
    row-gap: 36px;
  }
}

.about-bold {
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.8px;
  display: inline;
}

@media screen and (max-width: 767px) {
  .promise .about-bold,
  .philosophy .about-bold,
  .strength .about-bold {
    padding-left: 8px;
    display: inline-block;
    margin-top: -3px;
  }
}

@media screen and (max-width: 767px) {
  .philosophy .about-bold,
  .strength .about-bold {
    display: inline;
  }
}

.company table {
  padding-left: 21px;
  border-left: 2px solid #a3b18a;
}
@media screen and (max-width: 767px) {
  .company table {
    padding-left: 12px;
  }
}

@media (any-hover: hover) {
  .company__link a:hover {
    color: #d9a96a;
  }
}

.company tr {
  display: grid;
  grid-template-columns: 200px 1fr;
  padding-block: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .company tr {
    grid-template-columns: 1fr;
  }
}

.company th {
  text-align: left;
  color: #a3b18a;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%; /* 30px */
}

.company td {
  font-size: 20px;
  font-weight: 500;
  line-height: 150%; /* 30px */
}

iframe {
  margin-top: 4px;
  aspect-ratio: 800/240;
  width: 100%;
}
@media screen and (max-width: 767px) {
  iframe {
    aspect-ratio: 343/240;
    margin-top: 0;
  }
}

/* ===============================================
  # message
  =============================================== */
.message {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .message {
    padding-block: 40px;
  }
}

.message__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 39px;
}
@media screen and (max-width: 767px) {
  .message__inner {
    row-gap: 0px;
  }
}

.message__container {
  display: grid;
  grid-template-areas: "title img" "text img";
  grid-template-columns: 1fr 320px;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
@media screen and (max-width: 767px) {
  .message__container {
    grid-template-areas: "title" "img" "text";
    grid-template-columns: 1fr;
  }
}

.section__title--container {
  grid-area: title;
}

.message__text {
  grid-area: text;
  margin-top: 40px;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .message__text {
    margin-top: 24px;
  }
}

.message__img {
  grid-area: img;
}
@media screen and (max-width: 767px) {
  .message__img {
    margin-top: 24px;
  }
  .message__img img {
    width: 100%;
    aspect-ratio: 343/343;
  }
}

.message__greetings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .message__greetings {
    margin-top: 36px;
  }
}

.message__greetings--title {
  color: #a3b18a;
  font-size: 20px;
  font-weight: 500;
  line-height: 150%; /* 30px */
}
@media screen and (max-width: 767px) {
  .message__greetings--title {
    font-size: 18px;
  }
}

.message__greetings--text {
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
  margin-top: 8px;
}

/* ===============================================
# about__section
=============================================== */
.about__section {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .about__section {
    padding-block: 40px 39px;
  }
}

.philosophy .philosophy__title--container,
.strength .strength__title--container {
  margin-left: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.about__section--text {
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .about__section--text {
    margin-top: 24px;
  }
}

/* ===============================================
# promise
=============================================== */
.promise__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
}
@media screen and (max-width: 767px) {
  .promise__inner {
    row-gap: 24px;
  }
}

.voice-message {
  font-family: "Zen Old Mincho", serif;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4))), url("../img/voice-bg.png") center center/cover no-repeat;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%), url("../img/voice-bg.png") center center/cover no-repeat;
  width: 100%;
  height: auto;
  min-height: 1000px;
  position: relative;
  margin-top: 82px;
}
@media screen and (max-width: 767px) {
  .voice-message {
    margin-top: 42px;
    min-height: 1048px;
  }
}

.voice-message--container {
  text-align: center;
  max-width: 800px;
  width: calc(100% - 32px);
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding-block: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 48px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 767px) {
  .voice-message--container {
    top: 80px;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    padding: 48px 16px 44px;
    text-align: left;
  }
}

.voice-message__title {
  font-size: clamp(1.75rem, 1.3724832215rem + 1.610738255vw, 2.5rem);
  line-height: 100%; /* 40px */
  font-weight: 500;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .voice-message__title {
    text-align: center;
    letter-spacing: 1.4px;
  }
}

.voice-message__texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
}

.voice-message__text {
  font-weight: 500;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
}

.voice-message__bold {
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .sub-s__acf--star {
    letter-spacing: -2.4px;
  }
}

body {
  color: #000;
  background: #f7f5eb;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  overflow-x: hidden;
}

.inner {
  width: 960px;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 120px 40px;
}
@media screen and (max-width: 767px) {
  .inner {
    padding-inline: 16px;
    width: 100%;
  }
}

.middle-inner {
  width: 1120px;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 120px 40px;
}
@media screen and (max-width: 767px) {
  .middle-inner {
    padding-inline: 16px;
    width: 100%;
  }
}

.large-inner {
  width: 1280px;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 120px 40px;
}
@media screen and (max-width: 767px) {
  .large-inner {
    padding-inline: 16px;
    width: 100%;
  }
}

.top-new__inner.inner {
  padding-inline: 80px;
}
@media screen and (max-width: 767px) {
  .top-new__inner.inner {
    padding-inline: 0px;
  }
}

.top-column__inner.large-inner {
  padding-inline: 80px;
}
@media screen and (max-width: 767px) {
  .top-column__inner.large-inner {
    padding-inline: 16px;
  }
}

.company__inner {
  width: 1400px;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 300px;
}
@media (max-width: 1439px) {
  .company__inner {
    width: 960px;
    padding-inline: 120px 40px;
  }
}
@media screen and (max-width: 767px) {
  .company__inner {
    padding-inline: 16px;
    width: 100%;
  }
}

.message__inner {
  width: 1440px;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 240px;
}
@media (max-width: 1439px) {
  .message__inner {
    width: 960px;
    padding-inline: 120px 40px;
  }
}
@media screen and (max-width: 767px) {
  .message__inner {
    padding-inline: 16px;
    width: 100%;
  }
}

.top-reason__inner.inner {
  width: 1440px;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 320px;
}
@media (max-width: 1439px) {
  .top-reason__inner.inner {
    width: 960px;
    padding-inline: 120px 40px;
  }
}
@media screen and (max-width: 767px) {
  .top-reason__inner.inner {
    padding-inline: 16px;
  }
}

.top-feedback__inner {
  width: 1440px;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 240px;
}
@media (max-width: 1439px) {
  .top-feedback__inner {
    width: 960px;
    padding-inline: 120px 40px;
  }
}
@media screen and (max-width: 767px) {
  .top-feedback__inner {
    padding-inline: 16px;
  }
}

.top-contact__inner.inner {
  width: 1440px;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 320px;
}
@media (max-width: 1439px) {
  .top-contact__inner.inner {
    width: 960px;
    padding-inline: 120px 40px;
  }
}
@media screen and (max-width: 767px) {
  .top-contact__inner.inner {
    padding-inline: 16px;
  }
}

.section__title--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.section__title--container:nth-of-type(n + 2) {
  margin-top: 40px;
}

.section__title {
  font-size: clamp(1.75rem, 1.3724832215rem + 1.610738255vw, 2.5rem);
  line-height: 100%; /* 40px */
  letter-spacing: 2px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .section__title {
    letter-spacing: 1.4px;
  }
}

.section__subtitle {
  color: #a3b18a;
  font-size: clamp(1.125rem, 1.0620805369rem + 0.2684563758vw, 1.25rem);
  line-height: 100%; /* 20px */
  font-weight: 500;
}

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

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

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  position: relative;
  color: #a3b18a;
  text-align: center;
  font-size: 20px;
  line-height: 100%; /* 20px */
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.pagination__arrow {
  display: inline-block;
  width: 11px;
  height: 18px;
}

.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 6px;
}

.page-numbers.current {
  color: #fff;
  background-color: #a3b18a;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%; /* 20px */
  padding: 6px;
  border-radius: 4px;
  width: 32px;
}

.page-numbers.dots,
.page-numbers.prev,
.page-numbers.next {
  border: none;
}

.page-numbers.dots {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* ===============================================
# プライバシーポリシー
=============================================== */
.page-id-287 .privacy {
  width: 1440px;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 240px;
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .page-id-287 .privacy {
    padding-block: 40px;
  }
}
@media (max-width: 1439px) {
  .page-id-287 .privacy {
    width: 960px;
    padding-inline: 120px 40px;
  }
}
@media screen and (max-width: 767px) {
  .page-id-287 .privacy {
    padding-inline: 16px;
  }
}

.privacy h2 {
  font-size: clamp(1.5rem, 1.2483221477rem + 1.0738255034vw, 2rem);
  margin-bottom: 12px;
}

/* ===============================================
  # sidebar
  =============================================== */
#aside {
  position: fixed;
  top: 36%;
  left: calc((100vw - 1440px) / 2 - 10px); /* 横位置の計算式 */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 120px;
  height: auto;
  z-index: 2;
}
@media (max-width: 1440px) {
  #aside {
    left: 0; /* 左端から160pxに固定（インナーと被らない） */
  }
}

.sidebar__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sidebar__text {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl; /* デフォルトは縦書き */
  font-size: 20px;
  line-height: 100%; /* 20px */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .sidebar__text:hover {
    color: #d9a96a;
  }
}

.horizontal {
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb; /* 10だけ横書き */
  display: inline-block;
}

.sidebar__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 18px;
  margin-top: 24px;
}

.sidebar__icon--line-img {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-image: url("../img/sidebar-line.png");
  background-size: cover;
  -webkit-transition: background-image 0.3s ease;
  transition: background-image 0.3s ease;
}

@media (any-hover: hover) {
  .sidebar__icon--line:hover .sidebar__icon--line-img {
    background-image: url("../img/sidebar-line-hover.png");
  }
}

.sidebar__icon--phone-img {
  display: inline-block;
  width: 48px;
  height: 48px;
  background-image: url("../img/sidebar-phone.png");
  background-size: cover;
  -webkit-transition: background-image 0.2s ease;
  transition: background-image 0.2s ease;
}

@media (any-hover: hover) {
  .sidebar__icon--phone:hover .sidebar__icon--phone-img {
    background-image: url("../img/sidebar-phone-hover.png");
  }
}

/* ===============================================
  # top-fv
  =============================================== */
.top-fv {
  background: #fff;
  position: relative;
  width: 100%;
  padding-top: 104px;
}
@media screen and (max-width: 767px) {
  .top-fv {
    padding-block: 64px 142px;
  }
}

.top-fv__swiper {
  width: 100%;
}

.top-fv__swiper-slide {
  width: 100%;
  height: auto;
  aspect-ratio: 1440/664;
}

.top-fv__swiper-slide img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-fv__swiper-slide img {
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 375/396;
  }
}

@media screen and (max-width: 767px) {
  .top-fv__swiper-container {
    margin-top: 126px;
  }
}

.top-fv__swiper-container,
.top-fv__swiper,
.top-fv__swiper-wrapper,
.top-fv__swiper-slide {
  position: relative;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  padding: 0;
  bottom: 4%;
}
@media screen and (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next,
  .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 2%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  opacity: 1;
  background: #d9d9d9;
}

.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet-active {
  background: #a3b18a;
}

.top-fv__inner--title-container {
  content: "";
  position: absolute;
  top: 10.4166666667vw; /* 高さに応じた配置に変更 */
  right: 9.0277777778vw;
  z-index: 2;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-orientation: mixed;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .top-fv__inner--title-container {
    top: 4.2666666667vw;
    right: unset;
    left: 4.2666666667vw;
    z-index: 100;
  }
}

.top-fv__inner--title {
  font-size: clamp(2rem, 1.4966442953rem + 2.1476510067vw, 3rem);
  line-height: 100%; /* 48px */
  font-weight: 500;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl; /* 右から左に縦書き */
  text-orientation: upright;
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
  text-wrap: nowrap;
}

.top-fv__inner--text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: clamp(1rem, 0.7483221477rem + 1.0738255034vw, 1.5rem);
  line-height: 150%; /* 36px */
  letter-spacing: 1.2px;
  padding-inline: 8px;
  background: #a3b18a;
  margin-inline: auto;
  text-orientation: mixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: clamp(9.0625rem, 7.0176174497rem + 8.7248322148vw, 13.125rem);
  text-wrap: nowrap;
}

.top-fv__inner--subtitle-container {
  position: absolute;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl; /* 右から左に縦書き */
  text-orientation: upright;
  z-index: 2;
  top: 30.2777777778vw; /* 高さに応じた配置に変更 */
  left: calc(50% - 660px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  z-index: 50;
}
@media (max-width: 1440px) {
  .top-fv__inner--subtitle-container {
    left: 6.9444444444vw;
  }
}
@media (max-width: 1000px) {
  .top-fv__inner--subtitle-container {
    left: 13vw;
    top: 27vw;
  }
}
@media screen and (max-width: 767px) {
  .top-fv__inner--subtitle-container {
    top: 23.4666666667vw;
    left: unset;
    right: 4.2666666667vw;
  }
}

.top-fv__inner--subtitle {
  width: 8.8888888889vw;
  height: auto;
}
@media screen and (max-width: 767px) {
  .top-fv__inner--subtitle {
    width: 19.2vw;
  }
}
.top-fv__inner--subtitle img {
  aspect-ratio: 120/528;
}

.top-penguins {
  content: "";
  position: absolute;
  top: calc(100% - 42px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 5%;
  z-index: 99;
}
@media screen and (max-width: 767px) {
  .top-penguins {
    top: calc(100% - 30px);
    right: 0;
  }
}

.top-penguin {
  max-width: 240px;
  min-width: 120px;
  max-height: 240px;
  width: 16.6666666667vw;
  height: auto;
  -webkit-animation: float 2s ease-in-out infinite;
          animation: float 2s ease-in-out infinite;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  cursor: pointer;
  position: relative;
}

.top-penguin img {
  width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

#penguin.flipped {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
/* ===============================================
# top-new
=============================================== */
.top-new {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .top-new {
    padding-block: 40px;
  }
}

.top-new__container {
  width: 90vw;
  max-width: 800px;
  padding-right: 80px;
}
@media screen and (max-width: 767px) {
  .top-new__container {
    padding-right: 24px;
    width: 100%;
  }
}

.top-new__title--container {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

@media screen and (max-width: 767px) {
  .top-new__title {
    padding-left: 16px;
  }
}

.top-blog__container {
  width: 90vw;
  max-width: 800px;
  text-align: right;
  margin-top: 40px;
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  .top-blog__container {
    padding-left: 24px;
    width: 100%;
  }
}

.top-new__items,
.top-blog__items {
  padding: 24px;
  background: #ffffff;
  margin-top: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
}
@media screen and (max-width: 767px) {
  .top-new__items,
  .top-blog__items {
    padding: 24px 16px 23px 16px;
  }
}

.top-blog__items {
  row-gap: 16px;
}

.top-new__item--head,
.top-blog__item--head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top-new__item--date,
.top-blog__item--date {
  color: #1e1e1e;
  font-size: 14px;
  line-height: 100%; /* 14px */
  letter-spacing: 0.7px;
  font-weight: 500;
}

.top-new__item--new {
  color: #fff;
  font-size: 14px;
  line-height: 100%; /* 14px */
  letter-spacing: 0.7px;
  padding: 4px;
  background: #d9a96a;
  font-weight: 500;
}

.top-new__item--body,
.top-blog__item--body {
  font-size: 16px;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
  font-weight: 500;
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 制限したい行数が2の場合 */
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-new__item--body,
  .top-blog__item--body {
    -webkit-line-clamp: 3; /* 制限したい行数が2の場合 */
  }
}

.arrow {
  font-size: 20px;
  font-weight: 500;
  line-height: 100%; /* 20px */
  position: relative;
  display: inline-block;
  -webkit-padding-end: 56px;
          padding-inline-end: 56px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.arrow::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 1px;
  background: #000;
  top: 50%;
  right: -24px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: 0;
  width: 8px;
  height: 1px;
  background-color: #000000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: calc(100% - 0.5px) 50%;
          transform-origin: calc(100% - 0.5px) 50%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.arrow.top-blog-arrow {
  margin-top: 4px;
  padding-right: 56px;
}
@media screen and (max-width: 767px) {
  .arrow.top-blog-arrow::before {
    right: 15px;
  }
  .arrow.top-blog-arrow::after {
    right: -8px;
  }
}
@media (any-hover: hover) {
  .arrow.top-blog-arrow:hover {
    color: #d9a96a;
  }
  .arrow.top-blog-arrow:hover::before, .arrow.top-blog-arrow:hover::after {
    background: #d9a96a;
    translate: 4px;
  }
}

/* ===============================================
# top-column
=============================================== */
.top-column {
  padding-block: 76px 80px;
}
@media screen and (max-width: 767px) {
  .top-column {
    padding-block: 36px 40px;
  }
}

.top-column__title--container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
@media screen and (max-width: 767px) {
  .top-column__title--container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 8px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.top-column__title {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .top-column__title {
    white-space: normal;
    letter-spacing: 0.5px;
  }
}

.top-column--item--container {
  padding-right: 440px;
  position: relative;
  left: 0%;
  width: 100vw;
  /* transform: translateX(-50%); */
  overflow-x: scroll;
}
@media screen and (max-width: 767px) {
  .top-column--item--container {
    overflow-x: unset;
    padding-inline: 0px;
    width: 100%;
    margin-top: 4px;
  }
}

.top-column--items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-block: 40px;
  background: #fff;
  min-width: 1500px;
}
@media screen and (max-width: 767px) {
  .top-column--items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    margin-right: auto;
    overflow: unset;
    padding-block: 24px;
    min-width: unset;
  }
}

.top-column--item {
  padding-inline: 40px;
  width: 560px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-column--item {
    width: 100%;
  }
}
.top-column--item::after {
  position: absolute;
  content: "";
  border-right: 4px dotted #ddd;
  height: 100%;
  right: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .top-column--item::after {
    width: 100%;
    border-right: none;
    border-bottom: 4px dotted #ddd;
    width: calc(100% - 32px);
  }
}
@media (any-hover: hover) {
  .top-column--item:hover .top-column--detail {
    background: #d9a96a;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
@media screen and (max-width: 767px) {
  .top-column--item {
    padding-inline: 16px;
    padding-block: 40px;
  }
  .top-column--item:nth-of-type(1) {
    padding-top: 0;
  }
  .top-column--item:last-of-type {
    padding-bottom: 0px;
  }
}

.top-column--item:last-of-type::after {
  border: none;
}

.top-column--img {
  width: 480px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .top-column--img {
    width: 100%;
  }
}
.top-column--img img {
  width: 100%;
  aspect-ratio: 480/280;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-column--body {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 200px;
}
@media screen and (max-width: 767px) {
  .top-column--body {
    height: 182px;
  }
}

.top-column--title {
  overflow: hidden;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 制限したい行数が3の場合 */
  overflow: hidden;
  font-size: clamp(1.25rem, 1.1241610738rem + 0.5369127517vw, 1.5rem);
  line-height: 150%; /* 36px */
  letter-spacing: 1.2px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-column--title {
    line-height: 150%; /* 30px */
    letter-spacing: 1px;
  }
}

.top-column--detail {
  display: block;
  text-align: center;
  padding-block: 24px;
  margin-top: auto;
  color: #fff;
  font-size: 20px;
  line-height: 100%; /* 20px */
  border-radius: 4px;
  background: #000;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
}
@media (any-hover: hover) {
  .top-column--detail:hover {
    background: #d9a96a;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(2);
            transform: translateY(2);
  }
}

.top-column--scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 11px;
  margin-right: -120px;
}

/* ===============================================
# top-reason
=============================================== */
.top-reason {
  padding-block: 84px 80px;
}
@media screen and (max-width: 767px) {
  .top-reason {
    padding-block: 40px;
  }
}

.top-reason__title--container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .top-reason__title--container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.top-reason--items {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
}

.top-reason--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
.top-reason--item:nth-of-type(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .top-reason--item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top-reason--item:nth-of-type(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top-reason--img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 240px;
}
@media screen and (max-width: 767px) {
  .top-reason--img {
    width: clamp(15rem, 5.434rem + 40.82vw, 25rem);
  }
}

.top-reason--img img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .top-reason--info {
    margin-top: 24px;
  }
}

.top-reason--head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
@media screen and (max-width: 767px) {
  .top-reason--head {
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
  }
}

.top-reason--num {
  color: #d9a96a;
  font-size: clamp(2.5rem, 1.9966442953rem + 2.1476510067vw, 3.5rem);
  line-height: 100%; /* 56px */
  letter-spacing: 2.8px;
}

.top-reason--title {
  font-weight: 500;
  font-size: clamp(1.25rem, 1.1241610738rem + 0.5369127517vw, 1.5rem);
  line-height: 150%; /* 36px */
  letter-spacing: 1.2px;
}
@media screen and (max-width: 767px) {
  .top-reason--title {
    letter-spacing: 1px;
  }
}

.top-reason--body {
  margin-top: 16px;
  font-size: clamp(1rem, 0.9370805369rem + 0.2684563758vw, 1.125rem);
  line-height: 150%; /* 27px */
  letter-spacing: 0.9px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-reason--body {
    line-height: 170%; /* 27.2px */
    letter-spacing: 0.8px;
  }
}

/* ===============================================
# top-feedback
=============================================== */
.top-feedback {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .top-feedback {
    padding-block: 40px;
  }
}

.top-feedback__title--container {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .top-feedback__title--container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 8px;
  }
}

.top-feedback__items {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
}
@media screen and (max-width: 767px) {
  .top-feedback__items {
    margin-top: 20px;
    row-gap: 24px;
  }
}

.top-feedback__item {
  padding: 40px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-feedback__item {
    padding: 40px 24px 32px 24px;
  }
}
.top-feedback__item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #a3b18a;
  top: -8px;
  left: -8px;
}
.top-feedback__item::after {
  content: "";
  background: url(../img/top-feedback01.svg) no-repeat center center/cover;
  position: absolute;
  bottom: -5px;
  right: 32px;
  max-width: 80px;
  width: 100%;
  height: 80px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-feedback__item::after {
    z-index: 1;
    right: 22px;
  }
}

.top-feedback__item--title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-feedback__item--title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.top-feedback__item--title span {
  display: block;
}

.line-deco {
  white-space: nowrap;
  font-size: clamp(1.25rem, 1.1241610738rem + 0.5369127517vw, 1.5rem);
  line-height: 150%; /* 36px */
  letter-spacing: 1.2px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
}
.line-deco::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(217, 169, 106, 0.5);
  width: 100%;
  height: 50%;
}
@media screen and (max-width: 767px) {
  .line-deco {
    letter-spacing: 1px;
  }
}

.line-deco.mt20 {
  margin-top: -20px;
}
@media screen and (min-width: 768px ) {
  .line-deco.mt20 {
    margin-top: 0;
  }
}

.top-feedback__text {
  font-size: 16px;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .top-feedback__text {
    font-weight: 400;
  }
}

/* ===============================================
# top-contact
=============================================== */
.wpcf7-form-control-wrap {
  width: 100%;
  display: block;
  margin-top: 4px;
}

@media (any-hover: hover) {
  .contact__row:hover input[type=text],
  .contact__row:hover input[type=email],
  .contact__row:hover select,
  .contact__row:hover textarea {
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(2);
            transform: translateY(2);
  }
  .contact__row:hover .contact__head span {
    color: #d9a96a;
  }
}

.wpcf7-form-control {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

input[type=text],
input[type=email],
select,
textarea {
  width: 100%;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #fff;
  -webkit-box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25) inset;
          box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.25) inset;
  padding: 6.5px 16px;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #ddd;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #ddd;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #ddd;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
}

input::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #ddd;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
}

input::placeholder,
textarea::placeholder {
  color: #ddd;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.contact__data.contact__textarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  height: auto;
}

input[type=submit],
input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

.row.jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wpcf7-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 0px;
}

.wpcf7-list-item-label {
  font-weight: 500;
  line-height: 170%; /* 27.2px */
  letter-spacing: 3.4px;
  margin-left: 12px;
  vertical-align: super;
}

.contact__data-checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  background: #ddd;
  border: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  position: relative;
  margin-top: 10px;
}

.contact__data-checkbox input[type=checkbox]:checked {
  background: #f7f5eb;
  border: #000 1px solid;
}

.contact__data-checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  width: 6px;
  height: 12px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.wpcf7 .contact__submit {
  margin-top: 18px;
  text-align: center;
  padding-block: 24px;
  background: #000;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 100%; /* 20px */
  max-width: 480px;
}
.wpcf7 .contact__submit input[type=submit] {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .top-contact__title--container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 8px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .top-contact__title {
    font-size: 40px;
    font-weight: 500;
    line-height: 100%; /* 40px */
    letter-spacing: 2px;
  }
}

@media screen and (max-width: 767px) {
  .top-contact__subtitle {
    font-size: 20px;
  }
}

.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 24px;
  border-radius: 4px;
  background: #fff;
  padding: 36px 40px 40px;
  text-align: center;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .contact__form {
    padding: 40px 16px;
  }
}

.wpcf7-submit:disabled {
  background-color: #999;
}

/* 共通アイコンスタイル */
.top-contact__icon {
  display: inline-block;
  background: url(../img/top-contact-line.svg) no-repeat center center/cover;
  width: 48px;
  height: 48px;
}

/* PC表示：1行＋右にアイコン */
.top-contact__line-pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  line-height: 150%;
  font-weight: 500;
  padding-left: 7px;
}
.top-contact__line-pc .top-contact__icon {
  margin-left: 16px;
  translate: 0 2px;
}
@media screen and (max-width: 767px) {
  .top-contact__line-pc {
    display: none;
  }
}

/* SP表示：2行＋アイコン右端中央 */
@media screen and (max-width: 767px) {
  .top-contact-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .top-contact-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .top-contact-text .top-contact__line,
  .top-contact-text .contact-display {
    font-size: 18px;
    line-height: 150%;
    font-weight: 500;
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .contact-display {
    display: block;
  }
}

.top-contact {
  padding-block: 80px;
}
@media screen and (max-width: 767px) {
  .top-contact {
    padding-block: 40px;
  }
}

.contact__row {
  margin-top: 24px;
}
.contact__row:first-of-type {
  margin-top: 32px;
}

.contact__head {
  font-size: clamp(1.125rem, 1.0620805369rem + 0.2684563758vw, 1.25rem);
  line-height: 100%; /* 20px */
}

.contact__head.--left {
  text-align: left;
}

.required {
  color: #d9a96a;
  font-size: 18px;
  line-height: 100%;
}

.contact__subtitle {
  color: #a3b18a;
  font-size: 14px;
  line-height: 100%; /* 14px */
  letter-spacing: 0.7px;
  margin-left: 8px;
}

.contact__acceptance {
  margin-top: 17px;
}

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

/* ===============================================
# footer
=============================================== */
.footer {
  background: #fff;
  padding-block: 40px;
}

.footer__inner {
  width: 1440px;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 120px;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    padding-inline: 16px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
    text-align: center;
  }
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 40px;
    text-align: right;
  }
}

.footer__container--info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .footer__container--info {
    -webkit-column-gap: 23px;
       -moz-column-gap: 23px;
            column-gap: 23px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}

.footer__container--info-img {
  max-width: 80px;
}

.footer__info {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .footer__container--info a {
    width: 20.9912536443%;
  }
}

.footer__container--info img {
  width: 100%;
  height: auto;
}

.footer__company {
  font-size: clamp(1.125rem, 1.0620805369rem + 0.2684563758vw, 1.25rem);
  font-weight: 500;
  line-height: 150%; /* 30px */
}

.footer__adress {
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
  margin-top: 8px;
  font-weight: 500;
}

.footer_map {
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.8px;
  color: #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none; /* 全体の下線を消す */
}
@media screen and (max-width: 767px) {
  .footer_map {
    display: inline;
    width: auto;
    white-space: nowrap;
    text-decoration: none;
  }
}

.footer_map--underline {
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: 4%;
  text-underline-offset: 16%;
  text-underline-position: from-font;
}
@media screen and (max-width: 767px) {
  .footer_map--underline {
    text-decoration-line: underline;
    text-decoration-style: solid;
    -webkit-text-decoration-skip-ink: none;
            text-decoration-skip-ink: none;
    text-decoration-thickness: 4%;
    text-underline-offset: 16%;
    text-underline-position: from-font;
  }
}

.footer__phone {
  font-size: clamp(1.25rem, 1.1241610738rem + 0.5369127517vw, 1.5rem);
  line-height: 150%; /* 36px */
  letter-spacing: 1.2px;
  margin-top: 8px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .footer__phone {
    letter-spacing: 1px;
    width: 100%;
    white-space: nowrap;
  }
}

.footer__time {
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
  margin-top: 8px;
  font-weight: 500;
}

.footer__nav {
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.footer__list li a {
  font-weight: 500 !important;
  line-height: 170%; /* 27.2px */
  letter-spacing: 0.8px;
}
@media (any-hover: hover) {
  .footer__list li a:hover {
    color: #d9a96a;
  }
}

.copyright {
  display: block;
  text-align: center;
  margin-inline: auto;
  font-size: 14px;
  line-height: 100%; /* 14px */
  letter-spacing: 0.7px;
  margin-top: 22px;
  font-weight: 500;
}