@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

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

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

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 15px;
}
@media (max-width: 1150px) {
  html {
    font-size: 1.3043478261vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4vw;
  }
}

body {
  font-family: "Barlow", "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  color: #3a3938;
}

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

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

.access-layout {
  margin-top: 4.6666666667rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .access-layout {
    margin-top: 2rem;
    margin-bottom: 2.6666666667rem;
  }
}

.company-layout {
  margin-top: 6rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .company-layout {
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
}

.contact-layout {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .contact-layout {
    margin-top: 2.6666666667rem;
    margin-bottom: 2.6666666667rem;
  }
}

.event-category-layout {
  margin-top: 5.3333333333rem;
}
@media screen and (max-width: 767px) {
  .event-category-layout {
    margin-top: 2rem;
  }
}

.event-layout {
  margin-top: 3.3333333333rem;
}
@media screen and (max-width: 767px) {
  .event-layout {
    margin-top: 2rem;
  }
}

.footer-layout {
  padding-top: 4.8666666667rem;
  padding-bottom: 2.6666666667rem;
}
@media screen and (max-width: 767px) {
  .footer-layout {
    padding-top: 1.3333333333rem;
    padding-bottom: 1.3333333333rem;
  }
}

.header-layout {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.inner {
  width: 100%;
  max-width: 1150px;
  padding: 0 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 15px;
  }
}

.message-layout {
  padding-top: 6rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .message-layout {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
}

.mv-layout {
  margin-top: 6.6666666667rem;
}
@media screen and (max-width: 767px) {
  .mv-layout {
    margin-top: 4.6666666667rem;
  }
}

.news-category-layout {
  margin-top: 5.3333333333rem;
}
@media screen and (max-width: 767px) {
  .news-category-layout {
    margin-top: 2rem;
  }
}

.news-layout {
  margin-top: 3.3333333333rem;
  margin-bottom: 5.3333333333rem;
}
@media screen and (max-width: 767px) {
  .news-layout {
    margin-top: 1.8rem;
    margin-bottom: 2.6666666667rem;
  }
}

.philosophy-layout {
  margin-top: 4.6666666667rem;
  padding-bottom: 6.6666666667rem;
}
@media screen and (max-width: 767px) {
	.philosophy-layout {
	  margin-top: 3rem;
      padding-bottom: 3rem;
	}
}


.privacy-layout {
  margin-top: 10.6666666667rem;
  margin-bottom: 3.3333333333rem;
}
@media screen and (max-width: 767px) {
  .privacy-layout {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}

.property-layout {
  margin-bottom: 5.3333333333rem;
}

.recruit-layout {
  padding-top: 8rem;
  padding-bottom: 4.6666666667rem;
}
@media screen and (max-width: 767px) {
  .recruit-layout {
    padding-top: 5rem;
    margin-bottom: 2rem;
  }
}

.services-layout {
  margin-top: 6rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .services-layout {
    margin-top: 2.6666666667rem;
    margin-bottom: 2rem;
  }
}

.sns-layout {
  padding-top: 3.3333333333rem;
  padding-bottom: 3.3333333333rem;
}
@media screen and (max-width: 767px) {
	.sns-layout {
	  padding-top: 2rem;
	  padding-bottom: 2rem;
	}
}

.staff-layout {
  padding-top: 2.6666666667rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
	.staff-layout {
	  padding-top: 2rem;
	  padding-bottom: 2rem;
	}
}

.staff-detail-layout {
  padding-bottom: 13.3333333333rem;
}

.strengths-layout {
  margin-top: 4rem;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .strengths-layout {
    margin-top: 2rem;
    padding-top: 2.6666666667rem;
    padding-bottom: 2.6666666667rem;
  }
}

.sub-page-fv-layout {
  margin-top: 6.6666666667rem;
}
@media screen and (max-width: 767px) {
	.sub-page-fv-layout {
	  margin-top: 70px;
	}
}

.top-about-layout {
  padding-top: 10rem;
  padding-bottom: 5.8666666667rem;
}
@media screen and (max-width: 767px) {
  .top-about-layout {
    padding-top: 6rem;
    padding-bottom: 4.6666666667rem;
  }
}

.top-event-layout {
	padding-top: 14rem;
  margin-bottom: 4.6666666667rem;
}
.top-method-layout {
  padding-top: 12.6666666667rem;
  margin-bottom: 2.6666666667rem;
}
@media screen and (max-width: 767px) {
	.top-event-layout {
		padding-top: 0;
	}
  .top-method-layout {
    padding-top: 6rem;
    margin-bottom: 2rem;
  }
}

.top-news-layout {
  padding-top: 6.6666666667rem;
  margin-bottom: 5.3333333333rem;
}
@media screen and (max-width: 767px) {
  .top-news-layout {
    padding-top: 1rem;
    margin: 2rem;
  }
}

.top-property-layout {
  padding-top: 12.6666666667rem;
  margin-bottom: 5.3333333333rem;
}
@media screen and (max-width: 767px) {
  .top-property-layout {
    padding-top: 5.5rem;
    margin-bottom: 3rem;
  }
}

.top-service-layout {
  padding-top: 14rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .top-service-layout {
    padding-top: 5.5rem;
    padding-bottom: 2rem;
  }
}

.top-voice-layout {
  padding-top: 12.6666666667rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .top-voice-layout {
    padding-top: 3.5rem;
  }
}

.top-work-layout {
  margin-top: 7.3333333333rem;
}
@media screen and (max-width: 767px) {
  .top-work-layout {
    margin-top: 3rem;
  }
}

.voice-layout {
  margin-top: 5.3333333333rem;
  margin-bottom: 5.3333333333rem;
}
@media screen and (max-width: 767px) {
  .voice-layout {
    margin-top: 2.6666666667rem;
    margin-bottom: 2.6666666667rem;
  }
}

.work-category-layout {
  margin-top: 5.3333333333rem;
}
@media screen and (max-width: 767px) {
  .work-category-layout {
    margin-top: 2.6666666667rem;
  }
}

.work-layout {
  margin-top: 2.6666666667rem;
}
@media screen and (max-width: 767px) {
  .work-layout {
    margin-top: 2rem;
  }
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

.top-section-title {
  position: relative;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #3a3938;
  text-align: center;
  z-index: 10;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .top-section-title {
    font-size: 1.6rem;
    padding-left: 2em;
  }
}

.top-section-title span {
  position: absolute;
  z-index: -1;
  font-size: 8rem;
  font-weight: 300;
  line-height: 0;
  line-height: 1;
  color: #f3f4ed;
  text-transform: capitalize;
  bottom: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .top-section-title span {
    font-size: 3.5rem;
    bottom: 1.3333333333rem;
    width: auto;
    left: 0;
    transform: none;
  }
}

.top-section-title.top-section-title--about {
  color: #fff;
}

.top-section-title.top-section-title--about span {
  color: rgba(255, 255, 255, 0.3);
}

.top-section-title.top-section-title--sns {
  font-size: 2.1333333333rem;
  color: #8a9174;
  margin-top: 9.8666666667rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-section-title.top-section-title--sns {
    font-size: 1.3333333333rem;
    margin-top: 3rem;
    padding-left: initial;
  }
}

.top-section-title.top-section-title--sns span {
  color: rgba(138, 145, 116, 0.2);
}
@media screen and (max-width: 767px) {
  .top-section-title.top-section-title--sns span {
    font-size: 3rem;
	width:100%;
  }
}

.top-section-title.top-section-title--common-contact {
  font-size: 2.1333333333rem;
  color: #fff;
  z-index: 10;
  text-align: left;
  margin-left: 4.6666666667rem;
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  .top-section-title.top-section-title--common-contact {
    font-size: 1.1333333333rem;
    margin-left: 1.7333333333rem;
    margin-top: 5.3333333333rem;
  }
}

.top-section-title.top-section-title--common-contact span {
  font-size: 9.3333333333rem;
  color: rgba(243, 244, 237, 0.3);
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .top-section-title.top-section-title--common-contact span {
    font-size: 4.8333333333rem;
  }
}

.button {
  display: inline-block;
}

.button a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6666666667rem 0;
  color: #3a3938;
  font-size: 1.1333333333rem;
  border: none;
  cursor: pointer;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
	.button a {
	  font-size: 1rem;
	}
}

.button a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  background: rgba(138, 145, 116, 0.3);
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.button a::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #3a3938;
  transition: transform 0.4s ease;
  transform-origin: left;
}

.button a:hover {
  opacity: 1;
}

.button a:hover::after {
  /* 丸を拡大 */
  width: 40px;
  height: 40px;
  opacity: 1;
}

.button a:hover::before {
  /* 下線を右側から消す */
  transform: scaleX(0);
}

.button.button--reverse a {
  color: #fff;
}

.button.button--reverse a::after {
  background: rgba(243, 244, 237, 0.3);
  z-index: 0;
}

.button.button--reverse a::before {
  background-color: #fff;
}

.event-card {
  margin-top: 3.3333333333rem;
  padding: 0.3333333333rem;
  background-color: transparent;
  width: 20.6666666667rem;
  height: 100%;
}
@media screen and (max-width: 767px) {
	.event-card {
	  margin-top: 2rem;
	}
}

.event-card__img {
  width: 100%;
  max-width: 20rem;
}

.event-card__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.event-card__tag {
  margin-top: 0.3333333333rem;
  margin-bottom: 0.3333333333rem;
}

.event-card__tag span {
  padding: 0.3333333333rem 0.6666666667rem;
  border: 1px solid #4f5d42;
  border-radius: 0.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.7;
  color: #4f5d42;
}

.service__item {
  width: 34.6666666667rem;
  /* height: 8.2666666667rem; */
  border: 2px solid #8a9174;
}
@media screen and (max-width: 767px) {
  .service__item {
    width: 21.6666666667rem;
    height: 5.7333333333rem;
  }
}

.service__link {
  display: flex;
  align-items: center;
  gap: 2.6666666667rem;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .service__link {
    gap: 1rem;
  }
}

.service__link:hover {
  background-color: #8a9174;
  opacity: 1;
}

.service__link-icon {
  background-color: #8a9174;
  padding: 1.2666666667rem 0.6666666667rem;
  width: 8rem;
  height: 8rem;
}
@media screen and (max-width: 767px) {
  .service__link-icon {
    width: 5.4666666667rem;
    height: 5.4666666667rem;
    padding: 0.8666666667rem 0.4666666667rem;
  }
}

.service__link-icon img {
  width: 100%;
  aspect-ratio: 100/82;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .service__link-icon img {
    aspect-ratio: 68/56;
  }
}

.service__link-text {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .service__link-text {
    font-size: 1rem;
  }
}

.service__link:hover .service__link-text {
  color: #fff;
}

.section-title {
  font-size: 3.2rem;
  font-weight: 500;
  color: #3a3938;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 1.8666666667rem;
  }
}

.section-title span {
  position: absolute;
  z-index: -1;
  font-size: 9.3333333333rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #f3f4ed;
  text-transform: capitalize;
  top: -20%;
  display: block;
  left: 6.1333333333rem;
}
@media screen and (max-width: 767px) {
  .section-title span {
    font-size: 4.5rem;
    left: 0;
  }
}

.section-title.section-title--reverse {
  text-align: end;
  z-index: 10;
}

.section-title.section-title--reverse span {
  color: #fff;
  right: 6.1333333333rem;
}

@media screen and (max-width: 767px) {
  .strengths__title .section-title.section-title--reverse span {
    left: 0;
    text-align: start;
  }
}

.section-title.section-title--white {
  z-index: 10;
}

.section-title.section-title--white span {
  color: #fff;
}

.section-title.section-title--recruit {
  color: #fff;
  padding-left: 20rem;
}
@media screen and (max-width: 767px) {
	.section-title.section-title--recruit {
	  top: -1.2rem;
	  padding-left: 0;
	}
}

.section-title.section-title--recruit span {
  z-index: 1;
  color: rgba(243, 244, 237, 0.2);
  left: 0;
  top: -4.6666666667rem;
}
@media screen and (max-width: 767px) {
	.section-title.section-title--recruit span {
		top:-2.5rem;
		left:-50%;
	}
}

.text {
  font-size: 1.1333333333rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .text {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

.pagenation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.6666666667rem;
}

.page-numbers {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  color: #3a3938;
  text-decoration: none;
  font-size: 1.1333333333rem;
  border-radius: 0.3333333333rem;
  text-align: center;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.page-numbers:hover {
  background-color: #f0f0f0;
}

.page-numbers.current {
  background-color: #D9D9D9;
  pointer-events: none;
}

.access__contents {
  margin-top: 2.8666666667rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3.9333333333rem;
}
@media screen and (max-width: 767px) {
  .access__contents {
    flex-direction: column-reverse;
    margin-top: 1.3333333333rem;
    gap: 1.3333333333rem;
  }
}

.access__map {
  width: 100%;
  max-width: 40rem;
}

.access__map img {
  width: 100%;
  aspect-ratio: 600/447;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .access__map img {
    aspect-ratio: 345/257;
  }
}

.access__text {
  font-size: 1.3333333333rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  color: #3a3938;
  margin-top: 1.3333333333rem;
}
@media screen and (max-width: 767px) {
  .access__text {
    font-size: 0.9rem;
    margin-top: 0.6666666667rem;
  }
}

.access__text.access__text--top {
  margin-top: initial;
}

.access__sub-title {
  margin-top: 2.6666666667rem;
  font-size: 1.3333333333rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .access__sub-title {
    margin-top: 1.3333333333rem;
    font-size: 0.9rem;
  }
}

.access__small-text {
  margin-top: 1.3333333333rem;
  font-size: 1.1333333333rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .access__small-text {
    margin-top: 0.4666666667rem;
    font-size: 0.9rem;
  }
}

.common-contact {
  height: 20rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .common-contact {
    height: 17.3333333333rem;
  }
}

.common-contact__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 20rem;
}
@media screen and (max-width: 767px) {
  .common-contact__inner {
    flex-direction: column;
    height: 17.3333333333rem;
  }
}

.common-contact__event {
  width: 100%;
  height: 100%;
  background-image: url(../images/event/event-mv.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .common-contact__event {
    height: 8.6666666667rem;
  }
}

.common-contact__event h3 {
  padding-top: 11.8666666667rem;
}
@media screen and (max-width: 767px) {
  .common-contact__event h3 {
    padding: 1.4333333333rem 1.7666666667rem;
  }
}

.common-contact__contact {
  width: 100%;
  height: 100%;
  background-image: url(../images/contact/contact-mv.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .common-contact__contact {
    height: 8.6666666667rem;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.common-contact__contact h3 {
  padding-top: 11.8666666667rem;
}
@media screen and (max-width: 767px) {
  .common-contact__contact h3 {
    padding: 1.4333333333rem 1.7666666667rem;
  }
}

.company__contents {
  margin-top: 2.8666666667rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.3333333333rem;
}
@media screen and (max-width: 767px) {
  .company__contents {
    flex-direction: column;
    margin-top: 2rem;
    gap: 1.3333333333rem;
  }
}

.company__list {
  width: 100%;
  max-width: 46.6666666667rem;
}
@media screen and (max-width: 767px) {
  .company__list {
    max-width: 21rem;
  }
}

.company__item {
  display: flex;
  align-items: center;
  padding-top: 1.3333333333rem;
  padding-bottom: 1.3333333333rem;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width: 767px) {
  .company__item {
    padding-top: 0.6666666667rem;
    padding-bottom: 0.6666666667rem;
  }
}

.company__item.company__item--last {
  border-bottom: none;
}

.company__item dt {
  width: 28.5%;
  display: flex;
  justify-content: center;
  font-size: 1.1333333333rem;
  font-weight: 500;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .company__item dt {
    font-size: 1rem;
  }
}

.company__item dd {
  font-size: 1.1333333333rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7647058824;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .company__item dd {
    font-size: 0.9rem;
    line-height: 2;
  }
}

.company__img-list {
  display: flex;
  flex-direction: column;
  gap: 0.6666666667rem;
  align-items: center;
  justify-content: center;
}

.company__img-item {
  width: 100%;
  max-width: 23.3333333333rem;
}

.company__img-item img {
  width: 100%;
  aspect-ratio: 350/343;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .company__img-item img {
    aspect-ratio: 345/338;
  }
}

.contact__text {
  text-align: center;
  font-size: 1.3333333333rem;
  font-weight: 400;
  letter-spacing: 0;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .contact__text {
    font-size: 1.1333333333rem;
    font-weight: 500;
  }
}

.contact__form-body {
  margin-top: 3.3333333333rem;
  background-color: #f3f4ed;
}
@media screen and (max-width: 767px) {
  .contact__form-body {
    margin-top: 2rem;
  }
}

.contact__form-inner {
  width: 100%;
  max-width: 73.3333333333rem;
  padding: 4rem 6.6666666667rem;
}
@media screen and (max-width: 767px) {
  .contact__form-inner {
    padding: 2rem 1rem;
  }
}

.contact__form-wrap + .contact__form-wrap {
  margin-top: 1.6666666667rem;
}
@media screen and (max-width: 767px) {
  .contact__form-wrap + .contact__form-wrap {
    margin-top: 1rem;
  }
}

.contact__form-label {
  font-size: 1.1333333333rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .contact__form-label {
    max-width: 23.3333333333rem;
    width: 100%;
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .contact__form-wrap.contact__form-wrap--checkbox .contact__form-label,
  .contact__form-wrap.contact__form-wrap--textarea .contact__form-label {
    padding-top: 0.3333333333rem;
  }
}

.contact__form-label span {
  margin-left: 1rem;
  padding: 0.3333333333rem 0.6666666667rem;
  display: inline-block;
  font-size: 0.9333333333rem;
  line-height: 1;
  color: #fff;
  background-color: #A24F4F;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .contact__form-label span {
    font-size: 0.8rem;
    padding: 0.3333333333rem 0.4666666667rem;
  }
}

.contact__form-label.contact__form-label--checkbox span {
  margin-left: 1.3333333333rem;
  padding: 0;
  background-color: initial;
  color: #A24F4F;
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .contact__form-label.contact__form-label--checkbox span {
    font-size: 0.8666666667rem;
  }
}

.contact__form-input {
  margin-top: 0.6666666667rem;
}
@media screen and (max-width: 767px) {
  .contact__form-input {
    margin-top: 0.4666666667rem;
  }
}

.contact__form-input input {
  padding: 0.3333333333rem 1rem;
  width: 100%;
  font-size: 1.1333333333rem;
  line-height: 1;
  color: #a3a3a3;
  background-color: #fff;
  border-radius: 0;
  border: 1px solid #a3a3a3;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: none;
}
@media screen and (max-width: 767px) {
  .contact__form-input input {
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }
}

.contact__form-input input:focus {
  outline: none;
}

.contact__form-checkbox input {
  display: none;
}

.contact__form-checkbox input + span {
  cursor: pointer;
  display: inline-block;
  margin-top: 1rem;
  padding: 0 0 0 2rem;
  position: relative;
  font-size: 1.1333333333rem;
  font-weight: 400;
  letter-spacing: 0;
  color: #3a3938;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contact__form-checkbox input + span {
    font-size: 1rem;
    padding-left: 1.6666666667rem;
  }
}

.contact__form-checkbox input + span::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #696969;
  display: block;
  width: 1.3333333333rem;
  height: 1.3333333333rem;
}
@media screen and (max-width: 767px) {
  .contact__form-checkbox input + span::before {
    width: 1rem;
    height: 1rem;
  }
}

.contact__form-checkbox input + span::after {
  content: "";
  margin-top: -0.1333333333rem;
  position: absolute;
  top: 55%;
  left: 0.1333333333rem;
  transform: translateY(-50%) rotate(-45deg);
  display: block;
  width: 1rem;
  height: 0.5333333333rem;
  border-bottom: 0.2rem solid #8a9174;
  border-left: 0.2rem solid #8a9174;
  transition: 0.3s;
  opacity: 0;
}

.contact__form-checkbox input:checked + span::after {
  opacity: 1;
}

.contact__form-radio {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .contact__form-radio {
    margin-top: 0.9rem;
  }
}

.contact__form-radio label {
  display: inline-block;
}

.contact__form-radio label:not(:first-of-type) {
  margin-left: 2rem;
}
@media screen and (max-width: 767px) {
  .contact__form-radio label:not(:first-of-type) {
    margin-top: 0;
    margin-left: 1.3333333333rem;
  }
}

.contact__form-radio input {
  display: none;
}

.contact__form-radio input + span {
  padding: 0 0 0 3rem;
  position: relative;
  display: block;
  font-size: 1.1333333333rem;
  font-weight: 500;
  color: #3a3938;
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .contact__form-radio input + span {
    padding-left: 2.3333333333rem;
  }
}

.contact__form-radio input + span::before {
  content: "";
  width: 2.3333333333rem;
  height: 2.3333333333rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid #a3a3a3;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .contact__form-radio input + span::before {
    width: 1.6666666667rem;
    height: 1.6666666667rem;
  }
}

.contact__form-radio input + span::after {
  content: "";
  padding: 0.5rem;
  width: 1.3333333333rem;
  height: 1.3333333333rem;
  position: absolute;
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
  border: 1px solid transparent;
  border-radius: 50%;
  background: #A24F4F;
  opacity: 0;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .contact__form-radio input + span::after {
    padding: 0.3573333333rem;
    width: 0.9526666667rem;
    height: 0.9526666667rem;
    left: 0.3573333333rem;
  }
}

.contact__form-radio input:checked + span::after {
  opacity: 1;
}

.contact__form-textarea {
  margin-top: 0.6666666667rem;
}
@media screen and (max-width: 767px) {
  .contact__form-textarea {
    margin-top: initial;
    flex-grow: 1;
  }
}

.contact__form-textarea textarea {
  padding: 0.3333333333rem 1rem;
  width: 100%;
  height: 16rem;
  font-size: 1.1333333333rem;
  background-color: #fff;
  border-radius: 0;
  border: 1px solid #a3a3a3;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: none;
  resize: none;
}
@media screen and (max-width: 767px) {
  .contact__form-textarea textarea {
    margin-top: 0.4666666667rem;
    padding: 0.6rem 1rem;
    flex-grow: 1;
    font-size: 1rem;
  }
}

.contact__form-textarea textarea:focus {
  outline: none;
}

.contact__form-privacy {
  margin-top: 3.3333333333rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__form-privacy {
    margin-top: 2rem;
  }
}

.contact__form-privacy label a {
  display: flex;
  flex-direction: column;
  color: #8a9174;
  font-size: 1rem;
  text-decoration: underline;
  font-weight: 500;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .contact__form-privacy label a {
    font-size: 0.8666666667rem;
  }
}

.contact__form-privacy input {
  display: none;
}

.contact__form-privacy input + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 2rem;
  position: relative;
  font-weight: 700;
  font-size: 1.1333333333rem;
  color: #3a3938;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .contact__form-privacy input + span {
    font-size: 1rem;
    padding-left: 1rem;
  }
}

.contact__form-privacy input + span::before {
  content: "";
  position: absolute;
  top: 0.3333333333rem;
  left: 0;
  background: #fff;
  border: 1px solid #a3a3a3;
  display: block;
  width: 1.3333333333rem;
  height: 1.3333333333rem;
}
@media screen and (max-width: 767px) {
  .contact__form-privacy input + span::before {
    width: 1rem;
    height: 1rem;
  }
}

.contact__form-privacy input + span::after {
  content: "";
  margin-top: -0.2rem;
  position: absolute;
  top: 0.8rem;
  left: 0.2rem;
  transform: rotate(-45deg);
  display: block;
  width: 1rem;
  height: 0.5333333333rem;
  border-bottom: 0.2rem solid #8a9174;
  border-left: 0.2rem solid #8a9174;
  transition: 0.3s;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .contact__form-privacy input + span::after {
    top: 0.6666666667rem;
    left: 0;
  }
}

.contact__form-privacy input + span a {
  text-decoration: underline;
}

.contact__form-privacy input:checked + span::after {
  opacity: 1;
}

.contact__form-submit {
  margin: 3.3333333333rem auto 0;
  position: relative;
  max-width: 8.6666666667rem;
  width: 100%;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .contact__form-submit {
    margin-top: 2rem;
    min-width: 7.5333333333rem;
  }
}

@media screen and (max-width: 767px) {
  .contact__form-submit:hover {
    opacity: 1;
  }
}

.contact__form-submit input {
  padding: 0.8rem 0;
  width: 100%;
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: 1.3333333333rem;
  font-weight: 500;
  color: #fff;
  background-color: #8a9174;
  background-image: none;
  border: none;
  text-decoration: none;
  border: 1px solid #8a9174;
  cursor: pointer;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .contact__form-submit input {
    font-size: 1.1333333333rem;
  }
}

.contact__form-submit input:hover,
.contact__form-submit input:focus {
  outline: none;
  color: #8a9174;
  background-color: #fff;
}

.contact__form-submit::-moz-foucus-inner {
  padding: 0;
  border: none;
}

.contact__form-submit-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #8a9174;
  transition: all 0.4s ease;
}

