@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@200;400;700&display=swap");
/*
// --- General Styling ---
body {
  font-family: $font-family-base;
  color: $color-text;
  background-color: $color-background;
}

h1, h2, h3 {
  font-family: $font-family-heading;
  color: $color-primary;
}

// --- Layout ---
.container {
  width: 90%;
  margin: 0 auto;

  // Use mq() mixin for responsive changes
  // On screens 960px and wider, set a max-width
  @include mq(md) {
    max-width: $breakpoint-md;
  }
}

// --- Typography ---
.page-title {
  // Use rem() function for scalable font size
  font-size: rem(48);

  // Alternative: use vw() for fluid typography based on viewport width
  // font-size: vw(48, 1440);
}

.card__description {
  // Use line-clamp() mixin to limit text to 3 lines
  @include line-clamp(3);
}

// --- Components ---
.button {
  background-color: $color-primary;
  color: white;
  padding: rem(10) rem(20);

  // Use hover() mixin for safe hover effects on non-touch devices
  @include hover {
    background-color: darken($color-primary, 10%);
  }
}

.header-nav {
  // Use flex-between() to space out items
  @include flex-between;
}

.icon-wrapper {
  // Use flex-center() to perfectly center an icon
  @include flex-center;
  width: 50px;
  height: 50px;
}

.modal-content {
  // Use center-absolute() to center a modal
  @include center-absolute;
  width: 80%;
  max-width: 500px;
  padding: rem(20);
  background: white;
}
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  counter-reset: arrange-counter;
  color: #4d4d4d;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.kimono-wig {
  max-width: 750px;
  margin: 0 auto;
  font-size: 16px;
  overflow: hidden;
}

.mv {
  position: relative;
  aspect-ratio: 750/1080;
  overflow: hidden;
}
.mv__title {
  width: 30%;
}
.mv__title img {
  width: 100%;
  vertical-align: bottom;
}
.mv__kimono01 {
  position: absolute;
  top: 7%;
  left: 0%;
  width: 56%;
  z-index: 1;
}
.mv__kimono01 img {
  width: 100%;
  vertical-align: bottom;
}
.mv__text {
  z-index: 1;
  top: 0%;
  left: 29%;
  width: 74%;
  aspect-ratio: 277/610;
}
.mv__text__01 {
  position: absolute;
  top: 0%;
  left: 77%;
  width: 23%;
  z-index: 3;
}
.mv__text__01 img {
  width: 100%;
  vertical-align: bottom;
}
.mv__text__02 {
  position: absolute;
  top: 29%;
  left: 56%;
  width: 25%;
  z-index: 3;
}
.mv__text__02 img {
  width: 100%;
  vertical-align: bottom;
}
.mv__text img {
  width: 100%;
  vertical-align: bottom;
}
.mv__kimono02 {
  position: absolute;
  top: 60%;
  left: 0%;
  width: 30%;
  z-index: 1;
}
.mv__kimono02 img {
  width: 100%;
  vertical-align: bottom;
}
.mv__kimono03 {
  position: absolute;
  top: 60%;
  left: 32%;
  width: 36%;
  z-index: 1;
}
.mv__kimono03 img {
  width: 100%;
  vertical-align: bottom;
}
.mv__kimono04 {
  position: absolute;
  top: 60%;
  right: 0%;
  width: 30%;
  z-index: 1;
}
.mv__kimono04 img {
  width: 100%;
  vertical-align: bottom;
}
.mv__bg01 {
  position: absolute;
  top: 48%;
  left: 48%;
  width: 31%;
  z-index: 0;
}
.mv__bg01 img {
  width: 100%;
  vertical-align: bottom;
}
.mv__bg02 {
  position: absolute;
  top: 90%;
  left: 0%;
  width: 35%;
  z-index: 0;
}
.mv__bg02 img {
  width: 100%;
  vertical-align: bottom;
}

.concept {
  width: 100%;
  background: #ff3b48;
  color: #fff;
  text-align: center;
  line-height: 4rem;
  font-size: 1.3333333333vw;
  padding: 3rem 0;
  font-weight: 200;
}
@media screen and (min-width: 0px) {
  .concept {
    line-height: 3rem;
  }
}
@media screen and (min-width: 576px) {
  .concept {
    line-height: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .concept {
    line-height: 3rem;
  }
}
@media screen and (min-width: 992px) {
  .concept {
    line-height: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .concept {
    line-height: 4rem;
  }
}
@media screen and (min-width: 0px) {
  .concept__text {
    font-size: 4.1666666667vw;
  }
}
@media screen and (min-width: 576px) {
  .concept__text {
    font-size: 3.125vw;
  }
}
@media screen and (min-width: 768px) {
  .concept__text {
    font-size: 2.4193548387vw;
  }
}
@media screen and (min-width: 992px) {
  .concept__text {
    font-size: 2vw;
  }
}
@media screen and (min-width: 1200px) {
  .concept__text {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1400px) {
  .concept__text {
    font-size: 1.2121212121vw;
  }
}

.navigation {
  padding: 0 10px;
}
.navigation ul {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 2rem 0;
  list-style: none;
  margin: 0;
}
.navigation ul li {
  font-size: 1.3333333333vw;
  width: calc(50% - 8px);
}
.navigation ul li a {
  color: #000;
  text-decoration: none;
}
.navigation ul li a img {
  width: 100%;
  vertical-align: bottom;
}
.navigation ul li a:hover {
  text-decoration: underline;
}

.arrange__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 6rem auto 2rem;
}
.arrange__title__flower {
  counter-increment: arrange-counter;
  position: relative;
  max-width: 80px;
  width: 100%;
  margin-bottom: 1rem;
}
.arrange__title__flower::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: counter(arrange-counter, decimal-leading-zero);
  color: #fff;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.05em;
  font-size: clamp(24px, 6vw, 39px);
}
.arrange__title img {
  width: 100%;
  vertical-align: bottom;
}
.arrange h2 {
  text-align: center;
  width: 100%;
  line-height: 1.4;
  letter-spacing: 0.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.arrange h2 span {
  display: block;
  align-self: center;
}
.arrange h2 span:nth-child(1) {
  font-weight: 400;
  margin-bottom: 0.5rem;
  font-size: clamp(14px, 3.5vw, 18px);
}
.arrange h2 span:nth-child(2) {
  font-weight: 400;
  font-size: clamp(24px, 5.5vw, 36px);
}
.arrange__image {
  position: relative;
}
.arrange__image--01 {
  padding: 20px 0 10px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .arrange__image--01 {
    padding: 100px 0 10px 60px;
    text-align: right;
  }
}
.arrange__image--01 img {
  width: 90%;
  vertical-align: bottom;
}
@media screen and (min-width: 768px) {
  .arrange__image--01 img {
    width: 80%;
  }
}
.arrange__image--02 {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .arrange__image--02 {
    gap: 20px;
    justify-content: right;
  }
}
.arrange__image--02 img {
  width: 100%;
}
.arrange__image--02 .left, .arrange__image--02 .right {
  width: 48%;
}
@media screen and (min-width: 768px) {
  .arrange__image--02 .left, .arrange__image--02 .right {
    width: auto;
  }
}
.arrange__image--03 {
  display: none;
}
@media screen and (min-width: 768px) {
  .arrange__image--03 {
    display: block;
    position: absolute;
    top: 34%;
    left: 0%;
    width: 43%;
  }
}
.arrange__image--03 img {
  width: 100%;
}
.arrange .float-text {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  padding: 2rem 1rem;
  background-color: #fff;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .arrange .float-text {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 50%;
    background-color: transparent;
    padding: 0;
  }
}
.arrange .float-text__title {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 1.5rem;
}
.arrange .float-text__title img {
  width: 40px;
  height: auto;
  flex-shrink: 0;
}
.arrange .float-text__title h3 {
  font-weight: 400;
  margin: 0;
  line-height: 1.5;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #4d4d4d;
}
.arrange .float-text__title h3 span {
  display: block;
}
@media screen and (min-width: 768px) {
  .arrange .float-text__title h3 {
    font-size: 22px;
  }
}
.arrange .float-text__text {
  padding-left: 55px;
}
.arrange .float-text__text p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #666;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  .arrange .float-text__text p {
    font-size: 15px;
  }
}
.arrange__howto {
  counter-reset: step-counter;
}
.arrange__howto__title {
  margin: 2em auto;
  font-weight: 400;
  text-align: center;
}
.arrange__howto__ready {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 5.3333333333vw;
  padding: 20px;
  border: 1px solid #ddd;
  background: #fff;
  max-width: 800px;
}
@media screen and (min-width: 0px) {
  .arrange__howto__ready {
    flex-direction: row;
  }
}
.arrange__howto__ready--image {
  width: 30%;
  max-width: 160px;
}
.arrange__howto__ready--image img {
  width: 100%;
  vertical-align: bottom;
  border-radius: 4px;
}
.arrange__howto__ready--text {
  width: 70%;
  text-align: left;
}
.arrange__howto__ready--text h3 {
  margin: 0 0 10px 0;
  font-weight: 700;
  letter-spacing: 0.2rem;
  font-size: 1.1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}
.arrange__howto__ready--text p {
  margin: 0;
  line-height: 1.8;
}
.arrange__howto__steps {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-start;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .arrange__howto__steps {
    gap: 20px;
  }
}
.arrange__item {
  position: relative;
  text-align: center;
}
.arrange__item__title {
  margin: 2em auto;
  font-weight: 400;
}
.arrange__item__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 5.3333333333vw;
  padding: 20px;
  border: 1px solid #ddd;
  background: #fff;
  max-width: 800px;
}
@media screen and (min-width: 0px) {
  .arrange__item__list {
    flex-direction: row;
  }
}
.arrange__item__list img {
  width: 100%;
}

.kimono01 .arrange__image--03 {
  top: 22%;
}

.step {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid #ddd;
  background-color: #fff;
}
@media screen and (min-width: 576px) {
  .step {
    width: calc(50% - 10px);
  }
}
@media screen and (min-width: 992px) {
  .step {
    width: calc(33.333% - 14px);
  }
}
.step::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #1e1e1e;
  color: white;
  padding: 8px 14px;
  font-size: 16px;
  line-height: 1;
  z-index: 2;
}
.step__image {
  width: 100%;
  position: relative;
}
.step__image img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  display: block;
}
.step__p {
  padding: 1.2rem 1rem;
  font-size: 14px;
  line-height: 1.6;
  flex-grow: 1;
}
.step__p span {
  display: block;
}
@media screen and (min-width: 768px) {
  .step__p {
    font-size: 15px;
  }
}

.item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
.item__image {
  width: 40%;
  max-width: 180px;
}
.item__image img {
  width: 100%;
  display: block;
  border-radius: 4px;
}
.item__text {
  width: 60%;
  text-align: left;
}
.item__text p {
  margin: 0;
  line-height: 1.6rem;
  letter-spacing: 0.1rem;
  width: 100%;
}
.item__text p:first-child {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #333;
}
@media screen and (min-width: 0px) {
  .item__text p {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .item__text p {
    font-size: 16px;
  }
}

.button--buy {
  display: block;
  background-color: #000;
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 15px 0;
  font-size: 16px;
  position: relative;
  width: 90%;
  max-width: 400px;
  margin: 10px auto 40px;
}
@media screen and (min-width: 768px) {
  .button--buy {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 120px;
    margin: 0;
  }
}

.matome {
  padding: 3rem 10px;
}
.matome__title {
  text-align: center;
  margin-bottom: 2rem;
}
.matome__title h2 {
  font-size: 1.5rem;
}
.matome__text {
  background: #fff;
  border: 1px solid #ddd;
  padding: 2rem;
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.05em;
}
.matome__text p {
  margin: 0;
}

.matome--item {
  padding: 3rem 10px 6rem;
}
.matome--item__title {
  text-align: center;
  margin-bottom: 2rem;
}
.matome--item__title h2 {
  font-size: 1.5rem;
}
.matome--item__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 0 auto;
  max-width: 1000px;
  padding: 0 10px;
}
.matome--item__list .item {
  display: block;
  width: calc(50% - 8px);
  border: 1px solid #ddd;
  background: #fff;
  padding: 5px;
  transition: opacity 0.3s;
  text-decoration: none;
}
.matome--item__list .item:hover {
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .matome--item__list .item {
    width: calc(33.333% - 10px);
  }
}
.matome--item__list .item__image {
  width: 100%;
  max-width: 100%;
}
.matome--item__list .item__image img {
  width: 100%;
  vertical-align: bottom;
}
.matome--item__list .item__text {
  width: 100%;
  padding: 5px;
}
.matome--item__list .item__text p {
  font-size: 0.8rem;
  line-height: 1.4;
}/*# sourceMappingURL=waso_style.css.map */