@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Cal+Sans&family=Noto+Sans+JP:wght@100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/*===================================================
  OP:LOADER
====================================================*/
.loader {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #000;
  z-index: 99999;
}

/*===================================================
  OP:DETAIL
====================================================*/
.op_detail {
}
.op_detail .detailList {
    display: flex;
    border-bottom: 1px solid;
    padding: 12px 0 12px;
    align-items: stretch;
    font-size: 13px;
}
.op_detail .detailList:last-of-type {
    margin-bottom: 25px;
}
.op_detail .detailList:first-of-type {
    border-top: 1px solid;
}
.op_detail .detailList:last-child {
  margin: 0;
}
.op_detail .detailList dt {
    width: 85px;
    padding: 0 10px 0 0;
    display: flex;
    align-items: center;
    font-weight: 500;
    line-height: 1.6em;
}
.op_detail .detailList dt:before {
}
.op_detail .detailList dt .txt {
  font-size: 90%;
  line-height: 1.5em;
}
.op_detail .detailList dd {
    width: calc(100% - 85px);
    position: relative;
    padding: 0 0 0 15px;
    display: flex;
    align-items: center;
}
.op_detail .detailList dd:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 1px;
  background: #000;
}
.op_detail .detailList dd > * {
  margin-bottom: 20px;
}
.op_detail .detailList dd > *:last-child {
  margin-bottom: 0;
}
.op_detail .detailList dd .detailInner {
  width: 100%;
}
.op_detail .detailList dd .detailInner > * {
  margin-bottom: 10px;
}
.op_detail .detailList dd .detailInner > *:last-child {
  margin-bottom: 0;
}
.op_detail .detailList dd .txt {
  font-size: 90%;
}

/* OP:DETAIL:SP-max-769 */
@media screen and (max-width: 960px) {
  .op_detail .detailList {
  }
  .op_detail .detailList dt {
  }
  .orderBox .op_detail .detailList dd {
    width: 100%;
    position: relative;
    padding: 0;
  }
  .op_detail .detailList dd:before {
    content: none;
  }
  .op_detail .detailList dd .txt {
    font-size: 100%;
  }
}

/*===================================================
  OP:SLIDER
====================================================*/
.op_slider {
  overflow: hidden;
  position: relative;
  padding: 0 0 40px;
}
.op_slider .slideNone .swiper-pagination,
.op_slider .slideNone .swiper-button-prev,
.op_slider .slideNone .swiper-button-next {
  display: none;
}
.op_slider .swiper-pagination.swiper-pagination-bullets {
  bottom: 0;
  display: inline-block;
  width: 100%;
  height: auto;
  min-height: 0;
  line-height: 0;
  margin: 0 auto;
}
.op_slider .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 30px;
  height: 3px;
  border-radius: 0;
  padding: 0;
  margin: 0 10px 0 0;
}
.op_slider .swiper-pagination-bullet-active {
  background-color: #81191e;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev {
  right: 50px;
  bottom: 0;
  left: auto;
  top: auto;
  height: auto;
  width: auto;
}
.swiper-button-next {
  right: 5px;
  top: auto;
  bottom: 0;
  left: auto;
  height: auto;
  width: auto;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 18px;
  font-weight: 800;
}

/* OP:SLIDER:SP-max-769 */
@media screen and (max-width: 960px) {
  .op_slider {
    padding: 0 0 30px;
  }
  .op_slider .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 20px;
  }
}


.wrap {
    background: #000;
    padding-top: 0;
}

header {
    display: none;
}

.contents_wrap {
    width: 50%;
    margin: 0 0 0 auto;
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}

.contents_inner {
    background: #fffbe9;
    color: #070707;
    border: 12px solid;
    border-radius: 70px;
    width: 90%;
    margin: 0 auto;
    max-width: 800px;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transition: 0.4s cubic-bezier(0.25, 0.1, 0.38, 2.2) 0.7s;
    transform: translateY(60px);
}
.loaded .contents_inner {
    opacity: 1;
    transform: none;
}


/*===================================================
  OP:invew
====================================================*/
.inview {
  transition: 0.5s ease;
  transform: translateY(40px);
  opacity: 0;
}
.inview.view {
  transform: translateY(0);
  opacity: 1;
}


/*===================================================
  visual
====================================================*/
.visual {
    position: fixed;
    width: 50%;
    left: 0;
    top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3%;
    z-index: 1;
}
.visual .heroView {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 90vh;
}
.visual .action {
}

/* item1 */
.visual .item1 {
}

/* item2 */
.visual .item2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

/* item3 */
.visual .item3 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
}



