@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
}

html {
  font: min(16px, 4vw)/1.5 "Noto Sans JP", sans-serif;
}

p {
  margin-block: 1em;
}

img {
  max-inline-size: 100%;
}

.heading-1 {
  font-family: "Avenir Next", Poppins, "Noto Sans JP", sans-serif;
  font-size: 2.1875rem;
  font-weight: 700;
  color: #5ec1c3;
  letter-spacing: 0.1em;
}
.heading-1 > small {
  display: block;
  font-size: 35%;
  font-weight: 500;
  color: initial;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 480px) {
  .heading-1 {
    text-align: center;
  }
}

.heading-2 {
  font-family: "Avenir Next", Poppins, "Noto Sans JP", sans-serif;
  font-size: 2.1875rem;
  font-weight: 700;
  color: #5ec1c3;
  letter-spacing: 0.1em;
}
.heading-2 > small {
  display: block;
  font-size: 35%;
  font-weight: 500;
  color: initial;
  letter-spacing: 0.3em;
}

header {
  position: fixed;
  inset-inline: 0;
  inset-block-start: 0;
  z-index: 100;
  display: flex;
  color: #fff;
  background: #5ec1c3;
}
header .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: #fff;
}
header .logo img {
  display: block;
  block-size: 32px;
}
@media screen and (max-width: 480px) {
  header .logo {
    padding-inline: 15px;
  }
}
header nav {
  margin-inline-start: auto;
}
header nav > ul {
  display: flex;
  block-size: 100%;
  padding: 0;
}
header nav > ul > li {
  display: block;
  font-family: "Avenir Next", "Poppins", sans-serif;
  transition: background-color 0.2s linear;
}
header nav > ul > li:hover {
  background: #489a9c;
}
header nav > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 1.2em;
  color: inherit;
  text-decoration: none;
  block-size: 100%;
}
header .menu-toggle {
  position: relative;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #5ec1c3;
  border: none;
  border-radius: 100%;
  block-size: 54px;
  inline-size: 54px;
}
header .menu-toggle span {
  position: absolute;
  inset-block: calc(50% - 1.5px);
  inset-inline: 25%;
  display: block;
  background: #fff;
  block-size: 3px;
  transition: opacity 0.4s linear, transform 0.4s linear;
}
header .menu-toggle span:nth-child(1) {
  transform: translateY(-8px);
}
header .menu-toggle span:nth-child(3) {
  transform: translateY(8px);
}
header .menu-toggle.active span:nth-child(1) {
  transform: translateY(0) rotate(-1.125turn);
}
header .menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
header .menu-toggle.active span:nth-child(3) {
  transform: translateY(0) rotate(1.125turn);
}
@media screen and (min-width: 481px) {
  header .menu-toggle {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  header {
    align-items: center;
    justify-content: space-between;
    padding-inline: 15px;
    background: #fff;
  }
  header .logo {
    padding-inline: 0;
  }
  header nav {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7vw;
    background: #5ec1c3;
    transition: opacity 0.4s linear;
  }
  header nav > ul {
    flex-direction: column;
    block-size: unset;
  }
  header nav > ul li a {
    padding: 0.25em;
  }
}

footer {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 80px 20px;
  font-family: "Avenir Next", Poppins, "Noto Sans JP", sans-serif;
  color: #fff;
  background: #5ec1c3;
}
footer a {
  color: inherit;
}
footer a:not(:hover) {
  text-decoration: none;
}
footer .to-page-top {
  margin-inline-start: auto;
}
@media screen and (max-width: 480px) {
  footer {
    flex-direction: column-reverse;
  }
  footer .to-page-top {
    margin-inline-start: 0;
  }
}

section > .section-wrapper {
  inline-size: min(900px, 100%);
  margin-inline: auto;
  overflow: visible;
}
section.next {
  display: grid;
  margin-block: 100px;
  font-size: 1.5rem;
  transition: opacity 1s cubic-bezier(0, 0, 0, 1), transform 1s cubic-bezier(0, 0, 0, 1);
}
section.next .background {
  z-index: 1;
  grid-row: 1;
  grid-column: 1;
  overflow: hidden;
}
section.next .background img {
  inline-size: 100%;
}
section.next .section-wrapper {
  z-index: 2;
  display: flex;
  flex-direction: column;
  grid-row: 1;
  grid-column: 1;
  align-items: center;
  justify-content: center;
}
section.next .section-wrapper .link-button {
  padding-inline: 1.5em;
  font-size: 1.25rem;
  min-inline-size: 8em;
}
section.next.no-margin {
  margin-block-start: 0;
}
section.next.observer-target:not(.intersected) {
  opacity: 0;
  transform: translateY(20%);
}
section.next:has(.background) {
  box-sizing: content-box;
  color: #fff;
  block-size: 720px;
}
@media screen and (max-width: 480px) {
  section.next .background .simpleParallax {
    block-size: 100%;
  }
  section.next .background img {
    object-fit: cover;
    inline-size: unset;
    block-size: 100%;
  }
  section.next:has(.background) {
    block-size: unset;
    aspect-ratio: 5/4;
  }
  section.next:has(.background) .link-button {
    color: #fff;
    background: #5ec1c3;
  }
}
@media screen and (max-width: 480px) {
  section:not(.next) {
    padding-inline: 15px;
  }
}

.form-title {
  font-weight: 400;
  line-height: 2;
  color: #fff;
  text-align: center;
  background: #5ec1c3;
}
.form-title + p {
  margin-block: 1.5em;
  text-align: center;
}

form .form-error {
  color: #e00;
}
form table {
  border-spacing: 0;
  border: 1px solid #5ec1c3;
  border-inline-start: none;
  inline-size: 100%;
}
form table input, form table textarea, form table select {
  padding: 0.35em 0.5em;
  font-size: inherit;
  color: #000;
  border: 1px solid #5ec1c3;
  border-radius: 0;
  outline: none;
  appearance: none;
  inline-size: 100%;
}
form table select {
  background: #fff url("/assets/images/select.svg") no-repeat right 1em center;
}
form table textarea {
  resize: vertical;
}
form table th, form table td {
  padding: 1.2em;
  text-align: start;
  vertical-align: top;
}
form table th {
  font-weight: 400;
  color: #fff;
  vertical-align: middle;
  background: #5ec1c3;
  inline-size: 25%;
}
form table td {
  border: 1px solid #5ec1c3;
}
form table tr:not(:first-of-type) th {
  border-block-start: 1px solid #fff;
}
form table tr:not(:last-of-type) th {
  border-block-end: 1px solid #fff;
}
@media screen and (max-width: 480px) {
  form table {
    border: 1px solid #5ec1c3;
  }
  form table tr {
    display: block;
    border: none;
  }
  form table th, form table td {
    display: block;
    padding-block: 0.75em;
    border: none;
    inline-size: 100%;
  }
}
form .submit-button {
  display: flex;
  justify-content: center;
  margin-block: 3rem;
}
form .submit-button input {
  padding: 0.35em 1.5em;
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: #5ec1c3;
  border: none;
  transition: background-color 0.15s linear;
}
form .submit-button input:hover {
  background: #489a9c;
}

.top-mv {
  position: relative;
}
.top-mv > .photo {
  inline-size: 77%;
}
.top-mv > .type {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  padding-inline-end: min(40px, 2vw);
  font: 700 min(96px, 15vw) "Avenir Next", "Poppins", sans-serif;
  color: #5ec1c3;
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0, 0, 0, 1), transform 1.5s cubic-bezier(0, 0, 0, 1);
  transform: translateY(30%);
  inset-inline-end: 0;
  inset-block-start: 25%;
  inline-size: 49%;
}
.top-mv > .type span.logo {
  line-height: 1;
  text-align: end;
}
.top-mv.privacy .photo {
  display: flex;
  align-items: top;
  aspect-ratio: 2/1;
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .top-mv > .photo {
    inline-size: 80%;
  }
  .top-mv.privacy > .type {
    display: flex;
    justify-content: flex-end;
    inset-block-start: 20%;
    inline-size: 75%;
  }
  .top-mv:not(.privacy) {
    overflow-x: hidden;
  }
  .top-mv:not(.privacy) > .photo {
    inline-size: 72.5%;
  }
  .top-mv:not(.privacy) .type {
    justify-content: center;
    padding: 0;
    padding-inline-start: 2vw;
    transform: rotate(90deg) translateY(20%);
    inline-size: 53vw;
  }
}
body.loaded .top-mv > .type {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 480px) {
  body.loaded .top-mv:not(.privacy) > .type {
    transform: rotate(90deg) translateY(-50%);
  }
}

.mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.mv h1 {
  font: 700 min(96px, 15vw) "Avenir Next", "Poppins", sans-serif;
  color: #5ec1c3;
}
.mv h1 > .logo {
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0, 0, 0, 1), transform 1.5s cubic-bezier(0, 0, 0, 1);
  transform: translateY(150px);
}
.mv h1 > small {
  margin-block-start: 2em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.03em;
}
.mv h1 .logo, .mv h1 small {
  display: block;
}
.mv > .mv-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline-end: 50px;
  line-height: 2;
}
@media screen and (max-width: 480px) {
  .mv > .mv-content {
    line-height: 1.5;
  }
}
.mv > .mv-content .larger {
  font-size: 140%;
}
.mv.title-only {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 80px;
}
.mv.recruit-mv {
  max-inline-size: 1000px;
  position: relative;
  padding-block-end: 200px;
  margin-block-end: 60px;
  margin-inline: auto;
}
.mv.recruit-mv .photo-1 {
  inset-block-start: 30px;
  inset-inline-start: 0;
  aspect-ratio: 1.318/1;
}
.mv.recruit-mv .photo-2 {
  inset-inline-end: 0;
  inset-block-end: 0;
  aspect-ratio: 1.518/1;
}
.mv.recruit-mv .photo-1, .mv.recruit-mv .photo-2 {
  position: absolute;
  block-size: min(260px, 33vw);
  overflow: hidden;
}
@media screen and (max-width: 480px) {
  .mv.recruit-mv {
    padding-block-end: 60px;
  }
}
body.loaded .mv h1 > span {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 480px) {
  .mv {
    grid-template-columns: 1fr;
  }
  .mv h1 {
    text-align: center;
  }
  .mv > .mv-content {
    padding-inline: 15px;
  }
}

