@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}

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

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

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

/* Set core 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: 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;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}

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

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

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 330px));
  row-gap: 3.125rem;
  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: "Noto Sans JP", sans-serif;
  font-weight: bold;
}
.cards__card .readmore {
  width: 6.875rem;
  height: 0.875rem;
  margin-top: 0.625rem;
}
.cards__card .readmore img {
  height: auto;
}

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

.cards__card--text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 1.25rem 1.875rem;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  .cards__card--text {
    padding: 0.9375rem 1.25rem;
  }
}
.cards__card--text .newsLists__date {
  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: 1.25rem;
  line-height: 1.4;
  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: 1.5rem;
  height: 1.25rem;
  background: no-repeat center/contain url(./assets/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: 1.625rem;
  line-height: 1;
  text-align: center;
  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: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.625rem;
}
.cards__card--top .categories__item {
  display: block;
  min-width: 6.25rem;
  padding: 0.3125rem 1.875rem;
  background-color: #333;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  font-weight: bold;
  display: flex;
  align-items: 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: #1f975c;
}

/****  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;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .section-header {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 2.6666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.section-header .titleSet {
  position: relative;
  width: fit-content;
}
.section-header .titleSet .en-title {
  margin-bottom: 0.3125rem;
}
.section-header .titleSet .en-title img {
  height: 2.5rem;
  object-fit: contain;
  width: auto;
}
@media screen and (max-width: 768px) {
  .section-header .titleSet .en-title img {
    height: 6.1333333333vw;
  }
}
.section-header .titleSet .jp-title {
  font-size: 1.25rem;
  line-height: 1.2;
  color: #1f975c;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .section-header .titleSet .jp-title {
    text-align: center;
    font-size: 3.4666666667vw;
  }
}
.section-header .title-catch {
  font-size: 1.625rem;
  font-weight: bold;
  color: #333;
  padding-inline: 0.8em 1.5em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .section-header .title-catch {
    font-size: 3.7333333333vw;
    margin: 0 auto;
    font-weight: 500;
  }
}
.section-header .title-catch::before, .section-header .title-catch::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 4px;
  width: 2px;
  height: 1em;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .section-header .title-catch::before, .section-header .title-catch::after {
    width: 0.4vw;
    bottom: 0.5vw;
  }
}
.section-header .title-catch::before {
  transform: rotate(-30deg);
  left: 0;
}
.section-header .title-catch::after {
  transform: rotate(30deg);
  right: 12px;
}

/***** 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: flex;
}
@media screen and (max-width: 768px) {
  .flex {
    flex-direction: column;
  }
}

/****** font ****/
p {
  font-size: 1.125rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 4vw;
  }
}

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

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

.delay200 {
  transition-delay: 0.2s;
}

.text-clip {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s ease;
}
.text-clip.scrollin {
  clip-path: inset(0 0 0 0);
}

.text-clip-top {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1s ease;
}
@media screen and (max-width: 768px) {
  .text-clip-top {
    clip-path: inset(0 100% 0 0);
  }
}
.text-clip-top.scrollin {
  clip-path: inset(0 0 0 0);
}

.pop {
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.6s ease;
}
.pop.scrollin {
  transform: scale(1);
  opacity: 1;
}

/******* btn ********/
.btn {
  margin: 0 auto;
  width: 100%;
  max-width: 22.5rem;
}
@media screen and (max-width: 768px) {
  .btn {
    max-width: 66.6666666667vw;
  }
}
.btn a {
  width: 100%;
  min-height: 3.75rem;
  height: 100%;
  border-radius: 5px;
  background: #1f975c;
  font-size: 1.25rem;
  line-height: 1.2;
  color: #fff;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  .btn a {
    min-height: 10.6666666667vw;
    font-size: 3.7333333333vw;
    border-radius: 0.8vw;
  }
}
.btn a:hover {
  opacity: 0.8;
}
.btn a:hover .arrow {
  transform: translateX(10px);
}
.btn a .arrow {
  display: inline-block;
  margin-left: 1.5em;
  width: 1.875rem;
  transition: all 0.4s ease;
}
.btn.btn--white a {
  background-color: #fff;
  border: 2px solid #1f975c;
  color: #1f975c;
}

/*------------------------
CTA
------------------------*/
.cta {
  padding: 6.25rem 0;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  .cta {
    padding: 8vw 0;
  }
}
.cta .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cta .inner {
    flex-direction: column;
    gap: 5.3333333333vw;
  }
}

.cta__tel {
  max-width: 21.625rem;
}

.cta__tel-label {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .cta__tel-label {
    font-size: 4vw;
    margin-bottom: 2.6666666667vw;
    text-align: center;
  }
}

.cta__tel-number {
  display: block;
  max-width: 21.625rem;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .cta__tel-number {
    max-width: 66.6666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}

.cta__tel-hours {
  font-size: 0.875rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .cta__tel-hours {
    text-align: center;
    font-size: 3.4666666667vw;
  }
}

.cta__btns {
  display: flex;
  justify-content: end;
  gap: 1.25rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .cta__btns {
    flex-direction: column;
    width: 100%;
    gap: 2.6666666667vw;
  }
}
.cta__btns .btn {
  width: 100%;
  max-width: 18.75rem;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .cta__btns .btn {
    max-width: 70%;
    margin: 0 auto;
  }
}
.cta__btns .btn a {
  justify-content: space-between;
  min-height: 4.625rem;
  font-size: 1.375rem;
  background-color: #333;
  font-family: "M PLUS 1", sans-serif !important;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 768px) {
  .cta__btns .btn a {
    min-height: 14.6666666667vw;
    font-size: 4vw;
  }
}
.cta__btns .btn a .arrow {
  margin-left: 0.625rem;
}

/*------------------------
下層アイコン付きCTA
------------------------*/
.cta-line {
  position: relative;
}
.cta-line::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: #1f975c;
}
@media screen and (max-width: 768px) {
  .cta-line::before {
    display: none;
  }
}

.cta-line__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.cta-line__cont {
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background-color: #1f975c;
  border-radius: 12.5rem 0 0 12.5rem;
  max-width: 56.25rem;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .cta-line__cont {
    flex-direction: column;
    gap: 8vw;
    border-radius: 50vw 50vw 0 0;
    padding: 8vw 0;
  }
}

.cta-line__circle {
  width: 15.25rem;
  height: 15.25rem;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cta-line__circle {
    width: 60vw;
    height: 60vw;
  }
}

.cta-line__icon {
  display: block;
  position: absolute;
  width: 112%;
  max-width: 112%;
  top: 43%;
  left: 49%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.cta-line__text .catch {
  font-size: 1.25rem;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  padding-inline: 1rem;
  display: block;
  width: fit-content;
  margin: 0 auto 0.625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cta-line__text .catch {
    font-size: 3.4666666667vw;
  }
}
.cta-line__text .catch::before, .cta-line__text .catch::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 3px;
  width: 1px;
  height: 0.8em;
  background-color: #fff;
}
.cta-line__text .catch::before {
  left: 0;
  transform: rotate(-30deg);
}
.cta-line__text .catch::after {
  right: 0;
  transform: rotate(30deg);
}
.cta-line__text .main {
  font-size: 2.5rem;
  line-height: 1.2;
  color: #fff;
  display: block;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .cta-line__text .main {
    font-size: 5.3333333333vw;
  }
}
.cta-line__text .main .arrow {
  display: inline-block;
  width: 2.5rem;
  transition: all 0.4s ease;
  margin-left: 0.8em;
  transform: translateY(-5px);
}
@media screen and (max-width: 768px) {
  .cta-line__text .main .arrow {
    width: 5.3333333333vw;
    transform: translateY(0);
  }
}

.viewmore-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 1.375rem;
  color: #1f975c;
}
.viewmore-link .view-more {
  display: inline-block;
  width: 6.25rem;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  .viewmore-link .view-more {
    width: 21.3333333333vw;
  }
}

/*------------------------
斜線 共通背景
------------------------*/
.line-bg {
  background-image: url(../images/line_bg@2x.webp);
  background-size: 150px 150px;
  background-repeat: repeat;
  background-position: center;
}

.line-bg--green {
  background-image: url(../images/line_bg_green@2x.webp);
  background-size: 150px 150px;
  background-repeat: repeat;
  background-position: center;
}

