@charset "UTF-8";
/**
 * rclamp拡張版
 * - 文字サイズ・高さ・幅・paddingなどに使える
 * - デフォルトのビューポートは SP: 390px, PC: 1440px
 */
/* clamp() Safari バグ対策 */
* {
  min-height: 0vw;
}

body {
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6;
  color: #333;
}

.header {
  position: fixed;
  width: 100%;
  height: 80px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
}
@media (max-width: 767px) {
  .header {
    height: 64px;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  padding-inline: 20px;
}

.inner {
  width: 1040px;
  max-width: 100%;
  margin: 0 auto;
}

.header__logo {
  width: 140px;
  padding-block: 22px;
}
@media (max-width: 767px) {
  .header__logo {
    width: 114px;
    display: block;
    padding-block: 17px;
  }
}
.header__nav {
  flex-grow: 1;
  display: flex;
  gap: 30px;
  align-items: center;
  margin-left: 32px;
  margin-right: 10px;
}
@media (min-width: 768px) and (max-width: 1039px) {
  .header__nav {
    gap: 15px;
    justify-content: center;
  }
}
@media (max-width: 850px) {
  .header__nav {
    display: none;
  }
}
.header__nav li {
  position: relative;
}
.header__nav li::before {
  content: "";
  width: 1px;
  height: 36px;
  background: #333;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header__nav li a {
  padding-left: 30px;
  border-left: 1px solid #333;
  display: block;
  line-height: 1;
  text-align: center;
}
.header__nav li a span {
  color: #b69b04;
  font-family: "Lora", serif;
  display: block;
  margin-top: 7px;
  font-size: 12px;
  line-height: 1;
}
@media (min-width: 768px) and (max-width: 1039px) {
  .header__nav li a {
    padding-left: 15px;
    font-size: 14px;
  }
}

.header__contact {
  width: 168px;
  margin-left: auto;
}
@media (min-width: 768px) and (max-width: 1039px) {
  .header__contact {
    width: 150px;
  }
}
@media (max-width: 850px) {
  .header__contact {
    display: none;
  }
}
.header__contact a {
  display: block;
  line-height: 1;
  height: 80px;
  padding-top: 24px;
  background-color: #31452d;
  text-align: center;
  color: #fff;
}
@media (min-width: 768px) and (max-width: 1039px) {
  .header__contact a {
    font-size: 14px;
  }
}
.header__contact a span {
  color: #b69b04;
  font-family: "Lora", serif;
  display: block;
  line-height: 1;
  margin-top: 7px;
  font-size: 12px;
}

.drawer__icon {
  position: fixed;
  z-index: 102;
  top: 27px;
  right: 20px;
  width: 24px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 849px) {
  .drawer__icon {
    display: none;
  }
}

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

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

.drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 290px;
  height: 120vh;
  background: #31452d;
  overflow-y: scroll;
  translate: 101%;
  transition: translate 0.3s ease;
}
.drawer.js-show {
  translate: 0;
}

.drawer__body {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 88px 40px;
}

.drawer__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 15px;
}
.drawer__list li {
  width: 100%;
}
.drawer__list li a {
  display: block;
  font-size: 16px;
  color: #ffffff;
  padding: 24px 0;
  border-bottom: 1px solid #fff;
  text-align: center;
}
.drawer__list li a:first-child a {
  padding-top: 0;
}

.drawer__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 152px;
  height: 48px;
  background: #fff;
  border-radius: 100vmax;
  color: #31452d;
  font-size: 16px;
  line-height: normal;
  margin-top: 40px;
  margin-inline: auto;
}

