html {
  font-size: 10px;
}

body {
  background: #1F243B;
  color: #000;
  font-family: "source-han-serif-jp-variable", sans-serif;
  font-size: max(14px, 2rem);
  font-variation-settings: "wght"400;
  font-weight: 400;
}

body.noscroll {
  overflow: hidden;
}

a {
  display: block;
  transition: 0.2s;
}

a:hover {
  transition: 0.2s;
}

dt {
  font-weight: normal;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
}

*,
*::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 */

/* Set core body defaults */

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

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

/* Make images easier to work with */

img {
  display: block;
  max-width: 100%;
  width: 100%;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
  font: inherit;
}

/* フォームリセット */

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

/*
 * footer
 * -------------------------------------------------------------
 */

.footer {
  background: #c7a983;
  color: #1F243B;
  padding: 4.6rem 0;
}

.footer__inner {
  align-items: center;
  display: flex;
  gap: 3rem;
}

.footer__copyright {
  font-family: "minerva-modern", sans-serif;
  font-size: 2.3rem;
}

.footer__link {
  -webkit-text-decoration: underline;
  font-family: "minerva-modern", sans-serif;
  font-size: 1.4rem;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-transform: capitalize;
  text-underline-offset: 4px;
}

/*
 * header
 * -------------------------------------------------------------
 */

.header {
  left: 0;
  position: fixed;
  top: 5.5rem;
  width: 100%;
  z-index: 10;
}

.header__inner {
  align-items: center;
  display: flex;
  height: 7.6rem;
  margin: 0 auto;
  max-width: 180rem;
  padding: 0 5rem;
  position: relative;
}

.header__logo {
  left: 50%;
  max-width: 7.4rem;
  position: absolute;
  transform: translateX(-50%);
}

/*
 * l-inner
 * -------------------------------------------------------------
 */

.l-inner {
  margin: auto;
  max-width: 162rem;
  padding: 0 5rem;
}

.l-inner-md {
  margin: 0 auto;
  max-width: 115.2rem;
  padding: 0 5rem;
}

/*
 * l-main
 * -------------------------------------------------------------
 */

.l-main {
  margin-top: 13.1rem;
  overflow: hidden;
}

/*
 * l-section-block
 * -------------------------------------------------------------
 */

.l-section-block {
  background: #f3e9dd;
  font-variation-settings: "wght"500;
  position: relative;
}

.l-section-block__content {
  align-items: flex-start;
  display: flex;
  gap: 5rem;
}

.l-section-block__body {
  margin-top: 9.2rem;
}

.l-section-block__imgWrap {
  bottom: -26.7rem;
  height: 55rem;
  left: calc(50% + 5rem);
  margin: 0 auto;
  max-width: 202rem;
  padding: 0 5rem;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}

.l-section-block__img {
  height: 100%;
  margin-left: auto;
  max-width: 154rem;
}

.l-section-block__img img {
  -o-object-fit: cover;
  -o-object-position: left;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

/*
 * l-section
 * -------------------------------------------------------------
 */

.l-section {
  padding: 20rem 0;
}

/*
 * burger
 * -------------------------------------------------------------
 */

.burger {
  display: block;
  display: none;
  height: 1rem;
  position: relative;
  width: 4rem;
  z-index: 11;
}

.burger span {
  background: #c7a984;
  display: block;
  height: 1px;
  position: absolute;
  transition: all 0.2s;
  width: 100%;
}

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

.burger span:nth-child(2) {
  top: 100%;
}

.burger span.is-active:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-30deg);
}

.burger span.is-active:nth-child(2) {
  top: 50%;
  transform: translateY(-50%) rotate(30deg);
}

/*
 * c-lead
 * -------------------------------------------------------------
 */

.c-lead {
  color: #C7A984;
  line-height: 1.75;
}

/*
 * c-ttl
 * -------------------------------------------------------------
 */

.c-ttl {
  color: #C7A984;
  font-family: "minerva-modern", sans-serif;
  font-size: 8rem;
  text-transform: uppercase;
}

/*
 * about
 * -------------------------------------------------------------
 */