/*------------------------
お問い合わせ
------------------------*/
.page-contact {
  border-bottom: none;
}
.page-contact .ul-head {
  height: 18.75rem;
}
@media screen and (max-width: 768px) {
  .page-contact .ul-head {
    height: 28.2051282051vw;
  }
}
.page-contact .contact {
  padding: 6.25rem 0;
}
@media screen and (max-width: 768px) {
  .page-contact .contact {
    padding: 12.8205128205vw 0;
  }
}
.page-contact .contact .inner {
  max-width: 930px;
}
.page-contact .contact__wrapper input,
.page-contact .contact__wrapper textarea,
.page-contact .contact__wrapper select {
  display: block;
  border: 2px solid #e6e6e6;
  border-radius: 0.3125rem;
  width: 100%;
  min-height: 5rem;
  padding: 1em 1em;
  font-size: 1rem;
  color: #333;
}
@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 #e6e6e6;
    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 {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25rem;
  width: 0;
  height: 0;
  border-left: 0.6875rem solid transparent;
  border-right: 0.6875rem solid transparent;
  border-top: 1.1875rem solid #333;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__wrapper .select-box::after {
    right: 3vw;
    border-left: 1.7948717949vw solid transparent;
    border-right: 1.7948717949vw solid transparent;
    border-top: 3.0769230769vw solid #333;
  }
}
.page-contact .contact__wrapper .radio {
  display: block;
  border: 2px solid #e6e6e6;
  border-radius: 0.3125rem;
  width: 100%;
  min-height: 5rem;
  padding: 1em 1em;
  font-size: 1rem;
  color: #333;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__wrapper .radio {
    border: 0.3vw solid #e6e6e6;
    border-radius: 1.2820512821vw;
    min-height: 15.8974358974vw;
    font-size: 3.8461538462vw;
  }
}
.page-contact .contact__wrapper .radio .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.page-contact .contact__wrapper .radio .wpcf7-radio {
  display: flex;
  gap: 0.5em 1em;
  flex-wrap: wrap;
}
.page-contact .contact__wrapper .radio .wpcf7-list-item {
  margin-left: 0;
}
.page-contact .contact__wrapper .radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  white-space: nowrap;
}
.page-contact .contact__wrapper .radio input {
  width: 1.25rem;
  height: 1.25rem;
  min-height: auto;
  border-radius: 50%;
  border: 2px solid #e6e6e6;
  margin: 3px 0 0 0;
  padding: 0;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__wrapper .radio input {
    width: 5.1282051282vw;
    height: 5.1282051282vw;
    margin: 0.7692307692vw 0 0 0;
  }
}
.page-contact .contact__wrapper .radio input:checked ~ .wpcf7-list-item-label {
  position: relative;
}
.page-contact .contact__wrapper .radio input:checked ~ .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 9px;
  left: -20px;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background-color: #333;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__wrapper .radio input:checked ~ .wpcf7-list-item-label::before {
    top: 1.9vw;
    left: -4.9vw;
    width: 2.8205128205vw;
    height: 2.8205128205vw;
  }
}
.page-contact .contact__wrapper dl {
  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: flex;
  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: 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: 1rem;
  line-height: 2.625;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #999999;
  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: 1.125rem;
  line-height: 2.1;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  margin-bottom: 0.3125rem;
  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: fit-content;
  padding: 0.3em 0.6em 0.3em 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
  color: #fff;
  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: 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: 2.1875rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .page-contact .contact__top {
    font-size: 4.8717948718vw;
    margin-bottom: 4vw;
  }
}
.page-contact .contact__bottom {
  font-size: 0.875rem;
  line-height: 2.1428571429;
  color: #333;
  text-align: center;
  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: 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: 1rem;
  font-weight: 500;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
}
.page-contact .agree-area input {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 5px;
  border: 2px solid #333;
  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 #333;
  border-bottom: 2px solid #333;
  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: 1.625rem;
  line-height: 1.2;
  color: #fff;
  width: 100%;
  max-width: 31.25rem;
  min-height: 5.4375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333;
  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: 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 {
  padding: 6.25rem 0;
}
@media screen and (max-width: 768px) {
  .page-thanks .main-content {
    padding: 12.8205128205vw 0;
  }
}

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

.float-menu {
  position: fixed;
  right: 0.625rem;
  bottom: 1.875rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.float-menu.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.float-menu--sp {
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #f5f5f5;
  padding: 2vw 2.6666666667vw;
  opacity: 1;
  visibility: visible;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.float-menu--sp.is-show {
  transform: translateY(0);
  pointer-events: auto;
}
.float-menu--sp .float-menu__items {
  flex-direction: row;
  gap: 1.3333333333vw;
}
.float-menu--sp .float-menu__link {
  flex: 1;
  width: auto;
  max-width: none;
}

.float-menu__close {
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  margin-left: auto;
  margin-bottom: 0.3125rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .float-menu__close {
    width: 6.6666666667vw;
    height: 6.6666666667vw;
  }
}
.float-menu__close img {
  width: 100%;
  height: 100%;
}

.float-menu__items {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media screen and (max-width: 768px) {
  .float-menu__items {
    gap: 2vw;
  }
}

.float-menu__link {
  display: block;
  width: 17.5rem;
  max-width: 340px;
}
@media screen and (max-width: 768px) {
  .float-menu__link {
    width: 53.3333333333vw;
  }
}
.float-menu__link img {
  width: 100%;
  height: auto;
}

.pageTop {
  position: fixed;
  right: 1.25rem;
  bottom: 20.9375rem;
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  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: 3.125rem;
  height: 3.125rem;
}
.pageTop.is-show {
  opacity: 1;
  visibility: visible;
}

.footer {
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer {
    background-color: #f2f2f2;
  }
}
.footer::before {
  content: "";
  display: block;
  background: linear-gradient(to right, #0068b7 50%, #1f975c 50%);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1.875rem;
}
@media screen and (max-width: 768px) {
  .footer::before {
    height: 4vw;
  }
}
.footer .inner {
  max-width: 93.75rem;
  padding: 11.25rem 0 5rem;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer .inner {
    padding: 10.6666666667vw 0 5.3333333333vw;
    align-items: center;
  }
}

.footer__left {
  max-width: 31.25rem;
}
@media screen and (max-width: 768px) {
  .footer__left {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.footer__catch {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .footer__catch {
    order: 2;
    width: 60%;
    margin-bottom: 2.6666666667vw;
  }
}

.footer__cont {
  display: flex;
  gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .footer__cont {
    display: contents;
  }
}

.footer__logo {
  width: 9.375rem;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    order: 1;
    width: 21.3333333333vw;
    margin-bottom: 1.3333333333vw;
  }
}

.footer__text {
  width: 26.875rem;
}
@media screen and (max-width: 768px) {
  .footer__text {
    width: 100%;
    margin: 0 auto;
    order: 3;
  }
}

.footer__company {
  margin-top: 0.3125rem;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .footer__company {
    width: 60%;
    margin: 0 auto 2.6666666667vw;
  }
}

.footer__address {
  font-size: 0.875rem;
  line-height: 1.2;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .footer__address {
    width: fit-content;
    margin: 0 auto;
    font-size: 2.6666666667vw;
    margin-bottom: 0;
    text-align: center;
  }
}

.footer__tel,
.footer__fax {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .footer__tel,
  .footer__fax {
    font-size: 2.9333333333vw;
    text-align: center;
  }
}

.footer__fax {
  margin-left: 1em;
}

.footer__nav {
  flex: 1;
  font-family: "M PLUS 1", sans-serif !important;
}

.footer__navLists {
  display: flex;
  justify-content: flex-end;
  gap: 2.5rem;
}

.footer__navBox {
  min-width: 8.75rem;
}

.footer__navTitle {
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 0.625rem;
}

.footer__navItem {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
}
.footer__navItem + .footer__navItem {
  margin-top: 1em;
}
.footer__navItem a {
  display: inline-block;
  transition: color 0.3s ease;
}
.footer__navItem a::before {
  content: "-";
  display: inline-block;
  margin-right: 0.3125rem;
}
.footer__navItem a:hover {
  color: #1f975c;
}

.copyright {
  font-size: 0.75rem;
  line-height: 1.1666666667;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 3.75rem 0;
  border-top: 1px solid #333;
}
@media screen and (max-width: 768px) {
  .copyright {
    font-size: 3.2vw;
    text-align: center;
    padding: 5.3333333333vw 0;
    border: none;
    background-color: #fff;
  }
}

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

.header__inner {
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.875rem;
}
@media (max-width: 1440px) {
  .header__inner {
    zoom: 0.9;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    zoom: 1;
    padding: 0 0.9375rem;
  }
}

.header__cont {
  display: flex;
  align-items: center;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__logo a {
  padding-left: 90px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header__logo a {
    padding-left: 8vw;
  }
}
.header__logo img.logo_icon {
  width: 5rem;
  height: auto;
  object-fit: contain;
}
.header__logo img.logo_text {
  width: 11.875rem;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .header__logo img.logo_text {
    width: 8.125rem;
  }
}

.header__nav {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 1300px) {
  .header__nav {
    display: none;
  }
}

.header__nav-items {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0.3125rem;
}

.header__nav-item {
  height: 100%;
  position: relative;
}
.header__nav-item .header__nav-link {
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "M PLUS 1", sans-serif !important;
  color: #333;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 0.9375rem;
  transition: color 0.3s ease;
  white-space: nowrap;
  position: relative;
}
.header__nav-item .header__nav-link:hover {
  color: #1f975c;
}
.header__nav-item.has-submenu .header__nav-link {
  gap: 0.3125rem;
}
.header__nav-item.has-submenu .header__nav-arrow {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  margin-left: 0.3125rem;
  margin-bottom: 0.1875rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.header__nav-item.has-submenu:hover .header__nav-arrow {
  border-color: #1f975c;
}
.header__nav-item.has-submenu .header__nav-submenu {
  position: absolute;
  top: 75%;
  left: 0;
  background-color: #4a4a4a;
  min-width: 12.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}
.header__nav-item.has-submenu:hover .header__nav-submenu {
  opacity: 1;
  visibility: visible;
}
.header__nav-item.has-submenu .header__nav-child + .header__nav-child a {
  border-top: 1px solid #fff;
}
.header__nav-item.has-submenu .header__nav-child a {
  display: block;
  padding: 0.9375rem 1.25rem;
  font-size: 0.9375rem;
  font-family: "M PLUS 1", sans-serif !important;
  color: #fff;
  white-space: nowrap;
  transition: background-color 0.2s ease;
  position: relative;
  padding-left: 2.1875rem;
}
.header__nav-item.has-submenu .header__nav-child a::before {
  content: "－";
  position: absolute;
  left: 0.9375rem;
  color: #fff;
}
.header__nav-item.has-submenu .header__nav-child a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.header__right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 1300px) {
  .header__right {
    display: none;
  }
}

.header__tel {
  margin-left: 1.875rem;
}
.header__tel a {
  display: block;
}
.header__tel .header__tel-number {
  display: block;
  margin-bottom: 0.3125rem;
  width: 15.5rem;
}
.header__tel .header__tel-info {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 500;
  font-family: "M PLUS 1", sans-serif !important;
}

.header__hamburger {
  display: none;
  width: 1.875rem;
  height: 1.25rem;
  position: relative;
  z-index: 101;
  cursor: pointer;
  background: none;
  border: none;
}
@media (max-width: 1300px) {
  .header__hamburger {
    display: block;
  }
}
.header__hamburger span {
  width: 100%;
  height: 2px;
  background-color: #333;
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
.header__hamburger span:nth-child(1) {
  top: 0;
}
.header__hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header__hamburger span:nth-child(3) {
  bottom: 0;
}
.header.is-active .header__hamburger span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header.is-active .header__hamburger span:nth-child(2) {
  opacity: 0;
}
.header.is-active .header__hamburger span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.header__drawer {
  position: fixed;
  top: 6.25rem;
  right: -100%;
  width: calc(100vw - 60px);
  max-width: 21.875rem;
  height: calc(100vh - 6.25rem);
  background-color: #fff;
  transition: right 0.4s ease;
  overflow-y: auto;
  z-index: 99;
  padding: 1.25rem;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  font-family: "M PLUS 1", sans-serif !important;
  display: none;
}
@media (max-width: 1300px) {
  .header__drawer {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .header__drawer {
    top: 4.375rem;
    height: calc(100vh - 4.375rem);
  }
}
.header.is-active .header__drawer {
  right: 0;
}

.header__drawer-items {
  margin-bottom: 1.875rem;
}

.header__drawer-item {
  border-bottom: 1px solid #eee;
}
.header__drawer-item .header__drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9375rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}
.header__drawer-item.has-submenu .header__drawer-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 0.4375rem solid transparent;
  border-right: 0.4375rem solid transparent;
  border-top: 0.625rem solid #333;
  transition: transform 0.3s ease;
}
.header__drawer-item.has-submenu.is-open .header__drawer-arrow {
  transform: rotate(180deg);
}
.header__drawer-item.has-submenu .header__drawer-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #333333;
}
@media (max-width: 1300px) {
  .header__drawer-item.has-submenu .header__drawer-submenu {
    margin-top: -0.625rem;
    margin-bottom: 0.625rem;
    background-color: #fff;
  }
}
.header__drawer-item.has-submenu.is-open .header__drawer-submenu {
  max-height: 31.25rem;
}
.header__drawer-item.has-submenu .header__drawer-child a {
  display: block;
  padding: 0.75rem 0.9375rem 0.75rem 2.1875rem;
  font-size: 0.875rem;
  color: #fff;
  position: relative;
}
@media (max-width: 1300px) {
  .header__drawer-item.has-submenu .header__drawer-child a {
    font-weight: 500;
    padding: 0.3125rem 0.9375rem 0.3125rem 2.1875rem;
    color: #333;
  }
}
.header__drawer-item.has-submenu .header__drawer-child a::before {
  content: "－";
  position: absolute;
  left: 0.9375rem;
  color: #fff;
}
@media (max-width: 1300px) {
  .header__drawer-item.has-submenu .header__drawer-child a::before {
    color: #333;
  }
}

.header__drawer-tel {
  text-align: center;
  padding: 1.25rem 0;
  border-top: 1px solid #eee;
}
.header__drawer-tel a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  display: block;
  margin-bottom: 0.625rem;
}
.header__drawer-tel p {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.6;
}

body.drawer-open {
  overflow: hidden;
}

.loading {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  overflow: hidden;
}
.loading.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading__logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  width: 11.25rem;
  gap: 1%;
  opacity: 0;
  z-index: 10001;
  transition: all 0.8s ease;
}
@media screen and (max-width: 768px) {
  .loading__logo {
    width: 25vw;
  }
}
.loading__logo.is-visible {
  opacity: 1;
}
.loading__logo.is-shrink {
  position: fixed;
  top: 3.125rem;
  left: 4.375rem;
  width: 5rem;
  transform: translate(-50%, -50%);
  z-index: 10001;
}
@media screen and (max-width: 768px) {
  .loading__logo.is-shrink {
    top: 2.1875rem;
    left: 2.1875rem;
    width: 2.5rem;
  }
}

.loading__logo-building {
  width: 56%;
}

.loading__logo-tree {
  width: 36%;
}

.loading__logo-text {
  width: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading__logo-building,
.loading__logo-tree,
.loading__logo-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.loading__logo-building.is-visible,
.loading__logo-tree.is-visible,
.loading__logo-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.loading__logo-building img,
.loading__logo-tree img,
.loading__logo-text img {
  height: auto;
}

.loading__img {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  width: 100%;
  height: calc(100svh - 100px);
}
@media screen and (max-width: 768px) {
  .loading__img {
    top: 0;
    margin: auto;
    height: fit-content;
  }
}
.loading__img.is-visible {
  opacity: 1;
}
.loading__img.is-hidden {
  opacity: 0;
}
.loading__img img {
  width: 100%;
  height: auto;
}

.loading__text {
  position: absolute;
  bottom: 3vw;
  left: 3vw;
  transform: translateY(30px);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  width: 68%;
}
@media screen and (max-width: 768px) {
  .loading__text {
    bottom: 38%;
  }
}
.loading__text.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.loading__text.is-hidden {
  opacity: 0;
  transform: translateY(0);
}

.loading__skip {
  position: absolute;
  bottom: 1.875rem;
  right: 1.875rem;
  padding: 0.625rem 1.5625rem;
  background-color: transparent;
  border: 1px solid #333;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  z-index: 10;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .loading__skip {
    bottom: 5rem;
    right: 1.25rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.75rem;
  }
}
.loading__skip:hover {
  background-color: #333;
  color: #fff;
}

body.is-loading .header {
  transform: translateY(-100%);
  transition: transform 0.6s ease;
  z-index: 10000 !important;
}
body.is-loading .header.is-header-visible {
  transform: translateY(0);
}

body.is-loading .header__logo a {
  padding-inline-start: 5.625rem;
}
@media screen and (max-width: 768px) {
  body.is-loading .header__logo a {
    padding-inline-start: 12vw;
  }
}
body.is-loading .header__logo .logo_text {
  clip-path: inset(0 100% 0 0);
  opacity: 0;
}
body.is-loading .header__logo.is-logo-visible .logo_text {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

body:not(.is-loading) .header {
  transform: translateY(0);
}
body:not(.is-loading) .header__logo a {
  padding-left: 0;
}
body:not(.is-loading) .header__logo .logo_icon {
  width: 5rem;
  margin-right: 0.625rem;
}
@media screen and (max-width: 768px) {
  body:not(.is-loading) .header__logo .logo_icon {
    width: 3.125rem;
    margin-right: 2vw;
  }
}
body:not(.is-loading) .header__logo .logo_text {
  clip-path: inset(0 0 0 0) !important;
  opacity: 1 !important;
  transition: none;
}

.header__logo .logo_text {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition: clip-path 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
  transition-delay: 0.5s;
}
.header__logo.is-logo-visible .logo_text {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

body.is-loading {
  overflow: hidden;
}

body.is-loaded .header__logo a {
  padding-left: 90px;
}
@media screen and (max-width: 768px) {
  body.is-loaded .header__logo a {
    padding-left: 12vw;
  }
}

.modal-wrapper {
  display: none;
}

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

.modal-contact__inner {
  position: relative;
  border: 1px solid #1f975c;
  border-radius: 0.625rem;
  padding: 2.5rem;
}
@media screen and (max-width: 768px) {
  .modal-contact__inner {
    padding: 5.3333333333vw;
    border-radius: 1.3333333333vw;
  }
}

.modal-contact__content {
  width: 100%;
  height: 100%;
  max-width: 60rem;
  margin: 0 auto;
}

.voice__modal--head {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .voice__modal--head {
    flex-direction: column;
    gap: 2.6666666667vw;
    align-items: center;
    margin-bottom: 4vw;
  }
}

.voice__modal--icon {
  width: 17.5rem;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .voice__modal--icon {
    width: 42.6666666667vw;
  }
}
.voice__modal--icon img {
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
}

.voice__modal--text {
  flex: 1;
}

.voice__modal--name {
  font-size: 1.625rem;
  line-height: 1.4545454545;
  font-weight: 600;
  margin-bottom: 0.625rem;
}

.voice__modal--comment {
  font-size: 1.25rem;
  line-height: 1.625;
}

.voice__modal--imgs {
  display: flex;
  justify-content: center;
  gap: 1.875rem;
}

.voice__modal--img {
  width: 100%;
  max-width: 28.125rem;
}

.modal__link {
  display: block;
  width: fit-content;
  margin: 2.5rem 0 0 0;
  padding: 0.5rem 1.25rem 0.625rem 0.625rem;
  margin-left: 1.875rem;
  font-size: 1.125rem;
  line-height: 1;
  color: #fff;
  background-color: #1f975c;
  position: relative;
}

.modal__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0.3%;
  width: 0;
  height: 0;
  border-top: 1.125rem solid transparent;
  border-bottom: 1.125rem solid transparent;
  border-right: 1.125rem solid #1f975c;
  transform: translateX(-100%);
}

.modal-contact-button {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 2.0625rem;
  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 {
  transform: rotate(45deg);
}
.modal-contact-button a::after {
  transform: rotate(-45deg);
}

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

/*------------------------
News List（共通コンポーネント）
------------------------*/
.news-list__item {
  border-bottom: 1px solid #ddd;
}
.news-list__item:first-child {
  border-top: 1px solid #ddd;
}

.news-list__link {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  padding: 1.25rem 0.625rem;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .news-list__link {
    flex-wrap: wrap;
    gap: 0.6666666667vw 2.6666666667vw;
    padding: 3.3333333333vw 1.3333333333vw;
  }
}
.news-list__link:hover {
  background-color: #f9f9f9;
}

.news-list__date {
  font-size: 1.125rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .news-list__date {
    font-size: 3.2vw;
  }
}

.news-list__cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.25rem;
  height: 1.875rem;
  padding: 0 0.625rem;
  background-color: #333;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .news-list__cat {
    min-width: 18.6666666667vw;
    height: 5.3333333333vw;
    padding: 0 2.6666666667vw;
    font-size: 3.0666666667vw;
  }
}

.news-list__title {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 768px) {
  .news-list__title {
    flex: none;
    width: 100%;
    font-size: 3.7333333333vw;
    margin-top: 1.3333333333vw;
  }
}

/*------------------------
MV
------------------------*/
.mv {
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv {
    margin-bottom: -1vw;
  }
}
.mv .swiper-wrapper {
  transition-timing-function: linear;
}
.mv .swiper-slide {
  width: auto !important;
  height: 100% !important;
  border-top: 4px double #1f975c;
  border-bottom: 4px double #1f975c;
  border-left: 4px double #1f975c;
  transition: opacity 1s ease;
  transition-delay: 1s;
}
.mv .swiper-slide img {
  width: auto !important;
  height: 100%;
  object-fit: cover;
}

.mv__text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 1vw 3vw;
  width: 100%;
  height: 100%;
  max-width: 14.5vw;
  writing-mode: vertical-rl;
  font-size: 1.4vw;
  line-height: 1.875;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 1s ease;
}
.mv__text.is-visible {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .mv__text.pc {
    display: none !important;
  }
}
.mv__text.sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .mv__text.sp {
    display: block !important;
    font-size: 9.333333vw;
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: 900;
    height: auto;
    top: 65vh;
    background-color: transparent;
    writing-mode: initial;
    max-width: 100%;
    padding: 0.2vw;
    text-align: center;
    -webkit-text-stroke: 4px #fff;
    text-stroke: 4px #fff;
    paint-order: stroke;
    opacity: 1 !important;
  }
}
.mv__text.sp .large {
  display: inline-block;
  font-size: 13vw;
}

canvas#kirakira {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.mv__slider {
  height: 17vw;
  position: relative;
}
.mv__slider.is-stopped .swiper-slide {
  opacity: 0;
}
.mv__slider.is-stopped ~ .mv__text {
  opacity: 0;
}

.mv__replay {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.75rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background-color 0.3s;
  z-index: 9999;
}
.mv__replay.is-visible {
  opacity: 1;
  visibility: visible;
}
.mv__replay:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.mv__video {
  width: 100%;
  height: auto;
  z-index: 1;
  position: relative;
}

.mv__video-replay {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s;
}
.mv__video-replay::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.375rem 0 0.375rem 0.625rem;
  border-color: transparent transparent transparent #fff;
}
.mv__video-replay:active {
  background-color: rgba(0, 0, 0, 0.7);
}