.main__visual {
  width: 100%;
  height: 900px;
  background: url(../img/image-top-pc.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .main__visual {
    height: 812px;
  }
}

.main-visual__inner {
  height: inherit;
  position: relative;
}

.main-visual__text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.main-visual__text img.is-pc {
  width: 960px;
}
@media (max-width: 767px) {
  .main-visual__text img.is-pc {
    display: none;
  }
}
.main-visual__text img.is-sp {
  display: none;
}
@media (max-width: 767px) {
  .main-visual__text img.is-sp {
    display: block;
  }
}

.concept {
  padding-top: 108px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .concept {
    padding-top: 80px;
    padding-bottom: 0;
  }
}

.section__title {
  font-size: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  line-height: 1;
}
@media (max-width: 767px) {
  .section__title {
    font-size: 24px;
    gap: 8px;
  }
}
.section__title span {
  display: inline-block;
  font-size: 16px;
  font-family: "Lora", serif;
  padding-bottom: 16px;
  position: relative;
}
@media (max-width: 767px) {
  .section__title span {
    font-size: 14px;
    padding-bottom: 15px;
  }
}
.section__title span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 100%;
  background: #b69b04;
}

.concept__content {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 767px) {
  .concept__content {
    margin-top: 24px;
    flex-direction: column;
    position: static;
  }
}

.concept__image {
  width: 77%;
}
@media (max-width: 767px) {
  .concept__image {
    width: 100%;
    aspect-ratio: 375/360;
  }
}
.concept__image img {
  width: 100%;
  height: auto;
  display: block;
}

.concept__massage {
  width: 44%;
  background-color: #31452d;
  padding: 65px 48px;
  color: #fff;
  position: absolute;
  top: 73%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  min-width: 500px;
}
@media (min-width: 768px) and (max-width: 1039px) {
  .concept__massage {
    padding: 40px 20px;
  }
}
@media (max-width: 767px) {
  .concept__massage {
    width: 100%;
    position: static;
    transform: none;
    top: auto;
    left: auto;
    padding: 57px 20px;
    min-width: auto;
  }
}

.concept__text {
  font-size: 24px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .concept__text {
    font-size: 20px;
    line-height: 1;
  }
}

.concept__lead {
  margin-top: 32px;
  font-size: 16px;
  line-height: 2.5;
}
@media (min-width: 768px) and (max-width: 1039px) {
  .concept__lead {
    margin-top: 25px;
    font-size: 16px;
    line-height: 2;
    letter-spacing: -0.03em;
  }
}

.concept__button {
  text-align: right;
}
@media (max-width: 767px) {
  .concept__button {
    margin-top: 24px;
  }
}

.link-btn {
  font-size: 16px;
  line-height: 0.8;
  margin-top: 32px;
  letter-spacing: -0.1em;
}
.link-btn span {
  margin-left: 12px;
}
.link-btn span img {
  width: 16px;
  height: 16px;
}

