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

body {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (min-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]) {
  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;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  background-color: transparent;
  z-index: 1000;
}

.header.change-color {
  background-color: #ffffff;
  transition: background-color 0.3s;
}

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

.header__name {
  margin-right: auto;
}

.header__logo {
  width: 132px;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 171px;
  }
}

.header__nav {
  height: inherit;
}

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

.header__nav-item {
  height: inherit;
}

.header__nav-item:not(:first-child) {
  margin-left: 60px;
}

@media screen and (min-width: 768px) {
  .header__nav-link {
    height: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #141414;
    line-height: 1.1875;
  }
}

.header__nav-link--contact {
  padding: 0 25px;
  background-color: #b19775;
  color: #ffffff;
  transition: opacity 0.3s;
}

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

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

.hamburger.is-active .hamburger__bar {
  background-color: #ffffff;
}

.hamburger__bar:first-child {
  top: 0;
}

.hamburger.is-active .hamburger__bar:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.hamburger__bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}

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

.hamburger__bar:last-child {
  top: 100%;
  transform: translateY(-100%);
}

.hamburger.is-active .hamburger__bar:last-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

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

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

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

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

.drawer-menu__link {
  display: inline-block;
  width: 200px;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1875;
  letter-spacing: 0;
  text-align: center;
}

.drawer-menu__link--contact {
  background-color: #b19775;
  padding: 15px;
  border-radius: 6px;
}

.top-mv {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .top-mv {
    justify-content: start;
  }
}

.top-mv__inner {
  width: 100%;
  max-width: 1250px;
  margin-inline: auto;
  padding: 0 15px;
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .top-mv__inner {
    padding: 0 25px;
  }
}

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

.top-mv__slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.swiper-slide img {
  object-fit: cover;
  height: 100%;
}

.top-mv__title--main {
  font-weight: 500;
  font-size: 28px;
  color: #141414;
  line-height: 1.4285714286;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .top-mv__title--main {
    font-size: 38px;
    line-height: 1.5263157895;
    letter-spacing: 0.05em;
  }
}

.top-mv__title--sub {
  margin-top: 10px;
  font-weight: 500;
  font-size: 14px;
  color: #141414;
  line-height: 1.4285714286;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .top-mv__title--sub {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.4666666667;
    letter-spacing: 0.05em;
  }
}

.top-concept {
  margin-top: 100px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-concept {
    margin-top: 140px;
  }
}

.top-concept__bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: -webkit-fill-available;
  margin-top: 30px;
  background-color: #f7f3e9;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .top-concept__bg {
    right: 8%;
    width: 23.3333333333%;
    margin-top: 53px;
  }
}

.top-concept__inner.inner {
  padding-bottom: 40px;
}

.top-concept__img {
  margin-top: 40px;
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .top-concept__img {
    aspect-ratio: 103/38;
  }
}

.top-concept__text {
  margin-top: 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.7777777778;
  color: #141414;
}
@media screen and (min-width: 768px) {
  .top-concept__text {
    margin-top: 30px;
    font-size: 22px;
    line-height: 1.7272727273;
  }
}

.top-concept__text--sm {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.8571428571;
  color: #141414;
}
@media screen and (min-width: 768px) {
  .top-concept__text--sm {
    margin-top: 30px;
    font-size: 15px;
    line-height: 1.8666666667;
  }
}

.top-service {
  margin-top: 100px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .top-service {
    margin-top: 140px;
  }
}

.top-service__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48%;
  height: -webkit-fill-available;
  margin-top: 30px;
  background-color: #f7f3e9;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .top-service__bg {
    width: 100%;
    height: 280px;
    bottom: 153px;
  }
}

.top-service__inner.inner {
  padding-bottom: 40px;
}

.top-service__cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  row-gap: 30px;
  column-gap: 50px;
}
.card {
  max-width: 66.6666666667%;
  min-width: 250px;
  margin-inline: auto;
  border-radius: 20px 0 0 0;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.06);
}
@media screen and (min-width: 580px) {
  .card {
    max-width: 310px;
  }
}

.card__img {
  aspect-ratio: 250/322;
  border-radius: 20px 0 0 0;
}

.card__body {
  padding: 10px;
  text-align: right;
  background-color: #ffffff;
}
@media screen and (min-width: 580px) {
  .card__body {
    padding: 16px 10px 10px;
  }
}