.background-video {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.background-video.--01 {
  filter: saturate(110%) contrast(110%) brightness(110%);
}

.mv__bg-fixed {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
  transition-delay: 1s;
}
.mv__bg-fixed.is-show {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .mv__bg-fixed {
    display: none;
  }
}

.mv__bg-fixed--img {
  width: 100%;
  border: 4px double #1f975c;
}
.mv__bg-fixed--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv__bg-fixed--img + .mv__bg-fixed--img {
  border-left: none;
}

.start-arrow {
  display: block;
  position: absolute;
  bottom: 1vw;
  right: 1vw;
  width: fit-content;
  color: #1f975c;
  font-size: 2vw;
  line-height: 1;
  font-weight: bold;
  animation: start-flash 1s ease infinite;
  text-shadow: 0 0 10px #fff;
}
@keyframes start-flash {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/*------------------------
コラム・お知らせ
------------------------*/
.top-posts {
  padding: 7.5rem 0;
  text-align: center;
  padding: 0.625rem;
  border-radius: 0.625rem;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
  transition-delay: 1s;
}
.top-posts.is-visible {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .top-posts {
    padding: 13.3333333333vw 0;
  }
}

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

.top-posts__item--top {
  justify-content: space-between;
  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: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-posts__item--top .section-title {
    margin-bottom: 2.6666666667vw;
  }
}

/*------------------------
Search
------------------------*/
.search {
  background: linear-gradient(to right, #d2eade 50%, #e9f5ef 50%);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .search {
    background: #e9f5ef;
  }
}
.search .inner {
  padding: 3.75rem 0 3.75rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .search .inner {
    padding: 8vw 0;
  }
}
.search .inner::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - 334px);
  height: 100%;
  background-color: #e9f5ef;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .search .inner::before {
    display: none;
  }
}
.search .inner::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 140px;
  width: 800px;
  height: 100%;
  border-radius: 25rem 0 0 25rem;
  background-color: #e9f5ef;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .search .inner::after {
    display: none;
  }
}

.search__person {
  position: absolute;
  width: 21.875rem;
  bottom: 0;
  left: calc(50% - 683px);
}
@media (max-width: 1240px) {
  .search__person {
    display: none;
  }
}

.search__content {
  width: fit-content;
  margin-left: auto;
}
@media (max-width: 1240px) {
  .search__content {
    margin-right: auto;
  }
}

.search__title {
  text-align: center;
  font-size: 2.375rem;
  line-height: 1;
  font-weight: bold;
  font-family: "M PLUS 1", sans-serif;
  color: #1f975c;
  position: relative;
  padding-inline: 1.875rem;
  width: fit-content;
  margin: 0 auto 1.875rem;
}
@media screen and (max-width: 768px) {
  .search__title {
    font-size: 4.8vw;
    margin-bottom: 4vw;
  }
}
.search__title::before, .search__title::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  width: 3px;
  height: 0.8em;
  background-color: #1f975c;
}
.search__title::before {
  transform: rotate(-30deg);
  left: 0;
}
.search__title::after {
  transform: rotate(30deg);
  right: 0;
}

.search__buttons {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}
@media (max-width: 1240px) {
  .search__buttons {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .search__buttons {
    gap: 2vw;
  }
}

.search__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 10rem;
  height: 10rem;
  background-color: #1f975c;
  border-radius: 0.5rem;
  transition: opacity 0.3s ease;
}
@media (max-width: 1240px) {
  .search__btn {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  .search__btn {
    width: 26.6666666667vw;
    height: 26.6666666667vw;
    border-radius: 1.0666666667vw;
  }
}
.search__btn:hover {
  opacity: 0.8;
}
.search__btn:nth-child(1) .search__btn-icon {
  width: 2.5rem;
}
@media screen and (max-width: 768px) {
  .search__btn:nth-child(1) .search__btn-icon {
    width: 8vw;
  }
}
.search__btn:nth-child(2) .search__btn-icon {
  width: 2.875rem;
}
@media screen and (max-width: 768px) {
  .search__btn:nth-child(2) .search__btn-icon {
    width: 8vw;
  }
}
.search__btn:nth-child(3) .search__btn-icon {
  width: 2.9375rem;
}
@media screen and (max-width: 768px) {
  .search__btn:nth-child(3) .search__btn-icon {
    width: 8vw;
  }
}
.search__btn:nth-child(4) {
  display: none;
}
@media screen and (max-width: 768px) {
  .search__btn:nth-child(4) {
    display: block;
    background-color: transparent;
  }
  .search__btn:nth-child(4) img {
    transform: scale(1.1) translate(0.6vw, 1vw);
  }
}
.search__btn:nth-child(5) .search__btn-icon {
  width: 3.125rem;
}
@media screen and (max-width: 768px) {
  .search__btn:nth-child(5) .search__btn-icon {
    width: 9.3333333333vw;
  }
}
.search__btn:nth-child(6) .search__btn-icon {
  width: 3rem;
}
@media screen and (max-width: 768px) {
  .search__btn:nth-child(6) .search__btn-icon {
    width: 9.0666666667vw;
  }
}

.search__btn-icon {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .search__btn-icon {
    margin-bottom: 1.3333333333vw;
  }
}

.search__btn-text {
  font-size: 1.25rem;
  font-weight: bold;
  font-family: "M PLUS 1", sans-serif;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .search__btn-text {
    font-size: 3.4666666667vw;
  }
}

/*------------------------
Listing（新着物件情報）
------------------------*/
.listing {
  padding: 6.25rem 0;
}
@media screen and (max-width: 768px) {
  .listing {
    padding: 8vw 0;
  }
}
@media screen and (max-width: 768px) {
  .listing .inner {
    padding-inline: 0;
  }
}

.listing__items {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 3.75rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .listing__items {
    margin-bottom: 2.6666666667vw;
  }
}
.listing__items iframe {
  zoom: 1.17;
}
@media screen and (max-width: 768px) {
  .listing__items iframe {
    zoom: 1;
  }
}

.listing__btn-area {
  text-align: center;
}
.listing__btn-area .btn {
  max-width: 16.4375rem;
}
@media screen and (max-width: 768px) {
  .listing__btn-area .btn {
    max-width: 45.3333333333vw;
  }
}

/*------------------------
Pickup（おすすめの物件情報）
------------------------*/
.pickup {
  padding: 6.25rem 0;
  background-color: #f2f2f2;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .pickup {
    padding: 8vw 0;
  }
}

.pickup__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 1.875rem;
  position: relative;
}
.pickup__grid .swiper-wrapper {
  display: contents;
}
.pickup__grid .swiper-slide {
  display: contents;
}
.pickup__grid .swiper-pagination,
.pickup__grid .pickup__nav {
  display: none;
}
@media screen and (max-width: 768px) {
  .pickup__grid {
    display: block;
    overflow: visible;
    padding-bottom: 6.6666666667vw;
  }
  .pickup__grid .swiper-wrapper {
    display: flex;
    padding-bottom: 2vw;
  }
  .pickup__grid .swiper-slide {
    display: block;
    width: 42.6666666667vw;
  }
  .pickup__grid .swiper-pagination {
    display: block;
    bottom: 0;
  }
  .pickup__grid .swiper-pagination .swiper-pagination-bullet {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    background-color: #fff;
    opacity: 1;
  }
  .pickup__grid .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #1f975c;
  }
  .pickup__grid .pickup__nav {
    display: flex;
    position: absolute;
    top: auto;
    bottom: -1.5vw;
    width: 8vw;
    height: 8vw;
    background: no-repeat center/contain url(../images/navi-btn_green@2x.webp);
    z-index: 10;
  }
  .pickup__grid .pickup__nav svg {
    display: none;
  }
  .pickup__grid .pickup__nav--prev {
    left: 0;
    transform: rotate(180deg);
  }
  .pickup__grid .pickup__nav--next {
    right: 0;
  }
}

.pickup__card {
  display: block;
  border-radius: 8px;
  width: 100%;
  max-width: 15.625rem;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .pickup__card {
    max-width: 100%;
  }
}
.pickup__card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.pickup__card:hover .view-more {
  margin-right: 15px;
}

.pickup__card-img {
  aspect-ratio: 250/200;
  overflow: hidden;
}
.pickup__card-img img {
  aspect-ratio: 250/200;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pickup__card-body {
  padding: 0.9375rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .pickup__card-body {
    padding: 1.3333333333vw 2.6666666667vw 4vw;
  }
}

.pickup__card-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .pickup__card-title {
    font-size: 3.4666666667vw;
    margin-bottom: 0;
  }
}

.pickup__card-text {
  font-size: 0.9375rem;
  line-height: 1.5333333333;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .pickup__card-text {
    display: none;
  }
}

.pickup__card-link {
  font-size: 0.9375rem;
  line-height: 1;
  color: #1f975c;
  display: block;
}
@media screen and (max-width: 768px) {
  .pickup__card-link {
    margin-top: -0.5vw;
    font-size: 4vw;
  }
}
.pickup__card-link .view-more {
  display: inline-block;
  width: 5rem;
  margin-right: 0.3125rem;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  .pickup__card-link .view-more {
    width: 16vw;
  }
}

/*------------------------
Sale（売買物件特集）
------------------------*/
.sale {
  background: url(../images/top/sale_bg@2x.webp) no-repeat center/cover;
  padding: 6.25rem 0;
}
@media screen and (max-width: 768px) {
  .sale {
    padding: 13.3333333333vw 0;
    background: url(../images/top/sale_bg_sp@2x.webp) no-repeat center/cover;
  }
}

.sale .inner {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .sale .inner {
    text-align: left;
  }
}

.sale__title-en {
  width: 8.625rem;
  margin-bottom: 0.625rem;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .sale__title-en {
    width: 27vw;
    margin-bottom: 2vw;
    margin-left: 0;
  }
}

.sale__title {
  font-size: 3.75rem;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .sale__title {
    font-size: 7.2vw;
    margin-bottom: 2.6666666667vw;
  }
}

.sale__text {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .sale__text {
    font-size: 3.2vw;
    margin-bottom: 5.3333333333vw;
  }
}

.btn.sale__btn {
  max-width: 20.4375rem;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .btn.sale__btn {
    max-width: 44vw;
    margin-right: auto;
    margin-left: 0;
  }
}
.btn.sale__btn a {
  font-size: 1.25rem;
  min-height: 6.25rem;
  background-color: #0068b7;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .btn.sale__btn a {
    min-height: 14.6666666667vw;
    font-size: 4vw;
  }
}
.btn.sale__btn a .arrow {
  display: inline-block;
  margin-left: 1.5em;
}

/*------------------------
Company（会社概要）
------------------------*/
.top-company {
  position: relative;
  padding: 9.375rem 0 12.5rem;
}
@media screen and (max-width: 768px) {
  .top-company {
    padding: 13.3333333333vw 0;
  }
}
.top-company .company-movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: center 80%;
  object-fit: cover;
  z-index: -1;
  filter: blur(3px);
}
.top-company .inner {
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .top-company .inner {
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .top-company .section-header {
    order: 1;
    margin-bottom: 2.6666666667vw;
  }
}
.top-company .section-header .titleSet {
  margin-left: auto;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .top-company .section-header .titleSet {
    margin-right: auto;
    text-align: center;
  }
}
.top-company .section-header .titleSet .jp-title {
  color: #333;
}
.top-company .btn {
  max-width: 29.5625rem;
  margin-right: 0;
  order: 3;
}
@media screen and (max-width: 768px) {
  .top-company .btn {
    margin-right: auto;
    max-width: 66.6666666667vw;
  }
}
.top-company .btn a {
  font-size: 1.625rem;
  min-height: 6.25rem;
  background-color: #333;
}
@media screen and (max-width: 768px) {
  .top-company .btn a {
    font-size: 3.4666666667vw;
    min-height: 16vw;
  }
}
.top-company .btn + .btn {
  order: 4;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-company .btn + .btn {
    margin-top: 2.6666666667vw;
  }
}

.company__catch {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 2.5;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .company__catch {
    writing-mode: initial;
    order: 2;
    font-size: 3.7333333333vw;
    line-height: 2;
    margin-bottom: 5.3333333333vw;
  }
}

.company__text-area {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .company__text-area {
    display: contents;
  }
}

/*------------------------
Support（ご入居者様へ）
------------------------*/
.top-support {
  padding: 6.25rem 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-support {
    padding: 8vw 0;
  }
}

.top-support__img {
  position: absolute;
  width: 59%;
  height: 33.125rem;
  top: 6.25rem;
  left: 0;
  border-radius: 0 1.25rem 1.25rem 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-support__img {
    width: 90%;
    height: 93.3333333333vw;
    top: 8vw;
  }
}
.top-support__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top-support__text-area {
  margin-top: 5rem;
  max-width: 48.5rem;
  background-color: #fff;
  padding: 3.125rem 0 4.375rem 3.75rem;
  margin-left: auto;
  border-radius: 1.25rem 0 0 1.25rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-support__text-area {
    margin-top: 33vw;
    padding: 8vw 0 10vw 10vw;
  }
}
.top-support__text-area::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  margin-right: calc(50% - 50vw);
  z-index: -1;
  background-color: #fff;
  border-radius: 1.25rem 0 0 1.25rem;
}

.top-support__title-en {
  margin-top: -4.5rem;
  margin-left: auto;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-support__title-en {
    margin-top: -9.5vw;
    margin-bottom: 6.7vw;
  }
}
.top-support__title-en img {
  height: 2.125rem;
  width: auto;
  object-fit: contain;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .top-support__title-en img {
    height: 4.6vw;
  }
}

.top-support__title {
  font-size: 2.875rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .top-support__title {
    font-size: 6.1333333333vw;
    margin-bottom: 3.4666666667vw;
  }
}

.top-support__desc {
  font-size: 1.25rem;
  line-height: 2;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .top-support__desc {
    font-size: 3.4666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}

.top-support__btns {
  display: flex;
  gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .top-support__btns {
    flex-direction: column;
    gap: 2.6666666667vw;
  }
}
.top-support__btns .btn {
  max-width: 22.625rem;
}
@media screen and (max-width: 768px) {
  .top-support__btns .btn {
    max-width: 80vw;
  }
}
.top-support__btns .btn a {
  font-size: 1.625rem;
  line-height: 1.3846153846;
  min-height: 7.5rem;
  justify-content: space-between;
  align-items: end;
  padding: 1.875rem 1.25rem 2.1875rem 1.875rem;
}
@media screen and (max-width: 768px) {
  .top-support__btns .btn a {
    font-size: 4vw;
    min-height: 13.3333333333vw;
    padding: 4.6666666667vw;
  }
}
.top-support__btns .btn a .arrow {
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .top-support__btns .btn a .arrow {
    margin-bottom: 1.3333333333vw;
  }
}

/*------------------------
Voice（ご入居様の声）
------------------------*/
.voice {
  padding: 0 0 6.25rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .voice {
    padding: 0 0 13.3333333333vw;
  }
}
.voice .btn {
  max-width: 16.4375rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .voice .btn {
    max-width: 40vw;
    margin-top: 5.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .voice .btn a {
    font-size: 3.2vw;
    min-height: 13.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .voice .btn a .arrow {
    display: none;
  }
}

.voice__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .voice__header {
    margin-bottom: 6.6666666667vw;
  }
}

.voice__title-en {
  margin-bottom: 0.625rem;
}
.voice__title-en img {
  height: 2.125rem;
  width: auto;
  object-fit: contain;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .voice__title-en img {
    height: 6.6666666667vw;
  }
}

.voice__title {
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .voice__title {
    font-size: 3.2vw;
  }
}

.voice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
  margin-bottom: 3.125rem;
  position: relative;
}
.voice__grid .swiper-wrapper {
  display: contents;
}
.voice__grid .swiper-slide {
  display: contents;
}
.voice__grid .swiper-pagination,
.voice__grid .voice__nav {
  display: none;
}
@media screen and (max-width: 768px) {
  .voice__grid {
    display: block;
    overflow: visible;
    padding-bottom: 6.6666666667vw;
    margin-bottom: 6.6666666667vw;
  }
  .voice__grid .swiper-wrapper {
    display: flex;
    padding-bottom: 2vw;
  }
  .voice__grid .swiper-slide {
    display: block;
    width: 66.6666666667vw;
  }
  .voice__grid .swiper-pagination {
    display: block;
    bottom: 0;
  }
  .voice__grid .swiper-pagination .swiper-pagination-bullet {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    background-color: #fff;
    opacity: 1;
  }
  .voice__grid .swiper-pagination .swiper-pagination-bullet-active {
    background-color: #1f975c;
  }
  .voice__grid .voice__nav {
    display: flex;
    position: absolute;
    top: auto;
    bottom: -1.5vw;
    width: 8vw;
    height: 8vw;
    background: no-repeat center/contain url(../images/navi-btn_green@2x.webp);
    z-index: 10;
  }
  .voice__grid .voice__nav svg {
    display: none;
  }
  .voice__grid .voice__nav--prev {
    left: 0;
    transform: rotate(180deg);
  }
  .voice__grid .voice__nav--next {
    right: 0;
  }
}

.voice__card {
  background-color: #fff;
  border-radius: 0.625rem;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .voice__card {
    border-radius: 2vw;
  }
}
.voice__card .viewmore-link {
  margin-top: auto;
}

.voice__card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}