.works {
  padding-top: 120px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .works {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.works-list {
  position: relative;
  display: grid;
  gap: 67px 40px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  padding-bottom: 41px;
  padding-inline: 20px;
}
@media (max-width: 767px) {
  .works-list {
    margin-top: 24px;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 15px;
    padding-bottom: 40px;
  }
}

.works-list__inner {
  display: contents;
}

.works-list__bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 68vw;
  height: 638px;
  background-color: #eeead0;
  z-index: -1;
  margin-right: calc(50% - 50vw);
}
@media (max-width: 767px) {
  .works-list__bg {
    height: 508px;
    margin-right: -20px;
  }
}

.works-list__item-img {
  width: 100%;
  overflow: hidden;
}

.works-list__item-img img {
  width: 100%;
  aspect-ratio: 360/240;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.works-list__item-img img:hover {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .works-list__item-img img {
    aspect-ratio: 160/104;
  }
}

.works-list__item-content {
  margin-top: 25px;
  padding-left: 34px;
  position: relative;
}
@media (max-width: 767px) {
  .works-list__item-content {
    margin-top: 17px;
    padding-left: 20px;
  }
}
.works-list__item-content::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 144px;
  background: #333;
  top: -73px;
  left: 18px;
}
@media (max-width: 767px) {
  .works-list__item-content::before {
    width: 1px;
    height: 96px;
    top: -45px;
    left: 10px;
  }
}

.works-list__item-title {
  font-size: 24px;
  line-height: 1;
}
@media (max-width: 767px) {
  .works-list__item-title {
    font-size: 20px;
  }
}

.works-list__item-link {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .works-list__item-link {
    margin-top: 17px;
  }
}

.work__button {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .work__button {
    margin-top: 24px;
  }
}

.section__btn {
  width: 200px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #31452d;
  font-size: 16px;
  line-height: 1;
  color: #31452d;
  transition: transform 0.4s ease;
}
.section__btn:hover {
  background: #31452d;
  color: #fff;
}
@media (max-width: 767px) {
  .section__btn {
    width: 152px;
    height: 48px;
  }
}

.news {
  padding-top: 60px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .news {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.news-list {
  margin-top: 50px;
  padding-inline: 45px;
  display: flex;
  flex-direction: column;
  gap: 65px;
}
@media (max-width: 767px) {
  .news-list {
    margin-top: 20px;
    padding-inline: 20px;
    gap: 0;
  }
}

.news-list__item a {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .news-list__item a {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .news-list__item:last-child a {
    padding-bottom: 0;
    border-bottom: none;
  }
}
@media (max-width: 767px) {
  .news-list__item:first-child a {
    margin-top: 0;
  }
}
.news-list__item-meta {
  display: flex;
  align-items: center;
}
.news-list__item-date {
  font-family: "Lora", serif;
  line-height: 1;
  width: 110px;
}
@media (max-width: 767px) {
  .news-list__item-date {
    width: 65px;
    font-size: 14px;
  }
}

.news-list__item-category {
  width: 140px;
  font-family: "Lora", serif;
  line-height: 1;
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .news-list__item-category {
    width: 44px;
    margin-left: 24px;
  }
}
.news-list__item-category.type-2 {
  color: #b69b04;
}
.news-list__item-category::before, .news-list__item-category::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 56px;
  background-color: #000;
}
@media (max-width: 767px) {
  .news-list__item-category::before, .news-list__item-category::after {
    display: none;
  }
}
.news-list__item-category::before {
  left: 0;
}
.news-list__item-category::after {
  right: 0;
}

.news-list__item-title {
  line-height: 1;
  margin-left: 40px;
}
@media (max-width: 767px) {
  .news-list__item-title {
    margin-left: 0;
    line-height: 1.5;
    font-size: 16px;
    margin-top: 16px;
  }
}

.news__button {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.contact {
  padding-top: 120px;
  padding-bottom: 100px;
  background: #eeead0;
}
@media (max-width: 767px) {
  .contact {
    padding-top: 40px;
    padding-bottom: 0;
  }
}

.contact-list {
  display: flex;
  justify-content: space-between;
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
  margin-top: 32px;
}
@media (max-width: 820px) {
  .contact-list {
    display: none;
  }
}
.contact-list .contact-list__item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 27px 15px 22px;
}
.contact-list .contact-list__item img {
  display: block;
  margin-inline: auto;
}
.contact-list .contact-list__item .contact-list__item-title {
  margin-top: 18px;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.1em;
}
.contact-list .contact-list__item .contact-list__item-tel {
  margin-top: 24px;
  font-size: 25px;
  letter-spacing: -0.05em;
  color: #31452d;
}
.contact-list .contact-list__item .contact-list__item-time {
  font-size: 12px;
  letter-spacing: -0.1em;
  color: #31452d;
}
.contact-list .contact-list__item .contact__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.1em;
  max-width: 160px;
  height: 48px;
  margin-inline: auto;
  margin-top: 24px;
  transition: transform 0.4s ease;
}
.contact-list .contact-list__item .contact__btn.contact__btn--yellow {
  background-color: #b69b04;
}
.contact-list .contact-list__item .contact__btn.contact__btn--green {
  background-color: #31452d;
}
.contact-list .contact-list__item .contact__btn:hover {
  background: #fff;
  color: #31452d;
  border: 1px solid #31452d;
}
.contact-list .contact-list__item:nth-child(2)::before, .contact-list .contact-list__item:nth-child(3)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background-color: #333;
}

.contact-list-sp {
  display: none;
}
@media (max-width: 819px) {
  .contact-list-sp {
    display: flex;
    flex-direction: column;
    padding-inline: 20px;
  }
}
.contact-list-sp .contact-list-sp__item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 32px;
  padding-bottom: 33px;
  border-bottom: 1px solid #333;
}
.contact-list-sp .contact-list-sp__item:last-child {
  border-bottom: none; /* 最後だけボーダーを消す */
}
.contact-list-sp .contact-list-sp__item img {
  display: block;
  max-width: 100%;
  height: auto;
}
.contact-list-sp .contact-list-sp__item-icon {
  width: 32px; /* 固定幅 */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0; /* 縮まないようにする */
}
.contact-list-sp .contact-list-sp__item-title {
  font-size: 16px;
  line-height: 1.5;
  width: 96px;
  margin-left: 20px;
  margin-right: 20px;
}
.contact-list-sp .contact-list-sp__item:last-child .contact-list-sp__item-title {
  margin-right: 17px; /* ラストアイテムだけ右マージンを変える */
}
.contact-list-sp .contact-list-sp__item-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-list-sp .contact-list-sp__item-tel .contact__btn {
  margin-bottom: 8px;
}
.contact-list-sp .contact-list-sp__item-time {
  font-size: 12px;
  letter-spacing: -0.1em;
}
.contact-list-sp .contact__btn-sp {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.1em;
  width: clamp(120px, 40vw, 152px);
  height: 48px;
  transition: transform 0.4s ease;
}
.contact-list-sp .contact__btn-sp.contact__btn--yellow {
  background-color: #b69b04;
}
.contact-list-sp .contact__btn-sp.contact__btn--green {
  background-color: #31452d;
}
.contact-list-sp .contact__btn-sp:hover {
  background: #fff;
  color: #31452d;
  border: 1px solid #31452d;
}

