@charset "UTF-8";
/* =========================================================

STREET ART LINE PROJECT×WAVE Tシャツ

========================================================= */
#wave-tshirt {
  color: #222;
  line-height: 1.6;
}

#wave-tshirt * {
  font-family: "YakuHanJP_Noto", "Roboto", "Noto Sans JP", sans-serif;
}

#wave-tshirt *::before,
#wave-tshirt *::after {
  box-sizing: border-box;
}

#wave-tshirt div,
#wave-tshirt p,
#wave-tshirt h1,
#wave-tshirt h2,
#wave-tshirt h3,
#wave-tshirt ul,
#wave-tshirt li,
#wave-tshirt a {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
}

#wave-tshirt em {
  font-style: normal;
}

#wave-tshirt a {
  text-decoration: none;
}

#wave-tshirt em {
  font-style: normal;
}

#wave-tshirt img {
  max-width: 100%;
  vertical-align: bottom;
}

#wave-tshirt input {
  padding: 0;
  border: 0;
  appearance: none;
}

/* セクション共通スタイル
--------------------------------------- */
#wave-tshirt .sec_inner {
  /* padding: 0 8.8%; */
}

#wave-tshirt .sec_title {
  font-size: min(6vw, 28px);
  text-align: center;
}

#wave-tshirt .sec_title img {
  height: min(6vw, 28px);
}

#wave-tshirt .sec_text {
  margin-top: 5%;
  font-weight: 300;
  font-size: min(3.5vw, 16px);
  line-height: 2.1;
  letter-spacing: 0.05em;
}

/* ボタン共通スタイル
--------------------------------------- */
#wave-tshirt .wt_btn {
  display: inline-block;
  position: relative;
  width: 100%;
  margin: 7px auto 0;
  padding: 1em 0 calc(1em + 5px);
  background: #232323;
  color: #fff;
  font-weight: 600;
  font-size: min(3.645vw, 17px);
  line-height: 1.5;
  text-align: center;
}

#wave-tshirt .wt_btn.wt_btn_style01 {
  font-size: min(4.688vw, 22px);
}

#wave-tshirt .wt_btn.wt_btn_style02 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='56px' height='20px'%3E%3Cpath fill-rule='evenodd' stroke='rgb(255, 255, 255)' stroke-width='4px' stroke-linecap='butt' stroke-linejoin='miter' fill='none' d='M2.784,13.382 L47.461,13.310 L38.548,3.349 '/%3E%3C/svg%3E");
  background-position: right 15px top calc(50% - 2px);
  background-size: 20px auto;
  background-repeat: no-repeat;
}

#wave-tshirt .wt_btn.wt_btn_style03 {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='56px' height='20px'%3E%3Cpath fill-rule='evenodd' stroke='rgb(35, 35, 35)' stroke-width='4px' stroke-linecap='butt' stroke-linejoin='miter' fill='none' d='M2.784,13.382 L47.461,13.310 L38.548,3.349 '/%3E%3C/svg%3E");
  background-position: right 15px top calc(50% - 2px);
  background-size: 20px auto;
  background-repeat: no-repeat;
  background-color: #fff;
  color: #232323;
}

#wave-tshirt .wt_btn::after, #wave-tshirt .wt_btn::before,
#wave-tshirt .wt_btn span::after,
#wave-tshirt .wt_btn span::before {
  display: block;
  z-index: 10;
  position: absolute;
  background-color: #fff100;
  content: '';
}

#wave-tshirt .wt_btn::after {
  top: -7px;
  left: -5px;
  width: 100%;
  height: 2px;
}

#wave-tshirt .wt_btn::before {
  right: 7px;
  bottom: 5px;
  width: 100%;
  height: 2px;
}

#wave-tshirt .wt_btn span::after {
  top: -7px;
  left: -7px;
  width: 2px;
  height: 100%;
}

#wave-tshirt .wt_btn span::before {
  right: 5px;
  bottom: 5px;
  width: 2px;
  height: 100%;
}