.about {
  background: linear-gradient(90deg, #F3E9DD 50%, #e7dbc9 50%);
}

.about__body {
  align-items: center;
  display: flex;
  gap: 5rem;
  justify-content: space-between;
  margin-left: auto;
  max-width: 142.3rem;
}

.about__content {
  flex: 1;
}

.about__text {
  line-height: 2.5;
  margin-top: 6.5rem;
}

.about__text span {
  display: block;
  margin: 1.5rem 0;
}

.about__img {
  aspect-ratio: 550/750;
  max-width: 55rem;
  width: 45%;
}

.about__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

/*
 * contact
 * -------------------------------------------------------------
 */

.contact {
  padding: 20rem 0;
}

.contact__head {
  text-align: center;
}

.contact__lead {
  margin-top: 8rem;
}

.contact__btn {
  align-items: center;
  background: #c7a984;
  border-radius: 50%;
  display: grid;
  height: 22rem;
  justify-items: center;
  margin: 15rem auto 0;
  place-items: center;
  width: 22rem;
}

.contact__btn span {
  background: url(./../images/contact_arrow.webp) no-repeat center/100%;
  display: block;
  height: 2.6rem;
  transition: transform 0.2s;
  width: 5rem;
}

.contact__btn:hover span {
  transform: translateX(0.5rem);
}

.contact__body {
  margin-top: 12rem;
}

/*
 * form-confirm
 * -------------------------------------------------------------
 */

/* 確認画面 */

.form-confirm {
  color: #C7A984;
}

.form-confirm dt {
  opacity: 0.6;
}

.form-confirm dt:not(:nth-child(1)) {
  margin-top: 6rem;
}

.form-confirm dd {
  line-height: 1.75;
  margin-top: 4rem;
}

.form-confirm__back {
  color: #C7A984;
  margin-top: 10rem;
  text-align: center;
}

/*
 * form
 * -------------------------------------------------------------
 */

.form__row:not(:nth-child(1)) {
  margin-top: 4rem;
}

.form__label {
  color: #C7A984;
}

.form__req {
  font-size: 1rem;
  position: relative;
  top: -1.2rem;
}

.form__input,
.form__textarea {
  background: #f3e9dd;
  display: block;
  font-variation-settings: "wght"600;
  margin-top: 2rem;
  padding: 2.4rem 1.5rem;
  width: 100%;
}

.form__textarea {
  height: 31rem;
  line-height: 1.75;
}

.form__actions {
  align-items: center;
  display: grid;
  justify-items: center;
  margin: 10rem auto 0;
  place-items: center;
}

.form__submit {
  align-items: center;
  background: #c7a984;
  border-radius: 50%;
  display: grid;
  height: 22rem;
  justify-items: center;
  place-items: center;
  width: 22rem;
}

.form__submit-text {
  font-variation-settings: "wght"600;
  line-height: 1.75;
  text-align: center;
}

.form__error {
  color: #ff6b6b;
  font-size: 1.9rem;
  margin-top: 1rem;
}

/*
 * fv
 * -------------------------------------------------------------
 */

.fv {
  height: 94.7rem;
  padding-top: 6.2rem;
}

.fv__inner {
  max-width: 143.6rem;
}

.fv__img {
  height: 57.6rem;
  opacity: 0.5;
}

.fv__img img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
}

.fv__head {
  margin-top: -1.4rem;
  position: relative;
  text-align: center;
  z-index: 1;
}

.fv__ttl {
  margin: 0 auto;
  max-width: 86.8rem;
}

