@charset "UTF-8";
body {
  font-family: "游ゴシック", YuGothic, Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", "Droid Sans", Meiryo, "メイリオ", Verdana, "ＭＳ Ｐゴシック", sans-serif;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  html {
    font-size: vw(1480, 16);
  }
}
@media screen and (min-width: 1480px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

*,
*::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;
}

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

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

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

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

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

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

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

textarea {
  resize: vertical;
}

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

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

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

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 330px));
  row-gap: 50px;
  row-gap: 3.125rem;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .cards {
    row-gap: 2.5rem;
  }
}

.cards__card:hover {
  opacity: 0.7 !important;
}
.cards__card a {
  display: block;
}
.cards__card.--news .cards__card--cont {
  border: 1px solid #000;
}
.cards__card.--news img {
  width: 100%;
  height: 213px;
}
.cards__card.--news .newsLists__date {
  float: right;
}
.cards__card.--news .cards__card--text {
  position: static;
}
.cards__card.--news .newsList__title {
  font-family: "游ゴシック", YuGothic, Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", "Droid Sans", Meiryo, "メイリオ", Verdana, "ＭＳ Ｐゴシック", sans-serif;
  font-weight: bold;
}
.cards__card .readmore {
  width: 110px;
  width: 6.875rem;
  height: 14px;
  height: 0.875rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
.cards__card .readmore img {
  height: auto;
}

.cards__card--cont {
  border-radius: 0.625rem;
  overflow: hidden;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  position: relative;
}
.cards__card--cont img {
  width: 100%;
  height: 378px;
  -o-object-fit: cover;
     object-fit: cover;
}

.cards__card--text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
  background-color: rgba(255, 255, 255, .9);
}
@media screen and (max-width: 768px) {
  .cards__card--text {
    padding: 0.9375rem 1.25rem;
  }
}
.cards__card--text .newsLists__date {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
}
@media screen and (max-width: 768px) {
  .cards__card--text .newsLists__date {
    font-size: 1rem;
  }
}

.cards__card--desc {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cards__card--desc {
    font-size: 1.125rem;
  }
}
.cards__card--desc + .arrow {
  display: block;
  width: 24px;
  width: 1.5rem;
  height: 20px;
  height: 1.25rem;
  background: no-repeat center/contain url(../images/top/link-arrow_black@2x.svg);
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .cards__card--desc + .arrow {
    width: 1rem;
    height: 0.75rem;
  }
}

.newsList__title {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1;
  text-align: center;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 768px) {
  .newsList__title {
    font-size: 1.25rem;
  }
}

.cards__card--top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
.cards__card--top .categories__item {
  display: block;
  min-width: 100px;
  min-width: 6.25rem;
  padding: 5px 30px;
  padding: 0.3125rem 1.875rem;
  background-color: #333;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: bold;
  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;
}
@media screen and (max-width: 768px) {
  .cards__card--top .categories__item {
    font-size: 1rem;
  }
}
.cards__card--top .categories__item.event {
  background-color: #74a92d;
}

/****  pc,spだし分け  *****/
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

/*****  タイトル系  *******/
h1,
h2 {
  font-weight: normal;
}

.title-img img {
  width: auto;
  min-height: 50px;
  height: 3.2vw;
  max-height: 62px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .title-img img {
    min-height: auto;
    height: 7.2vw;
  }
}

.section-lead {
  font-size: clamp(30px, 2.1vw, 40px);
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .section-lead {
    font-size: 5.3333333333vw;
  }
}

/***** innerなど余白 *****/
.inner {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-inline: 5.2631578947vw;
  }
}

/******* flex ******/
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
} /****** font ****/
p {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 4vw;
  }
}

/*****スクロール時にふわっと**********/
.fadein {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  opacity: 0;
}

.fadeall {
  opacity: 0;
}

.fadein.scrollin {
  -webkit-transform: unset;
          transform: unset;
  opacity: 1;
  -webkit-transition: 1s;
  transition: 1s;
}

