@charset "utf-8";
/*
Theme Name: limina beauty
Version: 1.0
Author: Femme Creatives
*/

html {
  scroll-behavior: smooth;
}

body .pc {
  display: none;
}

@media screen and (min-width: 1024px) {
  body .sp {
    display: none;
  }

  body .pc {
    display: block;
  }
}

/* ----------------------------------------------------
    共通
---------------------------------------------------- */

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.5;
  font-size: 16px;
  letter-spacing: 2px;
  color: #564e3d;
}

img {
  width: 100%;
  height: auto;
}

video {
  width: 100%;
}

.inner {
  width: 84%;
  margin: 0 8%;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: 32px;
  font-weight: 400;
  font-family: "Marcellus", serif;
  letter-spacing: 4px;
  margin-bottom: 12px;
  line-height: 1;
}

.section-heading p {
  font-family: "Shippori Mincho B1", serif;
  line-height: 1;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  font-size: 12px;
}

.section-heading p::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: #564e3d;
  margin-right: 8px;
}

@media screen and (1024px <=width) {
  .section-heading {
    margin-bottom: 80px;
  }

  .section-heading h2 {
    font-size: 64px;
    letter-spacing: 8px;
    margin-bottom: 20px;
  }

  .section-heading p {
    font-size: 16px;
  }
}

/* ----------------------------------------------------
	header
---------------------------------------------------- */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

header h1 {
  font-size: 14px;
  font-weight: 400;
  font-family: "Marcellus", serif;
  color: #806e47;
}

header a.header-logo {
  text-decoration: none;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
  padding: 16px;
  background-color: #fff;
  box-shadow: 0px 0px 12px 0px rgba(128, 110, 71, 0.2);
  z-index: 999;
}

.header__nav {
  position: absolute;
  display: flex;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  transform: translateX(100%);
  background-color: #fff;
  transition: ease 0.4s;
  height: 100vh;
  z-index: 998;
}

.header__nav.active {
  transform: translateX(0);
}

.nav-items {
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav-items__item a {
  color: #564e3d;
  text-decoration: none;
  letter-spacing: 3px;
}

.nav-items__item:not(:last-child) {
  text-align: center;
  padding-bottom: 48px;
}

.hamburger {
  position: relative;
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  border-radius: 100px;
  cursor: pointer;
  border: none;
}

.hamburger .span {
  height: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  display: block;
  display: flex;
  width: 100%;
}

.hamburger .span > span {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 1px;
  background-color: #806e47;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.hamburger .span > span:nth-child(1) {
  top: 40%;
}

.hamburger .span > span:nth-child(2) {
  top: 50%;
}

.hamburger .span > span:nth-child(3) {
  top: 60%;
}

.hamburger.active .span > span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

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

.hamburger.active .span > span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (1024px <=width) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 100%;
  }

  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: flex-end;
    gap: 48px;
  }

  header h1 {
    font-size: 24px;
    white-space: nowrap;
  }

  .nav-bg {
    display: none;
  }

  .nav-items {
    position: inherit;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }

  .nav-items__item:not(:last-child) {
    padding-bottom: 0;
  }

  .nav-items__item a {
    width: 100%;
    display: block;
    border-top: none;
    padding-top: 0px;
    margin-top: 0px;
    padding-left: 0%;
  }

  .nav-items__item a:hover {
    opacity: 0.7;
  }

  .hamburger {
    display: none;
  }

  .header__inner {
    padding: 32px;
  }
}

/* ----------------------------------------------------
	mv
---------------------------------------------------- */
.mv {
  height: 100vh;
  position: relative;
}

.mv-img img {
  height: 100vh;
  object-fit: cover;
  object-position: 80%;
}

.mv-text {
  position: absolute;
  left: 8%;
  top: 28%;
  color: #806e47;
}

.mv .main-copy {
  font-size: 24px;
  font-family: "Shippori Mincho B1", serif;
  margin-bottom: 8px;
}

.mv .sub-copy {
  font-size: 16px;
  font-family: "Shippori Mincho B1", serif;
  line-height: 1.6;
}

@media screen and (1024px <=width) {
  .mv-text {
    position: absolute;
    bottom: 120px;
    top: auto;
  }

  .mv .main-copy {
    font-size: 52px;
    margin-bottom: 16px;
  }

  .mv .sub-copy {
    font-size: 24px;
  }
}

/* ----------------------------------------------------
	about
---------------------------------------------------- */
.about {
  background-image: url(/images/about-bg.jpg);
  padding: 80px 0;
}

.about__text {
  line-height: 3;
  margin-bottom: 32px;
}

.sec-wrap1 {
  background-image: url(./images/about-bg.jpg);
  box-sizing: border-box;
}