.event-category__inner {
  display: flex;
  gap: 1.3333333333rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .event-category__inner {
    gap: 0.6666666667rem;
	flex-wrap: wrap;
	justify-content: center;
  }
}

.inner.event-category__inner {
  padding: 0 0.8333333333rem;
}

.event-category__title {
  font-size: 1.0666666667rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7;
  color: #696969;
}
@media screen and (max-width: 767px) {
  .event-category__title {
	width: 100%;
	text-align: center;
  }
}

.event-category__body {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .event-category__body {
	  flex-wrap: wrap;
    gap: 1rem;
  }
}

.event-category__item {
	display:flex;
	gap:1rem;
}
@media screen and (max-width: 767px) {
	.event-category__item {
		width: 100%;
		justify-content:center;
	}
}

.event-category__link span {
  padding: 8px 10px;
  border-radius: 0.1333333333rem;
  background-color: #8a9174;
  color: #fff;
  font-size: 1.0666666667rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .event-category__link span {
    font-size: 0.8rem;
  }
}

.event-category__link.event-category__link--consultation {
  background-color: #4f5d42;
}

.event-category__link.event-category__link--insta {
  background-color: #3c4035;
}

.event-category__link.event-category__link--radio {
  background-color: #5c5f52;
}

.event__items {
  display: flex;
  flex-direction: column;
  gap: 2.6666666667rem;
}
@media screen and (max-width: 767px) {
  .event__items {
    gap: 2rem;
  }
}