.tate .tate-char {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.tate.scrollin .tate-char {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fadein.scrollin.delay200 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

/******* btn ********/
.btn {
  margin: 0 auto;
  width: 100%;
  max-width: 360px;
  max-width: 22.5rem;
}
@media screen and (max-width: 768px) {
  .btn {
    max-width: 66.6666666667vw;
  }
}
.btn a {
  width: 100%;
  min-height: 60px;
  min-height: 3.75rem;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#74a92d), to(#008842));
  background: linear-gradient(to right, #74a92d 0%, #008842 100%);
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 6.25rem;
  padding-left: 24px;
  padding-left: 1.5rem;
  z-index: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  .btn a {
    min-height: 10.6666666667vw;
    font-size: 3.7333333333vw;
    padding-left: 4.8vw;
    border-radius: 13.3333333333vw;
  }
}
.btn a:hover:after {
  opacity: 1;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.btn a::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 6.25rem;
  background: -webkit-gradient(linear, left top, right top, from(#008842), to(#74a92d));
  background: linear-gradient(to right, #008842 0%, #74a92d 100%);
  z-index: -1;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.btn a .dot {
  width: 30px;
  width: 1.875rem;
  height: 8px;
  height: 0.5rem;
  margin-left: 5px;
  margin-left: 0.3125rem;
  background: no-repeat center/contain url(../images/dot.svg);
}
@media screen and (max-width: 768px) {
  .btn a .dot {
    width: 5.3333333333vw;
    height: 1.6vw;
  }
}

/*------------------------
お問い合わせ
------------------------*/
.page-contact {
  border-bottom: none;
}
.page-contact .ul-head {
  height: 300px;
  height: 18.75rem;
}
@media screen and (max-width: 768px) {
  .page-contact .ul-head {
    height: 28.2051282051vw;
  }
}
.page-contact .main-content {
  background: no-repeat center/cover url(../images/line-bg@2x.jpg);
}
.page-contact .ul-head-title {
  color: #008842;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .page-contact .ul-head-title {
    -webkit-transform: translateY(1vw);
            transform: translateY(1vw);
  }
}
.page-contact .ul-head-title span.small {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2;
  color: #333333;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .page-contact .ul-head-title span.small {
    font-size: 2.5641025641vw;
    line-height: 2.1;
    margin-top: 0.5vw;
  }
}
.page-contact .breadList {
  color: #fff;
  background-color: #008842;
  margin: 0;
  padding: 10px 20px;
  padding: 0.625rem 20px;
}
.page-contact .ul-cont {
  padding: 100px 25px;
  padding: 6.25rem 1.5625rem;
  background: no-repeat center/cover url(../images/contact/contact_bg@2x.png);
  background-color: #008842;
  margin-top: -1px;
}
@media screen and (max-width: 768px) {
  .page-contact .ul-cont {
    padding: 8.9743589744vw 2.5641025641vw;
    background: none;
    background-color: #008842;
  }
}
.page-contact .contact .inner {
  max-width: 1040px;
  background-color: #fff;
  padding: 100px 20px;
  padding: 6.25rem 20px;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .page-contact .contact .inner {
    padding: 8.9743589744vw 5.2631578947vw;
    border-radius: 1.2820512821vw;
  }
}
.page-contact .contact__wrapper {
  max-width: 900px;
  max-width: 56.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__wrapper {
    max-width: 100%;
  }
}
.page-contact .contact__wrapper > * {
  color: #008842;
}
.page-contact .contact__wrapper input,
.page-contact .contact__wrapper textarea,
.page-contact .contact__wrapper select {
  display: block;
  border: 2px solid #008842;
  border-radius: 0.3125rem;
  width: 100%;
  min-height: 80px;
  min-height: 5rem;
  padding: 1em 1em;
  font-size: 16px;
  font-size: 1rem;
  color: #000;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__wrapper input,
.page-contact .contact__wrapper textarea,
.page-contact .contact__wrapper select {
    border: 0.3vw solid #008842;
    border-radius: 1.2820512821vw;
    min-height: 15.8974358974vw;
    font-size: 3.8461538462vw;
  }
}
.page-contact .contact__wrapper .select-box {
  position: relative;
}
.page-contact .contact__wrapper .select-box::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  width: 22px;
  height: 18px;
  background: no-repeat center/contain url(../images/select-delta@2x.svg);
}
@media screen and (max-width: 768px) {
  .page-contact .contact__wrapper .select-box::after {
    width: 3.5897435897vw;
    height: 3.0769230769vw;
    right: 3vw;
  }
}
.page-contact .contact__wrapper dl {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__wrapper dl {
    margin-bottom: 3.8461538462vw;
  }
}
.page-contact .contact__wrapper dl.post-number dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__wrapper dl.post-number dd {
    gap: 4vw;
  }
}
.page-contact .contact__wrapper dl.post-number dd input {
  max-width: 300px;
  max-width: 18.75rem;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__wrapper dl.post-number dd input {
    max-width: 49.1025641026vw;
  }
}
.page-contact .contact__wrapper dl.post-number dd .post-number-search {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.625;
  color: #fff;
  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;
  background-color: #008842;
  height: 78px;
  height: 4.875rem;
  border-radius: 0.3125rem;
  padding-inline: 2em;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__wrapper dl.post-number dd .post-number-search {
    font-size: 3.0769230769vw;
    line-height: 1.3;
    text-align: center;
    border-radius: 0.8974358974vw;
    height: 12.0512820513vw;
  }
}
.page-contact .contact__wrapper dl.form-file-wrap input {
  border: none;
  padding: 1em 0 0 0;
}
.page-contact .contact__wrapper dl dt {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2.1;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  gap: 0.3125rem;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__wrapper dl dt {
    font-size: 3.8461538462vw;
    margin-bottom: 0.641025641vw;
  }
}
.page-contact .contact__wrapper dl dt .required {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.3em 0.6em 0.3em 0.5em;
  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;
  background-color: #008842;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  border-radius: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__wrapper dl dt .required {
    font-size: 2.8205128205vw;
  }
}
.page-contact .contact__wrapper dl dt .caution {
  font-size: 16px;
  font-size: 1rem;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__wrapper dl dt .caution {
    font-size: 2.8205128205vw;
  }
}
@media screen and (max-width: 768px) {
  .page-contact .contact__wrapper dl dt .caution.--spbr {
    width: 100%;
    margin-top: -3vw;
  }
}
.page-contact .contact__top {
  font-size: 35px;
  font-size: 2.1875rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
  border-bottom: 1px solid rgba(77, 157, 122, .5);
}
@media screen and (max-width: 768px) {
  .page-contact .contact__top {
    font-size: 4.358974359vw;
    padding-bottom: 3vw;
    margin-bottom: 4vw;
  }
}
.page-contact .contact__bottom {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.1428571429;
  color: #008842;
  text-align: center;
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__bottom {
    font-size: 3.0769230769vw;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 5.1282051282vw;
  }
}
.page-contact .contact__bottom .bold {
  font-weight: 600;
}
.page-contact .contact__bottom a {
  text-decoration: underline;
}
.page-contact .agree-area {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
.page-contact .agree-area.off input,
.page-contact .agree-area.off label {
  pointer-events: none;
  opacity: 0.8;
}
.page-contact .agree-area label {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #008842;
  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: 5px;
  gap: 0.3125rem;
}
.page-contact .agree-area input {
  display: inline-block;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  border-radius: 5px;
  border: 2px solid #008842;
  margin-top: 4px;
  position: relative;
}
.page-contact .agree-area input::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 11px;
  height: 6px;
  border-left: 2px solid #008842;
  border-bottom: 2px solid #008842;
  -webkit-transform: rotate(-45deg) translate(0px, 5px);
          transform: rotate(-45deg) translate(0px, 5px);
  display: none;
}
.page-contact .agree-area input:checked::after {
  display: block;
}
.page-contact .submit-btn.off {
  opacity: 0.5;
}
.page-contact .submit-btn.off input {
  pointer-events: none !important;
}
.page-contact .submit-btn input {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.2;
  color: #fff;
  width: 100%;
  max-width: 500px;
  max-width: 31.25rem;
  min-height: 87px;
  min-height: 5.4375rem;
  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;
  background-color: #008842;
  border-radius: 0.625rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page-contact .submit-btn input {
    font-size: 4.358974359vw;
    max-width: 54.7435897436vw;
    min-height: 15.8974358974vw;
    border-radius: 1.2820512821vw;
  }
}
.page-contact.--thanks .ul-cont {
  background-position: center 10%;
}
.page-contact.--thanks .tanks-message {
  text-align: center;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
.page-contact.--thanks .tanks-message + .btn a {
  margin: 0 auto;
}

.wpcf7-response-output {
  display: none;
}

.wpcf7-not-valid-tip {
  display: none;
}

/*------------------------
問い合わせ完了
------------------------*/
.page-thanks .main-content {
  background: no-repeat center/cover url(../images/line-bg@2x.jpg);
}

.thanks__cont {
  background-color: #fff;
  border-radius: 0.3125rem;
  padding: 40px 20px;
  padding: 2.5rem 20px;
}
@media screen and (max-width: 768px) {
  .thanks__cont {
    padding: 9.3333333333vw 5.2631578947vw;
  }
}
.thanks__cont .btn a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
}

.thanks__message {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .thanks__message {
    font-size: 4.5333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}

.cta {
  padding: 120px 0;
  padding: 7.5rem 0;
  background: no-repeat center/cover url(../images/top/cta_bg@2x.png);
}
@media screen and (max-width: 768px) {
  .cta {
    padding: 16vw 0;
  }
}
.cta .inner {
  max-width: 956px;
  gap: 20px;
  gap: 1.25rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .cta .inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.cta .section-title {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .cta .section-title {
    margin-bottom: 2.6666666667vw;
  }
}
.cta .section-title img {
  min-height: 66px;
  min-height: 4.125rem;
}
@media screen and (max-width: 768px) {
  .cta .section-title img {
    min-height: 10.6666666667vw;
  }
}

.cta__left {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.cta__sub {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cta__sub {
    font-size: 4vw;
  }
}

.cta__time {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.4;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cta__time {
    font-size: 5.8666666667vw;
    margin-bottom: 4vw;
  }
}
.cta__time .small {
  display: block;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .cta__time .small {
    font-size: 3.4666666667vw;
  }
}

.cta__catch {
  font-size: 48px;
  font-size: 3rem;
  line-height: 1;
  font-weight: bold;
  color: #005a49;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .cta__catch {
    font-size: 9.3333333333vw;
  }
}

.cta__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
  gap: 0.875rem;
}
@media screen and (max-width: 768px) {
  .cta__right {
    gap: 1.8666666667vw;
  }
}

.cta__link {
  display: block;
  width: 418px;
  width: 26.125rem;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .cta__link {
    width: 100%;
  }
}
.cta__link.half {
  width: calc(50% - 7px);
}
@media screen and (max-width: 768px) {
  .cta__link.half {
    width: 48.5%;
  }
}

.float-cta {
  position: fixed;
  right: 10px;
  right: 0.625rem;
  bottom: 20px;
  bottom: 1.25rem;
  z-index: 99;
  width: 300px;
  width: 18.75rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 768px) {
  .float-cta {
    display: none !important;
  }
}
.float-cta.is-show {
  opacity: 1;
  visibility: visible;
}
.float-cta__tel {
  text-align: center;
  display: block;
  font-size: 31px;
  font-size: 1.9375rem;
  font-weight: bold;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  color: #005a49;
  font-family: "Outfit", sans-serif;
}
.float-cta__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  gap: 0.3125rem;
}

.fixed-spmenu {
  display: none;
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 99;
  width: 100%;
  max-width: 100%;
  padding: 10px 15px;
  background-color: #fff;
  gap: 5px;
  gap: 0.3125rem;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  .fixed-spmenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.fixed-spmenu.is-show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fixed-spmenu__item {
  display: block;
  width: 100%;
  height: 40px;
  height: 2.5rem;
  border-radius: 5px;
  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: 0 5px;
}
.fixed-spmenu__item:nth-child(1) {
  background-color: #d29700;
}
.fixed-spmenu__item:nth-child(2) {
  background-color: #74a92d;
}
.fixed-spmenu__item:nth-child(3) {
  background-color: #008842;
}
.fixed-spmenu__item img {
  height: 27px;
  height: 1.6875rem;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.pageTop {
  position: fixed;
  right: 20px;
  right: 1.25rem;
  bottom: 335px;
  bottom: 20.9375rem;
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 768px) {
  .pageTop {
    right: 1.25rem;
    bottom: 3.75rem;
  }
}
.pageTop__arrow {
  display: block;
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
}
.pageTop.is-show {
  opacity: 1;
  visibility: visible;
}

.footer {
  position: relative;
  padding: 120px 0;
  padding: 7.5rem 0;
  background-color: #333;
  color: #fff;
  font-family: "Kosugi Maru", sans-serif;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 16vw 0;
  }
}
.footer .inner {
  gap: 20px;
  gap: 1.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 768px) {
  .footer .inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer .number {
  letter-spacing: -0.3em;
}

.footer__logo {
  width: 360px;
  width: 22.5rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 61.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}

.footer__address {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .footer__address {
    font-size: 2.6666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}

.copyright {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 768px) {
  .copyright {
    font-size: 1.8666666667vw;
    text-align: center;
  }
}

.footer__navLists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  gap: 3.125rem;
}
.footer__navLists li + li {
  margin-top: 0.5em;
}

.footer__navList {
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.875;
  padding-left: 20px;
  padding-left: 1.25rem;
}
.footer__navList::before {
  content: "-";
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  margin-right: 5px;
  margin-right: 0.3125rem;
}

.header {
  width: 100%;
  height: 100px;
  height: 6.25rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .2);
}
@media (max-width: 1720px) {
  .header {
    height: 5rem;
  }
}

.header__inner {
  width: 100%;
  height: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  padding: 0 1.25rem;
}

.header__logo {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo a {
  display: block;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo img {
  width: 197px;
  width: 12.3125rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1720px) {
  .header__logo img {
    width: 9.375rem;
  }
}

.header__btn {
  width: 36px;
  height: 21px;
  position: fixed;
  top: 31px;
  right: 23px;
}
@media (max-width: 1720px) {
  .header__btn {
    display: block;
  }
}

.header__btn span {
  width: 100%;
  height: 2px;
  background-color: #000;
  position: absolute;
  display: block;
  left: 0;
}

.header__btn span:nth-child(1) {
  top: 0;
}

.header__btn span:nth-child(2) {
  top: 10px;
}

.header__btn span:nth-child(3) {
  top: 20px;
}

.header.is-active .header__btn span:nth-child(1) {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  top: 9px;
}

.header.is-active .header__btn span:nth-child(2) {
  display: none;
}

.header.is-active .header__btn span:nth-child(3) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  top: 9px;
}

/*
  -----------------------------------
sp
  -----------------------------------
  */
.headerSp__nav {
  position: fixed;
  top: 80px;
  top: 5rem;
  bottom: 0;
  right: -100%;
  width: calc(100vw - 80px);
  max-width: 400px;
  max-width: 25rem;
  height: 100%;
  background-color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 1720px) {
  .headerSp__nav {
    display: block;
  }
}
.headerSp__nav .header__nav-items {
  padding: 20px 25px 100px;
  padding: 1.25rem 1.5625rem 6.25rem;
  width: 100%;
  min-height: 100%;
}
.headerSp__nav .header__nav-item {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.headerSp__nav .header__nav-item a {
  color: #3e3e3e;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: bold;
  font-family: "Kosugi Maru", sans-serif;
  display: block;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.headerSp__nav .header__nav-item a:hover {
  color: #008842;
}
.headerSp__nav .header__nav-item.has-submenu .header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
}
.headerSp__nav .header__nav-item.has-submenu .header__nav-arrow {
  font-size: 12px;
  font-size: 0.75rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: inline-block;
}
@media (max-width: 1720px) {
  .headerSp__nav .header__nav-item.has-submenu .header__nav-arrow {
    display: none;
  }
}
.headerSp__nav .header__nav-item.has-submenu.is-open .header__nav-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.headerSp__nav .header__nav-item.has-submenu .header__nav-submenu {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  padding: 0;
}
.headerSp__nav .header__nav-item.has-submenu.is-open .header__nav-submenu {
  max-height: 500px;
  max-height: 31.25rem;
  padding: 10px 0 0;
  padding: 0.625rem 0 0;
}
.headerSp__nav .header__nav-item.has-submenu .header__nav-child {
  margin-bottom: 0;
}
.headerSp__nav .header__nav-item.has-submenu .header__nav-child a {
  font-size: 16px;
  font-size: 1rem;
  color: #000;
  padding: 8px 0;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 30px;
  padding-left: 1.875rem;
}
.headerSp__nav .header__nav-item.has-submenu .header__nav-child a::before {
  content: "-";
  position: absolute;
  left: 20px;
  left: 1.25rem;
  color: #000;
}
.headerSp__nav .header__nav-item.has-submenu .header__nav-child a:hover {
  color: #008842;
}
.headerSp__nav .header__nav-item.has-submenu .header__nav-child a:hover::before {
  color: #008842;
}

/*
-----------------------------------
pc
-----------------------------------
*/
.headerPc__nav {
  height: 100%;
}
@media (max-width: 1720px) {
  .headerPc__nav {
    display: none;
  }
}
.headerPc__nav ul {
  height: 100%;
}
.headerPc__nav .header__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  gap: 1.25rem;
  height: 100%;
}
.headerPc__nav .header__nav-item {
  height: 100%;
  position: relative;
}
.headerPc__nav .header__nav-item a {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: bold;
  color: #000;
  height: 100%;
  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;
  position: relative;
  padding: 0 5px;
  padding: 0 0.3125rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.headerPc__nav .header__nav-item a::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 29px;
  bottom: 1.8125rem;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #008842;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}
.headerPc__nav .header__nav-item a:hover::after {
  width: 100%;
}
.headerPc__nav .header__nav-item.has-submenu .header__nav-arrow {
  display: none;
}
.headerPc__nav .header__nav-item.has-submenu .header__nav-submenu {
  position: absolute;
  top: 98%;
  left: 0;
  background-color: #fff;
  min-width: 200px;
  min-width: 12.5rem;
  min-height: 120px;
  min-height: 7.5rem;
  height: auto;
  padding: 10px 0 6px;
  padding: 0.625rem 0 0.375rem;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
  margin-top: 2px;
  margin-top: 0.125rem;
  white-space: nowrap;
}
.headerPc__nav .header__nav-item.has-submenu:hover .header__nav-submenu {
  opacity: 1;
  visibility: visible;
}
.headerPc__nav .header__nav-item.has-submenu .header__nav-child {
  height: auto;
  margin: 0;
}
.headerPc__nav .header__nav-item.has-submenu .header__nav-child a {
  display: block;
  padding: 0 20px 12px;
  padding: 0 1.25rem 0.75rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #000;
  height: auto;
  text-align: left;
  white-space: nowrap;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
  position: relative;
  padding-left: 30px;
  padding-left: 1.875rem;
}
.headerPc__nav .header__nav-item.has-submenu .header__nav-child a::before {
  content: "-";
  position: absolute;
  left: 20px;
  left: 1.25rem;
  color: #000;
}
.headerPc__nav .header__nav-item.has-submenu .header__nav-child a::after {
  display: none;
}
.headerPc__nav .header__nav-item.has-submenu .header__nav-child a:hover {
  color: #008842;
}
.headerPc__nav .header__nav-item.has-submenu .header__nav-child a:hover::before {
  color: #008842;
}

.header.is-active .headerSp__nav {
  right: 0;
}

.modal-wrapper {
  display: none;
}

.modal-contact {
  position: fixed;
  z-index: 99999;
  width: 100%;
  max-width: 880px;
  max-width: 55rem;
  height: 100%;
  max-height: calc(100% - 200px);
  background: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 50px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .5);
          box-shadow: 0 0 10px rgba(0, 0, 0, .5);
  border-radius: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .modal-contact {
    padding: 13.3333333333vw 0 13.3333333333vw 4vw;
  }
}

.modal-contact__inner {
  height: 100%;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .modal-contact__inner {
    padding-right: 4vw;
  }
}
.modal-contact__inner .title {
  max-width: 465px;
  max-width: 29.0625rem;
  padding: 10px 30px;
  padding: 0.625rem 1.875rem;
  margin: 0 auto 30px;
  margin: 0 auto 1.875rem;
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.4285714286;
  color: #fff;
  background-color: #74a92d;
  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-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
  border-radius: 6.25rem;
}
@media screen and (max-width: 768px) {
  .modal-contact__inner .title {
    padding: 2.6666666667vw 8vw;
    margin: 0 auto 8vw;
    font-size: 5.3333333333vw;
  }
}

.questionWrapper .item {
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  border-bottom: 1px solid rgba(0, 0, 0, .5);
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .questionWrapper .item {
    padding-bottom: 1.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.questionWrapper .item .item_q {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  font-family: "Kosugi Maru", sans-serif;
  position: relative;
  padding-left: 20px;
  padding-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .questionWrapper .item .item_q {
    font-size: 4vw;
    padding-left: 5.3333333333vw;
  }
}
.questionWrapper .item .item_q::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  top: 0.3125rem;
  width: 16px;
  width: 1rem;
  height: 16px;
  height: 1rem;
  background-color: #74a92d;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .questionWrapper .item .item_q::before {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
    top: 1.3333333333vw;
  }
}
.questionWrapper .item .item_a {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
}
@media screen and (max-width: 768px) {
  .questionWrapper .item .item_a {
    font-size: 4vw;
  }
}

.questionWrapper__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .questionWrapper__bottom {
    gap: 5.3333333333vw;
  }
}
.questionWrapper__bottom .icon {
  width: 150px;
  width: 9.375rem;
}
@media screen and (max-width: 768px) {
  .questionWrapper__bottom .icon {
    width: 21.3333333333vw;
  }
}
.questionWrapper__bottom .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.questionWrapper__bottom .text .main {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .questionWrapper__bottom .text .main {
    font-size: 4vw;
    margin-bottom: 2.6666666667vw;
  }
}
.questionWrapper__bottom .text .meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
}
.questionWrapper__bottom .text .meta .place,
.questionWrapper__bottom .text .meta .name {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  font-family: "Kosugi Maru", sans-serif;
}
@media screen and (max-width: 768px) {
  .questionWrapper__bottom .text .meta .place,
.questionWrapper__bottom .text .meta .name {
    font-size: 3.2vw;
  }
}

.modal-contact-button {
  position: absolute;
  top: 20px;
  top: 1.25rem;
  right: 20px;
  right: 1.25rem;
  width: 33px;
  width: 2.0625rem;
  height: 33px;
  height: 2.0625rem;
}
@media screen and (max-width: 768px) {
  .modal-contact-button {
    top: 4vw;
    right: 2.6vw;
    width: 8vw;
    height: 8vw;
  }
}

.modal-contact-button a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.modal-contact-button a::before, .modal-contact-button a::after {
  content: "";
  position: absolute;
  top: 14px;
  left: -3px;
  display: inline-block;
  width: 36px;
  height: 3px;
  background-color: #000;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .modal-contact-button a::before, .modal-contact-button a::after {
    width: 9vw;
    height: 0.5333333333vw;
    top: 3.3vw;
    left: -0.8vw;
  }
}
.modal-contact-button a::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal-contact-button a::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.modal-contact-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
  z-index: 9999;
}