#wave-tshirt .wt_btn:hover::after, #wave-tshirt .wt_btn:hover::before {
  -webkit-animation-name: draw-horizon;
  -webkit-animation-fill-mode: backwards;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  animation-fill-mode: backwards;
  animation-name: draw-horizon;
}

#wave-tshirt .wt_btn:hover span::after,
#wave-tshirt .wt_btn:hover span::before {
  -webkit-animation-name: draw-vertical;
  -webkit-animation-fill-mode: backwards;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
  animation-fill-mode: backwards;
  animation-name: draw-vertical;
}

#wave-tshirt .wt_btn:hover::after {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

#wave-tshirt .wt_btn:hover::before {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

#wave-tshirt .wt_btn:hover span::before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

#wave-tshirt .wt_btn:hover span::after {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes draw-horizon {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes draw-horizon {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes draw-vertical {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

@keyframes draw-vertical {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

/* YouTube縦横比調整
--------------------------------------- */
#wave-tshirt .youtube_ifreme {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}

/* メインビジュアル
--------------------------------------- */
#wave-tshirt .sec_mv {
  text-align: center;
}

/* テキスト表示・レイアウト表示する
--------------------------------------- */
#wave-tshirt .acctool {
  width: 90%;
  margin: 10% auto 0;
  text-align: center;
}

#wave-tshirt .acc_text_visble {
  display: none;
}

body.acc_text_display #wave-tshirt .acc_text_visble {
  display: block;
}

body.acc_text_display #wave-tshirt .acc_text_hidden {
  display: none;
}

/* ABOUT
--------------------------------------- */
#wave-tshirt .sec_about {
  margin: 10% auto 0;
  padding: 10% 0;
  background-image: url(/campaign/wave-tshirt/img/about_bg.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#wave-tshirt .sec_about .about_text_box {
  margin-top: 5%;
  padding: 2.2% 5% 6%;
  background-color: #fff;
  text-align: center;
}

#wave-tshirt .sec_about .about_text_box p {
  margin-top: 1em;
  font-size: min(3.125vw, 15px);
  line-height: 2.2;
  letter-spacing: 0.18em;
}

#wave-tshirt .sec_about .about_text_box .line {
  margin: 0 .1em;
  padding: 0 .1em;
  background: linear-gradient(#fff100, #fff100) right bottom/0 0.5em no-repeat;
  background-position: left bottom;
  background-size: 100% .5em;
  transition: background-size 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* LINEUP
--------------------------------------- */
#wave-tshirt .sec_lineup .sec_inner {
  width: 90%;
  margin: auto;
  padding: 12% 0 10%;
}

#wave-tshirt .sec_lineup .lineup_hint {
  margin-right: 5.5%;
  margin-left: -5.5%;
}

#wave-tshirt .sec_lineup .lineup_title {
  margin-top: 10%;
}

#wave-tshirt .sec_lineup .color_title {
  margin-top: 12%;
}

#wave-tshirt .sec_lineup .lineup_list {
  display: flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 8%;
}

#wave-tshirt .sec_lineup .lineup_list li {
  width: calc((100% - 7.2%) / 4);
  margin-left: 2.4%;
}

#wave-tshirt .sec_lineup .lineup_list li:nth-child(4n+1) {
  margin-left: 0;
}

#wave-tshirt .sec_lineup .lineup_list label {
  cursor: pointer;
}

#wave-tshirt .sec_lineup .color_list {
  display: flex;
  display: flex;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 8%;
}

#wave-tshirt .sec_lineup .color_list li {
  width: calc((100% - 25.8%) / 4);
  margin-left: 8.6%;
}

#wave-tshirt .sec_lineup .color_list li:nth-child(4n+1) {
  margin-left: 0;
}

#wave-tshirt .sec_lineup .color_list label {
  cursor: pointer;
}

#wave-tshirt .sec_lineup [data-color-name] {
  display: none;
}

#wave-tshirt .sec_lineup [data-color-name].active {
  display: block;
}

#wave-tshirt .sec_lineup [data-tshirt-id] {
  display: none;
}

#wave-tshirt .sec_lineup [data-tshirt-id].active {
  display: block;
}