.fv__hidden {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.fv__text {
  color: #C7A984;
  font-family: "minerva-modern", sans-serif;
  font-size: 4rem;
  line-height: 1.2;
  margin-top: 5rem;
  text-transform: uppercase;
}

.fv__text span {
  display: inline-block;
}

.fv__guide {
  margin: 7.65rem auto 0;
  max-width: 180rem;
  padding: 0 5rem;
  text-align: right;
}

.fv__scroll {
  color: #C7A984;
  font-family: "minerva-modern", sans-serif;
  text-transform: uppercase;
}

/*
 * nav
 * -------------------------------------------------------------
 */

.nav {
  display: flex;
  justify-content: space-between;
  transition: all 0.6s;
  width: 100%;
}

.nav.is-active {
  opacity: 1;
  overflow: auto;
  transition: all 0.6s;
  visibility: visible;
  z-index: 10;
}

.nav__items {
  display: flex;
  gap: 5rem;
}

.nav__link {
  color: #C7A983;
  font-family: "minerva-modern", sans-serif;
  font-size: max(16px, 2rem);
  position: relative;
  text-transform: uppercase;
}

.nav__link::after {
  background: #C7A983;
  bottom: -0.5rem;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
  width: 100%;
}

.nav__link:hover::after {
  transform: scale(1, 1);
}

.nav__logo {
  display: none;
  margin-top: 1rem;
  max-width: 12rem;
}

/*
 * outline
 * -------------------------------------------------------------
 */

.outline {
  border-top: 1px solid #C7A983;
  padding: 10rem 5.2rem 53.2rem;
}

.outline__table {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem 0;
  margin-left: auto;
  max-width: 47rem;
}

.outline__table dt {
  color: #505050;
  width: 13rem;
}

.outline__table dd {
  width: calc(100% - 13rem);
}

/*
 * people
 * -------------------------------------------------------------
 */

.people {
  padding: 20rem 5.2rem 10rem;
}

.people__body {
  margin-left: auto;
  max-width: 47rem;
}

.people__ttl {
  font-size: max(16px, 2.3rem);
}

.people__ttl span {
  display: inline-block;
  margin-left: 1em;
}

.people__subttl {
  margin-top: 2.2rem;
}

.people__table {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 0;
  margin-top: 6rem;
  position: relative;
}

.people__table::after {
  background: #c7a984;
  content: "";
  display: block;
  height: 93%;
  left: 0.5rem;
  position: absolute;
  top: 0.8rem;
  width: 1px;
}

.people__table dt {
  align-items: center;
  color: #505050;
  display: flex;
  gap: 2rem;
  width: 16.5rem;
}

.people__table dt::before {
  background: #c7a984;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 1rem;
  width: 1rem;
}

.people__table dd {
  width: calc(100% - 16.5rem);
}

.people__text {
  margin-top: 5.4rem;
}

/*
 * privacy
 * -------------------------------------------------------------
 */

.privacy {
  padding: 20rem 0 36.8rem;
}

.privacy__lead {
  margin-top: 8rem;
}

.privacy__body {
  counter-reset: section;
  margin-top: 10rem;
}

.privacy__list {
  border-bottom: 1px solid #C7A983;
  color: #C7A984;
  display: flex;
  flex-direction: column;
  padding: 5rem 0;
}

.privacy__list:first-child {
  border-top: 1px solid #C7A983;
}

.privacy__list.--sm {
  max-width: 122rem;
}

.privacy__ttl {
  display: flex;
  font-size: 2.3rem;
  font-weight: 600;
  gap: 0.5em;
}

.privacy__ttl::before {
  content: counter(section, decimal) ". ";
  counter-increment: section;
  font-weight: 600;
}

.privacy__text {
  line-height: 1.75;
  margin-top: 3.5rem;
}

.privacy__text a {
  display: inline-block;
}

.privacy__sublist {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin-top: 4rem;
}

.privacy__sublist ol li {
  display: flex;
  margin-top: 0;
}

.privacy__sublist ol li:before {
  content: "・";
}

.privacy__bottom {
  border: 1px solid #C7A983;
  margin-top: 15rem;
  padding: 0 5rem;
}

.privacy__bottom .privacy__ttl::before {
  display: none;
}

.privacy__list2:first-child {
  border-top: none;
}

.privacy__list2:last-child {
  border-bottom: none;
}

/*
 * service
 * -------------------------------------------------------------
 */

.service {
  border-top: 1.5rem solid #C7A983;
}

.service__head {
  text-align: center;
}

.service__lead {
  margin-top: 3rem;
}

.service__list {
  grid-gap: 7rem 10.8rem;
  display: grid;
  gap: 7rem 10.8rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 15rem;
}

.service__imgWrap {
  align-items: center;
  aspect-ratio: 468/180;
  background: #f2e9dc;
  display: grid;
  justify-items: center;
  place-items: center;
}

.service__img {
  max-width: 11rem;
}

.service__detail {
  color: #C7A984;
  margin-top: 3.5rem;
}

.service__ttl {
  font-size: 2.3rem;
  font-weight: 700;
  text-align: center;
}

.service__text {
  line-height: 1.75;
  margin-top: 3rem;
}

/*
 * top-contact
 * -------------------------------------------------------------
 */

.top-contact {
  padding: 46.7rem 0 25rem;
}

.top-contact__lead {
  margin-top: 5rem;
}

/*
 * u-pc
 * -------------------------------------------------------------
 */

.u-pc {
  display: block;
}

/*
 * u-sp
 * -------------------------------------------------------------
 */

.u-sp {
  display: none;
}

@media screen and (min-width: 1025px) {

  a[href^="tel:"] {
    pointer-events: none;
  }

}

@media screen and (max-width: 1280px) {

  html {
    font-size: 0.78vw;
  }

}

@media screen and (max-width: 767px) {

  html {
    font-size: 10px;
  }

  body {
    font-size: 1.5rem;
  }

  .footer {
    padding: 3rem 0;
    text-align: center;
  }

  .footer__inner {
    flex-direction: column;
    gap: 1.1rem;
  }

  .footer__copyright {
    font-size: 1.4rem;
  }

  .footer__link {
    font-size: 1.2rem;
  }

  .header {
    top: 3rem;
  }

  .header__inner {
    height: 5.5rem;
    justify-content: space-between;
    padding: 0 2.5rem;
  }

  .header__logo {
    max-width: 5.3rem;
    position: static;
    transform: none;
    transform: initial;
  }

  .l-inner {
    max-width: 50rem;
    padding: 0 3rem;
  }

  .l-inner-md {
    max-width: 55rem;
    padding: 0 3rem;
  }

  .l-main {
    margin-top: 8.5rem;
  }

  .l-section-block__content {
    flex-direction: column;
    gap: 6rem;
  }

  .l-section-block__body {
    margin-top: 0;
  }

  .l-section-block__imgWrap {
    bottom: -18rem;
    bottom: -48vw;
    height: auto;
    left: calc(50% + 3rem);
    padding: 0 3rem;
  }

  .l-section-block__img {
    aspect-ratio: 345/300;
    max-width: 100%;
    width: 92vw;
  }

  .l-section {
    padding: 10rem 0;
  }

  .burger {
    display: block;
  }

  .c-lead {
    line-height: 2.3;
  }

  .c-ttl {
    font-size: 4rem;
  }

  .about {
    background: #f3e9dd;
    padding: 0;
  }

  .about__body {
    flex-direction: column-reverse;
    gap: 0;
  }

  .about__content {
    padding: 10rem 0;
    text-align: center;
  }

  .about__text {
    line-height: 2.3;
    margin-top: 6rem;
  }

  .about__text span {
    margin: 2rem 0;
  }

  .about__img {
    background: #e7dbc9;
    max-width: 100vw;
    padding: 8rem 0;
    width: 100vw;
  }

  .about__img img {
    aspect-ratio: 300/400;
    margin: 0 auto;
    width: 80%;
  }

  .contact {
    padding: 9.6rem 0 15rem;
  }

  .contact__lead {
    margin: 5rem calc(50% - 50vw) 0;
  }

  .contact__btn {
    height: 15rem;
    margin-top: 10rem;
    width: 15rem;
  }

  .contact__btn span {
    height: 2rem;
    width: 3.9rem;
  }

  .contact__body {
    margin-top: 7rem;
  }

  .form-confirm dt:not(:nth-child(1)) {
    margin-top: 3rem;
  }

  .form-confirm dd {
    line-height: 2.3;
    margin-top: 2rem;
  }

  .form-confirm__back {
    margin-top: 6rem;
  }

  .form__row:not(:nth-child(1)) {
    margin-top: 3rem;
  }

  .form__req {
    top: -1rem;
  }

  .form__input,
  .form__textarea {
    padding: 1.7rem 1.2rem;
  }

  .form__textarea {
    line-height: 2.3;
  }

  .form__submit {
    height: 15rem;
    width: 15rem;
  }

  .form__submit-text {
    line-height: 2;
  }

  .form__error {
    font-size: 1.5rem;
  }

  .fv {
    height: auto;
    padding: 6.67vw 0 8vw;
  }

  .fv__inner {
    padding: 0 4rem;
  }

  .fv__img {
    aspect-ratio: 295/313;
    height: auto;
  }

  .fv__head {
    margin-top: -1.33vw;
  }

  .fv__ttl {
    max-width: 100%;
    width: 64vw;
  }

  .fv__text {
    font-size: 5.33vw;
    margin-top: 6.93vw;
  }

  .fv__guide {
    margin-top: 15vw;
    max-width: 100%;
    padding: 0 3rem;
  }

  .fv__scroll {
    font-size: 3.73vw;
  }

  .nav {
    background: rgba(242, 233, 220, 0.95);
    flex-direction: column;
    gap: 3rem;
    height: 100%;
    justify-content: start;
    opacity: 0;
    padding: 10rem 5.7rem;
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    width: calc(100% - 2rem);
  }

  .nav__items {
    flex-direction: column;
    gap: 3rem;
    max-width: 24rem;
  }

  .nav__items:nth-of-type(2) {
    border-bottom: 1px solid #C7A984;
    padding-bottom: 4rem;
  }

  .nav__link {
    font-size: 3.5rem;
    width: -moz-fit-content;
    width: fit-content;
  }

  .nav__logo {
    display: block;
  }

  .outline {
    padding: 10rem 0 27rem;
  }

  .outline__table {
    gap: 3rem 0;
    max-width: 100%;
  }

  .outline__table dt {
    width: 7.8rem;
  }

  .outline__table dd {
    width: calc(100% - 7.8rem);
  }

  .people {
    padding: 10rem 0;
  }

  .people__body {
    margin: 0;
    max-width: 100%;
  }

  .people__ttl {
    font-size: 1.8rem;
  }

  .people__subttl {
    margin-top: 1.5rem;
  }

  .people__table {
    gap: 2.4rem 0;
    margin-top: 5rem;
  }

  .people__table dt {
    font-size: 1.4rem;
    gap: 1.4rem;
    width: 11.7rem;
  }

  .people__table dt::before {
    height: 0.9rem;
    width: 0.9rem;
  }

  .people__table dd {
    width: calc(100% - 11.7rem);
  }

  .people__text {
    margin-top: 5rem;
  }

  .privacy {
    padding: 11.5rem 0 15rem;
  }

  .privacy__lead {
    margin-top: 7rem;
  }

  .privacy__body {
    margin-top: 9rem;
  }

  .privacy__list {
    padding: 4rem 0;
  }

  .privacy__list.--sm {
    max-width: 100%;
  }

  .privacy__ttl {
    font-size: 1.7rem;
    line-height: 2;
  }

  .privacy__text {
    line-height: 2.3;
    margin-top: 2.4rem;
  }

  .privacy__sublist {
    gap: 2.4rem;
    margin-top: 3rem;
  }

  .privacy__bottom {
    margin-top: 10rem;
    padding: 0 1.5rem;
  }

  .service {
    border-width: 1rem;
    padding-bottom: 12rem;
  }

  .service__lead {
    margin-top: 2rem;
  }

  .service__list {
    gap: 9rem;
    grid-template-columns: repeat(1, 1fr);
    margin-top: 8.5rem;
  }

  .service__imgWrap {
    aspect-ratio: 315/120;
  }

  .service__img {
    max-width: 9rem;
  }

  .service__detail {
    margin-top: 4rem;
  }

  .service__ttl {
    font-size: 1.7rem;
  }

  .service__text {
    line-height: 2.3;
    margin-top: 1.5rem;
  }

  .top-contact {
    padding: 33rem 0 15rem;
  }

  .top-contact__lead {
    font-size: 1.6rem;
    margin-top: 4rem;
  }

  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }

}


/*# sourceMappingURL=style.css.map */