@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/*
A modern CSS reset 2023 / 9 / 18
https://github.com/Andy-set-studio/modern-css-reset
*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

/**  base  **/
@-webkit-keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes clipPath {
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@keyframes clipPath {
  100% {
    -webkit-clip-path: inset(0);
            clip-path: inset(0);
  }
}
@-webkit-keyframes clipPathCircle {
  100% {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
  }
}
@keyframes clipPathCircle {
  100% {
    -webkit-clip-path: circle(100% at 50% 50%);
            clip-path: circle(100% at 50% 50%);
  }
}
p,
ul,
ol,
h1,
h2,
h3,
figure,
dl,
dd,
button,
pre {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

ul,
ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  vertical-align: bottom;
  line-height: 1;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a {
  color: currentColor;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.5;
  }
}

[x-cloak],
[v-cloak] {
  display: none !important;
}

*:focus {
  outline: none;
}

.device-sp {
  display: block;
}
@media (min-width: 600px) {
  .device-sp {
    display: none;
  }
}

.device-pc {
  display: none;
}
@media (min-width: 600px) {
  .device-pc {
    display: block;
  }
}

br:not(.spbr) {
  display: none;
}
@media (min-width: 600px) {
  br:not(.spbr) {
    display: block;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  line-height: 2;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.scroll_rock {
  overflow: hidden;
}
@media (min-width: 600px) {
  body {
    font-size: 1.5rem;
  }
}

/**  common  **/
.hidden {
  visibility: hidden;
}

.purple {
  color: #84689D;
}

body {
  color: #434242;
  font-family: "Yu Gothic Pr6N D", sans-serif;
}

body:has(.menu-toggle:checked) {
  overflow: hidden;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 20;
  background-color: #434242;
  color: #fff;
  opacity: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (min-width: 992px) {
  header {
    padding: 0 46px;
  }
}
header.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
header .menu-toggle {
  display: none;
}
header .menu-toggle:checked + .menu-icon span:nth-child(1) {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  top: 9px;
}
@media (min-width: 768px) {
  header .menu-toggle:checked + .menu-icon span:nth-child(1) {
    top: 10px;
  }
}
header .menu-toggle:checked + .menu-icon span:nth-child(2) {
  opacity: 0;
}
header .menu-toggle:checked + .menu-icon span:nth-child(3) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  bottom: 9px;
}
@media (min-width: 768px) {
  header .menu-toggle:checked + .menu-icon span:nth-child(3) {
    bottom: 10px;
  }
}
header .menu-toggle:checked + .menu-icon + .menu-wrapper {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
header .header-logo {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding-left: 18px;
}
@media (min-width: 992px) {
  header .header-logo {
    font-size: 1.5rem;
    padding-left: 0;
  }
}
header .header-logo img {
  height: 9px;
}
@media (min-width: 600px) {
  header .header-logo img {
    height: initial;
  }
}
header .header-index {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
header .header-index img {
  max-width: 35px;
}
@media (min-width: 600px) {
  header .header-index img {
    max-width: 190px;
  }
}
header .menu-icon {
  width: 4em;
  height: 3.4em;
  position: relative;
  z-index: 100;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1em;
}
header .menu-icon span {
  position: relative;
  display: block;
  width: 100%;
  border: 0.5px solid currentColor;
  -webkit-transition: opacity 0s, -webkit-transform 0.4s;
  transition: opacity 0s, -webkit-transform 0.4s;
  transition: opacity 0s, transform 0.4s;
  transition: opacity 0s, transform 0.4s, -webkit-transform 0.4s;
}
header .menu-wrapper {
  z-index: 10;
  position: fixed;
  top: 70px;
  right: 0;
  width: 100vw;
  height: calc(100dvh - 70px);
  background-color: rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-transform: translateX(-100vw);
          transform: translateX(-100vw);
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  overflow: auto;
}
header .menu-wrapper nav {
  width: 250px;
  margin: 40px auto 0;
}
@media (min-width: 600px) {
  header .menu-wrapper nav {
    margin: 85px auto 0;
  }
}
header .menu-wrapper p {
  font-size: 1.6rem;
  padding: 5px 0;
}
header .menu-wrapper p img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
@media (min-width: 600px) {
  header .menu-wrapper p {
    padding: 10px 0;
  }
}
header .menu-wrapper p.top {
  vertical-align: middle;
}
header .menu-wrapper p.top img {
  width: 122px;
}
header .menu-wrapper p.top span {
  vertical-align: middle;
}
header .menu-wrapper p.en {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
}
header .menu-wrapper hr {
  height: 1px;
  border: none;
  background-color: #ffffff;
  margin: 15px 0;
}

#instagram {
  background-color: #D6E0EC;
  text-align: center;
  padding: 30px 0;
}
#instagram a {
  font-size: 1.4rem;
  display: inline-block;
}
#instagram a span {
  font-size: 40px;
  display: block;
  padding-top: 10px;
}

footer {
  position: relative;
  background-color: #6f6f6f;
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}
footer a {
  color: #ffffff !important;
  font-family: "Yu Gothic Pr6N B", sans-serif;
}
footer .wrapper {
  margin-right: auto;
  margin-left: auto;
}
footer .footer-hobo li {
  margin-bottom: 0.8em;
  margin-top: 0.8em;
}
footer .footer-hobo span {
  display: inline-block;
  width: 1.6em;
  text-align: center;
}
footer .footer-hobo span:before {
  font-size: 1.6em;
}
footer .footer-hobo span.hb-hobo::before {
  font-size: 1.2em;
}
footer .footer-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8em;
  margin-bottom: 0.8em;
}
@media (min-width: 992px) {
  footer .footer-share {
    gap: 1.6em;
    margin-bottom: initial;
  }
}
footer .footer-share img {
  width: 3.2em;
}
@media (min-width: 992px) {
  footer .footer-share img {
    width: 2.8em;
  }
}
footer .footer-sns {
  position: relative;
  font-size: 0.88em;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 28rem;
  margin-top: 3em !important;
  padding-top: 1em;
  padding-bottom: 0.6em;
  padding-right: 0.8em;
}
footer .footer-sns::before, footer .footer-sns::after {
  content: "";
  width: 100%;
  position: absolute;
  left: 0;
  border-top: 1px dashed;
}
footer .footer-sns::before {
  top: 0;
}
footer .footer-sns::after {
  bottom: 0;
}
footer .footer-sns a::before {
  font-size: 2.2em;
}
footer .footer-sns li:first-of-type {
  font-size: 1.2rem;
  padding-bottom: 0.2em;
}
footer .footer-store,
footer .footer-copy {
  font-size: 0.96em;
}
footer .footer-store li {
  margin-bottom: 0.4em;
}

.footer-columns-2 .wrapper {
  width: calc(100% - 8rem);
  max-width: 88rem;
}
@media (min-width: 600px) {
  .footer-columns-2 .wrapper {
    display: grid;
    grid-template-columns: minmax(24rem, 1fr) 1fr;
    gap: min(8vw, 12rem);
  }
}
.footer-columns-2 .footer-hobo,
.footer-columns-2 .footer-sns,
.footer-columns-2 .footer-store,
.footer-columns-2 .footer-copy {
  color: #ffffff;
  font-size: 1.4rem;
  margin-top: 1.6em;
  margin-bottom: 1.6em;
}
.footer-columns-2 .footer-store {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 36px;
}
@media (min-width: 600px) {
  .footer-columns-2 .footer-store {
    margin-top: 1.6em;
  }
}
.footer-columns-2 .footer-copy {
  font-size: 1.2rem;
  margin: 0;
}

footer + footer {
  border-top: 4px solid #ffffff;
}

body {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
}
body.active {
  opacity: 1;
}
@media (min-width: 600px) {
  body {
    font-size: 1.6rem;
  }
}

section {
  overflow: hidden;
}

main {
  padding-top: 120px;
}

#list {
  padding: 0 10px;
}
@media (min-width: 600px) {
  #list {
    padding: 0 20px;
  }
}
#list h2 {
  font-size: 1.4rem;
}
@media (min-width: 600px) {
  #list h2 {
    padding-left: 30px;
  }
}
#list h2 span {
  font-size: 2.4rem;
  display: block;
  padding-bottom: 12px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
}
@media (min-width: 600px) {
  #list h2 span {
    font-size: 3rem;
    padding-bottom: 20px;
  }
}
#list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  padding-top: 20px;
}
@media (min-width: 600px) {
  #list ul {
    gap: 14px;
    padding-top: 40px;
  }
}
#list ul li {
  width: calc((100% - 8px) / 2);
}
@media (min-width: 600px) {
  #list ul li {
    width: calc((100% - 42px) / 4);
  }
}

#popup {
  opacity: 1;
}
#popup main {
  padding: 0;
}
#popup ul li img {
  width: 100vw;
  height: auto;
  margin: 0 auto;
}
@media (min-width: 600px) {
  #popup ul li img {
    width: auto;
    height: 90vh;
  }
}
#popup ul li:nth-of-type(n + 2) {
  margin-top: 10px;
}

.modaal-wrapper {
  line-height: 0;
}

.modaal-container {
  max-width: initial;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.modaal-inner-wrapper {
  padding: 0;
}

.modaal-close:after, .modaal-close:before {
  background-color: #434242;
  width: 1px;
  height: 30px;
}

@media (max-width: 600px) {
  .modaal-close {
    top: 0;
    right: 0;
  }
}

#footer {
  margin-top: 80px;
}/*# sourceMappingURL=lookbook.css.map */