dl {
  display: grid;
  grid-template-columns: 30% 1fr;
  border-block-start: 1px solid #000;
}
dl dt {
  padding-inline: 4em;
}
dl dd {
  padding-inline-end: 4em;
}
dl dt, dl dd {
  padding-block: 1em;
  border-block-end: 1px solid #000;
}
@media screen and (min-width: 481px) {
  dl {
    line-height: 2;
  }
}
@media screen and (max-width: 480px) {
  dl {
    grid-template-columns: 1fr;
  }
  dl dt,
  dl dd {
    display: block;
    grid-column: 1;
    padding: 1em;
  }
  dl dt {
    border-block-end: none;
  }
  dl dd {
    padding-block-start: 0;
  }
}

.logotype {
  padding-inline-start: calc((100dvw - min(900px, 100%)) / 2);
  margin-block-start: 50px;
  overflow: hidden;
}
.logotype img {
  position: relative;
  block-size: 192px;
  z-index: -1;
  max-inline-size: unset !important;
  transition: transform 0.4s cubic-bezier(0, 0, 0, 1);
}
.logotype.top {
  margin-block-end: -160px;
}
@media screen and (max-width: 480px) {
  .logotype {
    padding-inline-start: calc((100dvw - min(200px, 100%)) / 2);
  }
  .logotype img {
    block-size: 20dvw;
  }
}

.wrap-img {
  position: relative;
  inline-size: min(980px, 100%);
  margin-inline: auto;
}
.wrap-img > img {
  display: block;
}
.wrap-img > a {
  position: absolute;
  transition: opacity 0.1s linear;
}
.wrap-img > a.back {
  top: 15px;
  right: 15px;
  font-size: min(2em, 4vw);
  line-height: 1;
}
.wrap-img > a.icon {
  width: min(64px, 6.5vw);
  height: min(64px, 6.5vw);
}
.wrap-img > a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 480px) {
  .wrap-img > a.back {
    top: 3px;
    right: 5px;
  }
}
.wrap-img.lilly a {
  color: #f29ab2;
}
.wrap-img.lilly a.instagram, .wrap-img.lilly a.twitter, .wrap-img.lilly a.line {
  top: min(520px, 49vw);
}
.wrap-img.lilly a.instagram {
  left: min(370px, 34vw);
}
.wrap-img.lilly a.twitter {
  left: min(450px, 42vw);
}
.wrap-img.lilly a.line {
  left: min(530px, 50vw);
}
.wrap-img.rana a {
  color: #efeb42;
}