.partner {
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .partner {
    padding: 16vw 0;
  }
}

.partner__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  gap: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .partner__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 4vw;
  }
}

/*------------------------
MV
------------------------*/
.mv {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background-color: #333;
  margin-bottom: 120px;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .mv {
    margin-bottom: 10.6666666667vw;
  }
}

.mv__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 160%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, transparent), color-stop(40%, #333), to(#333));
  background: linear-gradient(to bottom, transparent 10%, #333 40%, #333 100%);
  z-index: 1;
  opacity: 1;
}

.mv__text01,
.mv__text02,
.mv__text03 {
  position: absolute;
  color: #fff;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
}

.mv__text01 {
  white-space: nowrap;
  font-size: clamp(60px, 4.1vw, 80px);
  font-weight: 600;
  line-height: 1.6;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .mv__text01 {
    text-align: center;
    font-size: clamp(30px, 7vw, 40px);
  }
}

h1 {
  display: block !important;
}

.mv__text02,
.mv__text03 {
  font-size: clamp(40px, 2.5vw, 60px);
  font-weight: 600;
  line-height: 1.6666666667;
  bottom: 5vw;
  left: 3vw;
}
@media screen and (max-width: 768px) {
  .mv__text02,
.mv__text03 {
    width: 100%;
    bottom: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: clamp(20px, 5.5vw, 30px);
    text-align: center;
  }
}

.mv__img {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="3" /></filter></svg>#filter');
  -webkit-filter: blur(3px);
          filter: blur(3px);
  -webkit-transform: translateY(30px) scale(1.1);
          transform: translateY(30px) scale(1.1);
}

.mv__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(51, 51, 51, .4);
  pointer-events: none;
  z-index: 2;
}

.mv__img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(255, 255, 255, .15) 0%, transparent 50%), radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, .1) 0%, transparent 50%), radial-gradient(ellipse at 40% 60%, rgba(255, 255, 255, .12) 0%, transparent 45%);
  opacity: 0.4;
  pointer-events: none;
  -webkit-animation: smokeEffect 4s ease-in-out infinite;
          animation: smokeEffect 4s ease-in-out infinite;
  z-index: 3;
}

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

@keyframes smokeEffect {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mv__text01,
.mv__text02,
.mv__text03,
.mv__img img {
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    -webkit-animation: none !important;
            animation: none !important;
  }
}
/*------------------------
リフォームメニュー
------------------------*/
.top-reformMenu {
  overflow: hidden;
  margin-bottom: 120px;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 768px) {
  .top-reformMenu {
    margin-bottom: 10.6666666667vw;
  }
}
.top-reformMenu .title img {
  margin: 0 auto 40px;
  margin: 0 auto 2.5rem;
}

.top-reformMenu__cont .catch {
  font-size: 40px;
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-reformMenu__cont .catch {
    font-size: 5.8666666667vw;
    margin-bottom: 8vw;
  }
}
.top-reformMenu__cont .desc {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2.2222222222;
  font-weight: 500;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-reformMenu__cont .desc {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    font-size: 4vw;
    margin-bottom: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .top-reformMenu__cont .btn {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}

.top-reformMenu__slider .swiper-wrapper {
  padding-bottom: 3.5vw;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .top-reformMenu__slider .swiper-wrapper {
    padding-bottom: 10vw;
    padding-top: 2.5vw;
  }
}
.top-reformMenu__slider .swiper-slide {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.top-reformMenu__slider .swiper-slide:hover {
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
@media screen and (max-width: 768px) {
  .top-reformMenu__slider .swiper-slide:hover {
    -webkit-transform: translateY(-2.5vw);
            transform: translateY(-2.5vw);
  }
}
.top-reformMenu__slider .swiper-pagination-bullet {
  width: 13px;
  width: 0.8125rem;
  height: 13px;
  height: 0.8125rem;
  background-color: #e6e6e6;
  opacity: 1;
  margin: 0 6px !important;
}
@media screen and (max-width: 768px) {
  .top-reformMenu__slider .swiper-pagination-bullet {
    width: 1.8666666667vw;
    height: 1.8666666667vw;
    margin: 0 1.0666666667vw !important;
  }
}
.top-reformMenu__slider .swiper-pagination-bullet-active {
  background-color: #008842;
}

/*------------------------
よくあるご質問
------------------------*/
.top-qa {
  padding: 120px 0 100px;
  padding: 7.5rem 0 6.25rem;
  overflow: hidden;
  background: no-repeat center/cover url(../images/qa_bg@2x.png);
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-qa {
    padding: 13.3333333333vw 0 13.3333333333vw;
  }
}
@media (max-width: 1440px) {
  .top-qa .top-qa__cont {
    zoom: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .top-qa .top-qa__cont {
    z-index: 1;
  }
}
.top-qa .illust {
  position: absolute;
  bottom: 0;
  z-index: 1;
}
.top-qa .illust.--left {
  width: 100%;
  max-width: 288px;
  max-width: 18rem;
  left: calc(50% - 542px);
}
@media screen and (max-width: 768px) {
  .top-qa .illust.--left {
    max-width: 36vw;
    left: calc(50% - 62vw);
  }
}
.top-qa .illust.--right {
  width: 100%;
  max-width: 290px;
  max-width: 18.125rem;
  right: calc(50% - 516px);
}
@media screen and (max-width: 768px) {
  .top-qa .illust.--right {
    max-width: 39vw;
    right: calc(50% - 62vw);
  }
}
.top-qa .top-qa__btn {
  display: block;
  width: 594px;
  width: 37.125rem;
  margin: 0 auto;
}
.top-qa .top-qa__btn:hover {
  opacity: 0.8;
}
.top-qa .top-qa__btn img {
  height: auto;
}
@media screen and (max-width: 768px) {
  .top-qa .top-qa__btn {
    width: 80vw;
  }
}

/*------------------------
施工実例
------------------------*/
.top-works {
  padding: 120px 0;
  padding: 7.5rem 0;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  .top-works {
    padding: 13.3333333333vw 0;
  }
}
.top-works .section-title {
  margin: 0 auto 20px;
  margin: 0 auto 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-works .section-title {
    margin: 0 auto 2.6666666667vw;
  }
}
.top-works .section-title img {
  margin: 0 auto;
}
.top-works .section-lead {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-works .section-lead {
    margin-bottom: 5.3333333333vw;
  }
}

.top-works__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 337px));
  gap: 30px;
  gap: 1.875rem;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-works__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.6666666667vw;
    margin-bottom: 4vw;
  }
}
.top-works__items .item .img {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
.top-works__items .item .text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-works__items .item .text {
    font-size: 2.9333333333vw;
  }
}

/*------------------------
理想をカタチにするこだわりリフォーム
------------------------*/
.top-point {
  display: none;
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .top-point {
    padding: 13.3333333333vw 0;
  }
}

.top-point__slider::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 60px;
  bottom: 3.75rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
}
@media screen and (max-width: 768px) {
  .top-point__slider::after {
    bottom: 8vw;
  }
}
.top-point__slider .swiper-pagination-bullet {
  width: 13px;
  width: 0.8125rem;
  height: 13px;
  height: 0.8125rem;
  margin: 0 6px !important;
  background-color: #e6e6e6;
  opacity: 1;
}
.top-point__slider .swiper-pagination-bullet-active {
  background-color: #008842;
}

.top-point__slider-wrapper {
  padding-bottom: 150px;
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 768px) {
  .top-point__slider-wrapper {
    padding-bottom: 13.3333333333vw;
  }
}

.top-point__slide--cont {
  max-width: 1140px;
  padding-inline: 20px;
  margin: 0 auto;
}

.top-point__top {
  font-size: clamp(40px, 2.8vw, 54px);
  letter-spacing: normal;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  padding: 0.6em 0;
  background-color: #008842;
  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;
  width: 100%;
  border-radius: 0.625rem;
  position: relative;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .top-point__top {
    font-size: 4.6666666667vw;
    border-radius: 1.3333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}
.top-point__top::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  -webkit-transform: translateY(98%);
          transform: translateY(98%);
  left: 0;
  right: 0;
  margin: auto;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 39px 22.5px 0 22.5px;
  border-color: #008842 transparent transparent transparent;
}
@media screen and (max-width: 768px) {
  .top-point__top::before {
    border-width: 4vw 2.4vw 0 2.4vw;
  }
}

.top-point__detail {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  gap: 1.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-point__detail {
    margin-bottom: 2.6666666667vw;
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .top-point__slide--text {
    margin-bottom: 5.3333333333vw;
  }
}
.top-point__slide--text .hashItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.1944444444;
  font-weight: bold;
  color: #008842;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .top-point__slide--text .hashItems {
    font-size: 4.2666666667vw;
  }
}
.top-point__slide--text .catch {
  font-size: 46px;
  font-size: 2.875rem;
  line-height: 1.4347826087;
  font-weight: bold;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .top-point__slide--text .catch {
    font-size: 5.6vw;
    margin-bottom: 2.6666666667vw;
  }
}
.top-point__slide--text .desc {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.9583333333;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top-point__slide--text .desc {
    font-size: 3.2vw;
  }
}

