@charset "utf-8";

/* フォント */
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  position: relative;
}

h1 {
  font-family: "Cormorant Garamond", serif;
}

/* 共通項目 */
html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 1vw;
}

.work-btn {
  background-color: #d1a3ff;
  font-weight: bold;
  line-height: 3;
  text-align: center;
}

.work-btn a {
  display: block;
}

.work-btn:hover {
  background-color: #a650ff;
}

h1 {
  filter: drop-shadow(3px 3px 0 #a650ff);
}

h2 {
  font-size: 2rem;
  line-height: 3;
}

nav ul li:hover {
  background: linear-gradient(transparent 70%, #a650ff 70%);
}

/* header */
header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4rem;
}

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

.header-h1 {
  width: 60%;
}

header h1 {
  font-size: 3rem;
}

header nav ul {
  display: flex;
  gap: 5vw;
}

header nav ul li {
  flex: auto;
  font-size: 2rem;
}

/* hero */
.hero {
  padding: 4rem 0 0 0;
  height: 100vh;
}

.hero .inner {
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero p {
  line-height: 2;
}

.hero .work-btn {
  margin: 10vh 0 0 0;
}

/* about */
.about {
  margin: 10vh 0 20vh;
  scroll-margin: 4rem;
}

.about h3 {
  font-size: 1.5rem;
  line-height: 2;
}

.about-br {
  display: none;
}
.about p {
  padding: 1vh 0;
}

.about ul {
  list-style: square;
  list-style-position: inside;
}

/* works */

.works {
  margin: 10vh 0 20vh;
  scroll-margin: 4rem;
}

.work-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1vh;
}

.work-card {
  width: 80%;
  text-align: center;
  background-color: rgb(200, 200, 200);
}

.work-card img {
  width: 40%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
}

.work-card h3 {
  font-size: 2rem;
  line-height: 2;
}

.work-card h4 {
  font-size: 1.5rem;
  line-height: 2;
}

.work-card h5 {
  font-size: 1.3rem;
  line-height: 2;
}

.site-btn {
  margin: 1vw 0;
  display: flex;
  justify-content: center;
}

.site-btn a {
  display: block;
  width: 40%;
  background-color: #d1a3ff;
}

.site-btn a:hover {
  background-color: #a650ff;
}

.workflow-btn {
  margin: 1vw 0;
  display: flex;
  justify-content: center;
}

.workflow-btn a {
  display: block;
  width: 40%;
  background-color: #d1a3ff;
}

.workflow-btn a:hover {
  background-color: #a650ff;
}

/* workflow */
.workflow {
  scroll-margin: 4rem;
}

#LP-eyelash {
  scroll-margin: 4rem;
}

.workflow-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1vh;
}

.workflow-card {
  width: 80%;
  padding: 0 0 1vh 0;
  text-align: center;
  background-color: rgb(200, 200, 200);
}

.workflow-num {
  background: linear-gradient(transparent 70%, #a650ff 70%);
}
.workflow-card h3 {
  font-size: 2rem;
  line-height: 2;
}

.workflow-card h4 {
  font-size: 1.5rem;
  line-height: 3;
}

.workflow-card h5 {
  font-size: 1.3rem;
  line-height: 2;
}

.workflow-br {
  display: none;
}

/* contact */
.contact {
  height: 30vh;
  scroll-margin: 4rem;
}

.contact h3 {
  font-size: 1.5rem;
  line-height: 2;
}

/* footer */
footer {
  width: 100vw;
  height: 50vh;
  background-color: #d1a3ff;
}

footer .inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

footer nav {
  width: 30%;
  height: 50%;
}

footer nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3vh;
}

/* スマホサイズ */
@media screen and (max-width: 767px) {
  /* 共通部分 */
  .inner {
    padding-inline: 5vw;
  }
  /* header */
  .header-h1 {
    width: 50%;
  }
  header h1 {
    font-size: 1.2rem;
  }

  header nav ul li {
    flex: auto;
    font-size: 1rem;
  }

  /* about */
  .about-br {
    display: block;
  }

  /* works */
  .works-note {
    font-size: 0.8rem;
  }

  .work-card h3 {
    font-size: 1.4rem;
    line-height: 2;
  }

  .work-card h4 {
    font-size: 1.3rem;
  }

  .work-card img {
    width: 80%;
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center;
  }

  .workflow-btn {
    margin: 1vw 0;
    display: flex;
    justify-content: center;
  }

  .workflow-btn a {
    display: block;
    width: 60%;
    background-color: transparent;
  }

  .workflow-btn a:hover {
    background-color: transparent;
  }

  .works .workflow-btn h4 {
    font-size: 1rem;
    line-height: 3;
  }

  /* workflow */
  .workflow-card h3 {
    font-size: 1.4rem;
    line-height: 2;
  }

  .workflow-card h4 {
    font-size: 1.1rem;
  }

  .workflow-br {
    display: block;
  }
}