.event__item a {
  display: flex;
  gap: 1.3333333333rem;
  align-items: center;
  background-color: #8a9174;
}
@media screen and (max-width: 767px) {
  .event__item a {
    flex-direction: column;
  }
}

.event__img {
  width: 100%;
  max-width: 20rem;
}
@media screen and (max-width: 767px) {
  .event__img {
    max-width: 23rem;
  }
}

.event__img img {
  width: 100%;
  aspect-ratio: 300/300;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
	.event__img img {
		width: 100%;
		height: 100%;
	}
}


.event__text-body {
  padding: 0 1.3333333333rem;
}
@media screen and (max-width: 767px) {
  .event__text-body {
    padding: 0 1rem 1.6666666667rem;
  }
}

.event__tag {
  color: #8a9174;
  background-color: #fff;
  padding: 6px 10px;
  border-radius: 0.1333333333rem;
  font-size: 1.0666666667rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .event__tag {
    font-size: 0.7rem;
  }
}

.event__title {
  margin-top: 1.5133333333rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .event__title {
    margin-top: 1rem;
    font-size: 1rem;
  }
}

.event__text {
  margin-top: 1.5133333333rem;
  color: #fff;
  font-size: 1.1333333333rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .event__text {
    margin-top: 0.5rem;
    font-size: 0.7rem;
  }
}

.event__date {
  color: #fff;
  margin-top: 1.5133333333rem;
  font-size: 1.3333333333rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .event__date {
    font-size: 1rem;
    font-size: 1.1333333333rem;
  }
}

.footer {
  background-color: #8a9174;
}

.footer__container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footer__container {
    flex-direction: column;
  }
}

.footer__sns {
  display: grid;
  grid-template-columns: repeat(1, auto);
  gap: 1.3333333333rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer__sns {
    grid-template-columns: repeat(2, auto);
  }
}

.footer__sns-item a {
  display: flex;
  align-items: center;
  padding-left: 1rem;
  width: 11.0666666667rem;
  height: 4rem;
  text-align: center;
  border: 2px solid #fff;
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .footer__sns-item a {
    width: 10.6666666667rem;
    font-size: 1rem;
  }
}

.footer__sns-item a img {
  width: 2.4rem;
  margin-right: 1.3333333333rem;
}

.footer__sns-item a:hover {
  background-color: #fff;
  color: #8a9174;
  opacity: 1;
}

.footer__menu-left {
  display: flex;
  flex-direction: column;
  gap: 1.3333333333rem;
}
@media screen and (max-width: 767px) {
  .footer__menu-left {
    margin-top: 2rem;
    gap: 0.6666666667rem;
  }
}

.footer__menu-left-link {
  font-size: 1.1333333333rem;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .footer__menu-left-link {
    font-size: 1rem;
  }
}

.footer__menu-left-sub-item {
  margin-top: 0.4666666667rem;
  display: flex;
  flex-direction: column;
  margin-left: 1em;
  gap: 0.3333333333rem;
}

.footer__menu-left-sub-item li a {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__menu-left-sub-item li a {
    font-size: 0.9333333333rem;
  }
}

.footer__menu-left-service {
  margin-top: 0.4666666667rem;
  display: flex;
  flex-direction: column;
  gap: 0.3333333333rem;
  margin-left: 1em;
}

.footer__menu-left-service li {
  display: flex;
  gap: 1rem;
}

.footer__menu-left-service li p,
.footer__menu-left-service li a {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__menu-left-service li p,
  .footer__menu-left-service li a {
    font-size: 0.9333333333rem;
  }
}

.footer__menu-left-service-item {
  padding-left: 0.6666666667rem;
  border-left: 1px solid #fff;
  display: flex;
  flex-direction: column;
  gap: 0.3333333333rem;
}

.footer__menu-left-service-item li a {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer__menu-left-service-item li a {
    font-size: 0.9333333333rem;
  }
}

.footer__menu-right {
  display: flex;
  flex-direction: column;
  gap: 1.3333333333rem;
}
@media screen and (max-width: 767px) {
  .footer__menu-right {
    margin-top: 0.6666666667rem;
    gap: 0.6666666667rem;
  }
}

.footer__menu-right-link {
  font-size: 1.1333333333rem;
  font-weight: 500;
  color: #fff;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .footer__menu-right-link {
    font-size: 1rem;
  }
}

.footer__menu-left-link:hover,
.footer__menu-left-sub-item li a:hover,
.footer__menu-left-service-item li a:hover,
.footer__menu-left-service li a:hover,
.footer__menu-right-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__contact {
    flex-direction: row;
    gap: 0.6666666667rem;
    justify-content: center;
  }
}

.footer__button a {
  padding: 0.8rem 2rem;
  width: 10.8rem;
  text-align: center;
  border-radius: 2rem;
  border: 1px solid #fff;
  font-size: 1.1333333333rem;
  font-weight: 500;
  color: #fff;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .footer__button a {
    padding: 0.5333333333rem 1.3333333333rem;
    width: 8.6666666667rem;
    font-size: 1rem;
  }
}

.footer__button a:hover {
  opacity: 1;
  background-color: #fff;
  color: #8a9174;
}

.footer__logo {
  width: 100%;
  max-width: 16.6666666667rem;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 2px solid #8a9174;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    max-width: 13.3333333333rem;
  }
}

.footer__logo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .footer__logo img {
	margin: auto;
  }
}

.footer__logo:hover {
  opacity: 1;
  border: 2px solid #fff;
}