a.link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: 0.5em;
  padding-inline: 1em;
  margin-block-start: 40px;
  font: 700 16px/1 "Avenir Next", "Poppins", sans-serif;
  color: #5ec1c3;
  text-decoration: none;
  border: 2px solid #5ec1c3;
  transition: color 0.2s linear, background-color 0.2s linear;
}
a.link-button:hover {
  color: #fff;
  background: #5ec1c3;
}
@media screen and (max-width: 480px) {
  a.link-button {
    display: flex;
    margin-inline: auto;
    font-size: 20px;
    inline-size: 260px;
    block-size: 64px;
  }
}

.overlay {
  position: fixed;
  inset-block: 0;
  inset-inline: 0;
  z-index: 9999;
  background: #fff;
}

.map iframe {
  display: block;
  aspect-ratio: 72/49;
  border: none;
  inline-size: 100%;
}
.map + address {
  margin-block: 1em;
  font-style: normal;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .map iframe {
    aspect-ratio: 72/72;
  }
}

.profile {
  border-color: #c9caca;
}
.profile-name {
  color: #9fa0a0;
}
.profile-name, .profile-text {
  border-color: inherit;
}

.privacy-heading {
  margin-block-start: 4em;
  margin-block-end: 1em;
  font-size: inherit;
  font-weight: 500;
}
@media screen and (min-width: 481px) {
  .privacy-heading + p {
    line-height: 2;
  }
}

@keyframes scroll-stripe {
  0% {
    background-position-y: 0;
  }
  100% {
    background-position-y: -205.4vw;
  }
}
@keyframes overlay-fadeout {
  0% {
    opacity: 1;
  }
  100% {
    pointer-events: none;
    opacity: 0;
  }
}
body.with-pattern {
  background: url("../images/pattern.svg") repeat-y center top/100%;
  animation: scroll-stripe 60s linear infinite;
}
body.loaded > .overlay {
  animation: overlay-fadeout 0.5s linear forwards;
}
@media screen and (max-width: 480px) {
  body.nav-visible {
    overflow: hidden;
  }
  body.nav-visible nav {
    opacity: 1;
  }
  body:not(.nav-visible) nav {
    pointer-events: none;
    opacity: 0;
  }
}

.links {
  display: grid;
  gap: 8px;
  padding: 8px;
  margin-inline: auto;
  inline-size: min(696px, 100%);
  background: #fff;
}
.links .link-item {
  display: block;
}
.links .link-item img {
  display: block;
  transition: opacity linear 0.1s;
}
.links .link-item:hover img {
  opacity: 0.7;
}

.page-content > section:not(.no-padding) {
  padding-block: 80px;
}

@media screen and (max-width: 480px) {
  .center-sp {
    text-align: center;
  }
}
.services {
  display: grid;
  gap: 50px;
  margin-block: 80px;
  counter-reset: services-index;
}
.services > .group {
  position: relative;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  counter-increment: services-index;
}
.services > .group > .detail .heading {
  padding-block-start: 1.2em;
  padding-inline-start: 1.5em;
  margin-block-end: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-size: min(24px, 6vw);
  font-weight: 400;
}
.services > .group > .detail .heading > .jp {
  font-size: 75%;
}
.services > .group > .photo {
  display: flex;
  flex: 0 0 50%;
  align-items: center;
  aspect-ratio: 5/2;
}
.services > .group::before {
  font-size: 28px;
  font-weight: 400;
  content: counter(services-index);
}
.services > .group::after {
  font-size: 48px;
  font-weight: 400;
  content: "／";
}
.services > .group::before, .services > .group::after {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
}
@media screen and (max-width: 480px) {
  .services {
    margin-block: 50px;
  }
  .services > .group {
    flex-direction: column;
    gap: 15px;
  }
  .services > .group > .photo {
    inline-size: 100%;
  }
}