#wave-tshirt .sec_lineup .tshirt_box_wrapper {
  margin-top: 12%;
}

#wave-tshirt .sec_lineup .tshirt_box {
  /* 幅464pxの場合、スライダー箇所が若干崩れるため、小数点単位で調整を行う */
  width: 88.1%;
  margin: auto;
}

#wave-tshirt .sec_lineup .tshirt_box .tshirt_slider {
  position: relative;
}

#wave-tshirt .sec_lineup .tshirt_box .tshirt_icon {
  margin-top: 7%;
  font-weight: 500;
  font-size: min(3.125vw, 15px);
  line-height: 1;
  letter-spacing: 0.18em;
}

#wave-tshirt .sec_lineup .tshirt_box .tshirt_icon span {
  display: inline-block;
  padding: 0.7em 0.8em 0.6em;
  border: 1px solid #383839;
}

#wave-tshirt .sec_lineup .tshirt_box .tshirt_name {
  margin-top: 6%;
  font-weight: 700;
  font-size: min(3.958vw, 18px);
  line-height: 1.4;
  letter-spacing: 0.1em;
}

#wave-tshirt .sec_lineup .tshirt_box .tshirt_price {
  margin-top: 3%;
  font-size: min(8.645vw, 40px);
  line-height: 1;
}

#wave-tshirt .sec_lineup .tshirt_box .tshirt_price img {
  vertical-align: bottom;
}

#wave-tshirt .sec_lineup .tshirt_box .tshirt_price_notice {
  margin-top: 3%;
  color: #e47600;
  font-size: min(3.125vw, 15px);
  letter-spacing: 0.1em;
}

#wave-tshirt .sec_lineup .tshirt_box .tshirt_detail_link {
  width: 88.2%;
  margin: 6% auto 0;
}

#wave-tshirt .sec_lineup .tshirt_text_list_item {
  display: flex;
  justify-content: space-between;
  width: 88%;
  margin: 10% auto 0;
}

#wave-tshirt .sec_lineup .tshirt_text_list_item_main {
  width: 35%;
}

#wave-tshirt .sec_lineup .tshirt_text_list_item_sub {
  width: 60%;
}

#wave-tshirt .sec_lineup .tshirt_text_list_item .tshirt_detail_link {
  margin-top: 4%;
}

#wave-tshirt .sec_lineup .tshirt_text_list_item .wt_btn {
  font-size: 13px;
}

#wave-tshirt .sec_lineup .tshirt_common_detail {
  width: 88%;
  margin: auto;
}

#wave-tshirt .sec_lineup .tshirt_detail_box {
  margin: 8% auto 0;
}

#wave-tshirt .sec_lineup .tshirt_detail_box.box_mt {
  margin-top: 12%;
}

#wave-tshirt .sec_lineup .tshirt_detail_box_ttl {
  font-weight: 700;
  font-size: min(3.125vw, 15px);
  line-height: 1.4;
  letter-spacing: 0.18em;
}

#wave-tshirt .sec_lineup .tshirt_detail_box_text {
  margin-top: 0.5em;
  font-weight: 400;
  font-size: min(3.125vw, 15px);
  letter-spacing: 0.14em;
}

#wave-tshirt .sec_lineup .tshirt_detail_box_note {
  margin-top: 0.5em;
  font-weight: 400;
  font-size: min(2.801vw, 13px);
  letter-spacing: 0.14em;
}

#wave-tshirt .sec_lineup .tshirt_detail_box_table {
  width: 100%;
  margin-top: 0.5em;
  border-collapse: collapse;
  font-weight: 400;
  font-size: min(2.6vw, 12px);
}

#wave-tshirt .sec_lineup .tshirt_detail_box_table th, #wave-tshirt .sec_lineup .tshirt_detail_box_table td {
  padding: 0.5em;
  border: 1px solid #7f7f7f;
  text-align: center;
  vertical-align: middle;
}

#wave-tshirt .sec_lineup .tshirt_detail_box_table th {
  background-color: #f4f4f4;
}