.footer small {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 2px solid #fff;
  font-size: 0.9333333333rem;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer small {
    margin-top: 2rem;
    padding-top: 0.6666666667rem;
    font-size: 0.8rem;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.6666666667rem;
  -webkit-text-size-adjust: 100%;
}

.header {
  height: 6.6666666667rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .header {
    height: 4.6666666667rem;
  }
}

.header__inner {
  padding: 0 4rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1299px) {
  .header__inner {
    padding: 0 2rem;
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 1rem;
  }
}

.header__name {
  max-width: 9.3333333333rem;
  width: 100%;
  height: inherit;
}
@media screen and (max-width: 767px) {
	.header__name {
	  max-width: 7rem;
	}
}

.header__logo {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__nav {
  height: inherit;
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__item {
  height: inherit;
}

.header__link {
  padding: 0 1.2rem;
  display: flex;
  align-items: center;
  height: inherit;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  transition: all 0.4s ease;
  text-align: center;
  position: relative;
}

.header__link.header__link--first {
  padding: 0 3.2rem 0 1.2rem;
}

.header__link.header__link--first::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/header-arrow.svg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  right: 1.6666666667rem;
  top: 45%;
  width: 1.1333333333rem;
  height: 1.6666666667rem;
}

.header__link:hover {
  opacity: 1;
  color: #8a9174;
}

.header__link.header__link--first:hover::after {
  background-image: url(../images/common/header-arrow-hover.svg);
}

.header__item,
.header__nav-modal-wrap {
  height: inherit;
}

.header__nav-modal-wrap > p {
  transition: all 0.4s ease;
}

.header__item.header__item--about {
  position: relative;
}

.header__nav-modal.header__nav-modal--about {
  padding: 0.6666666667rem 0;
  position: absolute;
  top: 5.3333333333rem;
  left: 1rem;
  transform: rotateX(90deg);
  width: 9.6666666667rem;
  background-color: #f3f4ed;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.header__item.header__item--service {
  position: relative;
}

.header__nav-modal.header__nav-modal--service {
  padding: 0.6666666667rem 0;
  position: absolute;
  top: 5.3333333333rem;
  left: 0;
  transform: rotateX(90deg);
  width: 35.7333333333rem;
  background-color: #f3f4ed;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

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

.header__nav-modal-item.header__nav-modal-item--service {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.header__nav-modal-link {
  padding: 0.5rem 1rem 0.5rem 2.6666666667rem;
  position: relative;
  display: block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.5;
  transition: all 0.4s ease;
}

.header__nav-modal-link:hover {
  background-color: #fff;
  opacity: 1;
}

.header__nav-modal-link::before {
  position: absolute;
  content: "";
  width: 0.6666666667rem;
  height: 0.1rem;
  border-radius: 0.4rem;
  background-color: #3a3938;
  top: 50%;
  transform: translateY(-50%);
  left: 1rem;
}

.header__nav-modal-sub-items {
  display: flex;
  flex-direction: column;
  margin-top: 1em;
  gap: 1.3333333333rem;
}

.header__nav-modal-sub-items li a {
  padding: 1rem 0.6666666667rem;
  font-size: 0.8666666667rem;
  font-weight: 500;
  line-height: 1.7;
  position: relative;
  transition: all 0.4s ease;
}

.header__nav-modal-sub-items li a::before {
  position: absolute;
  content: "";
  width: 0.1rem;
  height: 0.6666666667rem;
  background-color: #3a3938;
  border-radius: 0.3333333333rem;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.header__nav-modal-sub-items li a:hover {
  background-color: #fff;
  opacity: 1;
}

.header__icon-items {
  display: flex;
  height: inherit;
  gap: 1rem;
  align-items: center;
}

.header__icon-link {
  width: 100%;
  max-width: 2.6666666667rem;
}

.header__icon-link img {
  width: 100%;
  height: 2.6666666667rem;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 1.3333333333rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

.hamburger.is-open {
  top: 1.6rem;
  right: 1rem;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.2rem;
  border-radius: 0.4rem;
  background-color: #3a3938;
  transition: all 0.4s ease;
}

.hamburger.is-open span {
  background-color: #3a3938;
  width: 70%;
  height: 0.2rem;
}

.hamburger span:nth-child(1) {
  top: 0.3rem;
}

.hamburger span:nth-child(2) {
  top: 0.9rem;
  transition: 0.4s opacity ease;
}

.hamburger span:nth-child(3) {
  top: 1.4333333333rem;
}

.hamburger.is-open span:nth-child(1) {
  top: 0.3rem;
  transform: rotate(-45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  top: 0.3rem;
  transform: rotate(45deg);
}

.drawer-menu {
  position: fixed;
  z-index: 5000;
  top: 0;
  right: -100%;
  width: 85%;
  height: 100vh;
  transition: right 0.4s ease-in-out, width 0.4s ease-in-out;
  background-color: #8a9174;
  overflow-y: scroll;
  scrollbar-width: none;
}

.drawer-menu::-webkit-scrollbar {
  display: none;
}

.drawer-menu.is-open {
  right: 0;
}

.drawer-menu.full-width {
  width: 100%;
}

.drawer-menu__inner {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.drawer-menu__items {
  display: flex;
  flex-direction: column;
}

.drawer-menu__link {
  padding: 1rem 0.6666666667rem;
  font-size: 1.1333333333rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #fff;
}

.drawer-menu__link span {
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: capitalize;
  display: block;
}

.drawer-menu__link.drawer-menu__link--dropdown {
  position: relative;
  transition: all 0.4s ease;
}

.drawer-menu__link.drawer-menu__link--dropdown::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/drawer-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  top: 65%;
  right: -0.9333333333rem;
  width: 1.1333333333rem;
  height: 0.9333333333rem;
  transform: rotate(0deg);
}

.drawer-menu__link.drawer-menu__link--dropdown:hover::after {
  transform: rotate(180deg);
}

.drawer-dropdown__items li a {
  padding: 0.6666666667rem 1.3333333333rem;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 2.5;
  color: #fff;
  position: relative;
}

.drawer-dropdown__items li a::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 0.6666666667rem;
  height: 0.1rem;
  border-radius: 0.3333333333rem;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.drawer-dropdown {
  margin-top: 0.6666666667rem;
}

.drawer-dropdown__items {
  display: flex;
  flex-direction: column;
}

.drawer-dropdown__item {
  display: flex;
  align-items: flex-start;
}

.drawer-dropdown__service {
  margin-top: 0.6666666667rem;
}

.drawer-dropdown__service li a {
  position: relative;
}

.drawer-dropdown__service li a::before {
  position: absolute;
  content: "";
  background-color: #fff;
  width: 0.1rem;
  height: 0.6666666667rem;
  border-radius: 0.3333333333rem;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.drawer-menu__icons {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 1.3333333333rem;
}

.drawer-menu__icon a {
  display: flex;
  align-items: center;
  gap: 0.6666666667rem;
  height: 3rem;
  padding-left: 0.6666666667rem;
  width: 9rem;
  border: 2px solid #fff;
  font-size: 0.9333333333rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
}

.drawer-menu__icon a img {
  width: 100%;
  max-width: 2rem;
}

.message {
  background-color: #f3f4ed;
  position: relative;
}

.message__name-body {
  margin-top: 3.5333333333rem;
  width: 54%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .message__name-body {
    margin-top: 1.3333333333rem;
    width: 100%;
  }
}

.message__position {
  font-size: 1.6rem;
  font-weight: 500;
  color: #3a3938;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .message__position {
    font-size: 1.3333333333rem;
  }
}

.message__name {
  margin-top: 0.6666666667rem;
  font-size: 2.1333333333rem;
  font-weight: 500;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .message__name {
    font-size: 1.6rem;
  }
}

.message__contents {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 3.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .message__contents {
    flex-direction: column;
    margin-top: 1rem;
    gap: 2.2666666667rem;
    align-items: center;
    position: initial;
  }
}

.message__img {
  width: 100%;
  max-width: 30.4rem;
}
@media screen and (max-width: 767px) {
  .message__img {
    max-width: 40rem;
    position: relative;
  }
}

.message__img img {
  width: 100%;
  aspect-ratio: 456/570;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .message__img img {
    aspect-ratio: 345/460;
  }
}

.message__img::after {
  position: absolute;
  content: "Kazue Tanaka";
  font-size: 5.3333333333rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: #8a9174;
  bottom: -3.3333333333rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .message__img::after {
    font-size: 3.3rem;
    bottom: -2rem;
  }
}

.message__text-body {
  width: 100%;
  max-width: 39.5333333333rem;
}

.message__qualification {
  margin-top: 1.3333333333rem;
  font-size: 1.3333333333rem;
  font-weight: 400;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .message__qualification {
    font-size: 1rem;
	margin-top: 0.5rem;
  }
}

.message__text {
  margin-top: 1.3333333333rem;
  font-size: 1.1333333333rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .message__text {
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

.message__button {
  margin-top: 2.6666666667rem;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .message__button {
    margin-top: 2rem;
  }
}

.method__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-around;
  padding: 1.3333333333rem;
  border: 3px solid #8a9174;
  width: 22rem;
  height: 18.6666666667rem;
}
@media screen and (max-width: 767px) {
  .method__item {
    width: 20rem;
    height: 100%;
    padding-left: 1.3333333333rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.method__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 8.0666666667rem;
  background-color: #8a9174;
  border-radius: 0.3333333333rem;
  padding: 0.3333333333rem 0.4666666667rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
}
@media screen and (max-width: 767px) {
  .method__tag {
    font-size: 0.8rem;
  }
}

.method__text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #8a9174;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .method__text {
    font-size: 1rem;
	  margin-top: 1rem;
  }
}

.method__button {
  margin-top: 0.7rem;
}

.method__button a {
  display: inline-block;
  padding: 1.4333333333rem 1.3rem 1.4333333333rem 5.8333333333rem;
  background-color: #8a9174;
  border-radius: 0.6666666667rem;
  color: #fff;
  font-size: 1.1333333333rem;
  font-weight: 500;
  position: relative;
  transition: all 0.4s ease;
  border: 3px solid #8a9174;
}
@media screen and (max-width: 767px) {
  .method__button a {
    padding: 0.9rem 2rem 0.9rem 3.8rem;
    font-size: 0.8rem;
	margin-top:0;
  }
}

.method__button a::before {
  position: absolute;
  content: "";
  background-image: url(../images/common/method-line.svg);
  background-position: top;
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.2rem;
  height: 3.2rem;
  left: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .method__button a::before {
    width: 1.8rem !important;
    height: 1.8rem !important;
  }
}

.method__button a:hover {
  color: #8a9174;
  background-color: transparent;
}

.method__button a:hover::before {
  background-image: url(../images/common/method-line-hover.svg);
}

.method__item.method__item--2 {
  border: 3px solid #4f5d42;
}

.method__tag.method__tag--2 {
  background-color: #4f5d42;
}

.method__text.method__text--2 {
  color: #4f5d42;
}

.method__button.method__button--2 a {
  background-color: #4f5d42;
  padding: 1rem;
  border: 3px solid #4f5d42;
  width: 16.6666666667rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
	.method__button.method__button--2 a {
	  padding: 0.9rem 1rem;
      width: 13rem;
	}
}

.method__button.method__button--2 a:hover {
  opacity: 1;
  background-color: #fff;
  color: #4f5d42;
}

.method__button.method__button--2 a::before {
  display: none;
}

.method__item.method__item--3 {
  border: 3px solid #5c5f52;
}

.method__tag.method__tag--3 {
  background-color: #5c5f52;
}

.method__text.method__text--3 {
  color: #5c5f52;
}

.method__button.method__button--sns {
  display: flex;
  gap: 0.6666666667rem;
}

.method__button.method__button--sns a {
  background-color: #5c5f52;
  padding: 3.4666666667rem 0.3333333333rem 0.6666666667rem;
  border: 3px solid #5c5f52;
  width: 5.5333333333rem;
  height: 5.5333333333rem;
  text-align: center;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
	.method__button.method__button--sns a {
	  padding: 2.8rem 0.3rem 0.6rem;
	  height: 100%;
	  font-size: 0.9rem;
	}
}

.method__button a.method__button-insta::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/method-insta.svg);
  top: 0.6666666667rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.6666666667rem;
  height: 2.6666666667rem;
}

.method__button a.method__button-youtube::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/method-youtube.svg);
  top: 0.6666666667rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.6666666667rem;
  height: 2.6666666667rem;
}

.method__button a.method__button-tiktok::before {
  content: "";
  position: absolute;
  background-image: url(../images/common/method-tiktok.svg);
  top: 0.6666666667rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2.6666666667rem;
  height: 2.6666666667rem;
}

.method__button a.method__button-insta:hover::before {
  background-image: url(../images/common/method-insta-hover.svg);
}

.method__button a.method__button-youtube:hover::before {
  background-image: url(../images/common/method-youtube-hover.svg);
}

.method__button a.method__button-tiktok:hover::before {
  background-image: url(../images/common/method-tiktok-hover.svg);
}

.method__button.method__button--sns a:hover {
  background-color: #fff;
  color: #5c5f52;
  opacity: 1;
}

.method__button.method__button--5 a {
  width: 16.6666666667rem;
  padding: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
	.method__button.method__button--5 a {
	  width: 13rem;
	  padding: 0.9rem 1rem;
	  text-align: center;
	}
}

.method__button.method__button--5 a::before {
  display: none;
}

.mv {
  width: 100%;
  height: 44.3333333333rem;
}
@media screen and (max-width: 767px) {
  .mv {
    height: 32rem;
  }
}

.mv__inner {
  height: 44.3333333333rem;
  position: relative;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .mv__inner {
    height: 100%;
  }
}

.mv__video {
  width: 82%;
  max-width: 80.8rem;
  height: 44.3333333333rem;
  padding-left: 2rem;
  margin-left: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv__video {
    width: 100%;
    padding: 0;
    margin: 0;
	height: 25rem;
  }
}

.mv__video video {
  width: 100%;
  height: 100%;
  aspect-ratio: 1182/665;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .mv__video video {
    aspect-ratio: 375/599;
  }
}

.mv__title-body {
  position: absolute;
  left: 13%;
  bottom: calc(100% - 300px);
  transform: translateY(100%);
  display: block;
}
@media screen and (max-width: 999px) {
  .mv__title-body {
    bottom: calc(100% - 250px);
  }
}
@media screen and (max-width: 767px) {
  .mv__title-body {
    bottom: calc(100% - 250px);
    left: 1rem;
  }
}

.mv__title {
  margin-top: 1.3333333333rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  -webkit-box-direction-bleak: clone;
  line-height: 1;
  font-size: 2.6666666667rem;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .mv__title {
    margin-top: 0.5rem;
    padding: 0.4666666667rem 1rem;
    font-size: 1.6rem;
  }
}

.mv__sub-title {
  margin-top: 3.3333333333rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  -webkit-box-direction-bleak: clone;
  line-height: 1;
  font-size: 1.3333333333rem;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .mv__sub-title {
    padding: 0.6666666667rem 0.5333333333rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
  }
}

.news-category__inner {
  display: flex;
  align-items: center;
  gap: 1.3333333333rem;
}
@media screen and (max-width: 767px) {
	.news-category__inner {
		flex-wrap: wrap;
		justify-content: center;
		gap: 1rem;
	}
}

.news-category__title {
  font-size: 1.0666666667rem;
  font-weight: 500;
  line-height: 1.7;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
	.news-category__title {
		width: 100%;
		text-align:center;
	}
}

.news-category__news span,
.news-category__event span,
.news-category__media span {
  padding: 8px 10px;
  border-radius: 0.1333333333rem;
  color: #fff;
  font-size: 1.0666666667rem;
  font-weight: 500;
  line-height: 1.7;
  background-color: #4f5d42;
}
@media screen and (max-width: 767px) {
	.news-category__news span,
	.news-category__event span,
	.news-category__media span {
	  font-size: 0.8rem;
	}
}

.news-category__event span {
  background-color: #4f5d42;
}

.news-category__media span {
  background-color: #4f5d42;
}

.news__item {
  padding: 2rem;
  width: 100%;
  border-bottom: 1px solid #D9D9D9;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .news__item {
    padding: 1.3333333333rem;
  }
}

.news__link {
  display: flex;
  align-items: flex-start;
  gap: 2.8rem;
}
@media screen and (max-width: 767px) {
  .news__link {
    flex-direction: column;
    gap: 1rem;
  }
}

.news__item:hover {
  opacity: 1;
  background-color: #f3f4ed;
}

.news__link time {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.7;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .news__link time {
    font-size: 0.8rem;
  }
}

.news__link-tag {
  margin-left: 2.8rem;
}
@media screen and (max-width: 767px) {
  .top-news__link-tag.news__link-tag {
    margin-left: 1.3333333333rem;
  }
}

.news__text-body {
  width: 100%;
  max-width: 50.9333333333rem;
}

.news__title {
  font-size: 1.1333333333rem;
  font-weight: 500;
  color: #3a3938;
  letter-spacing: 0;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .news__title {
    font-size: 0.9rem;
  }
}

.news__text {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7;
  color: #696969;
}
@media screen and (max-width: 767px) {
  .news__text {
    font-size: 0.7rem;
    margin-top: 0.3rem;
  }
}

.news__pagenation {
  margin-top: 3.3333333333rem;
  margin: 1.8rem;
}

.news-detail__content {
  margin-top: 6.6666666667rem;
  margin-bottom: 6.6666666667rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .news-detail__content {
    margin-bottom: 2.6666666667rem;
  }
}

.news-detail__title {
  font-size: 2.1333333333rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  padding-left: 1.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .news-detail__title {
    font-size: 1.6rem;
    padding-left: 1.4666666667rem;
  }
}

.news-detail__title::before {
  position: absolute;
  content: "";
  width: 0.4666666667rem;
  height: 2.1333333333rem;
  background-color: #8a9174;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.news-detail__content p {
  font-size: 1.1333333333rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7;
  margin-top: 2rem;
}

.back-to-list {
  margin-bottom: 6.6666666667rem;
  display: flex;
  justify-content: center;
}

.back-to-list a {
  display: inline-block;
  background-color: #8a9174;
  padding: 0.3333333333rem 0.6666666667rem;
  color: #fff;
  font-size: 1.3333333333rem;
  font-weight: 500;
}

.philosophy__contents {
  margin-top: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.3333333333rem;
}
@media screen and (max-width: 767px) {
  .philosophy__contents {
    flex-direction: column;
    gap: 1.3333333333rem;
    margin-top: 0.5rem;
  }
}

.philosophy__text-body {
  width: 100%;
  max-width: 40rem;
}

.philosophy__sub-title {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .philosophy__sub-title {
    font-size: 1.3333333333rem;
  }
}

.philosophy__text {
  margin-top: 1.3333333333rem;
  font-size: pre(17);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .philosophy__text {
    font-size: 0.9rem;
	margin-top: 0.8rem;
  }
}

.philosophy__img {
  width: 100%;
  max-width: 30rem;
}

.philosophy__img img {
  width: 100%;
  aspect-ratio: 450/380;
  -o-object-fit: cover;
     object-fit: cover;
}

.privacy__title h1,
.privacy__title h2 {
  padding-left: 2.6666666667rem;
  position: relative;
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .privacy__title h1,
  .privacy__title h2 {
    padding-left: 2.4666666667rem;
    font-size: 1.6rem;
    line-height: 2;
  }
}

.privacy__title h1::before,
.privacy__title h2::before {
  position: absolute;
  content: "";
  width: 0.6666666667rem;
  height: 3.2rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #8a9174;
}
@media screen and (max-width: 767px) {
  .privacy__title h1::before,
  .privacy__title h2::before {
    width: 0.4666666667rem;
  }
}

.privacy__text {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .privacy__text {
    margin-top: 1.3333333333rem;
  }
}

.privacy__contents ol {
  margin-top: 2rem;
  counter-reset: number;
}
@media screen and (max-width: 767px) {
  .privacy__contents ol {
    margin-top: 1.3333333333rem;
  }
}

.privacy__contents ol li:not(:first-of-type) {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .privacy__contents ol li:not(:first-of-type) {
    margin-top: 1.3333333333rem;
  }
}

.privacy__contents ol li {
  font-size: 1.6rem;
  font-weight: 500;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .privacy__contents ol li {
    font-size: 1.1333333333rem;
  }
}

.privacy__contents ol li p {
  font-size: 1.1333333333rem;
  font-weight: 400;
  margin-top: 0.6666666667rem;
}
@media screen and (max-width: 767px) {
  .privacy__contents ol li p {
    font-size: 0.9rem;
  }
}

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

.privacy__contents ol li p.privacy__sub-title {
  font-size: 1.3333333333rem;
  font-weight: 500;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .privacy__contents ol li p.privacy__sub-title {
    font-size: 1rem;
    line-height: 3.2;
  }
}

.privacy__contents ul li {
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .privacy__contents ul li {
    margin-top: 1.3333333333rem;
    font-size: 1.1333333333rem;
  }
}

.privacy__contents ul li p {
  margin-top: 0.6666666667rem;
  font-size: 1.1333333333rem;
  font-weight: 400;
  color: #3a3938;
}

.property__contents {
  margin-top: 5.3333333333rem;
  display: flex;
  gap: 3.3333333333rem;
}
@media screen and (max-width: 767px) {
  .property__contents {
    margin-top: 2.6666666667rem;
    flex-direction: column;
    gap: 2rem;
  }
}

.property__items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 72.8%;
}
@media screen and (max-width: 767px) {
  .property__items {
    width: 100%;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	gap: 15px;
  }
}

.property__item:not(:last-child) {
  padding-bottom: 2rem;
  border-bottom: 2px solid #D9D9D9;
}

.property__item {
  width: 100%;
  max-width: 53.6666666667rem;
}

@media screen and (max-width: 767px) {
	.property__item {
		width: 47%;
	}
  .property__item:not(:last-child) {
    border: none;
    padding-bottom: initial;
  }
}

.property__item a {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .property__item a {
    flex-direction: column;
  }
}

.property__item img {
  width: 100%;
  max-width: 13.3333333333rem;
  height: 13.3333333333rem;
  aspect-ratio: 200/200;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .property__item img {
	width: 100%;
	height: 100%;
  }
}

.property__info {
  flex: 1;
  width:100%;
}

.property__tag {
  display: inline-block;
  color: #3a3938;
  font-size: 0.9333333333rem;
  padding: 0.4666666667rem 0.6666666667rem;
  border-radius: 0.3333333333rem;
  margin-right: 4px;
  border: 1px solid #8a9174;
}
@media screen and (max-width: 767px) {
	.property__tags {
		display: flex;
		flex-wrap: wrap;
		gap: 5px;
	}
  .property__tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
	margin-right: 0px;
  }
}