.top-point__slide--link {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-bottom: 0.5em;
}
.top-point__slide--link .sub {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  margin: 0 auto 1.25rem;
  position: relative;
  padding-inline: 0.8em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .top-point__slide--link .sub {
    font-size: 4vw;
    margin: 0 auto 2.6666666667vw;
  }
}
.top-point__slide--link .sub::before, .top-point__slide--link .sub::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 98%;
  background-color: #333333;
}
.top-point__slide--link .sub::before {
  left: 0;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.top-point__slide--link .sub::after {
  right: 0;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

.top-point__slide--btn {
  min-height: 93px;
  min-height: 5.8125rem;
  width: 336px;
  width: 21rem;
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.5;
  color: #fff;
  font-weight: bold;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #333333;
  padding-left: 30px;
  padding-left: 1.875rem;
  position: relative;
  border-radius: 0.3125rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .top-point__slide--btn {
    min-height: 12.4vw;
    width: 48vw;
    font-size: 3.7333333333vw;
    padding-left: 4vw;
    border-radius: 0.6666666667vw;
  }
}
.top-point__slide--btn::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
  width: 32px;
  width: 2rem;
  height: 18px;
  height: 1.125rem;
  background: no-repeat center/contain url(../images/top/btn-arrow.svg);
}
@media screen and (max-width: 768px) {
  .top-point__slide--btn::after {
    right: 2.6666666667vw;
    width: 4.2666666667vw;
    height: 2.4vw;
  }
}

.top-point__slide--imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .top-point__slide--imgs {
    gap: 2.6666666667vw;
  }
}
.top-point__slide--imgs .img {
  width: 100%;
}

