* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  pointer-events: auto;
}

body {
  margin: 0;
  padding: 0;
  padding-top: 10.4rem;
}

a {
  text-decoration: none;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
span,
a,
label {
  font-family: "noto-sans-cjk-jp", sans-serif;
  color: #161616;
  font-weight: 400;
}

.bold {
  font-weight: 700;
}

li {
  list-style: none;
}

img {
  height: auto;
  width: 100%;
  vertical-align: bottom;
}

@media (min-width: 1024px) {
  .sp__only {
    display: none;
  }
}

.pc__only {
  display: none;
}
@media (min-width: 1024px) {
  .pc__only {
    display: unset;
  }
}

.aspect {
  position: relative;
  overflow: hidden;
  padding-top: 66.67%;
}
.aspect img {
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
}

.spacer__px {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}
@media (min-width: 1024px) {
  .spacer__px {
    padding-left: calc((100vw - 960px) / 2);
    padding-right: calc((100vw - 960px) / 2);
  }
}

@media (min-width: 1024px) {
  .spacer__px--560 {
    padding-left: calc((100vw - 560px) / 2);
    padding-right: calc((100vw - 560px) / 2);
  }
}

@media (min-width: 1024px) {
  .spacer__px--640 {
    padding-left: calc((100vw - 640px) / 2);
    padding-right: calc((100vw - 640px) / 2);
  }
}

@media (min-width: 1024px) {
  .spacer__px--720 {
    padding-left: calc((100vw - 720px) / 2);
    padding-right: calc((100vw - 720px) / 2);
  }
}

@media (min-width: 1024px) {
  .spacer__px--760 {
    padding-left: calc((100vw - 760px) / 2);
    padding-right: calc((100vw - 760px) / 2);
  }
}

@media (min-width: 1024px) {
  .spacer__px--800 {
    padding-left: calc((100vw - 800px) / 2);
    padding-right: calc((100vw - 800px) / 2);
  }
}

.spacer__mx {
  margin-left: 1.6rem;
  margin-right: 1.6rem;
}
@media (min-width: 1024px) {
  .spacer__mx {
    margin-left: calc((100vw - 960px) / 2);
    margin-right: calc((100vw - 960px) / 2);
  }
}

.spacer__pt {
  padding-top: 6.4rem;
}
@media (min-width: 1024px) {
  .spacer__pt {
    padding-top: 120px;
  }
}

.spacer__pb {
  padding-bottom: 6.4rem;
}
@media (min-width: 1024px) {
  .spacer__pb {
    padding-bottom: 120px;
  }
}

.spacer__mt {
  margin-top: 6.4rem;
}
@media (min-width: 1024px) {
  .spacer__mt {
    margin-top: 120px;
  }
}

.spacer__mb {
  margin-bottom: 6.4rem;
}
@media (min-width: 1024px) {
  .spacer__mb {
    margin-bottom: 120px;
  }
}

.header {
  width: 100%;
  height: 64px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: inline-block;
  width: 48px;
}
.header nav {
  position: absolute;
  top: 64px;
  left: 100%;
  width: 100%;
  height: calc(100svh - 64px);
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}
@media (min-width: 1024px) {
  .header nav {
    position: unset;
    flex-direction: row;
    height: max-content;
    width: max-content;
  }
}
.header nav ul {
  display: grid;
  gap: 4rem;
  justify-content: center;
  align-items: center;
  margin-top: -8rem;
}
@media (min-width: 1024px) {
  .header nav ul {
    grid-template-columns: repeat(3, max-content);
    margin-top: 0;
    gap: 2.4rem;
  }
}
.header nav ul li {
  justify-content: center;
  display: flex;
}
.header nav ul li a {
  font-size: 2rem;
  font-weight: 700;
  line-height: 100%;
  text-align: center;
}
@media (min-width: 1024px) {
  .header nav ul li a {
    font-size: 1.6rem;
  }
}
.header .nav__active {
  left: 0%;
  transition: all 0.4s;
}
.header .burger {
  display: grid;
  width: 20px;
  gap: 0.8rem;
}
@media (min-width: 1024px) {
  .header .burger {
    display: none;
  }
}
.header .burger__line {
  width: 100%;
  height: 1px;
  background-color: #161616;
  transition: all 0.4s;
  border-radius: 10px;
}
.header .burger .line__1--active {
  transform: rotate(45deg) translate(6px, 2px);
  transition: 0.2s ease-in-out;
}
.header .burger .line__2--active {
  display: none;
}
.header .burger .line__3--active {
  transform: rotate(-45deg) translate(5px, -1px);
  transition: 0.2s ease-in-out;
}

hgroup {
  margin-bottom: 3.2rem;
}
hgroup h3 {
  font-size: 3.2rem;
  font-family: "komet", sans-serif;
  line-height: 1.5;
  font-weight: 900;
}
hgroup p {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
}

.hgroup--center {
  display: flex;
  flex-direction: column;
  justify-self: center;
}
.hgroup--center p {
  text-align: center;
}

.works__list {
  display: grid;
}
.works__list .works__skills {
  margin-top: 1.6rem;
  display: flex;
}

.btn__primary {
  background-color: #efab35;
  border-radius: 99px;
  color: white;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0.8rem 2.4rem;
}

.btn__primary--accent {
  background-color: #efab35;
}

.btn__primary--center {
  display: flex;
  justify-self: center;
}

.wpcf7 .wpcf7-form {
  display: grid;
  gap: 3.2rem;
}
@media (min-width: 1024px) {
  .wpcf7 .wpcf7-form {
    gap: 4rem;
  }
}
.wpcf7 .wpcf7-form .single__contact {
  display: grid;
  gap: 0.8rem;
}
.wpcf7 .wpcf7-form .single__contact--label label {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 150%;
}
.wpcf7 .wpcf7-form .single__contact--label .required,
.wpcf7 .wpcf7-form .single__contact--label .optional {
  margin-left: 0.8rem;
  font-size: 1.6rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 150%;
  border-radius: 4px;
  padding: 0 0.8rem;
}
.wpcf7 .wpcf7-form .single__contact--label .required {
  border: 1px solid #efab35;
  color: #efab35;
}
.wpcf7 .wpcf7-form .single__contact--label .optional {
  border: 1px solid #bababa;
  color: #bababa;
}
.wpcf7 .wpcf7-form .single__contact--input input[type=text],
.wpcf7 .wpcf7-form .single__contact--input input[type=email],
.wpcf7 .wpcf7-form .single__contact--input textarea {
  width: 100%;
  border: 1px solid #cfcfcf;
  background-color: #f2f2f2;
  border-radius: 4px;
  padding: 0 0.8rem;
}
.wpcf7 .wpcf7-form .single__contact--input input[type=text],
.wpcf7 .wpcf7-form .single__contact--input input[type=email] {
  height: 36px;
}
.wpcf7 .wpcf7-form .single__contact--input textarea {
  height: 120px;
}
.wpcf7 .wpcf7-form .single__contact--input .wpcf7-radio {
  display: grid;
  gap: 1.2rem;
}
@media (min-width: 1024px) {
  .wpcf7 .wpcf7-form .single__contact--input .wpcf7-radio {
    display: flex;
  }
}
.wpcf7 .wpcf7-form .single__contact--input .wpcf7-radio .wpcf7-list-item {
  margin-left: 0;
}
.wpcf7 .wpcf7-form .single__contact--input .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
}
.wpcf7 .wpcf7-form .single__contact--input .wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  margin-left: 0.4rem;
}
.wpcf7 .wpcf7-form .submit-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wpcf7 .wpcf7-form .submit-box input {
  border: 0;
  width: max-content;
  padding: 0.8rem 6.4rem;
  display: flex;
  justify-self: center;
}