.property__item-title {
  font-weight: 500;
  margin-top: 1.5rem;
  font-size: 1.5333333333rem;
}
@media screen and (max-width: 767px) {
  .property__item-title {
    margin-top: 0.6rem;
    font-size: 0.9rem;
  }
}

.property__details {
  margin-top: 1.5rem;
  font-size: 1.1333333333rem;
  color: #696969;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .property__details {
    margin-top: 1rem;
    font-size: 0.9333333333rem;
  }
}

.recruit {
  background-image: url(../images/about/recruit-bg.webp);
  width: 100%;
  height: 39.8rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
}
@media screen and (max-width: 767px) {
	.recruit {
	  height: 100%;
	  padding-top: 5rem;
	  padding-bottom: 3rem;
    background-size: cover;
	  background-image: url(../images/about/recruit-bg-sp.webp);
	}
}

.recruit__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recruit__sub-title {
  margin-top: 1.3333333333rem;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7;
  color: #fff;
  text-decoration: underline;
  text-align: center;
}
@media screen and (max-width: 767px) {
	.recruit__sub-title {
		font-size: 1.2rem;
	}
}

.recruit__text {
  margin-top: 1.3333333333rem;
  font-size: 1.1333333333rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
	.recruit__text {
		font-size: 1rem;
	}
}

.recruit__tag {
  background-color: #fff;
  padding: 0.3333333333rem 1.3333333333rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #4f5d42;
  margin-top: 2rem;
}

.recruit__button {
  margin-top: 2rem;
}

.service {
  overflow: hidden;
}

.services__items {
  margin-top: 2.8666666667rem;
}

.services__contents {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .services__contents {
    margin-top: 4rem;
  }
}

