@charset "UTF-8";

.apparel {
  padding: 130px 5.3% 140px;
  text-align: center;
  font-family: "Zen Old Mincho";
}

.apparel__view {
  font-size: 1.7rem;
  font-weight: 600;
  padding-bottom: 20px;
}
.apparel__suv {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 170%;
  padding-bottom: 80px;
}

.title {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 600;
  padding-bottom: 70px;
}

.title::before,
.title::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.4);
  margin: 0 20px;
}

.apparel__contents {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
}

.apparel__item {
  width: 50%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.7);
  padding: 10px 5% 15px;
  cursor: pointer;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.apparel__image {
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 25px 0px 25px;
}

.apparel__image img {
  object-fit: cover;
  display: flex;
}

.apparel__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 130%;
}

.bottom {
  margin-top: 23px;
}

.apparel__contact {
  font-size: 1.3rem;
  font-weight: 350;
  padding-top: 100px;
}

.apparel__push {
  padding-top: 10px;
}

.btn {
  background: rgba(48, 48, 48, 0.74);
  color: #fff;
  font-size: 1.4rem;
  display: block;
  width: 90%;
  padding-top: 25px;
  padding-bottom: 25px;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 auto;
}

@media screen and (min-width: 520px) {
  .apparel__image {
    height: 190px;
  }
}

@media screen and (min-width: 768px) {
  .sp__Br {
    display: none;
  }

  .apparel {
    padding: 180px 10.4% 190px;
  }

  .apparel__view {
    font-size: 2.2rem;
    padding-bottom: 20px;
  }
  .apparel__suv {
    font-size: 1.6rem;
    padding-bottom: 100px;
  }

  .title {
    display: flex;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    font-size: 2.4rem;
    font-weight: 300;
    padding-bottom: 80px;
  }

  .title::before,
  .title::after {
    content: "";
    flex: 1;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.4);
    margin: 0 20px;
  }

  .apparel__list {
    font-size: 2rem;
    padding-bottom: 80px;
  }

  .apparel__contents {
    gap: 40px;
    padding-left: 7%;
    padding-right: 7%;
    padding-bottom: 20px;
  }

  .apparel__item {
    width: 50%;
  }
  .apparel__item:hover {
    background-color: rgba(0, 0, 0, 0.2);
  }

  .apparel__image {
    height: 150px;
    padding-left: 30%;
    padding-right: 30%;
  }

  .apparel__text {
    line-height: 180%;
  }

  .apparel__item p {
    font-size: 1.4rem;
  }

  .bottom {
    margin-top: 23px;
  }

  .apparel__contact {
    font-size: 1.8rem;
    padding-top: 140px;
  }

  .apparel__push {
    padding-top: 20px;
  }

  .btn {
    background: rgba(48, 48, 48, 0.74);
    color: #fff;
    font-size: 1.8rem;
    display: block;
    width: 60%;
    padding: 40px 0;
    text-align: center;
    letter-spacing: 0.05em;
    transition: letter-spacing 0.3s ease, box-shadow 0.3s ease,
      transform 0.3s ease;
    margin: 0 auto;
    font-family: "Noto Sans JP", sans-serif;
  }

  .btn span {
    display: inline-block;
    letter-spacing: 0.05em;
    transition: letter-spacing 0.35s ease;
  }

  .btn:hover span {
    letter-spacing: 0.18em;
  }
}

@media screen and (min-width: 1024px) {
  .apparel__contents {
    gap: 80px;
    padding-left: 16%;
    padding-right: 16%;
  }

  .apparel__image {
    height: 200px;
  }

  .apparel__text {
    font-size: 1.3rem;
  }

  .apparel__item {
    padding-left: 3%;
    padding-right: 3%;
  }
}

/* モーダル */

.modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100svh;
  z-index: 9999;
  pointer-events: none;
}

.modal__bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
}

.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  max-width: 1000px;
  width: 90%;
  background: #fff;
  padding: 40px 5% 50px;
  border-radius: 12px;
  opacity: 0;
  text-align: center;
}

.modal__img {
  padding-bottom: 30px;
}
.modal__img img {
  width: 100px;
  height: auto;
}

.modal__text {
  font-family: "Zen Old Mincho";
  font-size: 1rem;
  font-weight: 400;
  line-height: 170%; /* 13.6px */
  padding-bottom: 20px;
}

.modal__text1 {
  padding-top: 10px;
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.modal__push {
  padding-top: 10px;
}

.modal__btn {
  padding-top: 20px;
  padding-bottom: 20px;
  background: rgba(48, 48, 48, 0.74);
  color: #fff;
  font-size: 1.3rem;
  display: block;
}

@media screen and (min-width: 768px) {
  .modal__content {
    max-width: 600px;
    width: 60%;
    padding: 80px 5% 80px;
    top: 50%;
  }

  .modal__img {
    padding-bottom: 50px;
  }
  .modal__img img {
    width: 100px;
    height: auto;
  }

  .modal__text {
    font-size: 1.3rem;
    padding-bottom: 50px;
  }

  .modal__text1 {
    padding-top: 10px;
  }

  .modal__close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .modal__push {
    padding-top: 10px;
  }
}