.voice__card-img {
  text-align: center;
  height: 18rem;
}
@media screen and (max-width: 768px) {
  .voice__card-img {
    height: 46.6666666667vw;
  }
}
.voice__card-img img {
  height: 100%;
  object-fit: cover;
}

.voice__card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .voice__card-body {
    padding: 4vw;
  }
}

.voice__card-name {
  font-size: 1.375rem;
  line-height: 1.4545454545;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .voice__card-name {
    font-size: 5.0666666667vw;
  }
}

.voice__card-text {
  font-size: 1rem;
  line-height: 1.625;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 768px) {
  .voice__card-text {
    font-size: 3.7333333333vw;
  }
}

/*------------------------
top-column（地域情報コラム）
------------------------*/
.top-column {
  padding: 6.25rem 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .top-column {
    padding: 10.6666666667vw 0;
  }
}
@media screen and (max-width: 768px) {
  .top-column .inner {
    padding-inline: 0;
  }
}
.top-column .btn {
  max-width: 16.4375rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top-column .btn {
    max-width: 40vw;
    margin-top: 5.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .top-column .btn a {
    font-size: 3.2vw;
    min-height: 13.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .top-column .btn a .arrow {
    display: none;
  }
}

.top-column__slider {
  margin-bottom: 2.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-column__slider {
    margin-bottom: 5.3333333333vw;
    padding-bottom: 6.6666666667vw;
  }
}
.top-column__slider .swiper-wrapper {
  padding-bottom: rem 60;
}
@media screen and (max-width: 768px) {
  .top-column__slider .swiper-wrapper {
    padding-bottom: 6vw;
  }
}
.top-column__slider .swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto;
}
.top-column__slider .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  background-color: #ccc;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .top-column__slider .swiper-pagination-bullet {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.top-column__slider .swiper-pagination-bullet-active {
  background-color: #1f975c;
}
.top-column__slider .top-column__nav {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-column__slider .top-column__nav {
    display: flex;
    position: absolute;
    top: auto;
    bottom: 0vw;
    width: 8vw;
    height: 8vw;
    background: no-repeat center/contain url(../images/navi-btn_green@2x.webp);
    z-index: 10;
  }
  .top-column__slider .top-column__nav svg {
    display: none;
  }
  .top-column__slider .top-column__nav--prev {
    left: 5vw;
    transform: rotate(180deg);
  }
  .top-column__slider .top-column__nav--next {
    right: 5vw;
  }
}

@media screen and (max-width: 768px) {
  .top-column__nav--navigation {
    width: 90vw;
    margin: 0 auto;
  }
}

.top-column__card {
  border: 1px solid #333;
  border-radius: 0.625rem;
  overflow: hidden;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .top-column__card {
    border-radius: 2vw;
  }
}

.top-column__card-img {
  aspect-ratio: 4/3;
}
.top-column__card-img img {
  aspect-ratio: 4/3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.top-column__card:hover .top-column__card-img img {
  transform: scale(1.05);
}

.top-column__card-body {
  padding: 1.25rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .top-column__card-body {
    padding: 2.6666666667vw;
  }
}

.top-column__card-title {
  font-size: 1.375rem;
  font-weight: bold;
  margin-bottom: 0.625rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .top-column__card-title {
    border: none;
    font-size: 4vw;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.top-column__card-title span {
  display: block;
  font-size: 0.9375rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .top-column__card-title span {
    font-size: 3.2vw;
  }
}

.top-column__card-text {
  font-size: 1rem;
  line-height: 1.625;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 768px) {
  .top-column__card-text {
    display: none;
  }
}

/*------------------------
Owners（オーナー様へ）
------------------------*/
.owners {
  padding: 6.25rem 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .owners {
    padding: 8vw 0;
  }
}

.owners__img {
  position: absolute;
  width: 59%;
  height: 33.125rem;
  top: 6.25rem;
  left: 0;
  border-radius: 0 1.25rem 1.25rem 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .owners__img {
    width: 90%;
    height: 93.3333333333vw;
    top: 8vw;
  }
}
.owners__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.owners__text-area {
  margin-top: 5rem;
  max-width: 48.5rem;
  background-color: #fff;
  padding: 3.125rem 0 4.375rem 3.75rem;
  margin-left: auto;
  border-radius: 1.25rem 0 0 1.25rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .owners__text-area {
    margin-top: 33vw;
    padding: 8vw 0 10vw 10vw;
  }
}
.owners__text-area::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  margin-right: calc(50% - 50vw);
  z-index: -1;
  background-color: #fff;
  border-radius: 1.25rem 0 0 1.25rem;
}

.owners__title-en {
  margin-top: -4.5rem;
  margin-left: auto;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .owners__title-en {
    margin-top: -9.5vw;
    margin-bottom: 6.7vw;
  }
}
.owners__title-en img {
  height: 2.125rem;
  width: auto;
  object-fit: contain;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .owners__title-en img {
    height: 4.6vw;
  }
}

.owners__title {
  font-size: 2.875rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .owners__title {
    font-size: 6.1333333333vw;
    margin-bottom: 3.4666666667vw;
  }
}

.owners__desc {
  font-size: 1.25rem;
  line-height: 2;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .owners__desc {
    font-size: 3.4666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}

.owners__btns {
  display: flex;
  gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .owners__btns {
    flex-direction: column;
    gap: 2.6666666667vw;
  }
}
.owners__btns .btn {
  max-width: 22.625rem;
}
@media screen and (max-width: 768px) {
  .owners__btns .btn {
    max-width: 80vw;
  }
}
.owners__btns .btn a {
  font-size: 1.625rem;
  line-height: 1.3846153846;
  min-height: 7.5rem;
  justify-content: space-between;
  align-items: end;
  padding: 1.875rem 1.25rem 2.1875rem 1.875rem;
}
@media screen and (max-width: 768px) {
  .owners__btns .btn a {
    font-size: 4vw;
    min-height: 13.3333333333vw;
    padding: 4.6666666667vw;
  }
}
.owners__btns .btn a .arrow {
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .owners__btns .btn a .arrow {
    margin-bottom: 1.3333333333vw;
  }
}

/*------------------------
Top News（お知らせ）
------------------------*/
.news-section {
  padding: 5rem 0;
}
@media screen and (max-width: 768px) {
  .news-section {
    padding: 10.6666666667vw 0;
  }
}
.news-section .btn {
  max-width: 16.4375rem;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .news-section .btn {
    max-width: 40vw;
    margin-right: auto;
    margin-top: 5.3333333333vw;
  }
}
.news-section .btn a {
  font-size: 1.25rem;
  min-height: 3.75rem;
}
@media screen and (max-width: 768px) {
  .news-section .btn a {
    font-size: 3.2vw;
    min-height: 13.3333333333vw;
  }
}
@media screen and (max-width: 768px) {
  .news-section .btn a .arrow {
    display: none;
  }
}

.consul {
  padding: 6.25rem 0;
  background: no-repeat center/cover url(../images/top/consul_bg@2x.webp);
}
@media screen and (max-width: 768px) {
  .consul {
    padding: 13.3333333333vw 0;
  }
}
.consul .inner {
  max-width: 65rem;
}
@media screen and (max-width: 768px) {
  .consul .inner {
    display: flex;
    flex-direction: column-reverse;
  }
}

.consul__btns {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .consul__btns {
    flex-direction: column;
    gap: 5.3333333333vw;
    margin-bottom: 0;
  }
}

.consul__btn {
  transition: all 0.4s ease;
}
.consul__btn:hover {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.consul__text {
  font-size: 2.5rem;
  line-height: 1.5;
  font-weight: bold;
  word-break: keep-all;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .consul__text {
    font-size: 5.6vw;
    margin-bottom: 4vw;
  }
}

.ulPage {
  overflow: hidden;
}

.ul-head {
  height: 31.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .ul-head {
    height: 44vw;
  }
}
.ul-head::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #e6e6e6;
  mix-blend-mode: multiply;
}

.ul-head__img {
  width: 78.125%;
  height: 100%;
}
.ul-head__img img {
  height: 100%;
  object-fit: cover;
}

.ul-head__text {
  position: absolute;
  max-width: 1140px;
  bottom: -1px;
  left: 0;
  right: 0;
  margin: auto;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 768px) {
  .ul-head__text {
    bottom: -0.5vw;
  }
}
.ul-head__text .catch {
  font-size: 1.625rem;
  line-height: 1.5384615385;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .ul-head__text .catch {
    font-size: 3.4666666667vw;
  }
}
.ul-head__text .en img {
  height: 3.75rem;
  object-fit: contain;
  width: auto;
}
@media screen and (max-width: 768px) {
  .ul-head__text .en img {
    height: 8vw;
  }
}

.bread {
  padding: 0.9375rem 0;
}
.bread .bread__list {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  gap: 0.5em 0;
}
@media screen and (max-width: 768px) {
  .bread .bread__list {
    justify-content: start;
  }
}
.bread .bread__item:last-child {
  pointer-events: none;
}

.bread__item {
  font-size: 0.875rem;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .bread__item {
    font-size: 2.6666666667vw;
  }
}
.bread__item + .bread__item {
  padding-left: 1.6875rem;
}
@media screen and (max-width: 768px) {
  .bread__item + .bread__item {
    padding-left: 6vw;
  }
}
.bread__item + .bread__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.25rem;
  width: 1.25rem;
  height: 0.3125rem;
  background: no-repeat center/contain url(../images/bread_dot@2x.webp);
}
@media screen and (max-width: 768px) {
  .bread__item + .bread__item::before {
    left: 1vw;
    width: 4vw;
    height: 0.5vw;
  }
}

@media screen and (max-width: 768px) {
  .main-container {
    padding-top: 8vw;
  }
}

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

.ul-top__title {
  font-size: 3.75rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .ul-top__title {
    font-size: 6.1333333333vw;
    margin-bottom: 2.1333333333vw;
  }
}

.ul-top__lead {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .ul-top__lead {
    font-size: 3.7333333333vw;
    margin-bottom: 8vw;
  }
}

/*------------------------
ご入居者様サポート
------------------------*/
#page-regident .voice {
  padding-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  #page-regident .voice {
    padding-top: 13.3333333333vw;
  }
}

.regident {
  padding-top: 34.375rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .regident {
    margin-bottom: 10.6666666667vw;
    padding-top: 48vw;
  }
}
.regident .inner {
  max-width: 92.5rem;
}

.anshin {
  position: relative;
  padding-top: 31.25rem;
}
@media screen and (max-width: 768px) {
  .anshin {
    padding-top: 48vw;
  }
}
.anshin .supportCont__inner {
  max-width: 54.375rem;
}
.anshin .supportCont__header::before, .anshin .supportCont__header::after {
  background: no-repeat center/contain url(../images/regident/coron_blue@2x.webp);
}
.anshin .supportCont__sub,
.anshin .supportCont__title {
  color: #0045a5;
}
.anshin .supportCont__fukidashi {
  background-color: #0045a5;
}
.anshin .supportCont__fukidashi::after {
  background-color: #0045a5;
}
.anshin .supportCont__tabsBtn {
  color: #0045a5;
  border: 2px solid #0045a5;
}
.anshin .supportCont__tabsBtn.is-active {
  color: #fff;
  background-color: #0045a5;
}
.anshin .supportCont__item--title {
  color: #0045a5;
  border-bottom: 1px solid #0045a5;
}
.anshin .inner {
  max-width: 92.5rem;
}
.anshin .supportCont__column {
  gap: 3.125rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .anshin .supportCont__column {
    flex-direction: column;
    gap: 4vw;
    margin-bottom: 2.6666666667vw;
  }
}
.anshin .supportCont__column--img {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .anshin .supportCont__column--img {
    width: 100%;
  }
  .anshin .supportCont__column--img img {
    border-radius: 2vw;
    width: 100%;
    height: 36.8421052632vw;
    object-fit: cover;
  }
}
.anshin .supportCont__column--text {
  flex: 1;
}
.anshin .supportCont__column--title {
  font-size: 1.4375rem;
  line-height: 1.3333333333;
  font-weight: 500;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .anshin .supportCont__column--title {
    font-size: 4.8vw;
    margin-bottom: 1.3333333333vw;
  }
}
.anshin .supportCont__column--desc {
  font-size: 1rem;
  line-height: 2;
}
.anshin .supportCont__column--desc .caution {
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .anshin .supportCont__column--desc {
    font-size: 3.7333333333vw;
  }
}
.anshin .anshin-link {
  max-width: 36.875rem;
  margin: 0 auto;
}

.anshin__featuresTitle {
  font-size: 1.625rem;
  font-weight: bold;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .anshin__featuresTitle {
    text-align: center;
    font-size: 4.2666666667vw;
    margin-bottom: 4vw;
  }
}

.anshin__featuresList {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .anshin__featuresList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.6666666667vw;
  }
}

.anshin__featuresItem {
  flex: 1;
  max-width: 9.875rem;
  min-height: 9.875rem;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .anshin__featuresItem {
    width: 100%;
    max-width: 38vw;
    min-height: 38vw;
  }
}
.anshin__featuresItem:nth-child(1) .anshin__featuresIcon {
  width: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .anshin__featuresItem:nth-child(1) .anshin__featuresIcon {
    width: 12vw;
  }
}
.anshin__featuresItem:nth-child(2) .anshin__featuresIcon {
  width: 3.9375rem;
}
@media screen and (max-width: 768px) {
  .anshin__featuresItem:nth-child(2) .anshin__featuresIcon {
    width: 16.8vw;
  }
}
.anshin__featuresItem:nth-child(3) .anshin__featuresIcon {
  width: 4.375rem;
}
@media screen and (max-width: 768px) {
  .anshin__featuresItem:nth-child(3) .anshin__featuresIcon {
    width: 18.6666666667vw;
  }
}
.anshin__featuresItem:nth-child(4) .anshin__featuresIcon {
  width: 3.5625rem;
}
@media screen and (max-width: 768px) {
  .anshin__featuresItem:nth-child(4) .anshin__featuresIcon {
    width: 15.2vw;
  }
}
@media screen and (max-width: 768px) {
  .anshin__featuresItem:nth-child(5) {
    grid-column: span 2;
    justify-self: center;
  }
}
.anshin__featuresItem:nth-child(5) .anshin__featuresIcon {
  width: 1.9375rem;
}
@media screen and (max-width: 768px) {
  .anshin__featuresItem:nth-child(5) .anshin__featuresIcon {
    width: 8.2666666667vw;
  }
}

.anshin__featuresIcon {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .anshin__featuresIcon {
    margin-bottom: 2.6666666667vw;
  }
}

.anshin__featuresText {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .anshin__featuresText {
    font-size: 3.2vw;
  }
}

.anshin__flowTitle {
  font-size: 1.625rem;
  font-weight: bold;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .anshin__flowTitle {
    text-align: center;
    font-size: 4.2666666667vw;
    margin-bottom: 4vw;
  }
}

.anshin__flowList {
  display: flex;
  justify-content: center;
  gap: 2.1875rem;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .anshin__flowList {
    flex-direction: column;
    align-items: center;
    gap: 4vw;
  }
}

.anshin__flowItem {
  flex: 1;
  max-width: 13.75rem;
  text-align: center;
  position: relative;
  background: #eaf6fd;
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .anshin__flowItem {
    width: 40vw;
    max-width: 100%;
  }
}
.anshin__flowItem:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1.125rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.9375rem 0 0.9375rem 1.375rem;
  border-color: transparent transparent transparent #0045a5;
}
@media screen and (max-width: 768px) {
  .anshin__flowItem:not(:last-child)::after {
    right: 41%;
    transform: rotate(90deg) translateX(-50%);
    bottom: -8vw;
    top: auto;
  }
}

.anshin__flowStep {
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  color: #0045a5;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .anshin__flowStep {
    font-size: 2.6666666667vw;
    margin-bottom: 1.3333333333vw;
  }
}