.brands {
  display: grid;
  gap: 140px;
}
.brands > .brand {
  display: grid;
}
.brands > .brand .brand-name {
  text-align: center;
}
.brands > .brand > .photo {
  display: flex;
  align-items: center;
  aspect-ratio: 56/34;
  overflow: hidden;
}
.brands > .brand > .photo img {
  display: block;
  inline-size: 100%;
}
.brands > .brand .instagram {
  display: flex;
  justify-content: center;
}
.brands > .brand .instagram > a {
  display: grid;
  block-size: fit-content;
}
.brands > .brand .instagram > a img {
  display: block;
  grid-row: 1;
  grid-column: 1;
  transition: opacity 0.15s linear;
}
.brands > .brand .instagram > a:hover img:nth-of-type(2) {
  opacity: 1;
}
.brands > .brand .instagram > a:not(:hover) img:nth-of-type(2) {
  opacity: 0;
}
@media screen and (min-width: 481px) {
  .brands > .brand {
    grid-template-rows: 60px 1fr;
    grid-template-columns: 45% 1fr 45%;
  }
  .brands > .brand .brand-name {
    grid-row: 1;
  }
  .brands > .brand > .photo {
    grid-row: 1/3;
  }
  .brands > .brand .instagram {
    grid-row: 2;
  }
  .brands > .brand .instagram > a img {
    block-size: 320px;
  }
  .brands > .brand:nth-of-type(odd) .brand-name {
    grid-column: 3;
  }
  .brands > .brand:nth-of-type(odd) .photo {
    grid-column: 1/3;
  }
  .brands > .brand:nth-of-type(even) .brand-name {
    grid-column: 1;
  }
  .brands > .brand:nth-of-type(even) .photo {
    grid-column: 2/4;
  }
}
@media screen and (max-width: 480px) {
  .brands > .brand {
    row-gap: 6.5vw;
  }
  .brands > .brand .brand-name {
    grid-row: 1;
  }
  .brands > .brand > .photo {
    grid-row: 2;
  }
  .brands > .brand .instagram {
    grid-row: 3;
  }
  .brands > .brand .instagram img {
    inline-size: 50vw;
  }
}

#works .section-wrapper {
  display: grid;
  inline-size: 100%;
  max-block-size: 100dvh;
}
#works .works-slide .swiper-slide {
  inline-size: 100% !important;
}
#works .works-slide .swiper-slide img {
  display: block;
  inline-size: 100%;
}
#works .pagination {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding-block: 3px;
}
#works .pagination .bullet {
  aspect-ratio: 1/1;
  background: #dcdddd;
  block-size: 8px;
  border-radius: 4px;
}
#works .pagination .bullet.active {
  background: #231815;
}
#works .navigation {
  display: flex;
  gap: 4px;
}
#works .navigation button {
  display: block;
  block-size: 100%;
  aspect-ratio: 1/1;
  cursor: pointer;
  background: #dcdddd no-repeat center center/auto 25%;
  border: none;
}
#works .navigation button.prev {
  background-image: url("../images/slider-prev.svg");
}
#works .navigation button.next {
  background-image: url("../images/slider-next.svg");
}
#works .view-more {
  font-family: "Avenir Next", "Poppins", sans-serif;
  line-height: 1;
  text-align: center;
}
#works .view-more a {
  color: inherit;
}
#works .view-more a:not(:hover) {
  text-decoration: none;
}
@media screen and (min-width: 481px) {
  #works .section-wrapper {
    grid-template-rows: 80px 1fr 20px 20px;
    grid-template-columns: calc(65% + 48px) auto auto 1fr;
    gap: 0 12px;
  }
  #works .heading-1 {
    grid-row: 2;
    grid-column: 2/5;
  }
  #works .works-slide {
    grid-row: 1/5;
    grid-column: 1;
    margin-inline-end: 48px;
  }
  #works .pagination {
    grid-row: 3;
  }
  #works .navigation {
    grid-row: 3/5;
    grid-column: 3;
  }
  #works .view-more {
    grid-row: 4;
    grid-column: 2;
  }
}
@media screen and (max-width: 480px) {
  #works .section-wrapper {
    gap: 15px;
  }
  #works .navigation {
    justify-content: center;
  }
  #works .navigation button {
    block-size: 40px;
  }
  #works .view-more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-block: 0.5em;
    padding-inline: 1em;
    margin-block-start: 40px;
    font: 700 16px/1 "Avenir Next", "Poppins", sans-serif;
    color: #5ec1c3;
    text-decoration: none;
    border: 2px solid #5ec1c3;
    transition: color 0.2s linear, background-color 0.2s linear;
  }
  #works .view-more a:hover {
    color: #fff;
    background: #5ec1c3;
  }
}
@media screen and (max-width: 480px) and (max-width: 480px) {
  #works .view-more a {
    display: flex;
    margin-inline: auto;
    font-size: 20px;
    inline-size: 260px;
    block-size: 64px;
  }
}

#contact {
  margin-block-end: 80px;
}
#contact .section-wrapper {
  text-align: center;
}
#contact a.link-button {
  inline-size: 260px;
  block-size: 64px;
}/*# sourceMappingURL=style.css.map */