/*------------------------
links
------------------------*/
.top-links {
  padding: 120px 0;
  padding: 7.5rem 0;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  .top-links {
    padding: 13.3333333333vw 0;
  }
}
.top-links .inner {
  gap: 15px;
  gap: 0.9375rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .top-links .inner {
    gap: 4vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.top-links .inner .item {
  display: block;
  width: 100%;
}
.top-links .inner .item:hover {
  opacity: 0.8;
}
.top-links .inner .item:last-of-type {
  position: relative;
  top: -10px;
  top: -0.625rem;
}

/*------------------------
選ばれる理由
------------------------*/
.top-reason {
  padding: 100px 0 120px;
  padding: 6.25rem 0 7.5rem;
  overflow: hidden;
  position: relative;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  .top-reason {
    padding: 13.3333333333vw 0 13.3333333333vw;
  }
}
.top-reason .section-title {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .top-reason .section-title {
    margin-bottom: 5.3333333333vw;
  }
}
.top-reason .section-lead {
  -moz-text-align-last: left;
       text-align-last: left;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .top-reason .section-lead {
    margin-bottom: 2.6666666667vw;
  }
}
.top-reason::after {
  display: block;
  content: "";
  position: absolute;
  top: 100px;
  top: 6.25rem;
  right: calc(50% - 954px);
  width: 700px;
  width: 43.75rem;
  height: 480px;
  height: 30rem;
  background: no-repeat top right/contain url(../images/top/reason-img02@2x.jpg);
}
@media (max-width: 1920px) {
  .top-reason::after {
    right: 0;
    width: 36.4583333333vw;
    height: 25vw;
  }
}
@media screen and (max-width: 768px) {
  .top-reason::after {
    display: none;
  }
}

.bigCatch {
  height: 658px;
  height: 41.125rem;
  padding-top: 100px;
  padding-top: 6.25rem;
  position: relative;
}
.bigCatch.scrollin::before {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .bigCatch {
    height: 87.7333333333vw;
    padding-top: 16vw;
  }
}
.bigCatch::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: no-repeat center/cover url(../images/top/bigCatch-bg@2x.jpg);
  opacity: 0;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
.bigCatch .text {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 2;
  font-weight: bold;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #fff;
  margin-left: -0.5em;
}
@media screen and (max-width: 768px) {
  .bigCatch .text {
    font-size: 5.5vw;
    line-height: 1.5;
    margin-left: 4vw;
  }
}

.top-reason__topDesc {
  width: 64%;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media (max-width: 1300px) {
  .top-reason__topDesc {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .top-reason__topDesc {
    width: 100%;
    margin-bottom: 8vw;
  }
}

.top-reason__item {
  margin-bottom: 38px;
  margin-bottom: 2.375rem;
}
@media screen and (max-width: 768px) {
  .top-reason__item {
    margin-bottom: 5.0666666667vw;
  }
}
.top-reason__item .main {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.1666666667;
  font-weight: bold;
  color: #008842;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .top-reason__item .main {
    font-size: 4.8vw;
    margin-bottom: 1.3333333333vw;
  }
}
.top-reason__item .desc {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.8333333333;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top-reason__item .desc {
    font-size: 4vw;
  }
}

/*------------------------
会社情報
------------------------*/
.top-company {
  padding: 120px 0;
  padding: 7.5rem 0;
  background: no-repeat center/cover url(../images/top/company-bg@2x.jpg);
}
@media screen and (max-width: 768px) {
  .top-company {
    padding: 13.3333333333vw 0;
  }
}
.top-company .section-title {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-company .section-title {
    margin-bottom: 5.3333333333vw;
  }
}
.top-company .section-title img {
  margin: 0 auto;
}

.top-company__column .section-lead {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.8666666667;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top-company__column .section-lead {
    font-size: 4.8vw;
    margin-bottom: 5.3333333333vw;
  }
}

.top-company__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .top-company__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.top-company__link {
  max-width: 520px;
  max-width: 32.5rem;
  border-radius: 0.625rem;
  border: 5px solid #fff;
  background-color: #74a92d;
  padding: 30px;
  padding: 1.875rem;
}
@media screen and (max-width: 768px) {
  .top-company__link {
    border-radius: 1.3333333333vw;
    max-width: 100%;
    padding: 5.3333333333vw;
  }
}
.top-company__link:nth-child(2) {
  background-color: #008842;
}
.top-company__link:nth-child(3) {
  background-color: #005a49;
}
.top-company__link .title {
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1.2;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  font-weight: bold;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding-right: 0.5em;
}
@media screen and (max-width: 768px) {
  .top-company__link .title {
    font-size: 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.top-company__link .title .arrow {
  width: 36px;
  width: 2.25rem;
  height: 22px;
  height: 1.375rem;
  background: no-repeat center/contain url(../images/top/link-arrow@2x.svg);
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .top-company__link .title .arrow {
    width: 4.8vw;
    height: 2.9333333333vw;
  }
}
.top-company__link .desc {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.7;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top-company__link .desc {
    font-size: 3.4666666667vw;
  }
}

/*------------------------
google評価
------------------------*/
#evaluation__cont {
  display: none;
}

.top-voice {
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .top-voice {
    padding: 13.3333333333vw 0;
  }
}
.top-voice .section-title {
  margin: 0 auto 50px;
  margin: 0 auto 3.125rem;
}
@media screen and (max-width: 768px) {
  .top-voice .section-title {
    margin-bottom: 8vw;
  }
}

.top-voice__items {
  gap: 20px;
  gap: 1.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .top-voice__items {
    gap: 7vw;
    margin-bottom: 11vw;
  }
}

.top-voice__item {
  width: 100%;
  max-width: 517px;
  max-width: 32.3125rem;
  padding: 20px 20px 30px;
  padding: 1.25rem 1.25rem 1.875rem;
  background-color: #fff;
  border: 1px solid rgb(0, 0, 0);
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-voice__item {
    max-width: 100%;
    padding: 4vw 2.6666666667vw 4vw;
  }
}
.top-voice__item::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 3px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  right: 30px;
  right: 1.875rem;
  width: 48px;
  width: 3rem;
  height: 38px;
  height: 2.375rem;
  background: no-repeat center/contain url(../images/top/fukidashi-arrow-border@2x.png);
}
@media screen and (max-width: 768px) {
  .top-voice__item::after {
    bottom: 0.5vw;
    right: 5.3333333333vw;
    width: 8vw;
    height: 6.6666666667vw;
  }
}

.top-voice__item--top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-voice__item--top {
    margin-bottom: 2.6666666667vw;
  }
}
.top-voice__item--top .icon {
  width: 150px;
  width: 9.375rem;
}
@media screen and (max-width: 768px) {
  .top-voice__item--top .icon {
    width: 17vw;
  }
}
.top-voice__item--top .man-detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.top-voice__item--top .name {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.5833333333;
}
@media screen and (max-width: 768px) {
  .top-voice__item--top .name {
    font-size: 4vw;
    margin-bottom: 1.3333333333vw;
  }
}
.top-voice__item--top .comment {
  font-size: 27px;
  font-size: 1.6875rem;
  line-height: 1.4074074074;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top-voice__item--top .comment {
    font-size: 5.1vw;
  }
}

.top-voice__item--desc {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.6666666667;
}
@media screen and (max-width: 768px) {
  .top-voice__item--desc {
    font-size: 4vw;
  }
}
.top-voice__item--desc .link {
  display: inline-block;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
  float: right;
}
@media screen and (max-width: 768px) {
  .top-voice__item--desc .link {
    font-size: 4vw;
  }
}
.top-voice__item--desc .link .arrow {
  display: inline-block;
  width: 30px;
  width: 1.875rem;
  height: 18px;
  height: 1.125rem;
  background: no-repeat center/contain url(../images/top/link-arrow_black@2x.svg);
}
@media screen and (max-width: 768px) {
  .top-voice__item--desc .link .arrow {
    width: 4.5333333333vw;
    height: 2.6666666667vw;
  }
}

.top-voice__img01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  position: relative;
}
.top-voice__img01 .icon {
  width: 22%;
}
.top-voice__img01 .kuchikomi {
  width: 78%;
}
@media screen and (max-width: 768px) {
  .top-voice__img01 .kuchikomi {
    width: 100%;
  }
}
.top-voice__img01 .google-percent {
  position: absolute;
  top: 4px;
  right: -31px;
  font-size: 150px;
  font-size: 9.375rem;
  line-height: 0.8;
  color: #e94738;
  font-weight: bold;
  -webkit-transform: scaleX(0.8);
          transform: scaleX(0.8);
  font-family: "Archivo Black", sans-serif;
}
@media (max-width: 1140px) {
  .top-voice__img01 .google-percent {
    top: -0.3vw;
    right: -3vw;
    font-size: 13vw;
  }
}
@media screen and (max-width: 768px) {
  .top-voice__img01 .google-percent {
    top: -0.3vw;
    right: -3vw;
    font-size: 14vw;
  }
}
.top-voice__img01 .google-percent .number {
  font-size: 200px;
  font-size: 12.5rem;
  line-height: 0.8;
}
@media (max-width: 1140px) {
  .top-voice__img01 .google-percent .number {
    font-size: 19vw;
  }
}
@media screen and (max-width: 768px) {
  .top-voice__img01 .google-percent .number {
    font-size: 21vw;
  }
}

.top-voice__img02 {
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  position: relative;
}
.top-voice__img02 .all-rate {
  position: absolute;
  top: 15%;
  left: 50%;
}
@media (max-width: 1140px) {
  .top-voice__img02 .all-rate {
    top: 9%;
  }
}
@media screen and (max-width: 768px) {
  .top-voice__img02 .all-rate {
    top: 5%;
  }
}
.top-voice__img02 .number {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 1140px) {
  .top-voice__img02 .number {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .top-voice__img02 .number {
    font-size: 3.4vw;
  }
}
.top-voice__img02 .star {
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
}
@media (max-width: 1140px) {
  .top-voice__img02 .star {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .top-voice__img02 .star {
    font-size: 3.4vw;
  }
}

.review-card {
  position: relative;
  border: 1px solid #ccc;
  border-radius: 30px;
  padding: 30px;
  padding: 1.875rem;
}

.google-icon {
  position: absolute;
  top: 24px;
  right: 30px;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  z-index: -1;
}

.author-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.author-wrap .left .img {
  width: 50px;
  width: 3.125rem;
}
.author-wrap .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.author-wrap .right .author {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: bold;
}
.author-wrap .right .date {
  font-size: 12px;
  font-size: 0.75rem;
  color: #a9a9a9;
}

.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  gap: 0.3125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
.rating img {
  display: block;
  width: 30px;
  width: 1.875rem;
}

.review-text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.evaluation .swiper {
  padding-inline: 18px;
  padding-inline: 1.125rem;
}
.evaluation .swiper-slide {
  min-height: 420px;
  min-height: 26.25rem;
}
.evaluation .swiper-button-prev,
.evaluation .swiper-button-next {
  width: 45px;
  width: 2.8125rem;
  height: 45px;
  height: 2.8125rem;
}
.evaluation .swiper-button-prev {
  left: 0 !important;
}
.evaluation .swiper-button-next {
  right: 0 !important;
}

/*------------------------
対応エリア
------------------------*/
.top-area {
  padding: 120px 0;
  padding: 7.5rem 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-area {
    padding: 13.3333333333vw 0;
  }
}
.top-area .section-title {
  margin: 0 auto 40px;
  margin: 0 auto 2.5rem;
}
.top-area .section-title img {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top-area .section-title {
    margin-bottom: 5.3333333333vw;
  }
}
.top-area .section-lead {
  line-height: 1.5;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-area .section-lead {
    margin-bottom: 4vw;
  }
}
.top-area .sub {
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top-area .sub {
    font-size: 3.7333333333vw;
  }
}
.top-area .btn {
  margin: 0 0 60px 0;
  margin: 0 0 3.75rem 0;
}
@media screen and (max-width: 768px) {
  .top-area .btn {
    margin: 0 auto 8vw;
  }
}

.top-area__map {
  margin: -40px auto 0;
  margin: -2.5rem auto 0;
}
@media screen and (max-width: 768px) {
  .top-area__map {
    margin-top: 0vw;
  }
}

/*------------------------
私たちについて
------------------------*/
.top-about {
  padding: 120px 0 80px;
  padding: 7.5rem 0 5rem;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  .top-about {
    padding: 20vw 0;
  }
}
.top-about .white-line {
  background: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(79.5%, #fff), color-stop(79.5%, transparent));
  background: linear-gradient(to right, #fff 0%, #fff 79.5%, transparent 79.5%);
}
@media screen and (max-width: 768px) {
  .top-about .white-line {
    background: #fff;
  }
}
.top-about .section-title {
  margin-top: -30px;
  margin-top: -1.875rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .top-about .section-title {
    margin-top: -4vw;
    margin-bottom: 4vw;
  }
}
.top-about .section-catch {
  font-size: 38px;
  font-size: 2.375rem;
  line-height: 1.5789473684;
  font-weight: bold;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-about .section-catch {
    font-size: 5.0666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}

.top-about__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-about__column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.top-about__column .desc {
  max-width: 690px;
  max-width: 43.125rem;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .top-about__column .desc {
    max-width: 100%;
    margin-bottom: 4vw;
  }
}
.top-about__column .top-about__img {
  width: 37.8645833333vw;
  margin-right: calc(50% - 50vw);
  margin-top: -1.5vw;
}
@media screen and (max-width: 768px) {
  .top-about__column .top-about__img {
    width: 100%;
    margin-right: 0;
    margin-top: 0;
  }
}

/*------------------------
理念
------------------------*/
.top-philosophy {
  padding: 20px 0 120px;
  padding: 1.25rem 0 7.5rem;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  .top-philosophy {
    padding: 0 0 13.3333333333vw;
  }
}
.top-philosophy .white-line {
  background: -webkit-gradient(linear, right top, left top, from(#fff), color-stop(81.3%, #fff), color-stop(81.3%, transparent));
  background: linear-gradient(to left, #fff 0%, #fff 81.3%, transparent 81.3%);
}
@media screen and (max-width: 768px) {
  .top-philosophy .white-line {
    background: #fff;
  }
}
.top-philosophy .section-title {
  margin-top: -30px;
  margin-top: -1.875rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .top-philosophy .section-title {
    margin-top: -4vw;
    margin-bottom: 4vw;
  }
}
.top-philosophy .section-catch {
  font-size: 38px;
  font-size: 2.375rem;
  line-height: 1.5789473684;
  font-weight: bold;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-philosophy .section-catch {
    font-size: 5.6vw;
    margin-bottom: 2.6666666667vw;
  }
}

.top-philosophy__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .top-philosophy__column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
  }
}
.top-philosophy__column .desc {
  max-width: 690px;
  max-width: 43.125rem;
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .top-philosophy__column .desc {
    max-width: 100%;
    margin-bottom: 4vw;
  }
}
.top-philosophy__column .top-philosophy__img {
  width: 37.8645833333vw;
  margin-left: calc(50% - 50vw);
  margin-top: -1.5vw;
}
@media screen and (max-width: 768px) {
  .top-philosophy__column .top-philosophy__img {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
  }
}

/*------------------------
ながれ
------------------------*/
.top-flow {
  padding: 120px 0;
  padding: 7.5rem 0;
  position: relative;
  overflow: hidden;
  background-color: #eaf2df;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-flow {
    padding: 13.3333333333vw 0;
  }
}
.top-flow .section-title {
  margin: 0 auto 40px;
  margin: 0 auto 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-flow .section-title {
    margin-bottom: 5.3333333333vw;
  }
}
.top-flow .section-title img {
  margin: 0 auto;
}
.top-flow .section-lead {
  line-height: 1.5;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-flow .section-lead {
    margin-bottom: 2.6666666667vw;
  }
}
.top-flow .section-lead + .desc {
  text-align: center;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .top-flow .section-lead + .desc {
    margin-bottom: 2.6666666667vw;
  }
}

.top-flow__items {
  position: relative;
}
.top-flow__items::before {
  display: block;
  content: "";
  position: absolute;
  top: 30px;
  top: 1.875rem;
  left: 67px;
  left: 4.1875rem;
  width: 3px;
  height: 90%;
  background-color: #008842;
}
@media screen and (max-width: 768px) {
  .top-flow__items::before {
    top: 27vw;
    left: 7.6vw;
    height: 89%;
  }
}

.top-flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-flow__item + .top-flow__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-flow__item + .top-flow__item {
    margin-top: 5.3333333333vw;
  }
}
.top-flow__item .stepNumber {
  width: 138px;
  width: 8.625rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-flow__item .stepNumber {
    width: 16vw;
  }
}
.top-flow__item .step-cont {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  overflow: hidden;
  border-radius: 0.625rem;
  min-height: 180px;
  min-height: 11.25rem;
  margin-left: -30px;
  margin-left: -1.875rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .top-flow__item .step-cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0;
    border-radius: 1.3333333333vw;
    margin-left: -4vw;
    min-height: 24vw;
  }
}
.top-flow__item .step-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  padding: 20px 0 30px 50px;
  padding: 1.25rem 0 1.875rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .top-flow__item .step-text {
    padding: 2.6666666667vw 4vw 4vw 6.6666666667vw;
  }
}
.top-flow__item .step-text .main {
  font-size: 32px;
  font-size: 2rem;
  line-height: 2.0625;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top-flow__item .step-text .main {
    font-size: 4vw;
  }
}
.top-flow__item .step-text .desc {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.7272727273;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top-flow__item .step-text .desc {
    font-size: 3.2vw;
  }
}

.step-cont__img {
  width: 270px;
  width: 16.875rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .step-cont__img {
    width: 100%;
  }
}
.step-cont__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .step-cont__img img {
    position: static;
    width: 100%;
    height: 34vw;
  }
}

/*------------------------
コラム・お知らせ
------------------------*/
.top-posts {
  padding: 120px 0;
  padding: 7.5rem 0;
}
@media screen and (max-width: 768px) {
  .top-posts {
    padding: 13.3333333333vw 0;
  }
}

.top-posts__item {
  padding: 70px 0;
  padding: 4.375rem 0;
  border-top: 2px solid #008842;
}
@media screen and (max-width: 768px) {
  .top-posts__item {
    padding: 9.3333333333vw 0;
  }
}
.top-posts__item:last-child {
  border-bottom: 2px solid #008842;
}
.top-posts__item .btn {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top-posts__item .btn {
    margin: 8vw auto 0;
  }
}

.top-posts__item--top {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-posts__item--top {
    margin-bottom: 5.3333333333vw;
  }
}
.top-posts__item--top .section-title {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-posts__item--top .section-title {
    margin-bottom: 2.6666666667vw;
  }
}

.ulPage {
  padding-top: 100px;
  padding-top: 6.25rem;
  overflow: hidden;
}
@media (max-width: 1720px) {
  .ulPage {
    padding-top: 5rem;
  }
}

.ul-head {
  height: 330px;
  height: 20.625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ul-head {
    height: 44vw;
  }
}
.ul-head .head-img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.ul-head .head-line {
  top: auto;
  bottom: 10px;
  bottom: 0.625rem;
  left: 0;
}
.ul-head .inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.ul-head .inner .page-title {
  position: absolute;
  top: 41%;
  left: 20px;
}
@media screen and (max-width: 768px) {
  .ul-head .inner .page-title {
    left: 5.2631578947vw;
  }
}

.page-title {
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page-title {
    font-size: 6.1333333333vw;
  }
}

.bread {
  padding: 15px 0;
  padding: 0.9375rem 0;
}
.bread .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 46px;
  gap: 2.875rem;
}
@media screen and (max-width: 768px) {
  .bread .inner {
    gap: 6.1333333333vw;
  }
}
.bread .bread__item:last-child {
  pointer-events: none;
}

.moveLine {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: moveLine 20s infinite linear;
          animation: moveLine 20s infinite linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 87px;
  height: 5.4375rem;
  z-index: 1;
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media screen and (max-width: 768px) {
  .moveLine {
    height: 8vw;
    -webkit-animation-duration: 8s;
            animation-duration: 8s;
  }
}
.moveLine img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
  width: auto;
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 40px;
  padding-right: 2.5rem;
}
@media screen and (max-width: 768px) {
  .moveLine img {
    padding-right: 5.3333333333vw;
  }
}

@-webkit-keyframes moveLine {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes moveLine {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.bread__item {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
  font-family: "Kosugi Maru", sans-serif;
  position: relative;
}
@media screen and (max-width: 768px) {
  .bread__item {
    font-size: 2.6666666667vw;
  }
}
.bread__item + .bread__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -35px;
  width: 24px;
  width: 1.5rem;
  height: 1px;
  height: 0.0625rem;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .bread__item + .bread__item::before {
    left: -4.4vw;
    width: 2.6666666667vw;
    height: 0.1333333333vw;
  }
}

.main-content {
  padding: 100px 0;
  padding: 6.25rem 0;
}
@media screen and (max-width: 768px) {
  .main-content {
    padding: 10.6666666667vw 0;
  }
}

/*------------------------
施工実例
------------------------*/
.worksCont__catch {
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .worksCont__catch {
    font-size: 6.1333333333vw;
    margin-bottom: 4vw;
  }
}

.worksCont__topColumn {
  gap: 8.7719298246%;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .worksCont__topColumn {
    gap: 8vw;
    margin-bottom: 6.6666666667vw;
  }
}
.worksCont__topColumn .desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.875;
}
@media screen and (max-width: 768px) {
  .worksCont__topColumn .desc {
    font-size: 3.7333333333vw;
  }
}
.worksCont__topColumn .detail {
  width: 36.8181818182%;
}
@media screen and (max-width: 768px) {
  .worksCont__topColumn .detail {
    width: 100%;
  }
}
.worksCont__topColumn .detail dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
  border-bottom: 1px solid rgba(0, 0, 0, .2);
  padding: 10px 0;
  padding: 0.625rem 0;
}
.worksCont__topColumn .detail dl dt {
  width: 7em;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .worksCont__topColumn .detail dl dt {
    font-size: 3.7333333333vw;
  }
}
.worksCont__topColumn .detail dl dd {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .worksCont__topColumn .detail dl dd {
    font-size: 3.7333333333vw;
  }
}