.services__title {
  display: flex;
  align-items: center;
  gap: 6.6666666667rem;
}
@media screen and (max-width: 767px) {
  .services__title {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

.services__title h3 {
  padding-left: 2.3333333333rem;
  font-size: 2.1333333333rem;
  font-weight: 500;
  color: #3a3938;
  position: relative;
}
@media screen and (max-width: 767px) {
  .services__title h3 {
    padding-left: 1.4666666667rem;
    font-size: 1.4rem;
  }
}

.services__title h3::before {
  position: absolute;
  content: "";
  width: 0.6666666667rem;
  height: 3.0666666667rem;
  top: 0;
  left: 0;
  background-color: #8a9174;
}
@media screen and (max-width: 767px) {
  .services__title h3::before {
    width: 0.4666666667rem;
    height: 2.3333333333rem;
  }
}

.services__title p {
  font-size: 1.6rem;
  font-weight: 500;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .services__title p {
    font-size: 1.1rem;
  }
}

.services__buy-text {
  margin-top: 3.3333333333rem;
}
@media screen and (max-width: 767px) {
  .services__buy-text {
    margin-top: 1.3333333333rem;
  }
}

.services__buy-item {
  margin-top: 3.3333333333rem;
  display: flex;
  align-items: center;
  gap: 2.6666666667rem;
}
@media screen and (max-width: 767px) {
  .services__buy-item {
    margin-top: 1.3333333333rem;
    flex-direction: column;
    gap: 1.3333333333rem;
  }
}

.services__byu-text-body {
  width: 100%;
  max-width: 44rem;
}

.services__byu-text-body h4,
.services__renovation-sub-title,
.services__buy-reno-sub-title {
  padding-left: 1.6666666667rem;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #3a3938;
  position: relative;
}
@media screen and (max-width: 767px) {
  .services__byu-text-body h4,
  .services__renovation-sub-title,
  .services__buy-reno-sub-title {
    margin-top: initial;
    font-size: 1.3333333333rem;
  }
}

.services__byu-text-body h4::before,
.services__renovation-sub-title::before,
.services__buy-reno-sub-title::before {
  position: absolute;
  content: "";
  width: 0.6666666667rem;
  height: 0.6666666667rem;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #8a9174;
}

.services__byu-text-body p {
  margin-top: 1.3333333333rem;
}
@media screen and (max-width: 767px) {
  .services__byu-text-body p {
    margin-top: 0.6666666667rem;
  }
}

.services__buy-img {
  width: 100%;
  max-width: 26.6666666667rem;
}
@media screen and (max-width: 767px) {
  .services__buy-img {
    max-width: 40rem;
  }
}

.services__buy-img img {
  width: 100%;
  aspect-ratio: 400/300;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .services__buy-img img {
    aspect-ratio: 345/258;
  }
}

.services__renovation {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .services__renovation {
    margin-top: 4rem;
  }
}

.services__renovation-text-top {
  margin-top: 3.3333333333rem;
}
@media screen and (max-width: 767px) {
  .services__renovation-text-top {
    margin-top: 1rem;
  }
}

.services__renovation-text {
  margin-top: 1.3333333333rem;
}
@media screen and (max-width: 767px) {
  .services__renovation-text {
    margin-top: 1rem;
  }
}

.services__renovation-sub-title {
  margin-top: 3.3333333333rem;
}
@media screen and (max-width: 767px) {
  .services__renovation-sub-title {
    margin-top: 1rem;
  }
}

.services__renovation-items {
  display: flex;
  flex-direction: column;
  gap: 2.6666666667rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .services__renovation-items {
    gap: 1.6666666667rem;
    margin-top: 1rem;
  }
}

.services__renovation-items::after {
  position: absolute;
  content: "";
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  height: 21.4rem;
  background-color: #f3f4ed;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .services__renovation-items::after {
    display: none;
  }
}

.services__renovation-item-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .services__renovation-item-top {
    flex-direction: column;
    gap: 0.6666666667rem;
    justify-content: center;
  }
}

.services__renovation-item-under {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .services__renovation-item-under {
    flex-direction: column;
    gap: 0.6666666667rem;
    justify-content: center;
  }
}

.services__renovation-img {
  width: 100%;
  max-width: 26.6666666667rem;
}
@media screen and (max-width: 767px) {
  .services__renovation-img {
    max-width: 40rem;
  }
}

.services__renovation-img img {
  width: 100%;
  aspect-ratio: 400/266;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .services__renovation-img img {
    aspect-ratio: 344/229;
  }
}

.services__buy-reno {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .services__buy-reno {
    margin-top: 4rem;
  }
}

.services__buy-reno-text {
  margin-top: 3.3333333333rem;
}
@media screen and (max-width: 767px) {
  .services__buy-reno-text {
    margin-top: 2rem;
  }
}

.services__buy-reno-items {
  margin-top: 3.3333333333rem;
  display: flex;
  align-items: center;
  gap: 2.6666666667rem;
}
@media screen and (max-width: 767px) {
  .services__buy-reno-items {
    margin-top: 2rem;
    flex-direction: column;
    gap: 2rem;
  }
}

.services__buy-reno-item-text {
  margin-top: 1.3333333333rem;
}
@media screen and (max-width: 767px) {
  .services__buy-reno-item-text {
    margin-top: 0.6666666667rem;
  }
}

.services__buy-reno-img-list {
  margin-top: 3.3333333333rem;
  display: flex;
  gap: 3.0666666667rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .services__buy-reno-img-list {
    flex-direction: column;
    margin-top: 2rem;
    gap: 1rem;
  }
}

.services__buy-reno-img {
  width: 100%;
  max-width: 22.4rem;
}
@media screen and (max-width: 767px) {
  .services__buy-reno-img {
    max-width: 40rem;
  }
}

.services__buy-reno-img img {
  width: 100%;
  aspect-ratio: 336/270;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .services__buy-reno-img img {
    aspect-ratio: 345/270;
  }
}

.services__sale {
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .services__sale {
    margin-top: 4rem;
  }
}

.services__sale-text-top {
  margin-top: 3.3333333333rem;
}
@media screen and (max-width: 767px) {
  .services__sale-text-top {
    margin-top: 1.3333333333rem;
  }
}

.services__sale-text-under {
  margin-top: 3.3333333333rem;
}
@media screen and (max-width: 767px) {
  .services__sale-text-under {
    margin-top: 1rem;
  }
}

.sns {
  background-image: url(../images/common/sns-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.sns__items {
  margin-top: 3.3333333333rem;
  display: grid;
  grid-template-columns: repeat(4, auto);
  align-items: center;
  justify-content: center;
  gap: 1.3333333333rem;
}
@media screen and (max-width: 767px) {
  .sns__items {
    grid-template-columns: repeat(2, auto);
    margin-top: 2rem;
    gap: 1rem;
  }
}

.sns__item a {
  display: flex;
  align-items: center;
  padding-left: 1.6666666667rem;
  width: 15.3333333333rem;
  height: 6rem;
  text-align: center;
  border: 2px solid #8a9174;
  font-size: 1.6rem;
  font-weight: 500;
  color: #8a9174;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .sns__item a {
    width: 11rem;
    height: 4rem;
    font-size: 1rem;
    padding-left: 0.9rem;
  }
}

.sns__item a img {
  width: 3.2rem;
  margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .sns__item a img {
    width: 2.3rem;
  }
}

.sns__item a:hover {
  background-color: #8a9174;
  color: #fff;
  opacity: 1;
}

.staff {
  background-color: #f3f4ed;
}

.staff__items {
  margin-top: 3.3333333333rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 3.6666666667rem;
       column-gap: 3.6666666667rem;
  row-gap: 3.3333333333rem;
}
@media screen and (max-width: 767px) {
  .staff__items {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2rem;
    margin-top: 1.6666666667rem;
  }
}

.staff__item {
  border: 2px solid #8a9174;
  background-color: #8a9174;
  width: 22rem;
}

.staff__card-img {
  width: 100%;
  max-width: 22rem;
}

.staff__card-img img {
  width: 100%;
  aspect-ratio: 330/330;
  -o-object-fit: cover;
     object-fit: cover;
}

.staff__card-text-body {
  display: flex;
  flex-direction: column;
  padding: 0.6666666667rem;
  align-items: center;
  gap: 1rem;
}

.staff__card-name {
  font-size: 1.3333333333rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #fff;
}

.staff__button {
  padding: 0.6666666667rem 2rem;
  font-size: 1.1333333333rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
  border-radius: 2rem;
  border: 2px solid #fff;
}

.staff-detail__content {
  margin-top: 10.6666666667rem;
}

.staff-detail__title {
  margin-bottom: 3.3333333333rem;
}
@media screen and (max-width: 767px) {
  .staff-detail__title {
    margin-bottom: 1.3333333333rem;
  }
}

.wp-block-heading {
  margin-top: 2.6666666667rem;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #3a3938;
  padding-left: 1.6666666667rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wp-block-heading {
    padding-left: 1.3333333333rem;
    font-size: 1.1333333333rem;
    margin-top: 1.6666666667rem;
    margin-bottom: 0.6666666667rem;
  }
}

.wp-block-heading::before {
  position: absolute;
  content: "";
  width: 0.6666666667rem;
  height: 0.6666666667rem;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: #8a9174;
}

.strengths {
  background-color: #f3f4ed;
  position: relative;
  z-index: -2;
}

.strengths__sub-title {
  margin-top: 2.8666666667rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .strengths__sub-title {
    margin-top: 4.9333333333rem;
    font-size: 1.3333333333rem;
  }
}

.strengths__text {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .strengths__text {
    margin-top: 1rem;
  }
}

.strengths__items {
  margin-top: 3.3333333333rem;
  display: flex;
  flex-direction: column;
  gap: 2.6666666667rem;
}
@media screen and (max-width: 767px) {
  .strengths__items {
    margin-top: 2rem;
    gap: 1.3333333333rem;
  }
}

.strengths__item {
  display: flex;
  align-items: center;
  padding: 2rem 4rem;
  background-color: #fff;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .strengths__item {
    flex-direction: column;
    gap: 0.6666666667rem;
    padding: 1.3333333333rem 1rem;
  }
}

.strengths__item:nth-of-type(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .strengths__item:nth-of-type(even) {
    flex-direction: column;
  }
}

.strengths__item-title-body {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .strengths__item-title-body {
    gap: 1.3333333333rem;
  }
}

.strengths__number {
  font-size: 5.3333333333rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #8a9174;
}
@media screen and (max-width: 767px) {
  .strengths__number {
    font-size: 4rem;
  }
}

.strengths__item-title {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .strengths__item-title {
    font-size: 1.3333333333rem;
  }
}

.strengths__item-text {
  margin-top: 1.3333333333rem;
}
@media screen and (max-width: 767px) {
  .strengths__item-text {
    margin-top: 0.6666666667rem;
  }
}

.strengths__item-img {
  width: 100%;
  max-width: 16.6666666667rem;
}
@media screen and (max-width: 767px) {
  .strengths__item-img {
    max-width: 13.3333333333rem;
  }
}

.strengths__item-img img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-page-fv {
  background-image: url(../images/about/about-mv.webp);
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 26.6666666667rem;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .sub-page-fv {
    background-image: url(../images/about/about-mv-sp-img.webp);
    height: 16rem;
  }
}

.sub-page-fv.sub-page-fv--service {
  background-image: url(../images/service/service-mv.webp);
}
@media screen and (max-width: 767px) {
  .sub-page-fv.sub-page-fv--service {
    background-image: url(../images/service/service-mv-sp.webp);
  }
}

.sub-page-fv.sub-page-fv--works {
  background-image: url(../images/contact/contact-mv.webp);
}
@media screen and (max-width: 767px) {
  .sub-page-fv.sub-page-fv--works {
    background-image: url(../images/contact/contact-mv-sp.webp);
  }
}

.sub-page-fv.sub-page-fv--event {
  background-image: url(../images/event/event-mv.webp);
}
@media screen and (max-width: 767px) {
  .sub-page-fv.sub-page-fv--event {
    background-image: url(../images/event/event-mv-sp.webp);
  }
}