.anshin__flowIcon {
  width: 7.5rem;
  height: 7.5rem;
  margin: 0 auto 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .anshin__flowIcon {
    width: 20vw;
    height: 20vw;
    margin-bottom: 1.3333333333vw;
  }
}
.anshin__flowIcon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.anshin__flowText {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: #333;
}
@media screen and (max-width: 768px) {
  .anshin__flowText {
    font-size: 3.2vw;
  }
}

.anshin__flowName {
  font-size: 1.125rem;
  font-weight: bold;
  color: #0045a5;
  margin-bottom: 0.125rem;
}
@media screen and (max-width: 768px) {
  .anshin__flowName {
    font-size: 3.7333333333vw;
    margin-bottom: 1.3333333333vw;
  }
}

.anshin__flowDesc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #0045a5;
}
@media screen and (max-width: 768px) {
  .anshin__flowDesc {
    font-size: 2.9333333333vw;
  }
}

.anshin__items--title {
  font-size: 1.625rem;
  font-weight: bold;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .anshin__items--title {
    text-align: center;
    font-size: 4.2666666667vw;
    margin-bottom: 4vw;
  }
}

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

.anshin__item {
  background-color: #f1f9fe;
  padding: 1.25rem;
}
.anshin__item .title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.625rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 768px) {
  .anshin__item .title {
    font-size: 4vw;
    margin-bottom: 1.3333333333vw;
  }
}
.anshin__item .desc {
  font-size: 0.875rem;
  line-height: 1.6666666667;
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .anshin__item .desc {
    font-size: 3.7333333333vw;
  }
}

.supportCont__tabCont[data-tab-content="2"] .anshin__items {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .supportCont__tabCont[data-tab-content="2"] .anshin__items {
    grid-template-columns: 1fr;
  }
}

.supportCont__tabCont[data-tab-content="3"] .anshin__items {
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 768px) {
  .supportCont__tabCont[data-tab-content="3"] .anshin__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.supportCont__tabCont[data-tab-content="3"] .anshin__item {
  text-align: center;
  padding: 1.5625rem 0.9375rem;
}
@media screen and (max-width: 768px) {
  .supportCont__tabCont[data-tab-content="3"] .anshin__item {
    padding: 3.3333333333vw 2vw;
  }
}
.supportCont__tabCont[data-tab-content="3"] .anshin__item .title {
  font-size: 1.125rem;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .supportCont__tabCont[data-tab-content="3"] .anshin__item .title {
    font-size: 4vw;
  }
}
.supportCont__tabCont[data-tab-content="3"] .anshin__item .title .sub {
  display: block;
  font-size: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .supportCont__tabCont[data-tab-content="3"] .anshin__item .title .sub {
    font-size: 3.4666666667vw;
  }
}
.supportCont__tabCont[data-tab-content="3"] .anshin__item .desc {
  font-size: 0.875rem;
  line-height: 1.8;
}

.fixed-bg {
  position: absolute;
  top: 6.25rem;
  left: 0;
  right: 0;
  height: auto;
  width: 100%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .fixed-bg {
    top: 13.3333333333vw;
  }
}
.fixed-bg.is-fixed {
  position: fixed;
  top: 0;
}
.fixed-bg.is-bottom {
  position: absolute;
}

/*------------------------
サポートコンテンツ（汎用）
------------------------*/
.supportCont {
  padding: 5rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 1.25rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .supportCont {
    padding: 8vw 4vw;
  }
}

.supportCont__inner {
  max-width: 1090px;
  margin: 0 auto;
}

.supportCont__header {
  display: flex;
  justify-content: center;
  gap: 0.625rem;
  width: fit-content;
  padding-inline: 3.75rem 3.4375rem;
  margin: 0 auto 2.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .supportCont__header {
    flex-direction: column;
    gap: 1.3333333333vw;
    align-items: center;
    padding-inline: 8vw;
    margin-bottom: 5.3333333333vw;
  }
}
.supportCont__header::before, .supportCont__header::after {
  content: "";
  display: block;
  position: absolute;
  top: -0.9375rem;
  width: 3rem;
  height: 2.75rem;
  background: no-repeat center/contain url(../images/regident/coron@2x.webp);
}
@media screen and (max-width: 768px) {
  .supportCont__header::before, .supportCont__header::after {
    top: -2vw;
    width: 6.4vw;
    height: 5.8666666667vw;
  }
}
.supportCont__header::before {
  left: 0;
}
.supportCont__header::after {
  right: 0;
  transform: scale(-1, -1);
}

.supportCont__sub {
  font-size: 1.375rem;
  line-height: 1.1666666667;
  font-weight: 500;
  color: #1f975c;
}
@media screen and (max-width: 768px) {
  .supportCont__sub {
    font-size: 3.2vw;
  }
}

.supportCont__title {
  font-size: 3.125rem;
  font-weight: bold;
  color: #1f975c;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .supportCont__title {
    font-size: 5.3333333333vw;
  }
}

.supportCont__fukidashi {
  background-color: #1f975c;
  padding: 1.25rem 2.5rem;
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  border-radius: 6.25rem;
  max-width: 54.375rem;
  margin: 0 auto 3.125rem;
  position: relative;
}
.supportCont__fukidashi::after {
  content: "";
  position: absolute;
  bottom: -1.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.8125rem;
  height: 1.875rem;
  background-color: #1f975c;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
@media screen and (max-width: 768px) {
  .supportCont__fukidashi {
    font-size: 3.7333333333vw;
    padding: 2.6666666667vw 4vw;
    margin-bottom: 5.3333333333vw;
  }
  .supportCont__fukidashi::after {
    bottom: -3.4666666667vw;
    width: 6vw;
    height: 4vw;
  }
}

.supportCont__column {
  max-width: 54.375rem;
  gap: 2.5rem;
  margin: 0 auto 3.75rem;
}
@media screen and (max-width: 768px) {
  .supportCont__column {
    flex-direction: column-reverse;
    gap: 5.3333333333vw;
    margin-bottom: 8vw;
  }
}

.supportCont__imgs {
  width: 30%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .supportCont__imgs {
    display: flex;
    width: 100%;
  }
}

.supportCont__img + .supportCont__img {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .supportCont__img + .supportCont__img {
    margin-top: 0;
    margin-left: 1.3333333333vw;
  }
}

.supportCont__content {
  flex: 1;
}

.supportCont__item {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .supportCont__item {
    margin-bottom: 4vw;
  }
}

.supportCont__item--title {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: bold;
  color: #1f975c;
  padding-bottom: 0.3125rem;
  margin-bottom: 0.625rem;
  border-bottom: 1px solid #1f975c;
}
@media screen and (max-width: 768px) {
  .supportCont__item--title {
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
.supportCont__item--title .num {
  font-size: 1.75rem;
  display: inline-block;
  margin-right: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .supportCont__item--title .num {
    font-size: 4vw;
  }
}

.supportCont__text {
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .supportCont__text {
    font-size: 3.4666666667vw;
  }
}

.supportCont__checklist {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .supportCont__checklist {
    gap: 2.6666666667vw;
  }
}
.supportCont__checklist li {
  position: relative;
  padding-left: 1.25rem;
}
@media screen and (max-width: 768px) {
  .supportCont__checklist li {
    padding-left: 4.2666666667vw;
  }
}
.supportCont__checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  background-color: #333;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .supportCont__checklist li::before {
    top: 1.0666666667vw;
    width: 3.7333333333vw;
    height: 3.7333333333vw;
  }
}
.supportCont__checklist li p {
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .supportCont__checklist li p {
    font-size: 3.4666666667vw;
  }
}

.supportCont__label {
  font-size: 1.125rem;
  font-weight: bold;
  display: block;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .supportCont__label {
    font-size: 3.7333333333vw;
    margin-bottom: 0.6666666667vw;
  }
}

.supportCont__caution {
  padding: 1em;
  border: 1px solid rgba(0, 0, 0, 0.5);
  max-width: 51.25rem;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .supportCont__caution {
    text-align: left;
    font-size: 3.4666666667vw;
    padding: 2.6666666667vw;
  }
}

.supportCont__tabsList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .supportCont__tabsList {
    flex-wrap: wrap;
    gap: 1.3333333333vw;
    margin-bottom: 4vw;
  }
}

.supportCont__tabsItem {
  flex: 1;
  max-width: 17.5rem;
}
@media screen and (max-width: 768px) {
  .supportCont__tabsItem {
    max-width: none;
    flex: none;
    width: 24vw;
  }
}

.supportCont__tabsBtn {
  display: block;
  width: 100%;
  padding: 0.9375rem 1.25rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  color: #1f975c;
  background-color: #fff;
  border: 2px solid #1f975c;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 4.4em;
}
@media screen and (max-width: 768px) {
  .supportCont__tabsBtn {
    padding: 1.3333333333vw 1.3333333333vw;
    font-size: 3.2vw;
    border-radius: 1.0666666667vw;
  }
}
.supportCont__tabsBtn:hover {
  background-color: rgba(31, 151, 92, 0.1);
}
.supportCont__tabsBtn.is-active {
  color: #fff;
  background-color: #1f975c;
}

.supportCont__tabCont {
  display: none;
}
.supportCont__tabCont.is-active {
  display: block;
}

/*------------------------
施工実例
------------------------*/
#single-works .ul-head {
  height: 17.5rem;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  #single-works .ul-head {
    height: 30vw;
    margin-bottom: 4vw;
  }
}
#single-works .ul-head__img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .worksCont {
    padding-top: 6.6666666667vw;
  }
}

.worksCont__catch {
  font-size: 2.5rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .worksCont__catch {
    font-size: 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}

.worksCont__lead {
  font-size: 1.5rem;
  line-height: 2.0833333333;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .worksCont__lead {
    font-size: 3.7333333333vw;
    margin-bottom: 6.6666666667vw;
  }
}

.worksCont__section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f975c;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .worksCont__section-title {
    font-size: 4.2666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}

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

.worksCont__overview-item {
  display: flex;
  gap: 1.25rem;
  padding: 0.9375rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .worksCont__overview-item {
    gap: 2.6666666667vw;
    padding: 2vw 0;
  }
}
.worksCont__overview-item dt {
  width: 6em;
  font-size: 1.125rem;
  font-weight: bold;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .worksCont__overview-item dt {
    font-size: 3.4666666667vw;
  }
}
.worksCont__overview-item dd {
  flex: 1;
  font-size: 1.125rem;
  line-height: 1.6666666667;
}
@media screen and (max-width: 768px) {
  .worksCont__overview-item dd {
    font-size: 3.4666666667vw;
  }
}

.worksCont__changes {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .worksCont__changes {
    margin-bottom: 8vw;
  }
}

.worksCont__changes-item {
  display: flex;
  gap: 1.25rem;
  padding: 0.9375rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .worksCont__changes-item {
    gap: 2.6666666667vw;
    padding: 2vw 0;
  }
}
.worksCont__changes-item dt {
  width: 6em;
  font-size: 1.125rem;
  font-weight: bold;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .worksCont__changes-item dt {
    font-size: 3.4666666667vw;
  }
}
.worksCont__changes-item dd {
  font-size: 1.125rem;
  line-height: 1.6666666667;
}
@media screen and (max-width: 768px) {
  .worksCont__changes-item dd {
    font-size: 3.4666666667vw;
  }
}

.worksCont__before {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .worksCont__before {
    margin-bottom: 5.3333333333vw;
  }
}

.worksCont__before-title {
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .worksCont__before-title {
    font-size: 4.2666666667vw;
    margin-bottom: 4vw;
  }
}

.worksCont__before-img {
  width: 100%;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .worksCont__before-img {
    margin-bottom: 5.3333333333vw;
  }
}

.worksCont__before-detail {
  display: flex;
  align-items: end;
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .worksCont__before-detail {
    flex-direction: column;
    gap: 6.6666666667vw;
    align-items: start;
  }
}

.worksCont__before-label {
  display: block;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .worksCont__before-label {
    font-size: 8vw;
  }
}

.worksCont__before-text {
  font-size: 1.25rem;
  line-height: 1.75;
  position: relative;
}
@media screen and (max-width: 768px) {
  .worksCont__before-text {
    font-size: 3.7333333333vw;
  }
}
.worksCont__before-text::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: -1.25rem;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .worksCont__before-text::before {
    top: -4vw;
    left: 0;
    width: 100%;
    height: 1px;
  }
}

.worksCont__arrow {
  width: fit-content;
  margin: 2.5rem auto;
}
@media screen and (max-width: 768px) {
  .worksCont__arrow {
    margin: 5.3333333333vw auto;
  }
}
.worksCont__arrow::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.875rem 1.75rem 0 1.75rem;
  border-color: #bce0ce transparent transparent transparent;
}
@media screen and (max-width: 768px) {
  .worksCont__arrow::before {
    border-width: 6.1333333333vw 3.7333333333vw 0 3.7333333333vw;
  }
}

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

.worksCont__after-title {
  font-size: 2.25rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .worksCont__after-title {
    font-size: 4.2666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}

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

.worksCont__after-img {
  width: 100%;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .worksCont__after-img {
    margin-bottom: 5.3333333333vw;
  }
}

.worksCont__after-detail {
  display: flex;
  align-items: end;
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .worksCont__after-detail {
    flex-direction: column;
    gap: 6.6666666667vw;
    align-items: start;
  }
}

.worksCont__after-label {
  display: block;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .worksCont__after-label {
    font-size: 8vw;
  }
}

.worksCont__after-text {
  font-size: 1.25rem;
  line-height: 1.75;
  position: relative;
}
.worksCont__after-text::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: -1.25rem;
  width: 1px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .worksCont__after-text {
    font-size: 4vw;
  }
  .worksCont__after-text::before {
    top: -4vw;
    left: 0;
    width: 100%;
    height: 1px;
  }
}

.worksCont__after-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .worksCont__after-gallery {
    gap: 1.3333333333vw;
  }
}

.worksCont__after-gallery-item {
  aspect-ratio: 1/1;
}
.worksCont__after-gallery-item img {
  aspect-ratio: 1/1;
  height: 100%;
  object-fit: cover;
}

.worksCont__points {
  background-color: #f5f9f0;
  padding: 3.125rem 2.5rem;
  margin-bottom: 9.375rem;
}
@media screen and (max-width: 768px) {
  .worksCont__points {
    padding: 6.6666666667vw 5.3333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}

.worksCont__points-title {
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.875rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid #1f975c;
}
@media screen and (max-width: 768px) {
  .worksCont__points-title {
    font-size: 4.2666666667vw;
    margin-bottom: 4vw;
  }
}

.worksCont__points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .worksCont__points-grid {
    grid-template-columns: 1fr;
    gap: 5.3333333333vw;
  }
}

.worksCont__points--title {
  display: flex;
  margin-bottom: 1.25rem;
}

.worksCont__points--num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  background-color: #f5f9f0;
  color: #fff;
  font-size: 1.875rem;
  font-weight: bold;
  border-radius: 50%;
  flex-shrink: 0;
  padding-right: 2px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .worksCont__points--num {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    font-size: 4vw;
    padding-right: 1vw;
  }
}
.worksCont__points--num::before {
  display: block;
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  background-color: #1f975c;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 50%;
  z-index: -1;
}

.worksCont__points--main {
  height: 3.75rem;
  flex: 1;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  border-radius: 0 12.5rem 12.5rem 0;
  background-color: #1f975c;
  display: flex;
  align-items: center;
  padding-left: 1em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .worksCont__points--main {
    height: 10.6666666667vw;
    font-size: 3.2vw;
    padding-right: 2vw;
    padding-left: 0.5em;
  }
}
.worksCont__points--main::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-98%);
  width: 1.875rem;
  height: 100%;
  background-color: #1f975c;
}
@media screen and (max-width: 768px) {
  .worksCont__points--main::before {
    width: 4vw;
  }
}

.worksCont__points-item-text {
  font-size: 1.125rem;
  line-height: 1.9444444444;
}
@media screen and (max-width: 768px) {
  .worksCont__points-item-text {
    font-size: 3.7333333333vw;
  }
}

/*******　一覧ページ*********/
.worksList__items {
  padding: 6.25rem 0;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  .worksList__items {
    padding: 13.3333333333vw 0;
  }
}
.worksList__items .inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.125rem;
  align-items: center;
}
@media (max-width: 1280px) {
  .worksList__items .inner {
    gap: 3.125rem 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .worksList__items .inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.3333333333vw;
  }
}