@media screen and (min-width: 1024px) {
  .about {
    padding: 180px 0;
  }

  .about__inner {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
  }

  .about__content {
    width: 40%;
  }

  .about__image {
    width: 50%;
  }

  .about__text {
    line-height: 3;
  }
}

/* ----------------------------------------------------
    service
---------------------------------------------------- */
.service {
  padding: 106px 0;
  background: #fff;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0% 100%);
}

.service ul li {
  margin-bottom: 24px;
}

.service-img {
  margin-bottom: 24px;
}

.service ul li h3 {
  margin-bottom: 16px;
  font-size: 18px;
}

.service ul li p {
  font-size: 15px;
  margin-bottom: 24px;
}

.service ul li a {
  display: block;
  font-size: 14px;
  padding: 12px;
  border: #806e47 1px solid;
  text-align: center;
  color: #806e47;
  text-decoration: none;
}

@media screen and (min-width: 1024px) {
  .service {
    padding: 240px 0;
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0% 100%);
  }

  .service ul {
    display: flex;
    justify-content: space-between;
  }

  .service ul li {
    width: 30%;
    display: flex;
    flex-direction: column;
  }

  .service ul li h3 {
    font-size: 24px;
  }

  .service ul li p {
    font-size: 16px;
  }

  .service ul li a {
    font-size: 16px;
    padding: 16px;
    margin-top: auto;
  }
}

/* ----------------------------------------------------
    news
---------------------------------------------------- */
.news {
  padding: 80px 0;
}

.news ul li a {
  display: flex;
  gap: 16px;
  color: #806e47;
  padding: 16px;
  background-image: repeating-linear-gradient(
    90deg,
    #806e4733,
    #806e4733 2px,
    transparent 2px,
    transparent 4px
  );
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  text-decoration: none;
}

.news ul li .date {
  font-size: 14px;
  width: 28%;
}

.news ul li .title {
  font-size: 15px;
}

@media screen and (min-width: 1024px) {
  .news {
    padding: 120px 0;
  }

  .news__inner {
    display: flex;
    justify-content: space-between;
  }

  .news ul {
    width: 67%;
  }

  .news ul li a {
    padding: 24px;
    gap: 32px;
  }

  .news ul li .date {
    width: 100px;
  }

  .news ul li .title {
    font-size: 16px;
  }
}

/* ----------------------------------------------------
    company
---------------------------------------------------- */

.company {
  padding: 80px 0;
}

.company ul li {
  display: flex;
  color: #806e47;
}

.company ul li h3 {
  font-size: 14px;
  padding-left: 4px;
  width: 28%;
  border-bottom: #806e47 1px solid;
  padding: 16px 4px;
}

.company ul li p {
  font-size: 15px;
  padding: 16px 4px;
  background-image: repeating-linear-gradient(
    90deg,
    #806e4733,
    #806e4733 2px,
    transparent 2px,
    transparent 4px
  );
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  width: 72%;
}

.map {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
  margin-bottom: 24px;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1024px) {
  .company {
    padding: 120px 0;
  }

  .company .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .map-wrap {
    width: 42.5%;
  }

  .map {
    margin-bottom: 0;
  }

  .company ul {
    width: 53.8%;
  }

  .company ul li h3 {
    width: 160px;
    padding: 24px 16px;
    font-size: 16px;
  }

  .company ul li p {
    padding: 24px 16px;
    font-size: 16px;
  }
}

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

footer {
  background-color: #a2977e;
  padding: 32px 0;
}

.footer-logo {
  font-size: 24px;
  text-align: center;
  color: #fff;
  display: block;
  text-decoration: none;
  font-weight: 400;
  font-family: "Marcellus", serif;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

footer nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

footer nav ul li {
  width: calc((100% - 12px) / 2);
  text-align: center;
}

footer nav ul li a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-family: "Marcellus", serif;
}

footer .sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 12px;
  margin-bottom: 16px;
}

footer .sns-link a {
  color: #fff;
  text-decoration: none;
}

footer .sns-link .sns-icon {
  width: 16px;
}

footer small {
  display: block;
  font-size: 12px;
  width: 100%;
  text-align: center;
  color: #fff;
}

@media screen and (min-width: 1024px) {
  footer {
    padding: 64px 0;
  }

  footer .pc {
    display: flex;
    justify-content: space-between;
  }

  .footer-logo {
    font-size: 32px;
    text-align: left;
    margin-bottom: 24px;
  }

  footer .sns-link {
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 8px;
  }

  footer small {
    text-align: left;
  }

  footer nav ul {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 16px;
  }

  footer nav ul li a {
    font-size: 16px;
  }
}
