@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

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

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

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

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

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

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

a {
  text-decoration: none;
}

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

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

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

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

textarea {
  resize: vertical;
}

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

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

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

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background-color: transparent;
}

/* スクロールしたらヘッダーメニューのフォントカラー変更 */
.header.headerColorScroll {
  background-color: #fff;
  transition: background-color 0.4s ease-out;
}

.header__inner {
  display: flex;
  align-items: center;
  height: inherit;
  padding-left: 22px;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-left: 15px;
  }
}

.header__name {
  margin-right: auto;
}

.header__logo {
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 132px;
  }
}

.header__nav {
  height: inherit;
}

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

.header__item {
  height: inherit;
}

.header__item:not(:first-child) {
  margin-left: 64px;
}

.header__link {
  display: flex;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  height: inherit;
  color: #141414;
}

.header__link.header__link--contact {
  padding: 28px 26px;
  color: #fff;
  background-color: #B19775;
}
.header__link.header__link--contact:hover {
  opacity: 0.8;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 27px;
  right: 15px;
  width: 25px;
  height: 16px;
  cursor: pointer;
}

.hamburger.is-active {
  top: 25px;
  right: 15px;
}

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  transition: 0.3s transform, 0.3s background-color;
  background-color: #141414;
}

.hamburger .is-active span {
  background-color: #fff;
}

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

.hamburger span:nth-child(2) {
  top: 8px;
  transition: 0.3s opacity;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.is-active span:nth-child(1) {
  top: 10px;
  transform: rotate(-45deg);
  background-color: #fff;
}

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

.hamburger.is-active span:nth-child(3) {
  top: 10px;
  transform: rotate(45deg);
  background-color: #fff;
}

.drawer-menu {
  position: absolute;
  z-index: 5000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: rgba(56, 44, 34, 0.9);
}

.drawer-menu__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: inherit;
}

.drawer-menu__items {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.drawer-menu__item {
  display: inline-block;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 45px;
}

.drawer-menu__link {
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  width: 200px;
  color: #fff;
  text-align: center;
}

.drawer-menu__link--contact {
  padding: 14px 15px;
  border-radius: 6px;
  background-color: #B19775;
}
.drawer-menu__link--contact:hover {
  opacity: 0.8;
}

.mv {
  width: 100%;
  height: 100vh;
}

.mv__inner {
  position: relative;
  width: 100%;
  height: inherit;
}

.mv__slider,
.swiper-slide picture,
.swiper-slide img {
  height: inherit;
}

.swiper-slide img {
  -o-object-fit: cover;
     object-fit: cover;
}

.mv__title-wrap {
  position: absolute;
  z-index: 10;
  top: 47%;
  left: 11%;
  transform: translate(-9%, -36%);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .mv__title-wrap {
    top: 52%;
    left: 50%;
    transform: translate(-50%, -58%);
  }
}

.mv__title-main {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.526;
}
@media screen and (max-width: 768px) {
  .mv__title-main {
    font-size: 28px;
    letter-spacing: normal;
    line-height: 1.428;
  }
}
@media screen and (max-width: 374px) {
  .mv__title-main {
    font-size: 26px;
  }
}

.mv__title-sub {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 11px;
}
@media screen and (max-width: 768px) {
  .mv__title-sub {
    font-size: 14px;
    letter-spacing: normal;
  }
}

.concept {
  padding-top: 133px;
}
@media screen and (max-width: 768px) {
  .concept {
    padding-top: 92px;
  }
}

.concept__title {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .concept__title {
    text-align: left;
    padding-left: 15px;
  }
}

.concept__container {
  width: 100%;
  max-width: 1190px;
  padding-right: 25px;
  padding-left: 80px;
  margin-top: -10px;
  margin-inline: auto;
  background: linear-gradient(90deg, transparent 0%, transparent 77%, #F7F3E9 77%, #F7F3E9 100%);
}
@media screen and (max-width: 768px) {
  .concept__container {
    padding-right: 0;
    padding-left: 15px;
    margin-top: -37px;
    background: linear-gradient(90deg, transparent 0%, transparent 52%, #F7F3E9 52%, #F7F3E9 100%);
  }
}

.concept__body {
  margin: 0 auto;
  padding-bottom: 40px;
}

.concept__img {
  width: 100%;
  max-width: 1030px;
  aspect-ratio: 1030/425;
  position: relative;
  padding-top: 45px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .concept__img {
    padding-top: 75px;
    aspect-ratio: 360/255;
  }
}

.concept__sub-title {
  margin-top: 33px;
}
@media screen and (max-width: 768px) {
  .concept__sub-title {
    margin-top: 20px;
  }
}

.concept__text {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .concept__text {
    margin-top: 20px;
  }
}

.service {
  padding-top: 132px;
}
@media screen and (max-width: 768px) {
  .service {
    padding-top: 90px;
  }
}

.service__title {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service__title {
    text-align: right;
    padding-right: 15px;
    z-index: 10;
  }
}

.service__container {
  position: relative;
  z-index: 0;
}

.service__container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 54%;
  background-color: #F7F3E9;
  top: 24%;
  right: 0%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .service__container::after {
    height: 103%;
    top: -3%;
    right: 52%;
  }
}

.service__cards {
  display: grid;
  padding-top: 36px;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  -moz-column-gap: 50px;
       column-gap: 50px;
  row-gap: 50px;
}
@media screen and (max-width: 768px) {
  .service__cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    padding: 37px 48px 41px;
    row-gap: 31px;
  }
}
@media screen and (max-width: 768px) and (max-width: 374px) {
  .service__cards {
    padding-left: 22px;
  }
}

.img-wrap {
  cursor: pointer;
  overflow: hidden;
  width: 100%;
}

.service__img {
  border-top-left-radius: 6%;
  aspect-ratio: 310/400;
}
@media screen and (max-width: 768px) {
  .service__img {
    position: relative;
    aspect-ratio: 250/322;
  }
}

.service__img.section__img-expansion {
  height: auto;
  transition: transform 0.5s;
}

.service__img.section__img-expansion:hover {
  transform: scale(1.08);
}

.card {
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.06);
}