/* SP-max-769 */
@media screen and (max-width: 960px) {

.contents_wrap {
    width: 100%;
    padding: 60px 4% 0;
}

.contents_inner {
    width: 100%;
    border-width: 7px;
    border-radius: 50px;
}

.visual {
    position: relative;
    width: 100%;
    padding: 0;
    min-height: auto;
    padding-top: 25px;
}

}


/*===================================================
  visual animation
====================================================*/

.scrolled .visual .action {
  transition-delay: 0s;
}

/* act1 */
.act1 {
    opacity: 0;
    transition: 0.4s cubic-bezier(0.25, 0.1, 0.38, 2.2) 0.1s;
    transform: translateY(60px);
}
.loaded .act1 {
    opacity: 1;
    transform: none;
}
.headerFix .act1 {
}

/* act2 */
.act2 {
  opacity: 0;
    transition: 0.4s cubic-bezier(0.25, 0.1, 0.38, 2.2) 0.3s;
    transform: translateY(60px);
}
.loaded .act2 {
    opacity: 1;
    transform: none;
}
.headerFix .act2 {
}

/* act3 */
.act3 {
  opacity: 0;
    transition: 0.4s cubic-bezier(0.25, 0.1, 0.38, 2.2) 0.5s;
    transform: translateY(60px);
}
.loaded .act3 {
    opacity: 1;
    transform: none;
}
.headerFix .act3 {
}

.titBox {
    padding: 0;
    border: none;
}
.titBox .tit_img {
    background: #ae371f;
    padding: 20px 9%;
    line-height: 0;
}
.tit_btm {
    margin-top: -1px;
}

.lead_img {
    display: flex;
    margin-bottom: 40px;
    justify-content: space-between;
}

.lead_img li {
    width: 48%;
    border-radius: 20px;
    border: 1px solid;
    overflow: hidden;
}

.lead_box {
    background: #fff;
    border-radius: 20px;
    border: 1px solid;
    overflow: hidden;
    padding: 30px;
    font-size: 14px;
    font-weight: 500;
}

.lead_box .lead {
    margin-bottom: 12px;
}

.lead_box .lead:last-child {
    margin-bottom: 0;
}



/*===================================================
  introBox
====================================================*/
.introBox {
}
.introBox .contentBox {
  padding: 0;
  background-color: transparent;
}
.introBox .contentInner {
}
/* SP-max-769 */
@media screen and (max-width: 960px) {
  .introBox {
  }
  .introBox .lead {
    font-size: 110%;
    line-height: 1.6em;
  }

.lead_img {
    margin-bottom: 25px;
}
.lead_img li {
    border-radius: 15px;
}
.lead_box {
    padding: 20px;
    font-size: 12px;
    border-radius: 15px;
}

}
/*===================================================
  productBox
====================================================*/
.productBox {
    background: #d0e0e8;
    padding: 60px 8%;
}
.productBox .contentBox {
  max-width: 1000px;
  padding: 0;
}
.productBox .contentInner {
    gap: 64px;
}
.productBox .contentInner .productName {
    font-weight: 800;
    margin-bottom: 64px;
    text-align: center;
    letter-spacing: 0.05em;
}

.productBox .contentInner .productName .productSub {
  line-height: 1.5em;
  font-size: 86%;
  display: inline-block;
  margin: 0 0 8px;
}
.productBox .contentInner .productName .productMain {
    font-size: 165%;
    border: 3px solid;
    width: fit-content;
    margin: 0 auto 40px;
    background: #ffcc00;
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: 3px 3px 0 #000;
}

