.c-layout--lv0 {
  width: 100%;
  max-width: 1600px;
  margin-right: auto;
  margin-left: auto;
}
.c-layout--lv1 {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}
.c-layout--lv2 {
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

body {
  color: #403333;
  font-family: "Jost", "Noto Sans JP", serif !important;
  background-color: #F5F5F5;
  font-weight: 400;
  min-height: 100vh;
}

html {
  scroll-behavior: smooth;
}

.c-section-title {
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: 32px;
  }
}
.c-section-title .en {
  font-size: 13px;
  display: block;
  line-height: 1;
  margin-top: 8px;
  letter-spacing: initial;
  color: #E29959;
  font-weight: 500;
}

.c-button-view {
  background-color: #E29959;
  font-size: 12px;
  padding: 10px 0;
  color: #fff;
  border-radius: 30px;
  text-align: center;
  display: block;
}
@media screen and (min-width: 768px) {
  .c-button-view {
    padding: 18px 0;
    font-size: 15px;
  }
}

.fv {
  overflow: hidden;
  position: relative;
}
.fv__wrap {
  position: relative;
  height: 100%;
}
.fv__image {
  display: flex;
  height: 100%;
  align-items: center;
}
.fv__image img {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .fv__image img {
    transform: translateY(0%);
  }
}
.fv::after {
  content: "";
  background-image: url("../fonts/heart--gray.svg");
  height: 105%;
  width: 100%;
  background-size: cover;
  position: absolute;
  transform: translate(30%, -5%);
  transform-origin: left top;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .fv::after {
    transform: translate(50%, -5%);
  }
}

.header {
  display: flex;
  align-items: center;
  padding: 20px 5%;
  justify-content: space-between;
  position: fixed;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .header {
    padding: 40px 3%;
  }
}
.header__logo {
  width: 80px;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 100px;
  }
}
.header__ham {
  width: 80px;
}
.header__ham span {
  width: 50%;
  margin-right: 0;
  margin-left: auto;
  max-width: 40px;
  height: 3px;
  background-color: #E29959;
  display: block;
  transition: all 0.3s;
}
.header__ham span:not(:first-child) {
  margin-top: 5px;
}
.header.is--active .header__ham span:not(:first-child) {
  margin-top: 0px;
}
.header.is--active .header__ham span:nth-child(1) {
  transform: translate(0%, 0%) rotate(45deg);
}
.header.is--active .header__ham span:nth-child(2) {
  transform: translateX(100vw);
}
.header.is--active .header__ham span:nth-child(3) {
  transform: translate(0%, -150%) rotate(-45deg);
}
.header.is--active .header-nav {
  transform: translateX(0);
}

.header-nav {
  flex: 1;
  transform: translateX(100%);
  position: absolute;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header-nav {
    position: relative;
    width: auto;
    transform: translateX(0%);
  }
}
.header-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
}
.header-nav__list > * {
  min-width: 50%;
}
@media screen and (min-width: 768px) {
  .header-nav__list > * {
    min-width: initial;
  }
}
.header-nav__list > *:last-child {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header-nav__list > *:last-child {
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .header-nav__list {
    flex-wrap: initial;
    justify-content: flex-end;
    gap: 3%;
    background-color: initial;
  }
}
.header-nav__item {
  font-size: 14px;
  text-align: center;
  white-space: nowrap;
  padding: 10px 0;
  display: block;
}
.header-nav__item .en {
  display: block;
  font-size: 10px;
  color: #9D8C8C;
  margin-top: 5px;
}
.header-nav__item.current-page {
  border-bottom: 2px solid #403333;
}
.header-nav__item.contact {
  padding: 10px 0;
  background-color: #E29959;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header-nav__item.contact {
    flex-direction: column;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    padding: 0;
  }
}
.header-nav__item.contact img {
  width: 20%;
  max-width: 40px;
}
@media screen and (min-width: 768px) {
  .header-nav__item.contact img {
    width: 26%;
    max-width: none;
  }
}
.header-nav__item.contact span {
  display: block;
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .header-nav__item.contact span {
    margin-top: 8px;
    margin-left: 0;
  }
}

.footer {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 50px 50px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .footer {
    height: 560px;
    flex-direction: initial;
    border-radius: 50px 0px 0 0;
  }
}
.footer__button-top {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-color: #E29959;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .footer__button-top {
    width: 70px;
    height: 70px;
  }
}
.footer__content {
  padding-left: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 5%;
  padding-top: 50px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .footer__content {
    width: 50%;
    padding-top: 0px;
    padding-bottom: 0;
  }
}
.footer__logoarea {
  display: flex;
  align-items: center;
  gap: 10px 30px;
  flex-wrap: wrap;
}
.footer__logoarea-text {
  font-size: 12px;
}
.footer__address {
  font-size: 12px;
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .footer__address {
    margin-top: 20px;
  }
}
.footer__nav {
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    margin-top: 20px;
  }
}
.footer small {
  color: #908585;
  font-size: 12px;
  margin-top: 14px;
}
@media screen and (min-width: 768px) {
  .footer small {
    margin-top: 20px;
  }
}
.footer__map {
  width: 100%;
  height: 300px;
}
@media screen and (min-width: 768px) {
  .footer__map {
    width: 50%;
    height: initial;
  }
}
.footer__map iframe {
  height: 100%;
  width: 100%;
}

.footer-nav__list {
  display: flex;
  gap: 5px 20px;
  flex-wrap: wrap;
}
.footer-nav__item {
  font-size: 12px;
}

.contact-block {
  padding: 60px 0 100px 0;
}
@media screen and (min-width: 768px) {
  .contact-block {
    padding: 100px 0 200px 0;
  }
}
.contact-block__content {
  margin-top: 60px;
  display: flex;
  gap: 20px 5%;
  color: #FFFFFF;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .contact-block__content {
    flex-direction: initial;
  }
}
.contact-block__item {
  border-radius: 50px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contact-block__item-phone {
  background-color: #E29959;
}
.contact-block__item-email {
  background-color: #403333;
}
@media screen and (min-width: 768px) {
  .contact-block__item {
    flex: 1;
    height: 340px;
  }
}

.contact-block-item__title {
  font-size: 16px;
  font-weight: 600;
}
.contact-block-item__icon {
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .contact-block-item__icon {
    margin-top: 24px;
  }
}
.contact-block-item__main {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
}
.contact-block-item__main-phone {
  margin-top: 10px;
}
.contact-block-item__main-email {
  margin-top: 18px;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .contact-block-item__main {
    font-size: 32px;
  }
}
.contact-block-item__sub {
  font-size: 14px;
}
.contact-block-item__sub-phone {
  margin-top: 8px;
}
@media screen and (min-width: 768px) {
  .contact-block-item__sub-phone {
    margin-top: 16px;
  }
}
.contact-block-item__sub-email {
  margin-top: 12px;
}/*# sourceMappingURL=common.css.map */