.worksCont__mainImg {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .worksCont__mainImg {
    margin-bottom: 6.6666666667vw;
  }
}

.worksCont__bottom {
  gap: 50px;
  gap: 3.125rem;
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .worksCont__bottom {
    margin-bottom: 10.6666666667vw;
    gap: 5.3333333333vw;
  }
}
.worksCont__bottom .img {
  width: 46.3636363636%;
}
@media screen and (max-width: 768px) {
  .worksCont__bottom .img {
    width: 100%;
  }
}
.worksCont__bottom .desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .worksCont__bottom .desc {
    font-size: 3.7333333333vw;
  }
}
.worksCont__bottom .desc .title {
  display: block;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .worksCont__bottom .desc .title {
    font-size: 3.7333333333vw;
    margin-bottom: 1.3333333333vw;
  }
}

.worksCont__step {
  gap: 40px;
  gap: 2.5rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
@media screen and (max-width: 768px) {
  .worksCont__step {
    gap: 5.3333333333vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.worksCont__step + .worksCont__step {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .worksCont__step + .worksCont__step {
    margin-top: 10.6666666667vw;
  }
}
.worksCont__step .left {
  width: 40.9090909091%;
}
@media screen and (max-width: 768px) {
  .worksCont__step .left {
    width: 100%;
  }
}
.worksCont__step .left .icon {
  width: 163px;
  width: 10.1875rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .worksCont__step .left .icon {
    float: left;
    margin-right: 2.6666666667vw;
    width: 18.6666666667vw;
    margin-bottom: 0;
  }
}
.worksCont__step .left .desc {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 500;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .worksCont__step .left .desc {
    font-size: 3.7333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.worksCont__step .left .before {
  width: 108px;
  width: 6.75rem;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .worksCont__step .left .before {
    width: 16vw;
    margin-bottom: 0.6666666667vw;
  }
}
.worksCont__step .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.worksCont__step .right .img + .img {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .worksCont__step .right .img + .img {
    margin-top: 2.6666666667vw;
  }
}
.worksCont__step + .step-bottom {
  margin-top: 40px;
  margin-top: 2.5rem;
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .worksCont__step + .step-bottom {
    margin-top: 2.6666666667vw;
    gap: 2.6666666667vw;
  }
}

.worksCont__comment {
  margin-top: 100px;
  margin-top: 6.25rem;
  border: 4px solid #008842;
  border-radius: 5px;
  padding: 30px 20px;
  padding: 1.875rem 1.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .worksCont__comment {
    margin-top: 10.6666666667vw;
    padding: 4vw 2.6666666667vw;
  }
}
.worksCont__comment .title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 20px;
  margin-left: 1.25rem;
  margin-top: -65px;
  margin-top: -4.0625rem;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  border-radius: 5px;
  background-color: #008842;
  color: #fff;
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 1.5;
  font-weight: bold;
  -webkit-transform: rotate(-4deg);
          transform: rotate(-4deg);
}
@media screen and (max-width: 768px) {
  .worksCont__comment .title {
    padding: 1.3333333333vw 2.6666666667vw;
    font-size: 3.7333333333vw;
    margin-left: 2.6666666667vw;
    margin-top: -8.6666666667vw;
    margin-bottom: 3.3333333333vw;
  }
}
.worksCont__comment .title::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -22px;
  left: 101px;
  width: 37px;
  width: 2.3125rem;
  height: 34px;
  height: 2.125rem;
  background: no-repeat center/contain url(../images/works/comment-delta@2x.png);
}
@media screen and (max-width: 768px) {
  .worksCont__comment .title::after {
    bottom: -2.9333333333vw;
    left: 13.4666666667vw;
    width: 4.9333333333vw;
    height: 4.5333333333vw;
  }
}
.worksCont__comment .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  gap: 1.875rem;
  padding-inline: 0;
}
@media screen and (max-width: 768px) {
  .worksCont__comment .inner {
    display: block;
  }
}
.worksCont__comment .inner .icon {
  width: 177px;
  width: 11.0625rem;
}
@media screen and (max-width: 768px) {
  .worksCont__comment .inner .icon {
    float: left;
    margin-right: 2.6666666667vw;
    width: 23.6vw;
  }
}
.worksCont__comment .inner .desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .worksCont__comment .inner .desc {
    font-size: 3.7333333333vw;
  }
}

.worksCont__link {
  margin: 50px auto;
  margin: 3.125rem auto;
}
.worksCont__link a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
}

/*******　一覧ページ*********/
.worksList .lead {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.7333333333;
  letter-spacing: 0.05em;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .worksList .lead {
    font-size: 4.2666666667vw;
    margin-bottom: 8vw;
  }
}

.worksList__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  gap: 2.5rem;
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}
@media (max-width: 1280px) {
  .worksList__items {
    gap: 1.875rem 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .worksList__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.3333333333vw;
  }
}

.worksList__item--img {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  position: relative;
}
.worksList__item--img .box-img {
  display: block;
  aspect-ratio: 353/418;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Before-After Slider */
.before_after_slider {
  --handle-position: 49%;
  position: relative;
  overflow: hidden;
}
.before_after_slider::before {
  content: "〈 　 〉";
  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;
  position: absolute;
  top: 50%;
  left: var(--handle-position);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, .3);
  border: 3px solid #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
          box-shadow: 0 0 5px rgba(0, 0, 0, .3);
  z-index: 10;
  color: #fff;
  font-size: 12px;
  letter-spacing: -2px;
  text-shadow: 0 0 3px rgba 0, 0, 0, 0.5;
  pointer-events: none;
}
.before_after_slider .box_after img {
  width: 100%;
  height: auto;
  display: block;
}
.before_after_slider .box_before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  border-right: 3px solid #fff;
  -webkit-box-shadow: 3px 0 5px rgba(0, 0, 0, .3);
          box-shadow: 3px 0 5px rgba(0, 0, 0, .3);
  pointer-events: none;
  z-index: 5;
}
.before_after_slider .box_before img {
  width: auto;
  height: 100%;
  max-width: none;
  position: absolute;
  top: 0;
  left: 0;
}
.before_after_slider .slider_range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 20;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  pointer-events: auto;
}

img.slider-text {
  height: auto !important;
  position: absolute;
  top: auto !important;
  bottom: 3px !important;
  bottom: 0.1875rem !important;
}
img.slider-text.--before {
  width: 110px !important;
  width: 6.875rem !important;
  left: 5px !important;
  left: 0.3125rem !important;
  z-index: 6;
}
img.slider-text.--after {
  width: 84px !important;
  width: 5.25rem !important;
  left: auto !important;
  right: 5px !important;
  right: 0.3125rem !important;
  z-index: 1;
}

.worksList__item--meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .worksList__item--meta {
    font-size: 3.7333333333vw;
    margin-bottom: 1.3333333333vw;
  }
}

.worksList__item--title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .worksList__item--title {
    font-size: 4.8vw;
  }
}

.worksList__item--desc {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .worksList__item--desc {
    font-size: 3.7333333333vw;
  }
}

.worksList__item--link {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  font-weight: bold;
  color: #008842;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding-right: 25px;
  padding-right: 1.5625rem;
}
.worksList__item--link::after {
  content: "";
  display: block;
  width: 20px;
  width: 1.25rem;
  height: 15px;
  height: 0.9375rem;
  background: no-repeat center/contain url(../images/card-arrow@2x.png);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
@media screen and (max-width: 768px) {
  .worksList__item--link {
    font-size: 3.2vw;
  }
}

.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;
  gap: 10px;
  gap: 0.625rem;
}
.pagination .page-numbers {
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 500;
  color: #999999;
  border: 1px solid #999999;
  border-radius: 50%;
  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;
  cursor: pointer;
}
.pagination .page-numbers.current {
  background-color: #008842;
  color: #fff;
  border: 1px solid #008842;
}
.pagination .page-numbers.next, .pagination .page-numbers.prev {
  border: none;
  font-size: 28px;
  font-size: 1.75rem;
}

/*------------------------
リフォームメニュー
------------------------*/
.reform .lead {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.7333333333;
  font-weight: 500;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .reform .lead {
    font-size: 4.2666666667vw;
    margin-bottom: 8vw;
  }
}