#wave-tshirt .sec_lineup .tshirt_designer_intro {
  display: flex;
  align-items: center;
  margin-top: 4%;
}

#wave-tshirt .sec_lineup .tshirt_designer_intro_img {
  width: 26%;
  margin-right: 3%;
}

#wave-tshirt .sec_lineup .tshirt_designer_intro .tshirt_detail_box_text {
  flex: 1;
}

/* swiperスタイル上書き
--------------------------------------- */
#wave-tshirt .swiper-container {
  position: static;
}

#wave-tshirt .swiper-button-next,
#wave-tshirt .swiper-button-prev {
  width: min(5vw,23px);
  height: min(5vw,23px);
}

#wave-tshirt .swiper-button-next:after,
#wave-tshirt .swiper-button-prev:after {
  width: min(5vw,23px);
  height: min(5vw,23px);
  border: solid #454545;
  content: "";
  font-size: 0;
}

#wave-tshirt .swiper-button-next {
  right: -7.5%;
}

#wave-tshirt .swiper-button-next:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-width: 3px 3px 0 0;
}

#wave-tshirt .swiper-button-prev {
  left: -7.5%;
}

#wave-tshirt .swiper-button-prev:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-width: 3px 0 0 3px;
}

/* アートラインプロジェクトコンテンツ
--------------------------------------- */
#wave-tshirt .sec_salp {
  padding: 12% 0;
  background-color: #232323;
}

#wave-tshirt .sec_salp .sec_inner {
  width: 90%;
  margin: auto;
}

#wave-tshirt .sec_salp .salp_movie {
  display: block;
  margin: 0 auto 8%;
}

#wave-tshirt .sec_salp .salp_link {
  width: 78%;
  margin: auto;
}

#wave-tshirt .sec_salp .salp_link + .salp_link {
  margin-top: 8%;
}

/* PC省略化ページのテーマ
--------------------------------------- */

@media screen and (min-width: 768px) {
  body.is_sp_only.theme_wave-tshirt {
    background: url(/campaign/wave-tshirt/img/pc_bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #000;
  }
  /* body.is_sp_only.theme_wave-tshirt .left_container_link_top:before {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
  } */
  body.is_sp_only.theme_wave-tshirt .right_container_link01 a {
    color: #ffffff;
  }
  body.is_sp_only.theme_wave-tshirt .right_container_link01.is_history a {
    color: #ffffff;
  }
  body.is_sp_only.theme_wave-tshirt .left_container_txt01 {
    color: #ffffff;
  }
  body.is_sp_only.theme_wave-tshirt .right_container_link01.is_history:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cdefs%3E%3Cstyle%3E.cls-1,.cls-2%7Bfill:none;%7D.cls-2%7Bstroke:rgb(10,10,10);stroke-linecap:round;stroke-linejoin:round;stroke-width:4px;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Ereload_24%3C/title%3E%3Cg %3E%3Cg %3E%3Crect class='cls-1' width='48' height='48'/%3E%3C/g%3E%3Cg id='icon'%3E%3Cpolyline class='cls-2' points='17.18 15 8.18 15 8.18 6'/%3E%3Cpath class='cls-2' d='M10.58,12A18,18,0,1,1,6.23,26.88'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 50% auto;
    background-color: #fff100;
  }
  body.is_sp_only.theme_wave-tshirt .right_container_link01.is_search:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cdefs%3E%3Cstyle%3E.cls-1,.cls-2%7Bfill:none;%7D.cls-2%7Bstroke:rgba(10,10,10);stroke-linecap:round;stroke-linejoin:round;stroke-width:4px;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3Esearch_24%3C/title%3E%3Cg %3E%3Cg %3E%3Crect class='cls-1' width='48' height='48'/%3E%3C/g%3E%3Cg id='icon'%3E%3Cpath class='cls-2' d='M25.66,35.52A14.24,14.24,0,0,1,22,36a14,14,0,1,1,9.9-4.1'/%3E%3Cline class='cls-2' x1='40' y1='40' x2='31.9' y2='31.9'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 52% auto;
    background-color: #0a0a0a;
    background-color: #ffffff;
  }
}