.footer-top {
  background: #31452d;
  padding-top: 80px;
  padding-bottom: 120px;
  color: #fff;
}
@media (max-width: 767px) {
  .footer-top {
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 60px;
  }
}

.footer-top__content img {
  display: block;
  margin-inline: auto;
  width: 82px;
  height: 90px;
}

.footer-top__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 25px;
  gap: 17px;
  font-size: 16px;
  line-height: 1;
}

.footer-top__nav {
  margin-top: 57px;
  display: flex;
  justify-content: center;
}
.footer-top__nav li a {
  font-size: 16px;
  line-height: 1;
  padding-right: 32px;
  padding-left: 32px;
  border-right: 1px solid #fff;
}
.footer-top__nav li a:last-child {
  border-right: none;
  padding-right: 0;
}
.footer-top__nav li:first-child a {
  padding-left: 0;
}
@media (max-width: 767px) {
  .footer-top__nav {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .footer-top__nav li {
    width: 100vw;
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer-top__nav li a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0 0 25px 0;
    border-right: none;
    border-bottom: 1px solid #fff;
  }
  .footer-top__nav li:last-child a {
    border-bottom: none;
  }
}

.footer-bottom {
  padding-top: 17px;
  padding-bottom: 17px;
  background: #333;
}

.footer-bottom__content {
  max-width: 1024px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
@media (max-width: 767px) {
  .footer-bottom__content {
    flex-direction: column;
    gap: 30px;
  }
}

.footer-bottom__content-list {
  display: flex;
  align-items: center;
}
.footer-bottom__content-list li a {
  font-size: 16px;
  line-height: 1;
}
.footer-bottom__content-list li:first-child {
  padding-right: 32px;
  border-right: 1px solid #fff;
}
.footer-bottom__content-list li:last-child {
  padding-left: 32px;
}