.reform__items.swiper .swiper-wrapper {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .reform__items.swiper .swiper-wrapper {
    padding-bottom: 10.6666666667vw;
  }
}
.reform__items.swiper .swiper-pagination-bullet {
  background-color: #e6e6e6;
}
.reform__items.swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #008842;
}
.reform__items.swiper .slider-navigation {
  position: fixed !important;
  top: 40vh !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.reform__items.swiper .slider-navigation.is-show {
  opacity: 1;
}
.reform__items.swiper .slider-navigation .swiper-button-prev,
.reform__items.swiper .slider-navigation .swiper-button-next {
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  border-radius: 50%;
  background-color: rgba(0, 90, 73, .6);
}
@media screen and (max-width: 768px) {
  .reform__items.swiper .slider-navigation .swiper-button-prev,
.reform__items.swiper .slider-navigation .swiper-button-next {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.reform__items.swiper .slider-navigation .swiper-button-prev::before,
.reform__items.swiper .slider-navigation .swiper-button-next::before {
  display: block;
  content: "";
  position: absolute;
  top: 53%;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 26px solid #ffffff;
  border-right: 0;
}
@media screen and (max-width: 768px) {
  .reform__items.swiper .slider-navigation .swiper-button-prev::before,
.reform__items.swiper .slider-navigation .swiper-button-next::before {
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 17px solid #ffffff;
  }
}
.reform__items.swiper .slider-navigation .swiper-button-prev svg,
.reform__items.swiper .slider-navigation .swiper-button-next svg {
  display: none;
}
.reform__items.swiper .slider-navigation .swiper-button-next {
  -webkit-transform: translateX(75px);
          transform: translateX(75px);
}
@media (max-width: 1280px) {
  .reform__items.swiper .slider-navigation .swiper-button-next {
    -webkit-transform: none;
            transform: none;
  }
}
.reform__items.swiper .slider-navigation .swiper-button-next::before {
  left: 53%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.reform__items.swiper .slider-navigation .swiper-button-prev {
  -webkit-transform: translateX(-75px);
          transform: translateX(-75px);
}
@media (max-width: 1280px) {
  .reform__items.swiper .slider-navigation .swiper-button-prev {
    -webkit-transform: none;
            transform: none;
  }
}
.reform__items.swiper .slider-navigation .swiper-button-prev::before {
  left: 45%;
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
}

@media (max-width: 1280px) {
  .reform__items {
    max-width: calc(100% - 120px);
  }
}
@media screen and (max-width: 768px) {
  .reform__items {
    max-width: 100%;
  }
}

.reform__item .reform__item--head {
  width: 100%;
  height: auto;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .reform__item .reform__item--head {
    margin-bottom: 8vw;
  }
}
@media screen and (max-width: 768px) {
  .reform__item .reform__item--head img {
    aspect-ratio: 550/220;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left bottom;
       object-position: left bottom;
  }
}
.reform__item .catch {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .reform__item .catch {
    font-size: 4.8vw;
    margin-bottom: 2.6666666667vw;
  }
}
.reform__item .main {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 500;
  letter-spacing: normal;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .reform__item .main {
    text-align: left;
    font-size: 3.7333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}

.reform__problem {
  gap: 40px;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .reform__problem {
    gap: 0rem;
  }
}

.reform__title {
  padding: 20px;
  padding: 1.25rem;
  background-color: #000;
  color: #fff;
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.2666666667;
  font-weight: bold;
  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;
  border-radius: 0.3125rem;
  position: relative;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .reform__title {
    padding: 2.6666666667vw 2vw;
    font-size: 4.5333333333vw;
    margin-bottom: 4.5333333333vw;
  }
}
.reform__title::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top: 26px solid #000000;
  border-bottom: 0;
  position: absolute;
  bottom: -20px;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .reform__title::after {
    bottom: -2.6666666667vw;
    border-right: 2vw solid transparent;
    border-left: 2vw solid transparent;
    border-top: 3.4666666667vw solid #000000;
    border-bottom: 0;
  }
}

.reform__problem--detail {
  margin-bottom: 80px;
  margin-bottom: 5rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 768px) {
  .reform__problem--detail {
    margin-bottom: 4vw;
  }
}
.reform__problem--detail .items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .reform__problem--detail .items {
    gap: 2.6666666667vw;
  }
}
.reform__problem--detail .item {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.5833333333;
  font-weight: 500;
  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: 20px 15px;
  padding: 1.25rem 0.9375rem;
  border: 1px solid #000;
  border-radius: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .reform__problem--detail .item {
    font-size: 3.7333333333vw;
    line-height: 1.3571428571;
    padding: 2.6666666667vw 2vw;
    border-radius: 0.6666666667vw;
  }
}

.reform__problem--imgs {
  width: 40.5454545455%;
}
@media screen and (max-width: 768px) {
  .reform__problem--imgs {
    width: 100%;
    margin-bottom: 5.3333333333vw;
  }
}
.reform__problem--imgs .img + .img {
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (max-width: 768px) {
  .reform__problem--imgs .img + .img {
    margin-top: 2.4vw;
  }
}

.reform__points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  gap: 1.25rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .reform__points {
    gap: 2.6666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}
.reform__points .item {
  width: 23%;
  min-width: 220px;
  min-width: 13.75rem;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.85;
  font-weight: bold;
  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;
  background-color: #f2f2f2;
  border-radius: 50%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .reform__points .item {
    min-width: auto;
    width: 41vw;
    height: 41vw;
    font-size: 3.2vw;
  }
}

.reform__link {
  display: block;
  max-width: 820px;
  max-width: 51.25rem;
  margin: 0 auto;
}

/*------------------------
会社情報
------------------------*/
.page-company .ul-head {
  height: 840px;
  height: 52.5rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page-company .ul-head {
    height: 40vh;
  }
}
.page-company .bread {
  margin-top: 740px;
  margin-top: 46.25rem;
  background-color: #fff;
  position: relative;
  z-index: 1;
}
@media (max-width: 1720px) {
  .page-company .bread {
    margin-top: 47.8125rem;
  }
}
@media screen and (max-width: 768px) {
  .page-company .bread {
    margin-top: 28vh;
  }
}
.page-company .inner {
  height: auto;
}
.page-company .inner .page-title {
  top: auto;
  bottom: 20px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .page-company .inner .page-title {
    bottom: 2vw;
  }
}
.page-company + .cta {
  position: relative;
  z-index: 1;
}

.company-h1 {
  position: absolute;
  top: 790px;
  top: 49.375rem;
  left: 0;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .company-h1 {
    top: 34vh;
  }
}

.cloud {
  position: absolute;
  top: 496px;
  top: 31rem;
  left: 0;
  width: 100%;
  height: 420px;
  height: 26.25rem;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(80%, #fff));
  background: linear-gradient(to bottom, transparent 0%, #fff 80%);
}
@media screen and (max-width: 768px) {
  .cloud {
    height: 20vh;
    top: 21vh;
  }
}

.company {
  margin-top: -1px;
  padding-bottom: 0;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.company-title {
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1;
  color: #008842;
  text-transform: uppercase;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .company-title {
    font-size: 8vw;
    margin-bottom: 5.3333333333vw;
  }
}

.company__cont {
  position: relative;
}
.company__cont dl {
  border-bottom: 1px solid rgba(0, 0, 0, .2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2em 0;
}
@media screen and (max-width: 768px) {
  .company__cont dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1em 0;
  }
}
.company__cont dl:first-child {
  border-top: 1px solid rgba(0, 0, 0, .2);
}
.company__cont dl dt {
  min-width: 9em;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .company__cont dl dt {
    font-size: 3.7333333333vw;
    min-width: auto;
    margin-bottom: 2vw;
  }
}
.company__cont dl dd {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .company__cont dl dd {
    font-size: 3.7333333333vw;
  }
}
.company__cont dl dd ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 50px;
  gap: 0.625rem 3.125rem;
}
@media screen and (max-width: 768px) {
  .company__cont dl dd ul {
    gap: 1.3333333333vw 6.6666666667vw;
  }
}
.company__cont dl dd ul.gri2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .company__cont dl dd ul.gri2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.company__cont--imgs {
  position: absolute;
  top: -30px;
  top: -1.875rem;
  right: -100px;
  right: -6.25rem;
  max-width: 634px;
  max-width: 39.625rem;
  gap: 10px;
  gap: 0.625rem;
}
@media (max-width: 1320px) {
  .company__cont--imgs {
    right: 0;
    width: 44.3vw;
  }
}
@media screen and (max-width: 768px) {
  .company__cont--imgs {
    display: none;
  }
}
.company__cont--imgs .img {
  width: 100%;
}
.company__cont--imgs .img:nth-child(2) {
  position: relative;
  top: 50px;
  top: 3.125rem;
}
@media (max-width: 1320px) {
  .company__cont--imgs .img:nth-child(2) {
    top: 4vw;
  }
}

.company__list {
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .company__list {
    margin-bottom: 10.6666666667vw;
  }
}

.company__map {
  display: block;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .company__map {
    margin-bottom: 4vw;
  }
}
.company__map iframe {
  aspect-ratio: 1100/570;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.company__access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 30px;
  gap: 1.875rem;
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .company__access {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.6666666667vw;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-bottom: 10.6666666667vw;
  }
}
.company__access .google-link {
  max-width: 250px;
  max-width: 15.625rem;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: normal;
  font-weight: bold;
  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;
  border: 1px solid rgba(0, 0, 0, .2);
  padding: 10px 30px;
  padding: 0.625rem 1.875rem;
}
@media screen and (max-width: 768px) {
  .company__access .google-link {
    font-size: 3.7333333333vw;
    padding: 1.3333333333vw 4vw;
  }
}
.company__access .google-link:hover {
  opacity: 0.7;
}
.company__access .info {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .company__access .info {
    font-size: 3.7333333333vw;
  }
}

.staff {
  position: relative;
  z-index: 1;
  padding: 180px 0 100px;
  padding: 11.25rem 0 6.25rem;
  background-color: #ededed;
}
@media screen and (max-width: 768px) {
  .staff {
    padding: 18.6666666667vw 0 10.6666666667vw;
    background-color: #ededed;
  }
}
.staff .moveLine {
  top: 100px;
  top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .staff .moveLine {
    top: 10vw;
  }
}

.staff-title {
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1.2;
  font-weight: bold;
  max-width: 1100px;
  max-width: 68.75rem;
  margin: 0 auto 40px;
  margin: 0 auto 2.5rem;
}
@media screen and (max-width: 768px) {
  .staff-title {
    font-size: 8vw;
    padding-inline: 3vw;
    margin: 0 auto 5.3333333333vw;
  }
}

.staff__slider .swiper-wrapper {
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .staff__slider .swiper-wrapper {
    padding-bottom: 10.6666666667vw;
  }
}
.staff__slider .swiper-pagination-bullet {
  opacity: 1;
  background-color: #fff;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  margin: 0 8px;
  margin: 0 0.5rem;
}
@media screen and (max-width: 768px) {
  .staff__slider .swiper-pagination-bullet {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    margin: 0 2.1333333333vw;
  }
}
.staff__slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #008842;
}

.staff__item {
  background-color: #fff;
  border-radius: 0.3125rem;
  padding: 40px 20px 30px;
  padding: 2.5rem 1.25rem 1.875rem;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .staff__item {
    padding: 5.3333333333vw 4vw 4vw;
  }
}

.staff__item--img {
  position: relative;
}
.staff__item--img img {
  width: 80%;
  margin: 0 auto;
  aspect-ratio: 1/1;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.staff__item--img .name-en {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  font-size: 2.6041666667vw;
  line-height: 0.9;
  letter-spacing: -0.1em;
  color: #008842;
  text-transform: uppercase;
  position: absolute;
  left: 0;
  bottom: 35px;
}
@media screen and (max-width: 768px) {
  .staff__item--img .name-en {
    font-size: 6.6666666667vw;
    bottom: 2.6666666667vw;
  }
}

.staff__item--name {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 500;
  margin-top: -30px;
  margin-top: -1.875rem;
}
@media screen and (max-width: 768px) {
  .staff__item--name {
    font-size: 3.7333333333vw;
    margin-top: 0vw;
  }
}

.staff__item--catch {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.375;
  font-weight: bold;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .staff__item--catch {
    font-size: 4.2666666667vw;
    margin-bottom: 1.3333333333vw;
  }
}

.staff__item--detail {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6666666667;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .staff__item--detail {
    font-size: 3.7333333333vw;
  }
}

.activity {
  display: none;
  position: relative;
  padding: 180px 0 100px;
  padding: 11.25rem 0 6.25rem;
  background: url(../images/company/activities-bg@2x.jpg) no-repeat center/cover;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .activity {
    padding: 18.6666666667vw 0 10.6666666667vw;
  }
}
.activity .moveLine {
  top: 100px;
  top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .activity .moveLine {
    top: 10vw;
  }
}

.activity-title {
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1.2;
  font-weight: bold;
  max-width: 1100px;
  max-width: 68.75rem;
  margin: 0 auto 40px;
  margin: 0 auto 2.5rem;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .activity-title {
    font-size: 8vw;
    padding-inline: 3vw;
    text-align: left;
    margin: 0 auto 5.3333333333vw;
  }
}

.activity__item {
  border-radius: 0.3125rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .activity__item {
    border-radius: 0.6666666667vw;
  }
}

.activity__item--img img {
  aspect-ratio: 480/310;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.activity__item--text {
  padding: 20px;
  padding: 1.25rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .activity__item--text {
    padding: 2.6666666667vw;
  }
}

.activity__item--title {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.6666666667;
  font-weight: bold;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .activity__item--title {
    font-size: 4.2666666667vw;
    margin-bottom: 1.3333333333vw;
  }
}

.activity__item--detail {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .activity__item--detail {
    font-size: 3.7333333333vw;
  }
}

.activity__slider .swiper-wrapper {
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .activity__slider .swiper-wrapper {
    padding-bottom: 10.6666666667vw;
  }
}
.activity__slider .swiper-pagination-bullet {
  opacity: 1;
  background-color: #cccccc;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  margin: 0 8px;
  margin: 0 0.5rem;
}
@media screen and (max-width: 768px) {
  .activity__slider .swiper-pagination-bullet {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    margin: 0 2.1333333333vw;
  }
}
.activity__slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #008842;
}

/*------------------------
お客様の声
------------------------*/
.voice .lead {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.7333333333;
  font-weight: 500;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .voice .lead {
    font-size: 4.2666666667vw;
    margin-bottom: 8vw;
  }
}

.voice__items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 510px));
  gap: 50px;
  gap: 3.125rem;
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .voice__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.3333333333vw;
    margin-bottom: 10.6666666667vw;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.voice__item {
  width: 100%;
  max-width: 517px;
  max-width: 32.3125rem;
  padding: 30px 30px 40px;
  padding: 1.875rem 1.875rem 2.5rem;
  background-color: #fff;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 0.3125rem;
  position: relative;
  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: 768px) {
  .voice__item {
    max-width: 100%;
    padding: 4vw 2.6666666667vw 4vw;
  }
}

.voice__item--top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .voice__item--top {
    gap: 2.6666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.voice__item--top .icon {
  width: 150px;
  width: 9.375rem;
}
@media screen and (max-width: 768px) {
  .voice__item--top .icon {
    width: 20vw;
  }
}
.voice__item--top .man-detail {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.voice__item--top .place,
.voice__item--top .name {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .voice__item--top .place,
.voice__item--top .name {
    font-size: 4vw;
    margin-bottom: 1.3333333333vw;
  }
}
.voice__item--top .name {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
.voice__item--top .catch {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .voice__item--top .catch {
    font-size: 5.1vw;
  }
}

.voice__item--request {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.75;
  padding-bottom: 5px;
  padding-bottom: 0.3125rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, .3);
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .voice__item--request {
    font-size: 4vw;
    padding-bottom: 0.6666666667vw;
    margin-bottom: 4vw;
  }
}

.voice__item--desc {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 768px) {
  .voice__item--desc {
    font-size: 4vw;
  }
}

.voice__item--link {
  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;
  width: 100%;
  max-width: 210px;
  max-width: 13.125rem;
  height: 40px;
  height: 2.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: bold;
  border: 1px solid #74a92d;
  color: #fff;
  background-color: #74a92d;
  border-radius: 6.25rem;
  margin: auto auto 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  .voice__item--link {
    max-width: 40vw;
    height: 8vw;
    font-size: 3.2vw;
  }
}
.voice__item--link:hover {
  color: #74a92d;
  background-color: #fff;
}

/*------------------------
よくある質問
------------------------*/
.page-faq .ul-head {
  height: 280px;
  height: 17.5rem;
}
.page-faq .ul-head .page-title {
  top: 63%;
}
@media screen and (max-width: 768px) {
  .page-faq .ul-head .page-title {
    top: 48%;
    text-align: center;
    left: 0;
    right: 0;
  }
}
.page-faq .ul-head img {
  height: auto;
  position: absolute;
  bottom: -51px;
  right: 9%;
  max-width: 476px;
  max-width: 29.75rem;
}
@media screen and (max-width: 768px) {
  .page-faq .ul-head img {
    bottom: -1vw;
    right: 12vw;
    width: 67%;
  }
}
@media screen and (max-width: 768px) {
  .page-faq .bread {
    background-color: #f2f2f2;
  }
}
.page-faq .main-content {
  background-color: #f2f2f2;
  padding-bottom: 150px;
  padding-bottom: 9.375rem;
}
.page-faq .conjugate__item {
  position: relative;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
  border-radius: 0.3125rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .page-faq .conjugate__item {
    padding: 4vw 6vw 4vw 4vw;
  }
}
.page-faq .conjugate__item.is-open .arrow {
  background-color: #008842;
}
.page-faq .conjugate__item.is-open .arrow::before {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page-faq .conjugate__item + .conjugate__item {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .page-faq .conjugate__item + .conjugate__item {
    margin-top: 5.3333333333vw;
  }
}
.page-faq .conjugate__item .arrow {
  width: 28px;
  width: 1.75rem;
  height: 28px;
  height: 1.75rem;
  background-color: #808080;
  position: absolute;
  bottom: 28px;
  bottom: 1.75rem;
  right: 30px;
  right: 1.875rem;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .page-faq .conjugate__item .arrow {
    width: 4.8vw;
    height: 4.8vw;
    bottom: 4.9777777778vw;
    right: 1.5vw;
  }
}
.page-faq .conjugate__item .arrow::before {
  display: block;
  content: "";
  position: absolute;
  top: 56%;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
  left: 7px;
  left: 0.4375rem;
  width: 14px;
  width: 0.875rem;
  height: 10px;
  height: 0.625rem;
  background: no-repeat center/contain url(../images/faq/accordion-arrow@2x.png);
}
@media screen and (max-width: 768px) {
  .page-faq .conjugate__item .arrow::before {
    top: 54%;
    width: 2.4vw;
    height: 1.6vw;
    left: 1.0666666667vw;
  }
}
.page-faq .conjugate__q {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.5384615385;
  font-weight: bold;
  position: relative;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
@media screen and (max-width: 768px) {
  .page-faq .conjugate__q {
    font-size: 4.2666666667vw;
  }
}
.page-faq .conjugate__q .en {
  display: inline-block;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 27px;
  font-size: 1.6875rem;
  -webkit-transform: scaleX(1.2);
          transform: scaleX(1.2);
}
@media screen and (max-width: 768px) {
  .page-faq .conjugate__q .en {
    font-size: 4.5333333333vw;
  }
}
.page-faq .conjugate__a {
  padding: 15px 38px 0px 38px;
  position: relative;
  display: none;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: bold;
  color: #008842;
}
@media screen and (max-width: 768px) {
  .page-faq .conjugate__a {
    padding: 2vw 5.0666666667vw 0vw 5.0666666667vw;
    font-size: 4.2666666667vw;
  }
}

/*------------------------
お知らせ一覧
------------------------*/
.archive-news .lead,
.archive-column .lead {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.7333333333;
  letter-spacing: 0.05em;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .archive-news .lead,
.archive-column .lead {
    font-size: 4.2666666667vw;
    margin-bottom: 8vw;
  }
}
.archive-news .cards,
.archive-column .cards {
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
.archive-news .cards__card .newsList__title,
.archive-column .cards__card .newsList__title {
  text-align: left;
}
.archive-news .cards__card .cards__card--cont,
.archive-column .cards__card .cards__card--cont {
  border: 1px solid rgba(0, 0, 0, .2);
}

/*------------------------
投稿共通
------------------------*/
.single-head {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .single-head {
    margin-bottom: 5.3333333333vw;
  }
}

.single-head__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .single-head__title {
    font-size: 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}

.single-head__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.single-head__meta .categories__item {
  display: inline-block;
  padding: 8px 20px;
  padding: 0.5rem 1.25rem;
  background-color: #005a49;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .single-head__meta .categories__item {
    padding: 1.6vw 4vw;
    font-size: 3.2vw;
  }
}

.single-head__date {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .single-head__date {
    font-size: 3.7333333333vw;
  }
}

.single-body {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .single-body {
    font-size: 3.7333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}
.single-body p {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 1.5em;
}
.single-body h1 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
}
.single-body h2 {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
}
.single-body h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
}
.single-body h4 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}
.single-body h5 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
}
.single-body h6 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  margin: 0;
}
.single-body a {
  color: #005a49;
  text-decoration: underline;
}
.single-body a:hover {
  opacity: 0.7;
}
.single-body img {
  max-width: 100%;
  height: auto;
}

.post-navigation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  gap: 1.875rem;
  padding: 20px 0;
  padding: 1.25rem 0;
}
@media screen and (max-width: 768px) {
  .post-navigation {
    gap: 4vw;
    padding: 4vw 0;
  }
}
.post-navigation .post-navigation__item a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .post-navigation .post-navigation__item a {
    font-size: 3.2vw;
    gap: 0.6666666667vw;
  }
}
.post-navigation .post-navigation__item a:hover {
  opacity: 0.7;
}
.post-navigation .post-navigation__item.--prev {
  justify-self: end;
}
.post-navigation .post-navigation__item.--prev .arrow {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 16px 10px 0;
  border-width: 0.625rem 1rem 0.625rem 0;
  border-color: transparent #000 transparent transparent;
}
@media screen and (max-width: 768px) {
  .post-navigation .post-navigation__item.--prev .arrow {
    border-width: 1.8666666667vw 2.1333333333vw 1.8666666667vw 0;
  }
}
.post-navigation .post-navigation__item.--list {
  justify-self: center;
}
.post-navigation .post-navigation__item.--list a {
  padding: 15px 40px;
  padding: 0.9375rem 2.5rem;
  background-color: #333;
  color: #fff;
  font-weight: bold;
  border-radius: 1.875rem;
}
@media screen and (max-width: 768px) {
  .post-navigation .post-navigation__item.--list a {
    padding: 2.6666666667vw 5.3333333333vw;
    border-radius: 5.3333333333vw;
  }
}
.post-navigation .post-navigation__item.--next {
  justify-self: start;
}
.post-navigation .post-navigation__item.--next .arrow {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 12px;
  border-width: 0.625rem 0 0.625rem 0.75rem;
  border-color: transparent transparent transparent #000;
}
@media screen and (max-width: 768px) {
  .post-navigation .post-navigation__item.--next .arrow {
    border-width: 1.8666666667vw 0 1.8666666667vw 2.1333333333vw;
  }
}

/*------------------------
お知らせ
------------------------*/
.single-news {
  padding-top: 150px;
}
@media screen and (max-width: 768px) {
  .single-news {
    padding-top: 13.3333333333vw;
  }
}
.single-news .single-news__thumbnail {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 60px;
  margin: 0 auto 3.75rem;
}
@media screen and (max-width: 768px) {
  .single-news .single-news__thumbnail {
    margin-bottom: 8vw;
  }
}
.single-news .single-news__thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
}
.single-news .single-news__content {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .single-news .single-news__content {
    padding-bottom: 13.3333333333vw;
  }
}

/*------------------------
コラム
------------------------*/
.single-column {
  padding-bottom: 100px;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .single-column {
    padding-bottom: 13.3333333333vw;
  }
}
.single-column .single-head__date {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .single-column .single-head__date {
    font-size: 3.7333333333vw;
  }
}
.single-column .single-head__title {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  margin-bottom: 0px;
  margin-bottom: 0rem;
}
.single-column .single-head__catch {
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
}
.single-column .single-body > * {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
}

.single-column__thumbnail {
  position: relative;
  margin-bottom: 80px;
  margin-bottom: 5rem;
  height: 800px;
  height: 50rem;
}
@media screen and (max-width: 768px) {
  .single-column__thumbnail {
    height: 45vh;
    margin-bottom: 10.6666666667vw;
  }
}
.single-column__thumbnail img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-column__thumbnail::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 105%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), color-stop(95%, #fff));
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, #fff 95%);
}

