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

body {
  font-family: "Zen Kaku Gothic New", 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: 74px;
  transition: 0.3s background-color;
}

.header__inner {
  display: flex;
  align-items: center;
  height: inherit;
  padding-left: 22px;
}

.header__name {
  margin-right: auto;
}

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

.header__nav, .header__item {
  height: inherit;
}

.header__items {
  list-style-type: none;
  display: flex;
  align-items: center;
  height: inherit;
  font-family: "Shippori Mincho", serif;
}

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

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

.header__link--contact {
  background-color: #B19775;
  color: #fff;
  padding: 0 24px;
}

.header.transform {
  background-color: #fff;
}

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

.hamburger span {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #141414;
  transition: 0.5s ease-in-out;
}

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

.hamburger span:first-child {
  top: 0;
}

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

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

.hamburger.is-active span:first-child {
  top: 15px;
  transform: rotate(315deg);
}

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

.hamburger.is-active span:nth-child(3) {
  top: 15px;
  transform: rotate(-315deg);
}

.header__nav {
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.header__item {
  transition: 0.4s all;
}

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

.drawer-menu.is-active {
  display: block;
}

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

.drawer-menu__item {
  text-align: center;
}

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

.drawer-menu-link {
  color: #fff;
  letter-spacing: 0.05rem;
  line-height: 1.88;
}

.drawer-menu--contact {
  background-color: #B19775;
  padding: 14px 61px;
  border-radius: 6px;
}

.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 {
  width: 100%;
  z-index: 10;
  position: absolute;
  top: 38%;
  left: 8%;
}
@media screen and (max-width: 768px) {
  .mv__title-wrap {
    top: 39%;
    left: 9%;
  }
}

.mv__title {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.05rem;
  line-height: 1.47;
  color: #141414;
}
@media screen and (max-width: 768px) {
  .mv__title {
    font-size: 28px;
    line-height: 1.43;
  }
}

.mv__title-sub {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05rem;
  line-height: 4;
  color: #141414;
}
@media screen and (max-width: 768px) {
  .mv__title-sub {
    font-size: 14px;
    line-height: 4.29;
  }
}

.concept {
  padding: 140px 0 40px;
  background-image: url(../images/concept-bg.jpg);
  background-size: 280px 720px;
  background-repeat: no-repeat;
  background-position: right bottom;
}
@media screen and (max-width: 768px) {
  .concept {
    padding-top: 100px;
    background-size: 180px 722px;
  }
}

@media screen and (max-width: 768px) {
  .concept__inner.inner {
    padding-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .section__title .section__title-left {
    text-align: left;
  }
}

.concept__img {
  margin-top: 42px;
}

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

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

.service {
  margin-top: 140px;
  background-image: url(../images/service-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .service {
    margin-top: 100px;
    background-image: url(../images/service-sp-bg.jpg);
    background-position: top 30px left;
  }
}

@media screen and (max-width: 768px) {
  .section__title .section__title-right {
    text-align: right;
  }
}

.service__img__wrapper {
  cursor: pointer;
  max-width: 500px;
  overflow: hidden;
  width: 100%;
}

.service__img {
  height: auto;
  transition: transform 0.5s ease;
}

.service__img__wrapper:hover .service__img {
  transform: scale(1.08);
}

.service__cards {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 50px;
}
@media screen and (max-width: 768px) {
  .service__cards {
    padding: 0 47px 40px 48px;
  }
}

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

.card__body {
  background-color: #fff;
  padding: 21px 10px 10px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .card__body {
    padding: 14px 10px 10px;
  }
}

.card__title {
  font-size: 16px;
  letter-spacing: 0.05rem;
  color: #382C22;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 768px) {
  .card__title {
    font-size: 14px;
  }
}

.card__tag {
  margin-top: 19px;
  font-size: 10px;
  color: #fff;
  background-color: #ACA28B;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  font-weight: 500;
  padding: 3px 13px;
  height: 19px;
  display: inline-block;
  font-family: "Shippori Mincho", serif;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .card__tag {
    margin-top: 12px;
    font-size: 9px;
  }
}

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

.access__items {
  max-width: 800px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
  border-collapse: collapse;
}

@media screen and (max-width: 768px) {
  .access__item {
    display: flex;
    flex-direction: column;
  }
}

.access__font {
  font-size: 15px;
  letter-spacing: 0.05rem;
  line-height: 3.2;
  font-weight: 300;
  border-bottom: 1px solid #C8C8C8;
  border-spacing: 0;
  text-align: left;
}

.access__font.access__label {
  width: 34%;
}
@media screen and (max-width: 768px) {
  .access__font.access__label {
    border-bottom: 0px;
  }
}

@media screen and (max-width: 768px) {
  .access__item:last-child .access__text {
    border-bottom: 0px;
  }
}

.access__map {
  margin-top: 24px;
}

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

.contact {
  padding: 80px 0 150px;
  background-image: url(../images/contact-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .contact {
    background-image: url(../images/contact-sp-bg.jpg);
  }
}

.section__title .section__title__left {
  text-align: left;
}

.contact__title .section__title--main {
  color: #fff;
}

.contact__body {
  margin-top: 47px;
  text-align: center;
}

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

.button {
  border: 2px solid #fff;
  border-radius: 8px;
  max-width: 340px;
  width: 100%;
  margin: 23px auto 0;
}
@media screen and (max-width: 768px) {
  .button {
    max-width: 260px;
  }
}

.contact__button {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.05rem;
  display: inline-block;
  font-weight: 300;
  padding: 32px 0 30px;
  transition: 0.3s letter-spacing;
  line-height: 1;
}
.contact__button:after {
  content: "";
  background-image: url(../images/Icon-arrow.png);
  display: inline-block;
  width: 6px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 57px;
}
@media screen and (max-width: 768px) {
  .contact__button:after {
    margin-left: 23px;
  }
}
.contact__button:hover {
  letter-spacing: 0.22rem;
}
@media screen and (max-width: 768px) {
  .contact__button {
    font-size: 15px;
    padding: 23px 0 20px;
  }
}

.page-top-button {
  position: fixed;
  z-index: 9000;
  right: 50px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: 0.3s opacity;
}
.page-top-button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .page-top-button {
    width: 28px;
    height: 28px;
    right: 15px;
    bottom: 77px;
  }
}

footer {
  background-color: #382C22;
  width: 100%;
  padding: 29px 0 31px;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 21px 0 20px;
  }
}

.footer__copyright {
  display: block;
  color: #fff;
  font-weight: 300;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.05rem;
}

.contact-mv {
  width: 100%;
  height: 65vh;
  background-image: url(../images/contactpage.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .contact-mv {
    background-image: url(../images/contactpage-sp.png);
  }
}

.contactmv_title.mv__title-wrap {
  top: 50%;
  width: auto;
}
@media screen and (max-width: 768px) {
  .contactmv_title.mv__title-wrap {
    top: 45.2%;
  }
}

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

.inner.form__inner {
  max-width: 850px;
}

.form__text {
  margin: 0 auto;
  max-width: 460px;
  width: 100%;
}

.contact__form {
  background-color: #F7F3E9;
  margin-top: 66px;
  padding: 60px 151px;
  border-radius: 20px 0 0 0;
}
@media screen and (max-width: 768px) {
  .contact__form {
    margin-top: 46px;
    padding: 44px 20px 40px;
  }
}

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

.form__item:not(:nth-child(3)) dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .form__item:not(:nth-child(3)) dl {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

.form__label-text {
  font-size: 15px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .form__label-text {
    font-size: 14px;
  }
}

.form__input {
  width: 72.3%;
}
@media screen and (max-width: 768px) {
  .form__input {
    width: 100%;
    margin-top: 5px;
  }
}

.checkbox__item .form__label {
  width: 100%;
}

.checkbox__item .form__input {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .checkbox__item .form__input {
    margin-top: 13px;
  }
}

.form__input-text,
.form__textarea {
  font-family: "Noto sans JP", serif;
  font-size: 15px;
  padding: 14px 0 12px 12px;
  width: 100%;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .form__input-text,
.form__textarea {
    font-size: 14px;
  }
}

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

.form__button {
  text-align: center;
}

.form__button .button {
  background-color: #B19775;
  color: #fff;
  letter-spacing: 0.05rem;
  font-size: 16px;
  padding: 18px 0 16px;
  transition: 0.3s opacity;
  max-width: 180px;
}
.form__button .button:hover {
  opacity: 0.7;
}

.required {
  color: #F93212;
}

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

.section__title--main {
  font-size: 36px;
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.05rem;
  text-align: center;
}

.section__title--main span {
  text-transform: uppercase;
}

.section__title--sub {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05rem;
  color: #B19775;
  text-align: center;
}

.text {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.05rem;
  line-height: 1.87;
}
@media screen and (max-width: 768px) {
  .text {
    max-width: 98%;
    font-size: 14px;
    line-height: 1.86;
  }
}

.text.text--large {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.73;
  color: #382C22;
}
@media screen and (max-width: 768px) {
  .text.text--large {
    font-size: 18px;
    line-height: 1.78;
  }
}

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

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