main {
  text-align: justify;
  margin-bottom: 20px;
}

.area1 h2 {
  color: #fff;
  font-size: 3.4rem;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 1.0);
  margin-bottom: 0;
}

.area1 p {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 1.0);
}

@media print, screen and (min-width: 768px) {
  .area1 h2 {
    font-size: 6.4rem;
  }

  .area1 p {
    font-size: 3.0rem;
  }
}

@media print, screen and (min-width: 1024px) {
  .area1 h2 {
    font-size: 9.2rem;
  }

  .area1 p {
    font-size: 3.0rem;
  }
}

.area1 {
  background-image: url(../images/main_sp.jpg);
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 170px;
}

@media print, screen and (min-width: 768px) {
  .area1 {
    background-image: url(../images/main_tb.jpg);
    background-size: auto auto;
    padding-top: 250px;
  }
}

@media print, screen and (min-width: 1024px) {
  .area1 {
    background-image: url(../images/main_pc.jpg);
    background-size: auto auto;
    padding-top: 300px;
  }
}

.l-section_inner_mv {
  margin: 0 auto;
  padding: 0 10px;
  text-align: center;
  position: relative;
  top: -100px;
}

@media print, screen and (min-width: 768px) {
  .l-section_inner_mv {
    top: -70px;
  }
}

@media print, screen and (min-width: 1024px) {
  .l-section_inner_mv {
    top: -100px;
  }
}

.flex {
  display: flex;
  align-items: center;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.box_area {
  padding: 2.0rem 1.4rem;
  background-color: #f5f5f5;
}

@media print, screen and (min-width:768px) {
  .box_area {
    padding: 2.0rem 6.0rem;
  }
}

.icon {
  width: 75px;
  margin-right: 5px;
}

.sentence {
  flex: 1;
}

@media print, screen and (min-width:768px) {
  .icon {
    width: 120px;
    margin-right: 15px;
  }
}

td {
  text-align: center;
}

.flex-file {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-top: 50px;
}

.flex-wrap img {
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  .flex-wrap img {
    width: 480px;
  }
}

h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #ff4291;
  margin-bottom: 10px;
}

h3.file {
  text-align: center;
  font-size: 1.8rem;
  margin: 10px 0;
}

.arrow {
  text-align: center;
  font-size: 3.0rem;
  margin: 10px 0;
}

h3.name {
  font-size: 2.2rem;
  font-weight: bold;
  border-bottom: 1px solid #000;
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

p.spec {
  margin-bottom: 20px;
}

.unisex {
  display: inline-block;
  background-color: #727171;
  color: #fff;
  border-radius: 5px;
  padding: 0 5px;
  margin: 2px;
}

.ladies {
  display: inline-block;
  background-color: #ea609e;
  color: #fff;
  border-radius: 5px;
  padding: 0 5px;
  margin: 2px;
}

.circle {
  font-size: 12px;
  color: #999;
  vertical-align: text-top;
}

.accordion-area li {
  margin: 10px 0 30px;
}

/*アコーディオンタイトル*/
.title {
  position: relative;
  cursor: pointer;
  padding: 3%;
  transition: all .5s ease;
  background-color: #ddd;
}

/*アイコンの＋と×*/
.title::before,
.title::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #333;

}

.title::before {
  top: 48%;
  left: 93%;
  transform: rotate(0deg);

}

.title::after {
  top: 48%;
  left: 93%;
  transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
.title.close::before {
  transform: rotate(45deg);
}

.title.close::after {
  transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
  display: none;
  padding: 0;
}

@media print, screen and (min-width: 768px) {
  .productDetail-apparel_table {
    margin-top: 25px;
  }
}

.mv-slideLeft {
  opacity: 0;
  transform: translateX(-100%);
  transition-property: opacity transform;
  transition-timing-function: ease-out;
  transition-duration: .3s;
  transition-delay: .5s;
}

.mv-slideLeft.is-active {
  opacity: 1;
  transform: translateX(0);
}

.mv-slideRight {
  opacity: 0;
  transform: translateX(100%);
  transition-property: opacity transform;
  transition-timing-function: ease-out;
  transition-duration: .3s;
  transition-delay: .7s;
}

.mv-slideRight.is-active {
  opacity: 1;
  transform: translateX(0);
}

.mv-fadeIn {
  opacity: 0;
  transform: translateY(15%);
  transition-property: opacity transform;
  transition-timing-function: ease-out;
  transition-duration: .3s;
  transition-delay: .2s;
}

.mv-fadeIn.is-active {
  opacity: 1;
  transform: translateY(0);
}

.is-slideLeft {
  opacity: 0;
  transform: translateX(-100%);
  transition-property: opacity transform;
  transition-timing-function: ease-out;
  transition-duration: .3s;
}

.is-slideLeft.is-active {
  opacity: 1;
  transform: translateX(0);
}

.is-slideRight {
  opacity: 0;
  transform: translateX(100%);
  transition-property: opacity transform;
  transition-timing-function: ease-out;
  transition-duration: .3s;
}

.is-slideRight.is-active {
  opacity: 1;
  transform: translateX(0);
}

.is-fadeIn {
  opacity: 0;
  transform: translateY(15%);
  transition-property: opacity transform;
  transition-timing-function: ease-out;
  transition-duration: .3s;
}

.is-fadeIn.is-active {
  opacity: 1;
  transform: translateY(0);
}