.card__body {
  background: #fff;
  padding: 16px 25px 10px;
}
@media screen and (max-width: 768px) {
  .card__body {
    padding: 10px 14px 5px;
  }
}

.card__text {
  font-family: "NoTo sans JP", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .card__text {
    font-size: 14px;
  }
}

.service__box {
  text-align: right;
}

.service__label {
  display: inline-block;
  font-family: "NoTo sans JP", serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 2px 12px;
  margin-top: 13px;
  margin-right: -15px;
  color: #fff;
  background: #ACA28B;
}
@media screen and (max-width: 768px) {
  .service__label {
    padding: 0px 12px;
    margin-top: 10px;
    margin-right: -4px;
  }
}

.access {
  padding-top: 130px;
}
@media screen and (max-width: 768px) {
  .access {
    padding-top: 93px;
  }
}

.access__inner {
  width: 100%;
  max-width: 850px;
  padding-right: 25px;
  padding-left: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .access__inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.access__title {
  text-align: center;
}

.access__info {
  margin-top: 24px;
}

.info__box {
  display: flex;
  justify-content: center;
  padding: 14px 0 16px 0;
  border-bottom: 1px solid #C8C8C8;
}
@media screen and (max-width: 768px) {
  .info__box {
    flex-direction: column;
  }
}

.info__title {
  width: 35%;
  font-size: 15px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .info__title {
    width: 25%;
  }
}

.info__text {
  width: 65%;
  font-size: 15px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .info__text {
    width: 85%;
    margin-top: 10px;
  }
}

.access__map {
  width: 100%;
  height: 420px;
  position: relative;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .access__map {
    height: 280px;
  }
}

iframe {
  width: 100%;
  height: 420px;
}
@media screen and (max-width: 768px) {
  iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 280px;
  }
}

.contact {
  width: 100%;
  height: 455px;
  background-image: url(../images/contact-img.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .contact {
    height: 409px;
    background-image: url(../images/contact-sp-img.jpg);
  }
}

.contact__inner {
  height: inherit;
}

.contact__img {
  width: 100%;
}

.contact__title {
  padding-top: 76px;
}
@media screen and (max-width: 768px) {
  .contact__title {
    padding-top: 53px;
  }
}

.section-title__main.main--white {
  color: #fff;
}

.contact__box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .contact__box {
    margin-top: 58px;
  }
}