.sub-page-fv.sub-page-fv--news {
  background-image: url(../images/news/news-mv.webp);
}
@media screen and (max-width: 767px) {
  .sub-page-fv.sub-page-fv--news {
    background-image: url(../images/news/news-mv-sp.webp);
  }
}

.sub-page-fv.sub-page-fv--voice {
  background-image: url(../images/review/review-mv.webp);
}
@media screen and (max-width: 767px) {
  .sub-page-fv.sub-page-fv--voice {
    background-image: url(../images/review/review-mv-sp.webp);
  }
}

.sub-page-fv.sub-page-fv--contact {
  background-image: url(../images/work/work-mv.webp);
}
@media screen and (max-width: 767px) {
  .sub-page-fv.sub-page-fv--contact {
    background-image: url(../images/work/work-mv-sp.webp);
  }
}

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

.sub-page-fv__title h1 {
  position: absolute;
  bottom: -5%;
  left: 0;
  font-size: 13.3333333333rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: capitalize;
  letter-spacing: -0.02em;
  font-weight: 300;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .sub-page-fv__title h1 {
    font-size: 4.6666666667rem;
    bottom: -3%;
    left: 1rem;
  }
}

.sub-page-fv__sub-title p {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15%;
}
@media screen and (max-width: 767px) {
  .sub-page-fv__sub-title p {
    font-size: 1.6rem;
    right: 5%;
    padding-left: 1.4rem;
  }
}

