@media only screen and (max-width: 767px) {
  .secMainColumnWrap {
    padding-bottom: 50px;
  }
  .commonColWrap {
    padding-top: 0;
  }
  #space {
    padding-top: 60px;
  }
}
@media print, screen and (min-width: 768px) {
  .secMainColumnWrap {
    padding-bottom: 200px;
  }
}
.secDesign {
  position: relative;
}
.secDesign .secBg {
  position: absolute;
  z-index: 0;
  top: 0;
  height: 100%;
}
.secDesign .secMain {
  position: relative;
  z-index: 1;
}
.secDesign .secMain .title {
  font-family: "Shippori Mincho B1", serif;
  letter-spacing: 0.2em;
  line-height: 1.9;
}
.secDesign .secMain .content {
  color: #707070;
  line-height: 1.9;
}
.secDesign .secMain .imgList {
  display: flex;
  justify-content: space-between;
}
.secDesign .secMain .imgList .imgItem {
  position: relative;
  cursor: pointer;
  display: block;
  overflow: hidden;
}
.secDesign .secMain .imgList .imgItem > img {
  position: relative;
  z-index: 0;
  display: block;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: 0.5s;
}
.secDesign .secMain .imgList .imgItem::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 17px;
  height: 17px;
  background: url(../images/icon_plus.svg) center center no-repeat;
  background-size: contain;
  right: 5px;
  bottom: 6px;
}
.secDesign .secMain .imgList .imgItem:hover {
  opacity: 1;
}
.secDesign .secMain .imgList .imgItem:hover img {
  transform: scale(110%);
  transition: 0.5s;
}

.commonColMain .anchorBox:nth-of-type(2n + 1) .secBg {
  background: #ffffff;
}
.commonColMain .anchorBox:nth-of-type(2n) .secBg {
  background: #F8F8F8;
}

@media only screen and (max-width: 767px) {
  .secDesign {
    padding: 50px 0 50px 0;
  }
  .secDesign .secBg {
    width: 100vw;
    left: calc((min(88vw, 400px) - 100vw) / 2);
  }
  .secDesign .secMain .title {
    font-size: clamp(14px, 5.13vw, 20px);
    padding: 0 0 36px 0;
  }
  .secDesign .secMain .content {
    font-size: 13px;
    padding: 0 0 40px 0;
  }
  .secDesign .secMain .imgTop {
    padding: 0 0 4px 0;
  }
  .secDesign .secMain .imgList .imgItem {
    width: 32.4%;
  }
  .commonColMain .anchorBox:first-of-type .secDesign {
    padding-top: 0;
  }
  .commonColMain .anchorBox:last-of-type .secDesign {
    padding-bottom: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .secDesign {
    padding: 110px 0 170px 0;
  }
  .secDesign .secBg {
    width: 300vw;
    left: -100vw;
  }
  .secDesign .secMain .title {
    font-size: clamp(14px, 1.67vw, 20px);
    padding: 0 0 40px 0;
  }
  .secDesign .secMain .content {
    font-size: 13px;
    padding: 0 0 50px 0;
  }
  .secDesign .secMain .imgTop {
    padding: 0 0 10px 0;
  }
  .secDesign .secMain .imgList .imgItem {
    width: 32.4%;
  }
  .commonColMain .anchorBox:first-of-type .secDesign {
    padding-top: 0;
  }
  .commonColMain .anchorBox:last-of-type .secDesign {
    padding-bottom: 0;
  }
}
.modalBox .modalInner .modalMain .sliderArea {
  position: relative;
}
.modalBox .modalInner .modalMain .sliderArea .arrow {
  position: absolute;
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 19px;
  cursor: pointer;
}
.modalBox .modalInner .modalMain .sliderArea .arrow.swiper-button-disabled {
  opacity: 0.1;
}
.modalBox .modalInner .modalMain .sliderArea .arrow.prev {
  background-image: url(../images/slider_arrow_prev.svg);
}
.modalBox .modalInner .modalMain .sliderArea .arrow.next {
  background-image: url(../images/slider_arrow_next.svg);
}
.modalBox .modalInner .modalMain .sliderArea .pager {
  position: absolute;
  z-index: 1;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  justify-content: center;
}
.modalBox .modalInner .modalMain .sliderArea .pager .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #565656;
  opacity: 1;
}
.modalBox .modalInner .modalMain .sliderArea .pager .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ffffff;
}
.modalBox .modalInner .modalMain .sliderArea .slider {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.modalBox .modalInner .modalMain .sliderArea .slider .swiper-slide .imgRow {
  width: 100%;
  aspect-ratio: 784/454;
  text-align: center;
}
.modalBox .modalInner .modalMain .sliderArea .slider .swiper-slide .imgRow .imgCover {
  -o-object-fit: contain;
     object-fit: contain;
}
.modalBox .modalInner .modalMain .sliderArea .slider .swiper-slide .textRow {
  color: #ffffff;
}

@media only screen and (max-width: 767px) {
  .modalBox {
    width: min(94vw, 350px);
  }
  .modalBox .modalInner .modalMain {
    height: 100%;
  }
  .modalBox .modalInner .modalMain .sliderArea {
    height: 100%;
  }
  .modalBox .modalInner .modalMain .sliderArea .arrow {
    top: calc(52% + 25px);
  }
  .modalBox .modalInner .modalMain .sliderArea .arrow.prev {
    left: 0;
  }
  .modalBox .modalInner .modalMain .sliderArea .arrow.next {
    right: 0;
  }
  .modalBox .modalInner .modalMain .sliderArea .pager {
    margin: 0 auto;
    left: 0;
    right: 0;
    top: calc(54% + 25px);
    width: -moz-fit-content;
    width: fit-content;
  }
  .modalBox .modalInner .modalMain .sliderArea .slider {
    width: 100%;
    margin: 0 auto;
  }
  .modalBox .modalInner .modalMain .sliderArea .slider .swiper-slide .textRow {
    padding: 62px 0 0 0;
    font-size: 13px;
  }
}
@media print, screen and (min-width: 768px) {
  .modalBox {
    width: min(90vw, 940px);
    height: -moz-fit-content;
    height: fit-content;
  }
  .modalBox .modalInner {
    padding: 40px;
    height: calc(100% - 60px);
  }
  .modalBox .modalInner .modalMain {
    height: 100%;
  }
  .modalBox .modalInner .modalMain .sliderArea {
    height: 100%;
  }
  .modalBox .modalInner .modalMain .sliderArea .arrow {
    top: 34.66%;
  }
  .modalBox .modalInner .modalMain .sliderArea .arrow.prev {
    left: 0;
  }
  .modalBox .modalInner .modalMain .sliderArea .arrow.next {
    right: 0;
  }
  .modalBox .modalInner .modalMain .sliderArea .pager {
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 98px;
  }
  .modalBox .modalInner .modalMain .sliderArea .slider {
    width: 91.16%;
    height: 100%;
    margin: 0 auto;
  }
  .modalBox .modalInner .modalMain .sliderArea .slider .swiper-slide {
    height: 100%;
  }
  .modalBox .modalInner .modalMain .sliderArea .slider .swiper-slide .imgRow {
    height: calc(100% - 104px);
  }
  .modalBox .modalInner .modalMain .sliderArea .slider .swiper-slide .textRow {
    padding: 54px 0 0 0;
    font-size: 13px;
  }
}/*# sourceMappingURL=style.css.map */