.card__title {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4285714286;
  color: #141414;
  text-align: center;
}
@media screen and (min-width: 580px) {
  .card__title {
    font-size: 16px;
    line-height: 1.4375;
  }
}

.card__tag {
  display: inline-block;
  margin-top: 10px;
  padding: 2px 12px;
  background-color: #aca28b;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.2;
  color: #ffffff;
}
@media screen and (min-width: 580px) {
  .card__tag {
    margin-top: 16px;
    padding: 3px 13px;
  }
}

.top-access {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .top-access {
    margin-top: 140px;
  }
}

.top-access__items {
  margin-top: 40px;
}

.top-access__item {
  display: flex;
  flex-direction: column;
  padding-bottom: 16px;
  border-bottom: 1px solid #c8c8c8;
}
@media screen and (min-width: 768px) {
  .top-access__item {
    flex-direction: row;
    align-items: center;
  }
}

.top-access__item:not(:first-child) {
  margin-top: 16px;
}

.top-access__item dt,
.top-access__item dd {
  font-size: 15px;
  line-height: 1.4666666667;
  color: #141414;
}

@media screen and (min-width: 768px) {
  .top-access__item dt {
    width: 34.875%;
  }
}

.top-access__item dd {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .top-access__item dd {
    margin-top: 0;
  }
}

.top-access__map {
  margin-top: 40px;
  width: 100%;
  height: 280px;
  vertical-align: bottom;
}
@media screen and (min-width: 768px) {
  .top-access__map {
    height: 420px;
  }
}

.top-contact {
  position: relative;
  padding: 60px 0 130px;
  background: url(../images/cta-img-sp.webp) no-repeat center/cover;
}
@media screen and (min-width: 768px) {
  .top-contact {
    padding: 80px 0 150px;
    background: url(../images/cta-img-pc.webp) no-repeat center/cover;
  }
}

.top-contact__title-wrap {
  text-align: left;
}

.top-contact__title {
  color: #ffffff;
}

.top-contact__sub-title {
  margin-top: 6px;
  color: #b19775;
}

.top-contact__text {
  margin-top: 60px;
  text-align: center;
  font-size: 14px;
  line-height: 1.4285714286;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .top-contact__text {
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.4375;
  }
}

.top-contact__button {
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .top-contact__button {
    margin-top: 20px;
  }
}

.top-btn-wrap {
  position: absolute;
  right: 15.5px;
  bottom: 15.5px;
  width: 27px;
  height: 27px;
  border: 1px solid #382c22;
  border-radius: 9999px;
}
@media screen and (min-width: 768px) {
  .top-btn-wrap {
    right: 40px;
    bottom: 40px;
    width: 46px;
    height: 46px;
  }
}

.top-btn {
  width: inherit;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-btn::before {
  content: "↑";
  color: #382c22;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .top-btn::before {
    font-size: 24px;
  }
}

.footer {
  padding: 22px 15px;
  background-color: #382c22;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 32px 25px;
  }
}

.footer__copy {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.1428571429;
  letter-spacing: 0;
  color: #f7f7ee;
  display: block;
  text-align: center;
}

.contact-mv {
  width: 100%;
  background: url(../images/Contact-FV-sp.webp) no-repeat center/cover;
  height: 66.7166416792vh;
}
@media screen and (min-width: 768px) {
  .contact-mv {
    background: url(../images/Contact-FV-pc.webp) no-repeat center/cover;
    height: 65.601965602vh;
  }
}

.contact-mv__inner {
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 1250px;
  height: 100%;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .contact-mv__inner {
    padding: 0 25px;
  }
}

.contact-mv__title-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.contact-mv__title--main {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 34px;
  line-height: 1.1764705882;
  color: #141414;
}
@media screen and (min-width: 768px) {
  .contact-mv__title--main {
    font-size: 38px;
    line-height: 1.1842105263;
  }
}

.contact-mv__title--sub {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4166666667;
  color: #141414;
}
@media screen and (min-width: 768px) {
  .contact-mv__title--sub {
    font-size: 14px;
    line-height: 1.4285714286;
  }
}

.contact {
  margin: 60px 0;
}
@media screen and (min-width: 768px) {
  .contact {
    margin: 80px 0;
  }
}