.top-about {
  background-image: url(../images/top/top-about-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .top-about {
    background-image: url(../images/top/top-about-bg-sp.webp);
  }
}

.top-about__contents {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-about__contents {
    flex-direction: column;
    align-items: flex-start;
  }
}

.top-about__sub-title {
  font-size: 2.1333333333rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top-about__sub-title {
    font-size: 1.2rem;
    margin-top: 1.5333333333rem;
  }
}

.top-about__text {
  margin-top: 2.6666666667rem;
  font-size: 1.3333333333rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top-about__text {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.top-about__button {
  margin-top: 5.3333333333rem;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .top-about__button {
    margin-top: 1rem;
  }
}

.swiper {
  margin-top: 2.6666666667rem;
  clip-path: inset(0% -50vw 0% 0%);
  position: relative;
}
@media screen and (max-width: 767px) {
	.swiper {
	  margin-top: 0;
	}
}


.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-event-button-body {
  position: absolute;
  left: 2%;
  z-index: 10;
  width: 70rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
  bottom: 18.6666666667rem;
}
@media screen and (max-width: 767px) {
  .top-event-button-body {
    max-width: 21.3333333333rem;
    left: 3.5%;
    bottom: 22rem;
  }
}

.top-event-button {
  pointer-events: all;
  width: 5.9333333333rem;
  height: 5.9333333333rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background-color: #D9D9D9;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-event-button {
    width: 2.6666666667rem;
    height: 2.6666666667rem;
  }
}

.top-event-button.swiper-button-next::after {
  position: absolute;
  top: 31%;
  left: 26%;
  content: "";
  background-image: url(../images/common/top-event-arrow-prev.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 2.6666666667rem;
  height: 2.5333333333rem;
}
@media screen and (max-width: 767px) {
  .top-event-button.swiper-button-next::after {
    width: 1.2rem;
    height: 1.1333333333rem;
  }
}

.top-event-button.swiper-button-prev::after {
  position: absolute;
  top: 31%;
  left: 26%;
  content: "";
  background-image: url(../images/common/top-event-arrow-next.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 2.6666666667rem;
  height: 2.5333333333rem;
}
@media screen and (max-width: 767px) {
  .top-event-button.swiper-button-prev::after {
    width: 1.2rem;
    height: 1.1333333333rem;
  }
}

.event__button {
  margin-top: 4.6666666667rem;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
	.event__button {
	  margin-top: 2rem;
	}
}


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

.top-method__sub-title {
  margin-top: 2.6666666667rem;
  font-size: 2.1333333333rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .top-method__sub-title {
    font-size: 1.2rem;
    margin-top: 2rem;
  }
}

.top-method__text {
  margin-top: 2rem;
  font-size: 1.3333333333rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.7;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .top-method__text {
    font-size: 0.9rem;
    margin-top: 0.6666666667rem;
  }
}

.method__items {
  margin-top: 2.6666666667rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 2rem;
  -moz-column-gap: 3.6666666667rem;
       column-gap: 3.6666666667rem;
}
@media screen and (max-width: 767px) {
  .method__items {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 1.3333333333rem;
    margin-top: 2rem;
  }
}

.method__img {
  width: 100%;
  max-width: 22rem;
}
@media screen and (max-width: 767px) {
	.method__imgs.md-show {
		display:flex;
		justify-content:center;
	}
	.method__img {
		width: 55%;
	}
}

.top-news__contents {
  margin-top: 2.6666666667rem;
}

.top-news__items {
	margin-top: 2rem;
}
.top-news__item {
  width: 100%;
  padding: 1.8rem 2rem;
  border-bottom: 1px solid #D9D9D9;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .top-news__item {
    padding: 1.3333333333rem 1rem;
  }
}

.top-news__link {
  display: flex;
  gap: 3.4666666667rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top-news__link {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

.top-news__item:hover {
  background-color: #f3f4ed;
  opacity: 1;
}

.top-news__link-date {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .top-news__link-date {
    font-size: 0.8rem;
  }
}

.top-news__link-tag {
  padding: 8px 10px;
  background-color: #4f5d42;
  border-radius: 0.1333333333rem;
  color: #fff;
  font-size: 0.9333333333rem;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .top-news__link-tag {
    font-size: 0.7rem;
	line-height: 18px;
  }
}

.top-news__link-tag.top-news__link-tag-2 {
  background-color: #8a9174;
}

.top-news__link-text {
  font-size: 1.1333333333rem;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .top-news__link-text {
    font-size: 0.9rem;
  }
}

.top-news__button {
  display: flex;
  justify-content: flex-end;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
	.top-news__button {
	  margin-top: 2rem;
	}
}


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

.top-property__contents {
  margin-top: 4rem;
  display: flex;
  gap: 3.3333333333rem;
}
@media screen and (max-width: 767px) {
  .top-property__contents {
    flex-direction: column;
    gap: 2rem;
	margin-top: 2rem;
  }
}

.sidebar {
  width: 16.7333333333rem;
  height: 100%;
  padding: 1.3333333333rem;
  border: 2px solid #8a9174;
}
@media screen and (max-width: 767px) {
  .sidebar {
    width: 23rem;
	font-size: 0.9rem;
  }
}

.sidebar h4 {
  font-size: 16px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
	.sidebar h4 {
	  font-size: 14px;
	}
}

.sidebar-group {
  display: flex;
  gap: 1.6666666667rem;
}

.sidebar-group:not(:last-child) {
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
	.sidebar-group:not(:last-child) {
	  margin-bottom: 0.5rem;
	}
}

.sidebar-group h4 {
  width: 6.6666666667rem;
  border-right: 1px solid #D9D9D9;
}
@media screen and (max-width: 767px) {
  .sidebar-group h4 {
    width: 8rem;
  }
}

.sidebar-group ul {
  margin: 0;
  padding: 0;
}

.sidebar-group li {
  margin-bottom: 6px;
  cursor: pointer;
  list-style: none;
}

.top-property__listings {
  flex: 1;
}

.top-property__items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 53.2666666667rem;
}
@media screen and (max-width: 767px) {
  .top-property__items {
    overflow: hidden;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content:center;
	gap:15px;
  }
}

.top-property__item a {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .top-property__item a {
    flex-direction: column;
    gap: 1.3333333333rem;
    width: 100%;
    max-width: 18.6666666667rem;
	padding-bottom: 0px;
  }
}

.top-property__item:not(:last-child) {
  border-bottom: 0.1333333333rem solid #D9D9D9;
}
@media screen and (max-width: 767px) {
  .top-property__item:not(:last-child) {
    border-bottom: none;
  }
   .top-property__item {
    width: 47%;
  }
}


.top-property__item img {
  width: 100%;
  max-width: 13.3333333333rem;
  height: 13.3333333333rem;
  aspect-ratio: 200/200;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .top-property__item img {
	  width:100%;
	  height:100%;
  }
}

.top-property__info {
  flex: 1;
  width: 100%;
}

.top-property__tags {
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
	.top-property__tags {
		 display: flex;
		flex-wrap: wrap;
		gap: 5px;
	}
}

.top-property__tag {
  display: inline-block;
  color: #3a3938;
  font-size: 0.9333333333rem;
  padding: 0.4666666667rem 0.6666666667rem;
  border-radius: 0.3333333333rem;
  margin-right: 4px;
  border: 1px solid #8a9174;
}
@media screen and (max-width: 767px) {
  .top-property__tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
	margin-right: 0px;
  }
}

.top-property__item-title {
  font-weight: 500;
  margin-top: 1.5rem;
  font-size: 1.5333333333rem;
}
@media screen and (max-width: 1299px) {
  .top-property__item-title {
    margin-top: 1rem;
    font-size: 1.1333333333rem;
  }
}
@media screen and (max-width: 767px) {
  .top-property__item-title {
    margin-top: 0.6rem;
    font-size: 0.9rem;
  }
}


.top-property__details {
  margin-top: 2.6rem;
  font-size: 1.1333333333rem;
  color: #696969;
}
@media screen and (max-width: 1299px) {
  .top-property__details {
    margin-top: 1rem;
    font-size: 0.9333333333rem;
  }
}

.top-property__divider {
  margin-top: 1.5rem;
  font-size: 1.1333333333rem;
  color: #696969;
  font-weight: 500;
}

.top-property__button {
  margin-top: 5.3333333333rem;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
	.top-property__button {
	  margin-top: 0.5rem;
	}
}

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

.top-service__sub-title {
  margin-top: 2.6666666667rem;
  font-size: 2.1333333333rem;
  font-weight: 500;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .top-service__sub-title {
    margin-top: 2rem;
    font-size: 1.2rem;
  }
}

.top-service__text {
  margin-top: 2rem;
  font-size: 1.3333333333rem;
  font-weight: 400;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
  .top-service__text {
    font-size: 0.9rem;
	margin-top:1rem;
  }
}

.top-service__items {
  margin-top: 4.6666666667rem;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .top-service__items {
    margin-top: 2rem;
    grid-template-columns: repeat(1, auto);
    gap: 1rem;
    justify-content: center;
  }
}

.top-service__button {
  margin-top: 4rem;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
	.top-service__button {
	  margin-top: 2rem;
	}
}


.top-voice__items {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
	.top-voice__items {
	  	flex-wrap:wrap;
		flex-direction: row;
		justify-content:center;
		margin-top: 2rem;
	}
}

.top-voice__item {
  padding: 2rem 1.3333333333rem 2rem;
  border-bottom: 2px solid #D9D9D9;
  transition: all 0.4s ease;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top-voice__item {
    border-bottom: none;
    padding: 0;
	width: 47%;
  }
}

.top-voice__item:hover {
  background-color: #f3f4ed;
  opacity: 1;
}

.top-voice__item a {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .top-voice__item a {
    flex-direction: column;
    gap: 0.6666666667rem;
    align-items: center;
  }
}

.top-voice__item a:hover {
  opacity: 1;
}

.top-voice__item-img {
  width: 100%;
  max-width: 17.3333333333rem;
}
@media screen and (max-width: 767px) {
  .top-voice__item-img {
    max-width: 18.6666666667rem;
  }
}

.top-voice__item-img img {
  width: 17.3333333333rem;
  height: 17.3333333333rem;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
	.top-voice__item-img img {
		height:100%;
		width:100%;
	}
}

.top-voice__item-body {
  margin-top: 2.9333333333rem;
}
@media screen and (max-width: 767px) {
  .top-voice__item-body {
    margin-top: initial;
    width: 100%;
    max-width: 18.6666666667rem;
  }
}

.top-voice__item-title {
  font-size: 1.5333333333rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .top-voice__item-title {
    font-size: 0.9rem;
  }
}

.top-voice__item-text {
  margin-top: 2rem;
  font-size: 1.1333333333rem;
  font-weight: 500;
  line-height: 1.7;
  color: #696969;
}
@media screen and (max-width: 767px) {
  .top-voice__item-text {
    margin-top: 0.3333333333rem;
    font-size: 0.8rem;
  }
}

.top-voice__button {
  margin-top: 5.3333333333rem;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
	.top-voice__button {
	  margin-top: 2rem;
	}
}


.top-work__items-top {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 2.6666666667rem;
}
@media screen and (max-width: 767px) {
  .top-work__items-top {
    gap: 0.6rem;
    margin-top: 2rem;
  }
}

.item1 {
  width: 100%;
}

.top-work__items {
  margin-top: 2.6666666667rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6666666667rem;
}
@media screen and (max-width: 767px) {
  .top-work__items {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2rem;
	  gap:0.6rem;
  }
}

.top-work__item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-works__button {
  margin-top: 5.3333333333rem;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .top-works__button {
    margin-top: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .top-voice__item-img.voice__item-img {
    max-width: 23rem;
  }
}

@media screen and (max-width: 767px) {
  .top-voice__item-img.voice__item-img img {
    width: 100%;
    height: 100%;	  
  }
}

@media screen and (max-width: 767px) {
  .top-voice__item-body.voice__item-body {
    margin-top: 0.6666666667rem;
    max-width: 23rem;
  }
}

.top-voice__item-title.voice__item-title {
  font-size: 1.3333333333rem;
}
@media screen and (max-width: 767px) {
	.top-voice__item-title.voice__item-title {
	  font-size: 0.9rem;
	}
}

.top-voice__item-text.voice__item-text {
  margin-top: 0.6666666667rem;
  font-size: 1rem;
}

.voice__item-name {
  margin-top: 2rem;
  font-size: 1.1333333333rem;
  font-weight: 500;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
	.top-voice__item-text.voice__item-text {
	  font-size: 0.8rem;
	}
  .voice__item-name {
    margin-top: 0.6666666667rem;
	font-size: 0.8rem;
  }
}

.work-category__inner {
  display: flex;
  gap: 1.3333333333rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .work-category__inner {
    gap: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .inner.work-category__inner {
    padding: 0 0.8333333333rem;
	flex-wrap: wrap;
  }
}

.work-category__title {
  font-size: 1.0666666667rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .work-category__title {
	width: 100%;
	  text-align:center;
  }
}

.work-category__items {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .work-category__items {
	flex-wrap: wrap;
    gap: 1rem;
  }
}

.work-category__item span {
  padding: 8px 10px;
  font-size: 1.0666666667rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7;
  border-radius: 0.1333333333rem;
  text-align: center;
  color: white;
  background-color: #4f5d42;
}
@media screen and (max-width: 767px) {
  .work-category__item span {
    font-size: 0.7333333333rem;
  }
  .work-category__item:first-child {
	width: 100%;
	text-align:center;
  }
}

.work__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 1.6666666667rem;
       column-gap: 1.6666666667rem;
  row-gap: 1.3333333333rem;
}
@media screen and (max-width: 767px) {
  .work__items {
    grid-template-columns: repeat(1, 1fr);
  }
}

.work__item {
  padding: 1rem 1rem 3.0666666667rem;
  transition: all 0.4s ease;
}

.work__item:hover {
  opacity: 1;
  background-color: #f3f4ed;
}

.work__item a:hover {
  opacity: 1;
}
@media screen and (max-width: 767px) {
	.work__item {
		padding: 1rem 1rem 0.3rem;
	}
}

.work__img {
  width: 100%;
  max-width: 21.3333333333rem;
}

.work__img img {
  width: 100%;
  aspect-ratio: 320/220;
  -o-object-fit: cover;
     object-fit: cover;
}

.work__text-body {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
	.work__text-body {
	  margin-top: 0;
	}
}


.work__text-top {
  font-size: 0.8666666667rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #696969;
}

.work__text-title {
  margin-top: 0.6666666667rem;
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.7;
  color: #3a3938;
}
@media screen and (max-width: 767px) {
	.work__text-title {
	  font-size: 0.8rem;
	}
}


.work-detail__content {
  margin-top: 4rem;
}

.work-detail__title {
  font-size: 2.1333333333rem;
  font-weight: 500;
  letter-spacing: 0;
  color: #3a3938;
  padding-left: 1.8rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .work-detail__title {
    font-size: 1.6rem;
    padding-left: 1.4666666667rem;
  }
}

.work-detail__title::before {
  position: absolute;
  content: "";
  width: 0.4666666667rem;
  height: 2.1333333333rem;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-color: #8a9174;
}

.wp-block-table {
  margin-top: 2.6666666667rem;
  width: 100%;
  max-width: 40rem;
}

.work-detail__content p {
  margin-top: 2rem;
  font-size: 1.1333333333rem;
  margin-bottom: 2.6666666667rem;
}
@media screen and (max-width: 767px) {
  .work-detail__content p {
    font-size: 1rem;
  }
}

figure.wp-block-image {
  margin-top: 2.6666666667rem;
}

.related-posts {
  margin-top: 6rem;
}

.related-posts__items {
  margin-top: 2.6666666667rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.6666666667rem;
  margin-bottom: 6rem;
}

.wp-block-table td,
.wp-block-table th {
  border-top: none;
  border-left: none;
  border-right: none;
}

.related-posts__item {
  padding: 1rem 1rem 3.0666666667rem;
  transition: all 0.4s ease;
  width: 23.3333333333rem;
}

.related-posts__item:hover {
  opacity: 1;
  background-color: #f3f4ed;
}

.related-posts__item a:hover {
  opacity: 1;
}

.related-posts__img {
  width: 100%;
  max-width: 21.3333333333rem;
}

.related-posts__img img {
  width: 100%;
  aspect-ratio: 320/220;
  -o-object-fit: cover;
     object-fit: cover;
}

.related-posts__text-body {
  margin-top: 1rem;
}

.work__text-top {
  font-size: 0.8666666667rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  color: #696969;
}

.related-posts__title {
  margin-top: 0.6666666667rem;
  font-size: 1.0666666667rem;
  letter-spacing: 0;
  line-height: 1.7;
  color: #3a3938;
}

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

.md-show {
  display: none;
}
@media screen and (max-width: 767px) {
  .md-show {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */


@media screen and (max-height: 800px) and (min-width: 1240px) {
  .method__items {
    row-gap: 0;
  }
  .method__item {
    height: 17rem;
    padding: 1rem;
  }
  .method__button {
    margin-top: 0;
  }
  .method__img {
    max-width: 20rem;
    margin: auto;
  }
}

.privacy-items .privacy-item a {
  width: 20rem;
  padding: 1.1rem;
}
.privacy__contents .privacy-number::before {
  display: none;
}
@media screen and (max-width: 767px) {
  .privacy-items {
    grid-template-columns: repeat(1, auto);  
  }
}

.header__content {
  display: flex;
  gap: 1rem;
}
.header__button-items {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.header__button-item a {
  padding: 0.6rem 2rem;
  width: 10.8rem;
  text-align: center;
  border-radius: 2rem;
  background-color: #8a9174;
  border: 3px solid #8a9174;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  transition: all 0.4s ease;
}
.header__button-item a:hover {
  color: #8a9174;
  background-color: transparent;
}
.header__button-item:last-child a {
  background-color: #4f5d42;
  border: 3px solid #4f5d42;
}
.header__button-item:last-child a:hover {
  color: #4f5d42;
  background-color: transparent;
}
@media screen and (max-width: 1299px) {

}
@media screen and (max-width: 1230px) {
  .hamburger.md-show {
    display: block;
  }
  .header .md-none {
    display: none;
  }
  .hamburger {
    top: 2.3rem;
  }
  .hamburger.is-open {
    top: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .hamburger {
    top: 1.3333333333rem;
  }
  .hamburger.is-open {
    top: 1.6rem;
  }
  .header__button-item a {
    padding: 0.5333333333rem 1.3333333333rem;
    width: 8.6666666667rem;
    font-size: 1rem;
  }
}

.footer__button {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer__button a {
  width: auto;
}
@media screen and (max-width: 767px) {
  .footer__contact {
    flex-direction: column;
  }
  .footer__button {
    margin-top: 2rem;
    flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
	.event__link {
		height:300px;
		background-color: white;
		display:flex;
		align-items:center;
	}
}
@media screen and (max-width: 767px) {
	.method__button.method__button--sns a {
		font-size: 0.8rem;
	}
	.top-voice__items {
		gap: 15px;
	}
}

/* 物件情報の詳細 */
.property-template-default .wp-block-table {
	max-width: 100%;
}
.property-template-default .wp-block-table td, .wp-block-table th {
	border: 1px solid;
}
.property-template-default .wp-block-cover {
	margin-bottom: 1.8em;
}
.property-template-default .wp-block-cover .wp-block-table {
   width: 100%;
}
.property-template-default .wp-block-heading::before,
.property-template-default .wp-block-button.go-contact {
	display: none;
}

/* イベントの詳細 */
.event-template-default .wp-block-button.go-contact {
	display: none;
}

/* 記事用のお問い合わせフォーム */
div#contact {
	padding-top: 80px;
	display: flex;
	justify-content: center;
}
/* .eventform {
	display: block;
	border-radius: 8px;
	padding: 27px 16px 0;
	margin: 24px auto;
	max-width:640px;
	background: rgb(196 133 6 / 15%);
} */
@media screen and (min-width: 768px) {
	.top-work__item img,
.top-work__item-top .item2 {
	width: 240px;
	height: 240px;
}
.top-work__items-top .top-work__item-top:first-child {
	width: 66%;
}
	.item1 {
		clip-path: inset(50px 0);
		margin-bottom: -50px;
	}
	.top-work__items-top {
		margin-bottom: 50px;
	}
}
@media screen and (min-width: 968px) {
.top-work__item img,
.top-work__item-top .item2 {
	width: 340px;
	height: 340px;
}
}

/* TOP */
.method__item {
	align-items:center;
	text-align:center;
}



/* バナー */
.top-banner-wrapper {
    max-width: 800px;   
	width: 70%;
    margin: auto;  
	margin-top: 80px;
    padding: 0 20px; 
    box-sizing: content-box;
}
.top-banner-wrapper a {
    display: block;
    transition: opacity 0.3s ease;
}
.top-banner-wrapper a:hover {
    opacity: 0.85;
}
.top-banner-wrapper img {
    width: 100%;        
    height: auto;
    display: block;
    vertical-align: bottom;
	aspect-ratio: 10 / 3; 
    object-fit: cover;    
    display: block;
}
@media screen and (max-width: 767px) {
	.top-banner-wrapper {
		margin-top: -40px;
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 500px) {
	.top-banner-wrapper {
		width: 90%;
	}
}