.worksList__items--title {
  font-size: 2.25rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .worksList__items--title {
    font-size: 5.8666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}

.worksList__item--img {
  margin-bottom: 0.625rem;
  position: relative;
}
.worksList__item--img .box-img {
  display: block;
  aspect-ratio: 510/353;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .worksList__item--img .box-img {
    border-radius: 1.3333333333vw;
  }
}

/* Before-After Slider */
.before_after_slider {
  --handle-position: 49%;
  position: relative;
  overflow: hidden;
}
.before_after_slider::before {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: var(--handle-position);
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  z-index: 10;
  color: #fff;
  pointer-events: none;
  background: no-repeat center/contain url(../images/works/before-after-btn@2x.webp);
}
.before_after_slider::after {
  content: "";
  position: absolute;
  top: 50%;
  left: var(--handle-position);
  transform: translate(-50%, -50%);
  width: 5px;
  height: 100%;
  background-color: #fff;
  z-index: 10;
  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;
  box-shadow: 3px 0 5px rgba(0, 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;
  filter: grayscale(1);
}
.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;
  appearance: none;
  pointer-events: auto;
}

.slider-text {
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  position: absolute;
}
.slider-text.--before {
  left: 0.3125rem !important;
  z-index: 6;
  top: auto !important;
  bottom: 0.1875rem !important;
}
.slider-text.--after {
  left: auto !important;
  right: 0.3125rem !important;
  z-index: 1;
  top: 0.1875rem !important;
}

.worksList__item--meta {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .worksList__item--meta {
    font-size: 3.7333333333vw;
    margin-bottom: 1.3333333333vw;
  }
}
.worksList__item--meta span {
  display: block;
}

.worksList__item--title {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .worksList__item--title {
    font-size: 4.8vw;
    margin-bottom: 1.3333333333vw;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .pagination {
    margin-top: 10.6666666667vw;
  }
}
.pagination .page-numbers {
  width: 1.75rem;
  height: 1.75rem;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 500;
  color: #999999;
  border: 1px solid #999999;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-bottom: 0.1875rem;
}
.pagination .page-numbers.current {
  background-color: #1f975c;
  color: #fff;
  border: 1px solid #1f975c;
}
.pagination .page-numbers.next, .pagination .page-numbers.prev {
  border: none;
  font-size: 1.75rem;
}

/*------------------------
お知らせ詳細
------------------------*/
.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 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: 6.25rem;
}
@media screen and (max-width: 768px) {
  .single-news .single-news__content {
    padding-bottom: 13.3333333333vw;
  }
}

/*------------------------
お知らせ一覧
------------------------*/
.archive-news .ul-head {
  height: 12.5rem;
}
.archive-news .bread {
  margin-bottom: 6.25rem;
}
.archive-news .cards {
  margin-bottom: 3.125rem;
}
.archive-news .cards__card:hover {
  opacity: 1 !important;
}
.archive-news .cards__card:hover .cards__card--cont {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.archive-news .cards__card .newsList__title {
  text-align: left;
}
.archive-news .cards__card .cards__card--cont {
  border: none;
  transition: box-shadow 0.3s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

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

.single-head__title {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  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: flex;
  align-items: center;
  justify-content: space-between;
}
.single-head__meta .categories__item {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: #1f975c;
  color: #fff;
  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: 1.125rem;
}
@media screen and (max-width: 768px) {
  .single-head__date {
    font-size: 3.7333333333vw;
  }
}

.single-body {
  font-size: 1.125rem;
  line-height: 2;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .single-body {
    font-size: 3.7333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}
.single-body p {
  font-size: 1.125rem;
  margin-bottom: 1.5em;
}
.single-body h1 {
  font-size: 1.5rem;
  font-weight: bold;
}
.single-body h2 {
  font-size: 1.375rem;
  font-weight: bold;
}
.single-body h3 {
  font-size: 1.25rem;
  font-weight: bold;
}
.single-body h4 {
  font-size: 1.125rem;
  font-weight: bold;
}
.single-body h5 {
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
}
.single-body h6 {
  font-size: 0.875rem;
  font-weight: bold;
  margin: 0;
}
.single-body a {
  color: #1f975c;
  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;
  align-items: center;
  gap: 1.875rem;
  padding: 1.25rem 0;
}
@media screen and (max-width: 768px) {
  .post-navigation {
    gap: 4vw;
    padding: 4vw 0;
  }
}
.post-navigation .post-navigation__item a {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.25rem;
  font-weight: bold;
  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: 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: 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: 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;
  }
}

/*------------------------
プライバシーポリシー
------------------------*/
.privacy {
  background-color: #f5f5f5;
}
.privacy .privacy__intro {
  font-size: 1.125rem;
  line-height: 2;
  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: 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: 1.375rem;
  font-weight: bold;
  line-height: 1.5;
  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: 1rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .privacy .privacy__text {
    font-size: 3.7333333333vw;
  }
}
.privacy .privacy__list {
  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: 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: 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: 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: 0.875rem;
  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: 1.25rem;
  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: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .privacy .privacy__contact-text {
    font-size: 3.7333333333vw;
  }
}

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

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

.page-404__text {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  text-align: center;
}

/*------------------------
地域コラム
------------------------*/
.archive-column__gallery {
  height: 21.25rem;
}
@media screen and (max-width: 768px) {
  .archive-column__gallery {
    height: 40vw;
  }
}
.archive-column__gallery .swiper-wrapper {
  transition-timing-function: linear;
}
.archive-column__gallery .swiper-slide {
  width: auto !important;
  height: 100% !important;
}
.archive-column__gallery .swiper-slide img {
  width: auto !important;
  height: 100%;
  object-fit: cover;
}

.column-items {
  padding: 5rem 0 6.25rem;
  background-color: #f1f6ea;
}
@media screen and (max-width: 768px) {
  .column-items {
    padding: 8vw 0 13.3333333333vw;
  }
}

.column-itemWrapper + .column-itemWrapper {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .column-itemWrapper + .column-itemWrapper {
    margin-top: 8vw;
  }
}

.column-item {
  display: flex;
  border-radius: 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .column-item {
    flex-direction: column;
  }
}
.column-item:hover .img img {
  transform: scale(1.05);
}
.column-item:hover .viewmore-link .view-more {
  margin-right: 0.625rem;
}
@media screen and (max-width: 768px) {
  .column-item:hover .viewmore-link .view-more {
    margin-right: 0.3125rem;
  }
}
.column-item .img {
  width: 40%;
  aspect-ratio: 450/283;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .column-item .img {
    width: 100%;
  }
}
.column-item .img img {
  display: block;
  aspect-ratio: 450/283;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}
.column-item .text {
  flex: 1;
  padding: 1.25rem 1.875rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .column-item .text {
    padding: 2.6666666667vw 4vw;
  }
}
.column-item .text .title {
  font-size: 1.75rem;
  font-weight: bold;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .column-item .text .title {
    font-size: 4.8vw;
    margin-bottom: 1.3333333333vw;
  }
}
.column-item .text .title .sub {
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .column-item .text .title .sub {
    font-size: 3.7333333333vw;
  }
}
.column-item .text .desc {
  font-size: 1.25rem;
  line-height: 1.75;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .column-item .text .desc {
    font-size: 4vw;
    margin-bottom: 4vw;
  }
}
.column-item .text .desc span {
  display: block;
  font-weight: 500;
}

/*------------------------
コラム
------------------------*/
/*------------------------
コラム詳細
------------------------*/
.single-column {
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .single-column {
    padding-bottom: 13.3333333333vw;
  }
}
.single-column .bread {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .single-column .bread {
    margin-bottom: 2.6666666667vw;
  }
}
.single-column .bread__list {
  justify-content: start;
}

.single-column__top {
  gap: 2.5rem;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .single-column__top {
    gap: 5.3333333333vw;
    margin-bottom: 8vw;
  }
}

.single-column__top--img {
  width: 48.1vw;
  max-height: 37.5rem;
  border-radius: 0 0 0.625rem 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .single-column__top--img {
    width: 100%;
    border-radius: 0;
    max-height: 100vw;
  }
}
.single-column__top--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .single-column__top--img img {
    height: auto;
  }
}

.single-column__top--text {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-top: 1.25rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .single-column__top--text {
    padding-top: 0;
    padding-inline: 3vw;
  }
}

.single-column__top--title {
  font-size: 3.125rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .single-column__top--title {
    font-size: 8vw;
    margin-bottom: 4vw;
  }
}
.single-column__top--title .sub {
  display: block;
  font-size: 1.125rem;
  line-height: 1.3;
  letter-spacing: normal;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .single-column__top--title .sub {
    font-size: 3.7333333333vw;
    margin-bottom: 0.6666666667vw;
  }
}

.single-column__top--desc {
  font-size: 1.375rem;
  line-height: 1.8181818182;
  max-width: 30.25rem;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .single-column__top--desc {
    font-size: 4vw;
    margin-bottom: 1.3333333333vw;
  }
}

.single-column__top--btn {
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .single-column__top--btn {
    font-size: 4.8vw;
  }
}

.single-column__items {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .single-column__items {
    margin-bottom: 10.6666666667vw;
  }
}

.single-column__item {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .single-column__item {
    flex-direction: column;
    gap: 4vw;
  }
}
.single-column__item + .single-column__item {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .single-column__item + .single-column__item {
    margin-top: 10.6666666667vw;
  }
}
.single-column__item .dot {
  display: flex;
  justify-content: flex-end;
  gap: 0.3125rem;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .single-column__item .dot {
    margin-bottom: 4vw;
  }
}
.single-column__item .dot__item {
  width: 1.25rem;
  height: 1.25rem;
  background-color: #bce0ce;
}
@media screen and (max-width: 768px) {
  .single-column__item .dot__item {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.single-column__item .dot__item.is-active {
  background-color: #1f975c;
}
.single-column__item:nth-child(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .single-column__item:nth-child(2n) {
    flex-direction: column;
  }
}
.single-column__item:nth-child(2n) .dot {
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .single-column__item:nth-child(2n) .dot {
    justify-content: end;
  }
}

.single-column__item--img {
  width: 48%;
  flex-shrink: 0;
  aspect-ratio: 500/440;
}
@media screen and (max-width: 768px) {
  .single-column__item--img {
    width: 100%;
  }
}
.single-column__item--img img {
  aspect-ratio: 500/440;
  height: 100%;
  object-fit: cover;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .single-column__item--img img {
    border-radius: 1.3333333333vw;
  }
}

.single-column__item--text {
  flex: 1;
  font-size: 1.25rem;
  line-height: 1.85;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .single-column__item--text {
    font-size: 3.7333333333vw;
  }
}

.single-column__bottom {
  display: flex;
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .single-column__bottom {
    flex-direction: column-reverse;
    gap: 5.3333333333vw;
  }
}

.single-column__bottom__left {
  flex: 1;
}

.single-column__bottom__detail {
  font-size: 1.25rem;
  line-height: 1.85;
  letter-spacing: normal;
  margin-bottom: 1.875rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .single-column__bottom__detail {
    font-size: 3.7333333333vw;
    line-height: 1.5;
    margin-bottom: 5.3333333333vw;
  }
}

.single-column__bottom--img {
  width: 20rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .single-column__bottom--img {
    width: 100%;
    max-width: 53.3333333333vw;
    margin: 0 auto;
  }
}

.single-column__freeWrapper {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .single-column__freeWrapper {
    margin-bottom: 10.6666666667vw;
  }
}
.single-column__freeWrapper p {
  font-size: 1.25rem;
  line-height: 1.85;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .single-column__freeWrapper p {
    font-size: 3.7333333333vw;
  }
}

.navigation {
  margin-top: 1.875rem;
  width: fit-content;
  min-width: 18.75rem;
}
@media screen and (max-width: 768px) {
  .navigation {
    margin-top: 4vw;
    min-width: 40vw;
  }
}
.navigation .btn {
  max-width: 18.75rem;
  margin-left: 0;
  margin-bottom: 1.25rem;
}
.navigation .btn:hover a .arrow {
  transform: translateX(-10px) rotate(180deg);
}
.navigation .btn a {
  border-radius: 6.25rem;
}
.navigation .btn .arrow {
  transform: rotate(180deg);
  margin-right: 1.25rem;
  margin-left: 0;
}

.navigation__pager {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .navigation__pager {
    gap: 5.3333333333vw;
  }
}

.navi_btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  transition: opacity 0.3s;
  color: #1f975c;
}
@media screen and (max-width: 768px) {
  .navi_btn {
    font-size: 3.7333333333vw;
    gap: 1.3333333333vw;
  }
}
.navi_btn:hover {
  opacity: 0.7;
}
.navi_btn.--next {
  margin-left: auto;
}
.navi_btn.--prev .arrow {
  transform: rotate(180deg);
}

.navi_btn .arrow {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  position: relative;
  background-color: #1f975c;
}
.navi_btn .arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.5rem 0 0.5rem 0.75rem;
  border-color: transparent transparent transparent #fff;
}

/*------------------------
会社概要
------------------------*/
#page-company .ul-head__img img {
  object-position: right center;
}

.big-line {
  height: 16.25rem;
  background: linear-gradient(to right, #0045a5 25%, #1f975c 25%);
}
@media screen and (max-width: 768px) {
  .big-line {
    height: 13.3333333333vw;
    background: linear-gradient(to right, #0045a5 20%, #1f975c 20%);
  }
}
.big-line.--bottom {
  background: linear-gradient(to left, #0045a5 25%, #1f975c 25%);
}
@media screen and (max-width: 768px) {
  .big-line.--bottom {
    background: linear-gradient(to left, #0045a5 20%, #1f975c 20%);
  }
}

.overview {
  padding: 6.25rem 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .overview {
    padding: 10.6666666667vw 0;
    overflow: hidden;
  }
}

.overview__wrapper {
  padding: 1.25rem;
  gap: 3.125rem;
  max-width: 57.5rem;
  margin-left: auto;
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .overview__wrapper {
    flex-direction: column;
    gap: 5.3333333333vw;
    padding: 6vw 4vw;
  }
}

.overview__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
  max-width: 31.25rem;
}
@media screen and (max-width: 768px) {
  .overview__back {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}
.overview__back img {
  display: block;
  filter: blur(3px);
}
@media screen and (max-width: 768px) {
  .overview__back img {
    width: 100%;
    height: auto;
  }
}

.overview__title {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .overview__title {
    flex-direction: column-reverse;
    gap: 2.6666666667vw;
  }
}
.overview__title .jp {
  font-size: 1.875rem;
  line-height: 1;
  font-weight: 500;
  writing-mode: vertical-rl;
  color: #1f975c;
}
@media screen and (max-width: 768px) {
  .overview__title .jp {
    font-size: 5.3333333333vw;
    writing-mode: horizontal-tb;
  }
}
.overview__title .en {
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: 0.3em;
  font-weight: 500;
  color: #1f975c;
  writing-mode: vertical-rl;
  padding-top: 4.375rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .overview__title .en {
    font-size: 2.6666666667vw;
    padding-left: 9.3333333333vw;
    padding-top: 0;
    writing-mode: horizontal-tb;
  }
}
.overview__title .en::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0.4em;
  width: 2px;
  height: 3.5rem;
  background-color: #1f975c;
}
@media screen and (max-width: 768px) {
  .overview__title .en::before {
    width: 7.4666666667vw;
    height: 1px;
    top: 1.5vw;
    left: 0;
  }
}

.overview__cont {
  flex: 1;
}

.overview__list {
  display: flex;
  flex-direction: column;
}

.overview__item {
  display: flex;
  gap: 1.25rem;
  padding: 1.6em 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .overview__item {
    flex-direction: column;
    gap: 1.3333333333vw;
    padding: 3.3333333333vw 0;
  }
}
.overview__item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.overview__item dt {
  width: 8.75rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .overview__item dt {
    width: 100%;
    font-size: 3.7333333333vw;
    line-height: 1.5;
  }
}
.overview__item dd {
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .overview__item dd {
    font-size: 3.4666666667vw;
    font-weight: normal;
  }
}
.overview__item dd.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0rem 2.5rem;
}
@media screen and (max-width: 768px) {
  .overview__item dd.flex-wrap {
    gap: 1.3333333333vw 5.3333333333vw;
  }
}
.overview__item dd.flex-wrap span {
  min-width: 8.75rem;
}
@media screen and (max-width: 768px) {
  .overview__item dd.flex-wrap span {
    min-width: 24vw;
  }
}

/*------------------------
アクセス
------------------------*/
.access {
  padding: 0 0 6.25rem;
}
@media screen and (max-width: 768px) {
  .access {
    padding: 10.6666666667vw 0;
  }
}

.access__wrapper {
  gap: 3.125rem;
  max-width: 55rem;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .access__wrapper {
    flex-direction: column;
    gap: 5.3333333333vw;
  }
}

.access__title {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .access__title {
    flex-direction: column-reverse;
    gap: 2.6666666667vw;
  }
}
.access__title .jp {
  font-size: 1.875rem;
  line-height: 1;
  font-weight: 500;
  writing-mode: vertical-rl;
  color: #1f975c;
}
@media screen and (max-width: 768px) {
  .access__title .jp {
    font-size: 5.3333333333vw;
    writing-mode: horizontal-tb;
  }
}
.access__title .en {
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: normal;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #1f975c;
  writing-mode: vertical-rl;
  padding-top: 4.375rem;
  position: relative;
  color: #1f975c;
}
@media screen and (max-width: 768px) {
  .access__title .en {
    font-size: 2.6666666667vw;
    padding-left: 9.3333333333vw;
    padding-top: 0;
    writing-mode: horizontal-tb;
  }
}
.access__title .en::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0.4em;
  width: 2px;
  height: 3.5rem;
  background-color: #1f975c;
}
@media screen and (max-width: 768px) {
  .access__title .en::before {
    width: 7.4666666667vw;
    height: 1px;
    top: 1.5vw;
    left: 0;
  }
}

.access__cont {
  flex: 1;
}

.access__map {
  margin-bottom: 1.875rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .access__map {
    margin-bottom: 2.6666666667vw;
  }
}
.access__map img {
  aspect-ratio: 730/546;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.access__info {
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .access__info {
    flex-direction: column-reverse;
    gap: 2.6666666667vw;
  }
}
.access__info .map-link {
  font-size: 1.125rem;
  padding: 0.625rem 1.5625rem 0.75rem;
  border: 1px solid #333;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .access__info .map-link {
    font-size: 3.2vw;
    padding: 2vw 4vw;
    margin: 0 auto;
  }
}
.access__info .map-link:hover {
  background-color: #333;
  color: #fff;
}

.access__address .address {
  font-size: 1.125rem;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .access__address .address {
    font-size: 3.4666666667vw;
  }
}

.access__route {
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .access__route {
    font-size: 3.7333333333vw;
  }
}

.company-catch {
  overflow: hidden;
  position: relative;
  margin-bottom: -6.875rem;
}
@media screen and (max-width: 768px) {
  .company-catch {
    margin-bottom: -14.6666666667vw;
  }
}
.company-catch .inner {
  justify-content: center;
  gap: 1.875rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .company-catch .inner {
    gap: 2.6666666667vw;
  }
}

.company-catch__text {
  font-size: 5.875rem;
  line-height: 1.3;
  font-weight: bold;
  writing-mode: vertical-rl;
  flex-shrink: 0;
}
@media (max-width: 1280px) {
  .company-catch__text {
    font-size: 8.3vw;
  }
}
@media screen and (max-width: 768px) {
  .company-catch__text {
    font-size: 13.3333333333vw;
    writing-mode: horizontal-tb;
    width: fit-content;
    margin: 0 auto;
  }
}
.company-catch__text span {
  display: block;
}

.company-catch__people {
  flex: 1;
  max-width: 44.375rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .company-catch__people {
    margin-top: 0;
  }
}
.company-catch__people .comment {
  font-size: 1.5rem;
  padding-inline: 1em;
  font-weight: 500;
  width: fit-content;
  margin: 0 auto 0.625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .company-catch__people .comment {
    font-size: 5.0666666667vw;
  }
}
.company-catch__people .comment::before, .company-catch__people .comment::after {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  background-color: #000;
  position: absolute;
  bottom: 2px;
}
.company-catch__people .comment::before {
  left: 0;
  transform: rotate(-30deg);
}
.company-catch__people .comment::after {
  right: 0;
  transform: rotate(30deg);
}
.company-catch__people img {
  display: block;
}

.flow-text {
  font-size: 2.8125rem;
  line-height: 1;
  color: #e6e6e6;
  position: absolute;
  top: 21.5625rem;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  padding-bottom: 1.25rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .flow-text {
    font-size: 5.3333333333vw;
  }
}
.flow-text::before {
  content: attr(data-text) "  " attr(data-text) "  ";
  display: inline-block;
  animation: flowText 30s linear infinite;
}

@keyframes flowText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*------------------------
スタッフ紹介
------------------------*/
.staff {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .staff {
    padding: 16vw 0 8vw;
  }
}

.staff__title {
  max-width: 1140px;
  padding-inline: 20px;
  gap: 1.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .staff__title {
    gap: 2.6666666667vw;
    padding-inline: 5.2631578947vw;
  }
}
.staff__title .en {
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: 0.3em;
  font-weight: 500;
  color: #fff;
  width: fit-content;
  padding-left: 4.375rem;
  margin-bottom: 0.625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .staff__title .en {
    font-size: 3.7333333333vw;
    padding-left: 9.3333333333vw;
  }
}
.staff__title .en::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 3.5rem;
  height: 2px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .staff__title .en::after {
    width: 7.4666666667vw;
  }
}
.staff__title .jp {
  font-size: 1.875rem;
  line-height: 1;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .staff__title .jp {
    font-size: 4.8vw;
  }
}

.staff__slider .swiper-wrapper {
  padding-top: 3vw;
  padding-bottom: 5vw;
}
@media screen and (max-width: 768px) {
  .staff__slider .swiper-wrapper {
    padding-top: 8vw;
    padding-bottom: 10vw;
  }
}
.staff__slider .swiper-slide {
  width: 22vw;
  margin-inline: 1vw !important;
}
@media screen and (max-width: 768px) {
  .staff__slider .swiper-slide {
    width: 37.3333333333vw;
    margin-inline: 3vw !important;
  }
}
.staff__slider .swiper-slide-active {
  transform: scale(1.15);
  margin-inline: 2.5vw !important;
  z-index: 2;
}
.staff__slider .swiper-slide-active .staff__card {
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.15);
}
.staff__slider .swiper-pagination {
  bottom: 0;
}
.staff__slider .swiper-pagination .swiper-pagination-bullet {
  width: 0.9375rem;
  height: 0.9375rem;
  background-color: #79c19d;
  margin-inline: 6px !important;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .staff__slider .swiper-pagination .swiper-pagination-bullet {
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
.staff__slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

.staff__card {
  display: block;
  background-color: #fff;
  border-radius: 0.625rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
@media screen and (max-width: 768px) {
  .staff__card {
    border-radius: 1.3333333333vw;
  }
}

.staff__card--img {
  height: 23vw;
  border-bottom: 2px solid #1f975c;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .staff__card--img {
    height: 29vw;
  }
}
.staff__card--img img {
  width: 100%;
  max-width: 23vw;
  margin: 0 auto;
  transform: scale(1.3) translateY(4.5vw);
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .staff__card--img img {
    max-width: 33vw;
  }
}

.staff__card--text {
  padding: 0.9375rem 1.25rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .staff__card--text {
    padding: 2.6666666667vw 2vw;
  }
}
.staff__card--text .position {
  font-size: 0.75rem;
  color: #333;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .staff__card--text .position {
    font-size: 2.6666666667vw;
    margin-bottom: 1.0666666667vw;
  }
}
.staff__card--text .name {
  font-size: 1.125rem;
  line-height: 1.4;
  color: #1f975c;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 768px) {
  .staff__card--text .name {
    font-size: 3vw;
  }
}
.staff__card--text .name .initial {
  font-size: 1.875rem;
  font-weight: 500;
  margin-right: 0.625rem;
}
@media screen and (max-width: 768px) {
  .staff__card--text .name .initial {
    display: block;
    font-size: 4.8vw;
    margin-right: 1.3333333333vw;
  }
}
.staff__card--text .viewmore-link {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  margin-top: 0.5rem;
  font-size: 1.25rem;
  color: #1f975c;
}
@media screen and (max-width: 768px) {
  .staff__card--text .viewmore-link {
    margin-top: 1.3333333333vw;
    font-size: 2.6666666667vw;
    gap: 1.0666666667vw;
  }
}

/*------------------------
スケジュール
------------------------*/
.schedule {
  padding: 12.5rem 0 7.5rem;
  background-color: #f6fade;
}
@media screen and (max-width: 768px) {
  .schedule {
    padding: 21.3333333333vw 0 8vw;
  }
}
.schedule .inner {
  max-width: 900px;
}

.schedule__top {
  position: relative;
  width: fit-content;
  margin: 0 auto 1.25rem;
}
@media screen and (max-width: 768px) {
  .schedule__top {
    margin-bottom: 2.6666666667vw;
  }
}

.schedule-topImg {
  width: 20.625rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .schedule-topImg {
    width: 44vw;
  }
}

.schedule-icon {
  position: absolute;
  z-index: 1;
}
.schedule-icon.--01 {
  width: 4rem;
  top: 70%;
  left: -19%;
  animation: iconSwing 3s infinite;
}
@media screen and (max-width: 768px) {
  .schedule-icon.--01 {
    width: 8.5333333333vw;
  }
}
.schedule-icon.--02 {
  width: 4.3125rem;
  top: 35%;
  left: -28%;
  animation: iconSwing 3s infinite;
}
@media screen and (max-width: 768px) {
  .schedule-icon.--02 {
    width: 9.2vw;
  }
}
.schedule-icon.--03 {
  width: 6.3125rem;
  top: -2%;
  left: -15%;
  animation: iconSwing 3s infinite;
}
@media screen and (max-width: 768px) {
  .schedule-icon.--03 {
    width: 13.4666666667vw;
  }
}
.schedule-icon.--04 {
  width: 6.375rem;
  top: -28%;
  left: 33%;
  animation: iconSwing 3s infinite;
}
@media screen and (max-width: 768px) {
  .schedule-icon.--04 {
    width: 13.6vw;
  }
}
.schedule-icon.--05 {
  width: 3.5625rem;
  top: 2%;
  right: -12%;
  animation: iconSwing 3s infinite;
}
@media screen and (max-width: 768px) {
  .schedule-icon.--05 {
    width: 7.6vw;
  }
}
.schedule-icon.--06 {
  width: 3.4375rem;
  top: 37%;
  right: -25%;
  animation: iconSwing 3s infinite;
}
@media screen and (max-width: 768px) {
  .schedule-icon.--06 {
    width: 7.3333333333vw;
  }
}
.schedule-icon.--07 {
  width: 4rem;
  top: 72%;
  right: -8%;
  animation: iconSwing 3s infinite;
}
@media screen and (max-width: 768px) {
  .schedule-icon.--07 {
    width: 8.5333333333vw;
  }
}

@keyframes iconSwing {
  0% {
    transform: rotate(-20deg);
  }
  49% {
    transform: rotate(-20deg);
  }
  50% {
    transform: rotate(20deg);
  }
  99% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(-20deg);
  }
}
.schedule__titleWrapper {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: fit-content;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .schedule__titleWrapper {
    justify-content: center;
    gap: 2.6666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}

.schedule__title {
  flex: 1;
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 500;
  font-family: "M PLUS 1", sans-serif;
}
@media screen and (max-width: 768px) {
  .schedule__title {
    font-size: 4.8vw;
  }
}
.schedule__title .small {
  font-size: 2rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .schedule__title .small {
    font-size: 4vw;
  }
}

.schedule__title-icon {
  width: 7.5rem;
}
@media screen and (max-width: 768px) {
  .schedule__title-icon {
    width: 12vw;
  }
}

.schedule__items {
  position: relative;
}

.schedule__item {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, transparent 25px, #fff 25px);
  padding: 1.25rem 13.125rem 1.25rem 0;
}
@media screen and (max-width: 768px) {
  .schedule__item {
    padding: 2.6666666667vw 21.3333333333vw 2.6666666667vw 0;
  }
}
.schedule__item + .schedule__item {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .schedule__item + .schedule__item {
    margin-top: 5.3333333333vw;
  }
}

.schedule__item--time {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  margin-right: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .schedule__item--time {
    gap: 1.3333333333vw;
    margin-right: 2vw;
  }
}
.schedule__item--time .clock {
  width: 3.75rem;
  height: 3.75rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .schedule__item--time .clock {
    width: 12vw;
    height: 12vw;
  }
}
.schedule__item--time .time {
  font-size: 1.5rem;
  line-height: 1;
  background-color: #c2db21;
  border-radius: 0 3.125rem 3.125rem 0;
  padding: 0.5rem 0.9375rem 0.625rem 1.25rem;
  margin-left: -1.5625rem;
}
@media screen and (max-width: 768px) {
  .schedule__item--time .time {
    font-size: 3.7333333333vw;
    min-width: 10.6666666667vw;
    padding: 1.5vw 2vw 1.7vw 6vw;
  }
}

.schedule__item--desc {
  font-size: 1.375rem;
  line-height: 1.3333333333;
}
@media screen and (max-width: 768px) {
  .schedule__item--desc {
    font-size: 2.9333333333vw;
  }
}

.schedule__img {
  position: absolute;
  width: 8.125rem;
}
@media screen and (max-width: 768px) {
  .schedule__img {
    width: 16vw;
  }
}
.schedule__img.--01 {
  top: 0.5%;
  right: 9.625rem;
}
@media screen and (max-width: 768px) {
  .schedule__img.--01 {
    top: 0;
    right: 8vw;
  }
}
.schedule__img.--02 {
  top: 0.5%;
  right: 0.625rem;
}
@media screen and (max-width: 768px) {
  .schedule__img.--02 {
    top: 3.3%;
    right: -4vw;
  }
}
.schedule__img.--03 {
  top: 7.5%;
  right: 84px;
}
@media screen and (max-width: 768px) {
  .schedule__img.--03 {
    right: 7vw;
  }
}
.schedule__img.--04 {
  top: 16%;
  right: 8rem;
}
@media screen and (max-width: 768px) {
  .schedule__img.--04 {
    top: 14%;
    right: 2vw;
  }
}
.schedule__img.--05 {
  top: 21%;
  right: 1.25rem;
}
@media screen and (max-width: 768px) {
  .schedule__img.--05 {
    top: 21%;
    right: 2vw;
  }
}
.schedule__img.--06 {
  top: 27%;
  right: 8.125rem;
}
@media screen and (max-width: 768px) {
  .schedule__img.--06 {
    top: 28.5%;
    right: 2vw;
  }
}
.schedule__img.--07 {
  top: 35%;
  right: 1.25rem;
}
@media screen and (max-width: 768px) {
  .schedule__img.--07 {
    top: 36%;
    right: 2vw;
  }
}
.schedule__img.--08 {
  width: 10rem;
  top: 47%;
  right: 1.25rem;
}
@media screen and (max-width: 768px) {
  .schedule__img.--08 {
    width: 21.3333333333vw;
    top: 47%;
    right: -1vw;
  }
}
.schedule__img.--09 {
  width: 10rem;
  top: 55%;
  right: 6.875rem;
}
@media screen and (max-width: 768px) {
  .schedule__img.--09 {
    width: 21.3333333333vw;
    top: 55%;
    right: -2vw;
  }
}
.schedule__img.--10 {
  top: 64%;
  right: 1.25rem;
}
@media screen and (max-width: 768px) {
  .schedule__img.--10 {
    right: 2vw;
  }
}
.schedule__img.--11 {
  top: 78%;
  right: 5.8125rem;
}
@media screen and (max-width: 768px) {
  .schedule__img.--11 {
    top: 80%;
    right: 2vw;
  }
}
.schedule__img.--12 {
  top: 86%;
  right: 1.4375rem;
}
@media screen and (max-width: 768px) {
  .schedule__img.--12 {
    top: 88%;
    right: 2vw;
  }
}

/*------------------------
スタッフ詳細
------------------------*/
#single-staff {
  overflow: hidden;
}
#single-staff .bread {
  background-color: #f2f2f2;
}