.contact__text {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .contact__text {
    font-size: 14px;
  }
}

.contact__body {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .contact__body {
    margin-top: 14px;
  }
}

.contact__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  letter-spacing: 0.05em;
  padding: 24px 84px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 6px;
  transform: translate(-3%);
  transition: letter-spacing 0.3s;
}
@media screen and (max-width: 768px) {
  .contact__button {
    font-size: 15px;
    padding: 15px 49px 15px 49px;
    transform: initial;
  }
}

.contact__button::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 53%;
  right: 20px;
  margin-top: -7px;
}
@media screen and (max-width: 768px) {
  .contact__button::after {
    top: 56%;
    right: 16px;
    margin-right: 5px;
  }
}

.contact__button:hover {
  letter-spacing: 0.22em;
}

/* ページトップボタン */
/* 右下に固定 */
.page-top__button {
  position: fixed;
  z-index: 9000;
  right: 40px;
  bottom: 40px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #382C22;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .page-top__button {
    right: 15px;
    bottom: 15px;
    width: 28px;
    height: 28px;
  }
}

.page-top__button::before {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 21px;
  width: 2px;
  height: 21px;
  background: #382C22;
}

@media screen and (max-width: 768px) {
  .page-top__button::before {
    top: 5px;
    left: 11px;
    height: 13px;
  }
}
.page-top__button::after {
  content: "";
  display: block;
  position: absolute;
  top: 11px;
  left: 17px;
  width: 10px;
  height: 10px;
  border: 2px solid;
  border-color: transparent transparent #382C22 #382C22;
  transform: rotate(135deg);
}

@media screen and (max-width: 768px) {
  .page-top__button::after {
    top: 5px;
    left: 9px;
    width: 7px;
    height: 7px;
  }
}
.thanks {
  padding: 200px 0;
}

.thanks__text {
  text-align: center;
}

.thanks__button {
  margin-top: 40px;
  text-align: center;
}

.button-medium--brown {
  padding: 14px 30px;
  color: #fff;
  background-color: #B19775;
  border-radius: 5px;
}

.footer {
  padding: 32px;
  background-color: #382C22;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 20px;
  }
}

.footer__copyright {
  display: block;
  font-size: 14px;
  text-align: center;
  color: #fff;
}

/*================================
Contactページ
================================*/
.contact-mv {
  height: 100%;
}

.contact-mv__inner {
  width: 100%;
  position: relative;
}

.contact__title-wrap {
  position: absolute;
  top: 45%;
  left: 10%;
  transform: translate(-16%, 28%);
}
@media screen and (max-width: 768px) {
  .contact__title-wrap {
    top: 40%;
    transform: translate(-16%, 26%);
  }
}

.section-title__main.main--large {
  font-size: 38px;
}
@media screen and (max-width: 768px) {
  .section-title__main.main--large {
    font-size: 34px;
  }
}

.section-title__sub.sub--black {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #141414;
}
@media screen and (max-width: 768px) {
  .section-title__sub.sub--black {
    font-size: 12px;
  }
}

.sub-contact {
  padding: 81px 0 78px;
}
@media screen and (max-width: 768px) {
  .sub-contact {
    padding: 59px 0;
  }
}