.contact__text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8571428571;
  color: #141414;
}
@media screen and (min-width: 768px) {
  .contact__text {
    font-size: 15px;
    line-height: 1.8666666667;
  }
}

.contact__form {
  width: 100%;
  margin-top: 40px;
  padding: 40px 20px;
  background-color: #f7f3e9;
  border-radius: 20px 0 0 0;
}
@media screen and (min-width: 768px) {
  .contact__form {
    margin-top: 60px;
    padding: 60px 25px;
  }
}

.form__list {
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .form__list {
    max-width: 498px;
  }
}

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

.form__item:nth-child(n+3) {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .form__item:nth-child(n+3) {
    margin-top: 32px;
  }
}

.form__item--normal {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .form__item--normal {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .form__item--radio {
    display: flex;
    flex-direction: column;
  }
}

.form__label-text,
.form__label-text--radio {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0;
  color: #141414;
}

.form__label-text {
  margin-top: 13px;
}

.form__label-text span {
  color: #f93212;
}

.form__input {
  margin-top: 4px;
  width: 100%;
  max-width: 360px;
}
@media screen and (min-width: 768px) {
  .form__input {
    margin-top: 0;
  }
}

.form__input-text,
.form__textarea {
  font-size: 14px;
  line-height: 1.4285714286;
  color: #c8c8c8;
  padding: 10px 12px;
  background-color: #ffffff;
  width: 100%;
}

.form__detail {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .form__detail {
    margin-top: 20px;
  }
}

.form__radio-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 26px;
  row-gap: 16px;
  padding-left: 12px;
}
@media screen and (min-width: 768px) {
  .form__radio-list {
    flex-wrap: nowrap;
  }
}

.form__radio-item:nth-child(n+3) {
  order: 1;
}
@media screen and (min-width: 768px) {
  .form__radio-item:nth-child(n+3) {
    order: 0;
  }
}

input[type=radio] {
  display: inline-block;
  margin: 0;
}

.form__radio {
  background-color: #ffffff;
  border-radius: 9999px;
  border: 1px solid #c0ac91;
  appearance: radio;
}

.form__radio-label {
  margin-left: 2px;
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0;
  color: #141414;
}

.form__textarea {
  height: 171px;
  resize: none;
}

.form__button-wrap {
  margin-top: 30px;
  text-align: center;
}

.form__button {
  width: 180px;
  padding: 14px;
  text-align: center;
  background-color: #b19775;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.4666666667;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .form__button {
    font-size: 16px;
    line-height: 1.4375;
  }
}

.thanks {
  padding: 200px;
  background-color: #b19775;
  height: 100vh;
}

.thanks__text {
  font-size: 20px;
  color: #ffffff;
  text-align: center;
}

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

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

.u-md-show {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-md-show {
    display: block;
  }
}

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

.inner-sm {
  width: 100%;
  max-width: 850px;
  margin-inline: auto;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .inner-sm {
    padding: 0 25px;
  }
}

.section-title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section-title {
    text-align: center;
  }
}

.section-title.left {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .section-title.left {
    text-align: center;
  }
}

.section-title.everytime-left {
  text-align: left;
}

.section-title.right {
  text-align: right;
}
@media screen and (min-width: 768px) {
  .section-title.right {
    text-align: center;
  }
}

.concept__title,
.service__title,
.access__title {
  color: #141414;
}

.section-title__main {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.1666666667;
}

.concept__title--sub,
.service__title--sub,
.access__title--sub,
.contact__title--sub {
  color: #b19775;
}

.section-title__sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4166666667;
}

.button {
  position: relative;
  width: 260px;
  padding: 18px 15px;
  display: inline-block;
  outline: 2px solid #ffffff;
  outline-offset: -2px;
  border-radius: 6px;
  font-size: 15px;
  color: #ffffff;
  line-height: 1.4666666667;
  text-align: center;
  transition: letter-spacing 0.3s, opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .button {
    width: 340px;
    padding: 27px 25px;
    font-size: 16px;
    line-height: 1.4375;
  }
}
.button:hover {
  letter-spacing: 0.22em;
}

.button::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translateY(-50%);
  width: 6px;
  height: 10px;
  background-image: url(../images/button-arrow.svg);
}/*# sourceMappingURL=style.css.map */