.staff-profile {
  padding: 5rem 2.5rem;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  .staff-profile {
    padding: 5.3333333333vw 2.6666666667vw;
  }
}
.staff-profile .inner {
  max-width: 1760px;
  background-color: #fff;
  border-radius: 1.25rem;
  padding: 6.25rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .staff-profile .inner {
    padding: 7vw 2.6666666667vw 7vw;
    border-radius: 2.6666666667vw;
    display: flex;
    flex-direction: column;
  }
}

.staff-profile__wrapper {
  display: flex;
  align-items: end;
  gap: 0;
  margin-bottom: 3.75rem;
  max-width: 1440px;
}
@media screen and (max-width: 768px) {
  .staff-profile__wrapper {
    flex-direction: column;
    gap: 2.6666666667vw;
    margin-bottom: 5.3333333333vw;
    order: 2;
  }
}

.staff-profile__img {
  flex-shrink: 0;
  width: 58%;
  position: relative;
  z-index: 1;
  margin-bottom: -181px;
}
@media screen and (max-width: 768px) {
  .staff-profile__img {
    width: 100%;
    max-width: 66.6666666667vw;
    margin: 0 auto;
  }
}
.staff-profile__img img {
  max-width: none;
  width: 800px;
  margin-left: auto;
}
@media (max-width: 1280px) {
  .staff-profile__img img {
    transform: scale(1.1) translate(-14%, -6%);
  }
}
@media screen and (max-width: 768px) {
  .staff-profile__img img {
    width: 100%;
    transform: scale(1.1) translate(0%, -6%);
  }
}