.footer__text {
  font-size: 1.2rem;
  font-family: "komet", sans-serif;
  line-height: 1;
  text-align: center;
}

.works__img {
  width: 100%;
}
.works__img .img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 8rem);
  opacity: 1;
}

.works__skills {
  display: flex;
}
.works__skills span {
  font-size: 1.4rem;
  font-weight: 500;
  color: #c0c3b7;
  line-height: 1.5;
  padding-right: 0.8rem;
  margin-right: 0.8rem;
  border-right: 1px solid #c0c3b7;
}
.works__skills span:last-child {
  border: 0;
}

.works__title {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.7;
}

.single__detail {
  display: grid;
  gap: 0.8rem;
  padding-bottom: 3.2rem;
  border-bottom: 1px solid #efefef;
}
@media (min-width: 1024px) {
  .single__detail {
    grid-template-columns: 200px 1fr;
    gap: 0;
    padding-bottom: 4rem;
  }
}
.single__detail--title {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 700;
}
.single__detail--text {
  font-size: 1.6rem;
  line-height: 1.8;
}
.single__detail--color {
  display: flex;
  gap: 1.6rem;
}
.single__detail--color .color {
  width: 56px;
  height: 56px;
}
.single__detail--skill {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.single__detail--skill li {
  font-size: 1.6rem;
  line-height: 1.5;
  background-color: #efefef;
  padding: 0 0.8rem;
  border-radius: 4px;
}

.works__lists {
  display: grid;
  gap: 3.2rem;
  margin-bottom: 4.8rem;
}
@media (min-width: 1024px) {
  .works__lists {
    row-gap: 4.8rem;
    column-gap: 4rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.about {
  position: relative;
}
.about__cnt {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .about__cnt {
    grid-template-columns: 1fr 397px;
  }
}
.about__cnt--contents p,
.about__cnt--contents li {
  font-size: 1.6rem;
  line-height: 1.8;
}
.about__cnt--contents li {
  list-style: disc;
  margin-left: 1.6rem;
}

.about::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #efab35;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 1024px) {
  .about::before {
    width: 80%;
  }
}

.fv {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .fv {
    gap: 10.4rem;
    grid-template-columns: 1fr 433px;
    align-items: center;
    height: 70svh;
  }
}
.fv__intro {
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 1024px) {
  .fv__intro {
    grid-template-rows: repeat(2, max-content);
  }
}
.fv__intro--text {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 125%;
  letter-spacing: 0.03em;
}
@media (min-width: 1024px) {
  .fv__intro--text {
    font-size: 3.2rem;
  }
}
.fv__intro--text .lg {
  font-size: 4.8rem;
  line-height: 1.5em;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .fv__intro--text .lg {
    font-size: 6.4rem;
  }
}
.fv__intro--text .sm {
  font-size: 2rem;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .fv__intro--text .sm {
    font-size: 2.4rem;
  }
}
.fv__intro--skills {
  font-size: 2rem;
  line-height: 125%;
}
.fv__intro--skills span {
  letter-spacing: 0.03em;
  font-weight: 700;
  background: linear-gradient(transparent 73%, #efab35 60%);
}
.fv__img {
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.12);
}

.singular__works--top {
  display: grid;
  gap: 2.4rem;
  padding-right: 1.6rem;
  padding-left: 1.6rem;
}
@media (min-width: 1024px) {
  .singular__works--top {
    grid-template-columns: max-content 60%;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0;
    gap: 6.4rem;
  }
}
@media (min-width: 1920px) {
  .singular__works--top {
    padding-right: calc((100vw - 1600px) / 2);
    padding-left: calc((100vw - 1600px) / 2);
  }
}
@media (min-width: 1024px) {
  .singular__works--top .img {
    width: 75%;
  }
}
.singular__works--lead {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media (min-width: 1024px) {
  .singular__works--lead {
    padding-top: 12.8rem;
  }
}
@media (min-width: 1024px) {
  .singular__works--banner {
    padding-top: 12.8rem;
  }
}
.singular__works--details .detail__cnt {
  display: grid;
  gap: 3.2rem;
}
@media (min-width: 1024px) {
  .singular__works--details .detail__cnt {
    gap: 4rem;
  }
}
.singular__works--capture {
  display: grid;
  gap: 1.6rem;
}
@media (min-width: 1024px) {
  .singular__works--capture {
    grid-template-columns: repeat(3, 1fr);
    padding-top: 12.8rem;
  }
}
.singular__works--capture .single__capture {
  position: relative;
  overflow: hidden;
  padding-top: 75%;
}
.singular__works--capture .single__capture img {
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
}
.singular__works--whole {
  display: grid;
}
.singular__works--whole .note {
  grid-area: 2/1/3/2;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .singular__works--whole .note {
    text-align: end;
  }
}
@media (min-width: 1024px) {
  .singular__works--page {
    padding-top: 12.8rem;
  }
}/*# sourceMappingURL=main.css.map */