.package {
    width: 55%;
    margin: 0 auto;
    filter: drop-shadow(0 6px 14px #00000075);
}

.product_char {
    line-height: 0;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
}

.product_name {
    text-align: center;
    font-weight: bold;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
    font-size: 21px;
}

.productBox .contentInner .productName span {
  font-size: 42%;
}
.productBox .contentInner .clm {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.productBox .contentInner .clm .productImageBox {
  display: flex;
  gap: 40px;
  width: 100%;
  max-width: 800px;
}
.productBox .contentInner .clm .productImageBox figure {
  width: 50%;
  position: relative;
}
.productBox .productImage {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s ease;
}
.productBox .activeBack .productImage.changefront {
  opacity: 0;
}
.productBox .activeFront .productImage.changeBack {
  opacity: 0;
}
.productBox .blankImage {
}
.productBox .productDetail {
  width: 100%;
  max-width: 800px;
  display: flex;
  gap: 56px;
}
.productBox .contentInner .op_detail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.productBox .controlBox {
  text-align: center;
  line-height: 0;
  margin-bottom: 64px;
}

.productBox .controlBox .revers {
  background: #000000;
  color: #fff;
  line-height: 1em;
  font-family: "Cal Sans", sans-serif;
  border-radius: 100px;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120%;
  cursor: pointer;
  width: 160px;
}
.productBox .controlBox .revers i {
  font-size: 80%;
  margin-left: 8px;
  animation: iconRotate 3s ease-in-out infinite;
}
.productBox .galleryList{
    display: flex;
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
    gap: 24px;
    padding: 40px 60px;
    background: #010101;
}
.productBox .galleryList li{

}
.productBox .galleryList img{

}

@keyframes iconRotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

/* PC-min-770 */
@media screen and (min-width: 960px) {
}
/* SP-max-769 */
@media screen and (max-width: 960px) {
.productBox {
    padding: 40px 6%;
}
  .productBox .contentInner {
      gap: 32px;
  }
.productBox .contentInner .productName .productMain {
    font-size: 18px;
    margin-bottom: 30px;
    border-width: 2px;
    box-shadow: 2px 2px 0 #000;
}

  .productBox .contentInner .clm {
    display: flex;
    flex-direction: column;
  }
.productBox .contentInner .clm .productImageBox {
    flex-wrap: wrap;
    width: 84%;
}
  .productBox .contentInner .op_detail {
    width: 100%;
    padding-left: 0;
  }
  .productBox .contentInner .op_detail .productName {
    display: none;
  }
  .productBox .contentInner .productName {
    font-size: 110%;
    margin-bottom: 40px;
  }
  .productBox .productDetail {
    flex-direction: column;
    gap: 32px;
  }
  .productBox .sizeChartBox {
    width: 100%;
  }
  .productBox .controlBox {
    margin-bottom: 32px;
  }
  .productBox .controlBox .revers {
    padding: 8px 30px;
    width: 120px;
  }
  .productBox .galleryList{
    gap: 0;
    padding: 20px 16px;
  }

.package {
    width: 60%;
}

}

/*===================================================
  orderBox
====================================================*/
.orderBox {
    padding: 60px 8%;
}
.orderBox .contentBox {
  background: transparent;
  max-width: 1040px;
  padding: 0;
}
.orderBox .contentInner {
}
.orderBox .tit {
    text-align: center;
    font-size: 21px;
    letter-spacing: 0.2em;
    font-weight: 600;
    margin-bottom: 15px;
}
.orderBox .term {
  text-align: center;
  font-size: 180%;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  line-height: 1.3em;
}
.orderBox .term span {
  display: inline-block;
  font-size: 70%;
  text-indent: -6px;
}
.orderBox .op_detail {
}
.orderBox .op_detail .detailList {
    font-size: 15px;
    padding: 15px 0;
}
.orderBox .op_detail .detailList dt {
    width: 120px;
}
.orderBox .op_detail .detailList dd {
  width: calc(100% - 120px);
}
.orderBox .op_detail .detailList dd:before {
    border-left: 1px solid;
}
.orderBox .op_detail .cautionList {
    margin-bottom: 50px;
}
.orderBox .op_detail .btn {
  text-align: center;
  margin-bottom: 64px;
}
.orderBox .op_detail .btn a {
    background: #b83422;
    font-size: 135%;
    padding: 24px 64px;
    color: #fff;
    border-radius: 60px;
    border: 3px solid #000000;
    font-weight: bold;
    box-shadow: 0 3px 0 #000000;
}
.orderBox .customer {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}
.orderBox .customer li {
    width: 50%;
    border: 1px solid;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
}
.orderBox .customer li .customerTit {
    border-bottom: 1px solid;
    padding: 0 0 10px;
    margin: 0 0 15px;
    font-size: 80%;
    font-weight: 600;
}
.orderBox .customer li .customerDetail {
    font-size: 15px;
}
.orderBox .customer li .customerDetail span {
}

.footer_area {
    text-align: center;
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: 0.02em;
}


/* SP-max-769 */
@media screen and (max-width: 960px) {
  .orderBox {
      padding: 40px 6%;
  }

.orderBox .tit {
    font-size: 16px;
}

.orderBox .term {
    font-size: 140%;
    margin-bottom: 30px;
}
.orderBox .op_detail .cautionList {
    margin-bottom: 30px;
}
.orderBox .op_detail .btn {
    margin-bottom: 40px;
}
.orderBox .customer {
    flex-direction: column;
    gap: 15px;
}
  .orderBox .customer li {
    width: 100%;
    border: 1px solid;
    padding: 24px;
  }
  .orderBox .op_detail .detailList dd {
    width: 100%;
    position: relative;
    padding: 0;
  }
  .op_detail .detailList dd {
  }

.orderBox .op_detail .detailList dd .txt {
    font-size: 80%;
}

.orderBox .op_detail .btn a {
    border-width: 2px;
    font-size: 115%;
    padding: 20px;
    width: 100%;
    max-width: 300px;
}

.footer_area {
    font-size: 10px;
}

}