.staff-profile__cont {
  flex: 1;
  max-width: 33.75rem;
}
@media screen and (max-width: 768px) {
  .staff-profile__cont {
    max-width: 100%;
  }
}

.staff-profile__head {
  display: flex;
  align-items: end;
  gap: 2em;
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .staff-profile__head {
    gap: 1em;
    margin-bottom: 4vw;
  }
}
.staff-profile__head .position {
  font-size: 1.625rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .staff-profile__head .position {
    font-size: 5.3333333333vw;
  }
}
.staff-profile__head .name {
  font-size: 2.875rem;
  line-height: 1;
  font-weight: 500;
  transform: translateY(0.08em);
}
@media screen and (max-width: 768px) {
  .staff-profile__head .name {
    font-size: 6.6666666667vw;
  }
}

.staff-profile__lead {
  font-size: 1.375rem;
  line-height: 1.75;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .staff-profile__lead {
    font-size: 3.7333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}

.staff-profile__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .staff-profile__list {
    gap: 3.3333333333vw;
  }
}

.staff-profile__item dt {
  font-size: 1.375rem;
  color: #1f975c;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .staff-profile__item dt {
    font-size: 3.7333333333vw;
  }
}
.staff-profile__item dd {
  font-size: 1.375rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .staff-profile__item dd {
    font-size: 3.7333333333vw;
  }
}
.staff-profile__item + .staff-profile__item {
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .staff-profile__item + .staff-profile__item {
    margin-top: 3.3333333333vw;
  }
}

.staff-profile__number {
  position: relative;
  max-width: 86.25rem;
}
@media screen and (max-width: 768px) {
  .staff-profile__number {
    order: 1;
    margin-bottom: 18vw;
  }
}
.staff-profile__number::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  right: 2px;
  width: 100vw;
  height: 4px;
  background-color: #1f975c;
  margin-left: calc(50% - 50cqi);
}
@media screen and (max-width: 768px) {
  .staff-profile__number::before {
    height: 2px;
  }
}
.staff-profile__number span {
  display: block;
  text-align: right;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1;
  color: #1f975c;
  letter-spacing: 0.09em;
}
@media (max-width: 1280px) {
  .staff-profile__number span {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .staff-profile__number span {
    font-size: 6.6666666667vw;
  }
}

.single-staff__slider {
  padding: 5rem 0;
}
@media screen and (max-width: 768px) {
  .single-staff__slider {
    padding: 10.6666666667vw 0;
  }
}

/*------------------------
オーナー様サポート
------------------------*/
#page-owner-support .voice {
  padding-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  #page-owner-support .voice {
    padding-top: 13.3333333333vw;
  }
}
#page-owner-support .cta-line {
  margin-top: 3.75rem;
}
#page-owner-support .cta-line::before {
  background-color: #ceb417;
}
@media screen and (max-width: 768px) {
  #page-owner-support .cta-line {
    margin-top: 8vw;
  }
}
#page-owner-support .cta-line__cont {
  background-color: #ceb417;
}
#page-owner-support .cta-line__icon {
  width: 98%;
  top: 61%;
  left: 46%;
}

.ouwer-support__bgImg {
  width: 100%;
}
.ouwer-support__bgImg.--01 {
  position: absolute;
  top: 6.25rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  .ouwer-support__bgImg.--01 {
    top: 12vw;
  }
}

.owner-support {
  position: relative;
  padding: 12.5rem 0 13.75rem;
}
@media screen and (max-width: 768px) {
  .owner-support {
    padding: 10.6666666667vw 0 10.6666666667vw;
  }
}

.owner-support .inner {
  position: relative;
  background-color: #fff;
  border-radius: 1.25rem 0 0 1.25rem;
  max-width: 1560px;
  margin-top: 18.75rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .owner-support .inner {
    margin-top: 41vw;
  }
}
.owner-support .inner::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 50vw;
  height: 100%;
  background-color: #fff;
  z-index: -1;
}

.owner-support__cont {
  max-width: 1000px;
  padding: 5rem 0 6.25rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .owner-support__cont {
    padding: 10.6666666667vw 0 10.6666666667vw;
  }
}

.owner-support__heading {
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .owner-support__heading {
    margin-bottom: 8vw;
  }
}

.owner-support__title {
  font-size: 3.125rem;
  line-height: 1;
  letter-spacing: 0.2em;
  font-weight: bold;
  color: #1f975c;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .owner-support__title {
    font-size: 6.1333333333vw;
    line-height: 1.5;
    margin-bottom: 2.6666666667vw;
  }
}

.owner-support__lead {
  font-size: 1.25rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .owner-support__lead {
    font-size: 3.7333333333vw;
    line-height: 1.9;
  }
}

.owner-support__list {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media screen and (max-width: 768px) {
  .owner-support__list {
    gap: 8vw;
  }
}

.owner-support__item {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .owner-support__item {
    flex-direction: column;
    gap: 4vw;
  }
}

.owner-support__itemFigure {
  flex-shrink: 0;
  width: 45%;
  aspect-ratio: 447/277;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .owner-support__itemFigure {
    width: 100%;
  }
}

.owner-support__itemFigure img {
  aspect-ratio: 447/277;
  height: 100%;
  object-fit: cover;
}

.owner-support__itemBody {
  flex: 1;
}

.owner-support__itemTitle {
  font-size: 1.75rem;
  line-height: 1.3333333333;
  font-weight: 500;
  color: #1f975c;
  padding-bottom: 0.625rem;
  margin-bottom: 0.625rem;
  border-bottom: 1px solid #1f975c;
}
@media screen and (max-width: 768px) {
  .owner-support__itemTitle {
    font-size: 4vw;
  }
}

.owner-support__itemText {
  font-size: 1.125rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .owner-support__itemText {
    font-size: 3.4666666667vw;
  }
}

.owner-bosyu__head {
  padding: 6.25rem 0;
  background-color: #1f975c;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .owner-bosyu__head {
    padding: 10.6666666667vw 0 36vw;
  }
}

.owner-bosyu__head .textCont {
  max-width: 62.5rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .owner-bosyu__head .textCont {
    padding-inline: 4vw;
  }
}

.owner-bosyu__head .title {
  font-size: 4.875rem;
  line-height: 1;
  margin-bottom: 1.25rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .owner-bosyu__head .title {
    text-align: center;
    font-size: 8vw;
    margin-bottom: 2.6666666667vw;
  }
}

.owner-bosyu__head .lead {
  font-size: 1.75rem;
  line-height: 1.9;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .owner-bosyu__head .lead {
    font-size: 4vw;
    text-align: center;
  }
}

.owner-bosyu__man {
  position: absolute;
  bottom: -10.8125rem;
  right: -0.9375rem;
  width: 47%;
}
@media screen and (max-width: 768px) {
  .owner-bosyu__man {
    width: 50%;
    bottom: -39vw;
    right: 0;
    left: 0;
    margin: auto;
  }
}

.owner-trouble__top {
  position: relative;
  padding: 6.25rem 0 5rem;
}
@media screen and (max-width: 768px) {
  .owner-trouble__top {
    padding: 10.6666666667vw 0 8vw;
  }
}

.owner-trouble__title {
  font-size: 3.125rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .owner-trouble__title {
    font-size: 5.6vw;
    line-height: 1.5;
    margin-bottom: 6.6666666667vw;
  }
}

.owner-trouble__list {
  display: flex;
  justify-content: center;
  gap: 1.875rem;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 768px) {
  .owner-trouble__list {
    flex-direction: column;
    align-items: center;
    gap: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}

.owner-trouble__item {
  aspect-ratio: 1/1;
  position: relative;
}

.owner-trouble__figure {
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.owner-trouble__figure img {
  aspect-ratio: 1/1;
  height: 100%;
  object-fit: cover;
}
.owner-trouble__figure::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: no-repeat bottom center/contain url(../images/owner/trouble_bg@2x.webp);
  mix-blend-mode: multiply;
}

.owner-trouble__label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  color: #fff;
  font-size: 1.375rem;
  line-height: 1.3636363636;
  text-align: center;
  padding-top: 72%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .owner-trouble__label {
    font-size: 5.7vw;
    padding: 61vw 0 0;
  }
}

.owner-trouble__text {
  font-size: 1.25rem;
  line-height: 2;
  font-weight: 500;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .owner-trouble__text {
    font-size: 3.7333333333vw;
    text-align: left;
  }
}

.owner-trouble__bottom {
  background-color: #1f975c;
  padding: 6.25rem 0 0;
}
@media screen and (max-width: 768px) {
  .owner-trouble__bottom {
    padding: 10.6666666667vw 0 0;
  }
}
.owner-trouble__bottom .owner-trouble__title {
  line-height: 1.3;
  color: #fff;
}
.owner-trouble__bottom .owner-trouble__text {
  color: #fff;
}

.owner-trouble__features {
  display: flex;
  justify-content: center;
  gap: 1.875rem;
  max-width: 56.25rem;
  margin: 0 auto 3.125rem;
}
@media screen and (max-width: 768px) {
  .owner-trouble__features {
    flex-direction: column;
    align-items: center;
    gap: 5.3333333333vw;
    margin-bottom: 6.6666666667vw;
  }
}

.owner-trouble__feature {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.owner-trouble__featureLabel {
  font-size: 1.25rem;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  padding-inline: 1em;
  width: fit-content;
  margin: 0 auto 0.9375rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .owner-trouble__featureLabel {
    font-size: 5.3333333333vw;
    margin: 0 auto 2vw;
  }
}
.owner-trouble__featureLabel::before, .owner-trouble__featureLabel::after {
  content: "";
  position: absolute;
  bottom: 2px;
  width: 2px;
  height: 2em;
  background-color: #fff;
}
.owner-trouble__featureLabel::before {
  left: 0;
  transform: rotate(-30deg);
}
.owner-trouble__featureLabel::after {
  right: 0;
  transform: rotate(30deg);
}

.owner-trouble__circle {
  aspect-ratio: 1/1;
  width: 100%;
  border-radius: 50%;
  border-radius: 50%;
  background-color: #fff;
  padding-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .owner-trouble__circle {
    padding-top: 8vw;
  }
}

.owner-trouble__circleIcon {
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .owner-trouble__circleIcon {
    margin-bottom: 4vw;
  }
}
.owner-trouble__circleIcon img {
  width: 4.0625rem;
  height: 4.375rem;
  margin: 0 auto;
  object-fit: contain;
  object-position: center bottom;
}
@media screen and (max-width: 768px) {
  .owner-trouble__circleIcon img {
    width: 26vw;
    height: 28vw;
  }
}

.owner-trouble__featureText {
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  color: #1f975c;
}
@media screen and (max-width: 768px) {
  .owner-trouble__featureText {
    font-size: 4.5333333333vw;
    padding: 2.6666666667vw 4vw;
  }
}

.owner-trouble__cta {
  background-color: #ceb417;
  padding: 2.5rem 3.75rem;
  max-width: 75rem;
  margin: 3.75rem auto 0;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .owner-trouble__cta {
    flex-direction: column;
    padding: 5.3333333333vw;
    margin: 8vw 4vw 0;
    gap: 4vw;
  }
}

.owner-trouble__ctaIcon {
  flex-shrink: 0;
  width: 15.25rem;
  height: 15.25rem;
  border-radius: 50%;
  background-color: #fff;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .owner-trouble__ctaIcon {
    width: 26.6666666667vw;
    height: 26.6666666667vw;
  }
}

.owner-trouble__ctaIcon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner-trouble__ctaContent {
  text-align: center;
  flex: 1;
}

.owner-trouble__ctaCatch {
  font-size: 1.75rem;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 0.9375rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .owner-trouble__ctaCatch {
    font-size: 3.4666666667vw;
    margin-bottom: 2vw;
  }
}

.owner-trouble__ctaTitle {
  font-size: 3.25rem;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .owner-trouble__ctaTitle {
    font-size: 5.8666666667vw;
  }
}

.owner-trouble__top::after {
  content: "";
  position: absolute;
  bottom: -3.125rem;
  left: 50%;
  transform: translateX(-50%);
  border-left: 2.8125rem solid transparent;
  border-right: 2.8125rem solid transparent;
  border-top: 3.125rem solid #fff;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .owner-trouble__top::after {
    bottom: -6.6666666667vw;
    border-left: 10.6666666667vw solid transparent;
    border-right: 10.6666666667vw solid transparent;
    border-top: 12vw solid #fff;
  }
}

/*------------------------
オーナー様の声、入居者様の声
------------------------*/
.archive-voice,
.archive-owner-voice {
  padding: 6.25rem 0 0;
}
@media screen and (max-width: 768px) {
  .archive-voice,
  .archive-owner-voice {
    padding: 8vw 0 0;
  }
}
.archive-voice .bread,
.archive-owner-voice .bread {
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 768px) {
  .archive-voice .bread,
  .archive-owner-voice .bread {
    margin-bottom: 8vw;
  }
}
.archive-voice .section-header,
.archive-owner-voice .section-header {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 768px) {
  .archive-voice .section-header,
  .archive-owner-voice .section-header {
    padding: 6.6666666667vw 4vw;
    margin-bottom: 6.6666666667vw;
  }
}
.archive-voice .section-header__jp,
.archive-owner-voice .section-header__jp {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  position: relative;
  padding-inline: 0.8em;
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .archive-voice .section-header__jp,
  .archive-owner-voice .section-header__jp {
    font-size: 3.2vw;
    margin-bottom: 2.6666666667vw;
  }
}
.archive-voice .section-header__jp::before, .archive-voice .section-header__jp::after,
.archive-owner-voice .section-header__jp::before,
.archive-owner-voice .section-header__jp::after {
  content: "";
  position: absolute;
  bottom: 0px;
  width: 2px;
  height: 1em;
  background-color: #333;
}
.archive-voice .section-header__jp::before,
.archive-owner-voice .section-header__jp::before {
  left: 0;
  transform: rotate(-30deg);
}
.archive-voice .section-header__jp::after,
.archive-owner-voice .section-header__jp::after {
  right: 0;
  transform: rotate(30deg);
}
.archive-voice .section-header__en img,
.archive-owner-voice .section-header__en img {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .archive-voice .section-header__en img,
  .archive-owner-voice .section-header__en img {
    height: 8vw;
  }
}
.archive-voice .voice__card,
.archive-owner-voice .voice__card {
  border: 1px solid #1f975c;
}

.voice__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 330px));
  gap: 2.5rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .voice__items {
    grid-template-columns: repeat(1, 1fr);
    gap: 5.3333333333vw;
    margin-bottom: 10.6666666667vw;
    align-items: center;
  }
}

.voice__item {
  width: 100%;
  max-width: 20.625rem;
  background-color: #fff;
  border: 1px solid #1f975c;
  border-radius: 0.3125rem;
  overflow: hidden;
}