.single-column__content .single-body .wp-block-media-text {
  padding: 80px 0;
  padding: 5rem 0;
  border-top: 1px solid rgba(0, 0, 0, .2);
  border-bottom: 1px solid rgba(0, 0, 0, .2);
}
.single-column__content .single-body .wp-block-media-text + .wp-block-media-text {
  border-top: none;
}
@media screen and (max-width: 768px) {
  .single-column__content .single-body .wp-block-media-text {
    padding: 10.6666666667vw 0;
  }
}
.single-column__content .single-body .wp-block-media-text__media img {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .single-column__content .single-body .wp-block-media-text__content {
    margin-top: 5.3333333333vw;
  }
}

/*------------------------
プライバシーポリシー
------------------------*/
.privacy {
  background-color: #f5f5f5;
}
.privacy .privacy__intro {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .privacy .privacy__intro {
    font-size: 3.7333333333vw;
    margin-bottom: 6.6666666667vw;
  }
}
.privacy .privacy__section {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .privacy .privacy__section {
    margin-bottom: 6.6666666667vw;
  }
}
.privacy .privacy__section:last-child {
  margin-bottom: 0;
}
.privacy .privacy__heading {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .privacy .privacy__heading {
    font-size: 4.5333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.privacy .privacy__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .privacy .privacy__text {
    font-size: 3.7333333333vw;
  }
}
.privacy .privacy__list {
  margin: 10px 0 10px 20px;
  margin: 0.625rem 0 0.625rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .privacy .privacy__list {
    margin: 1.3333333333vw 0 1.3333333333vw 4vw;
  }
}
.privacy .privacy__list-item {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  list-style: disc;
}
@media screen and (max-width: 768px) {
  .privacy .privacy__list-item {
    font-size: 3.7333333333vw;
  }
}
.privacy .privacy__sublist {
  margin: 10px 0 10px 20px;
  margin: 0.625rem 0 0.625rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .privacy .privacy__sublist {
    margin: 1.3333333333vw 0 1.3333333333vw 4vw;
  }
}
.privacy .privacy__sublist-item {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  list-style: decimal;
}
@media screen and (max-width: 768px) {
  .privacy .privacy__sublist-item {
    font-size: 3.7333333333vw;
  }
}
.privacy .privacy__note {
  font-size: 14px;
  font-size: 0.875rem;
  margin-top: 10px;
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .privacy .privacy__note {
    font-size: 3.4666666667vw;
    margin-top: 1.3333333333vw;
  }
}
.privacy .privacy__contact {
  margin-top: 20px;
  margin-top: 1.25rem;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
  background-color: #fff;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .privacy .privacy__contact {
    margin-top: 2.6666666667vw;
    padding: 4vw;
    border-radius: 1.3333333333vw;
  }
}
.privacy .privacy__contact-text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .privacy .privacy__contact-text {
    font-size: 3.7333333333vw;
  }
}

.page-404__content {
  padding: 100px 0;
  padding: 6.25rem 0;
}

.page-404__title {
  font-size: 100px;
  font-size: 6.25rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  text-align: center;
}

.page-404__text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  text-align: center;
}
/*# sourceMappingURL=styles.css.map */