.sub-contact__inner {
  width: 100%;
  max-width: 850px;
  padding-right: 25px;
  padding-left: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .sub-contact__inner {
    max-width: 375px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.sub-contact__box {
  text-align: center;
  margin-left: -8%;
  text-indent: 4rem;
}
@media screen and (max-width: 768px) {
  .sub-contact__box {
    text-align: left;
    text-indent: initial;
    margin-left: 0;
  }
}

.sub-contact__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8667;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .sub-contact__text {
    font-size: 14px;
    line-height: 1.857;
  }
}

.sub-contact__container {
  margin-top: 58px;
  padding-right: 30px;
  padding-left: 30px;
  background-color: #F7F3E9;
  border-top-left-radius: 20px;
}
@media screen and (max-width: 768px) {
  .sub-contact__container {
    margin-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.sub-contact__form {
  padding: 61px 0;
}
@media screen and (max-width: 768px) {
  .sub-contact__form {
    padding: 40px 0;
  }
}

.form__list {
  width: 100%;
  max-width: 498px;
  margin-inline: auto;
}

@media screen and (max-width: 768px) {
  .form__item:not(:first-child) {
    margin-top: 20px;
  }
}

.form__item:not(:nth-child(3)) {
  display: flex;
}
@media screen and (max-width: 768px) {
  .form__item:not(:nth-child(3)) {
    flex-direction: column;
  }
}

.form__item:nth-child(-n+2) {
  align-items: center;
}

.form__item:nth-child(2) {
  margin-top: 23px;
}
@media screen and (max-width: 768px) {
  .form__item:nth-child(2) {
    margin-top: 20px;
  }
}

.form__item:nth-child(3) {
  margin-top: 31px;
}
@media screen and (max-width: 768px) {
  .form__item:nth-child(3) {
    margin-top: 17px;
  }
}

.form__item:nth-child(4) {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .form__item:nth-child(4) {
    margin-top: 18px;
  }
}

.form__label-text {
  width: 28%;
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .form__label-text {
    width: 100%;
  }
}

.form__item:nth-child(4) .form__label-text {
  margin-top: 13px;
}
@media screen and (max-width: 768px) {
  .form__item:nth-child(4) .form__label-text {
    margin-top: 0;
  }
}

.required {
  color: #F93212;
}

.form__input {
  width: 72%;
}
@media screen and (max-width: 768px) {
  .form__input {
    width: 100%;
  }
}

.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  opacity: 0.5;
  color: #C8C8C8;
}

.form__input::placeholder,
.form__textarea::placeholder {
  opacity: 0.5;
  color: #C8C8C8;
}

@media screen and (max-width: 768px) {
  .form__radio-wrap {
    margin-top: 4px;
  }
}

.form__radio-label {
  font-size: 14px;
  position: relative;
  display: inline-block;
  padding-left: 16px;
}

.form__radio-label:not(:first-child) {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .form__radio-label:not(:first-child) {
    margin-left: 15px;
  }
}

.form__radio:nth-child(n+3) .form__radio-label {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .form__radio:nth-child(n+3) .form__radio-label {
    margin-top: 13px;
  }
}

.form__radio-label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  background-color: #fff;
  border: 1px solid #C0AC91;
  border-radius: 50%;
}

.form__radio-label::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 2px;
  width: 6px;
  height: 6px;
  transform: translateY(-50%);
  background-color: #C0AC91;
  border-radius: 50%;
  opacity: 0;
}

.form__radio input:checked + .form__radio-label::after {
  opacity: 1;
}

.form__input,
.form__textarea {
  padding: 8px 12px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .form__input,
  .form__textarea {
    margin-top: 4px;
  }
}

.form__textarea {
  width: 73%;
  height: 171px;
  resize: none;
}
@media screen and (max-width: 768px) {
  .form__textarea {
    width: 100%;
  }
}

.form__button {
  margin-top: 29px;
  margin-left: 35%;
}
@media screen and (max-width: 768px) {
  .form__button {
    margin-left: 0;
    text-align: center;
  }
}

.button--brown {
  padding: 14px 74px;
  color: #fff;
  background-color: #B19775;
  border-radius: 5px;
}

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

.section-title__main {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.section-title__sub {
  font-size: 12px;
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.05em;
  color: #B19775;
}

.text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.867;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .text {
    font-size: 14px;
    line-height: 1.857;
  }
}

.text.text--large {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.727;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .text.text--large {
    font-size: 18px;
    line-height: 1.778;
  }
}

.button {
  width: 180px;
  display: inline-block;
  letter-spacing: 0.05em;
  color: #fff;
  padding: 27px 27px;
}
.button:hover {
  letter-spacing: 0.22em;
}
@media screen and (max-width: 768px) {
  .button {
    padding: 18px 18px;
  }
}

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

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