@charset "UTF-8";
/* 下線が右から左へ消える
---------------------------------------------------------- */
/* 下線が左から右へ出現する
---------------------------------------------------------- */
/* ==========================================================================//
//
//　common
//
// ========================================================================== */
body.colab {
  /* for iOS */
  -webkit-text-size-adjust: 100%;
}

body.athlete {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: adobe-garamond-pro, serif;
  font-style: normal;
  font-weight: 400;
  font-weight: 400;
  color: #2E2E2E;
  font-size: 12px;
  line-height: 2.16;
  text-align: center;
  padding-top: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media all and (min-width: 751px) {
  body.athlete {
    font-size: 14px;
    line-height: 2.42;
  }
}

* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-style: normal;
}

img {
  /* for Chrome */
  -webkit-backface-visibility: hidden;
}

h1, h2, h3, h4, h5, h6 {
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  line-height: 1.2;
  padding: 0;
  margin: 0;
}

section, picture {
  display: block;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a img {
  border: none;
}

a {
  text-decoration: none;
}

ul, li {
  list-style: none;
}

input, label, select, textarea {
  vertical-align: middle;
}

.disp_non {
  display: none;
}

@media all and (max-width: 750px) {
  .forSP {
    display: block;
  }
}
@media all and (min-width: 751px) {
  .forSP {
    display: none;
  }
}

@media all and (max-width: 750px) {
  .forPC {
    display: none;
  }
}
@media all and (min-width: 751px) {
  .forPC {
    display: block;
  }
}

/* inner
---------------------------------------------------------- */
.inner {
  margin: 0 auto;
  padding: 0 20px;
}
@media all and (min-width: 751px) {
  .inner {
    padding: 0 83px;
    max-width: 1200px;
  }
}

/* 共通
---------------------------------------------------------- */
/* スライドの詳細設定
---------------------------------------------------------- */
.swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

/* 矢印を非表示 */
.splide__arrows {
  display: none;
}

.splide__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (min-width: 751px) {
  .splide__list .splide__slide .image img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

.number {
  /* ↓counter~はスライドに番号をつけるための記述 */
}
.number.right .splide__pagination {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.number .splide__pagination {
  margin: 15px 0 0;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  counter-reset: pagination-num;
  width: 89.35%;
  gap: 15px;
}
@media all and (min-width: 751px) {
  .number .splide__pagination {
    margin: 25px auto 0;
    gap: 20px;
  }
}
.number .splide__pagination .splide__pagination__page {
  cursor: pointer;
  position: relative;
  background-color: transparent;
  border: none;
  font-size: 12.5px;
  font-family: adobe-garamond-pro, serif;
  font-style: normal;
  font-weight: 400;
  color: #2E2E2E;
}
@media all and (min-width: 751px) {
  .number .splide__pagination .splide__pagination__page {
    font-size: 16px;
  }
}
.number .splide__pagination .splide__pagination__page::before {
  counter-increment: pagination-num;
  content: counter(pagination-num);
}
.number .splide__pagination .splide__pagination__page::after {
  content: "";
  position: absolute;
  background-color: #2E2E2E;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  height: 1px;
  opacity: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.number .splide__pagination .splide__pagination__page.is-active::after {
  opacity: 1;
}

@media all and (max-width: 750px) {
  #sp_slide {
    padding: 0 20px;
    overflow: hidden;
  }
}
#sp_slide .splide__track {
  overflow: visible;
}
#sp_slide:not(.sp_03) .splide__pagination {
  display: none;
}

/* アニメーション
---------------------------------------------------------- */
@-webkit-keyframes fadeInAnime {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.04);
            transform: scale(1.04);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes fadeUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeLeftAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeLeftAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadeRightAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes fadeRightAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideToRight {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}
@keyframes slideToRight {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0);
  }
}
@-webkit-keyframes slideToLeft {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0);
  }
}
@keyframes slideToLeft {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0);
  }
}
.fadeUp {
  -webkit-animation: fadeUpAnime 1.5s forwards;
          animation: fadeUpAnime 1.5s forwards;
  opacity: 0;
}

.fadeLeft {
  -webkit-animation: fadeLeftAnime 1.5s forwards;
          animation: fadeLeftAnime 1.5s forwards;
  opacity: 0;
}

.fadeRight {
  -webkit-animation: fadeRightAnime 1.5s forwards;
          animation: fadeRightAnime 1.5s forwards;
  opacity: 0;
}

.fadeIn {
  -webkit-animation: fadeInAnime 1.5s forwards;
          animation: fadeInAnime 1.5s forwards;
  opacity: 0;
}

.delay02 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.delay04 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.delay06 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.delay08 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.delay10 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@media all and (min-width: 751px) {
  .delay02_pc {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  .delay04_pc {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  .delay06_pc {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  .delay08_pc {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
}
.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger,
.fadeInTrigger {
  opacity: 0;
}

.delayScroll > * {
  opacity: 0;
}

/* ==========================================================================//
//
// introduction,model look
//
// ========================================================================== */
/* 共通
---------------------------------------------------------- */
section {
  margin-top: 92px;
}
@media all and (min-width: 751px) {
  section {
    margin-top: 200px;
  }
}

/* コンテンツ幅からはみ出る */
.protrude {
  margin: 0 calc(50% - 50vw);
}

.protrude_pc {
  margin: 0;
}
@media all and (min-width: 751px) {
  .protrude_pc {
    margin: 0 calc(50% - 50vw);
  }
}

.protrude_sp {
  margin: 0 calc(50% - 50vw);
}
@media all and (min-width: 751px) {
  .protrude_sp {
    margin: 0;
  }
}

.sec_ttl {
  margin: 0 auto 45px;
  padding-bottom: 8px;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
  width: min(100px, 29.9%);
}
@media all and (min-width: 751px) {
  .sec_ttl {
    margin: 0 auto 72px;
    padding-bottom: 12px;
    font-size: 18px;
    width: min(140px, 12.1%);
  }
}
.sec_ttl::after {
  position: absolute;
  content: "";
  background-color: #777777;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
}

.sns {
  padding-left: 24px;
  display: block;
  position: relative;
  text-align: left;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #2E2E2E;
  font-size: 13px;
}
@media all and (min-width: 751px) {
  .sns {
    padding-left: 26px;
    font-size: 15px;
    display: -webkit-box;
    overflow: hidden;
  }
  .sns .line {
    text-decoration: none;
    background-image: -webkit-gradient(linear, left top, right top, from(#2E2E2E), to(#2E2E2E));
    background-image: linear-gradient(90deg, #2E2E2E, #2E2E2E);
    background-repeat: no-repeat;
    background-position: left bottom 2px;
    background-size: 0% 1.2px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
}
@media all and (min-width: 751px) and (min-width: 751px) {
  .sns .line {
    background-position: left bottom 2px;
  }
}
@media (min-width: 751px) and (min-width: 751px) and (hover: hover) {
  .sns:hover span {
    background-size: 100% 1.2px;
    background-position: left bottom 2px;
  }
}
@media (min-width: 751px) and (min-width: 751px) and (hover: hover) and (min-width: 751px) {
  .sns:hover span {
    background-position: left bottom 2px;
  }
}
.sns::before {
  position: absolute;
  content: "";
  background-image: url(/static/full/canterbury/special/rugbyathlete/25ss/assets/img/cast/insta.png);
  background-size: cover;
  background-repeat: no-repeat;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 14px;
  height: 14px;
}
@media all and (min-width: 751px) {
  .sns::before {
    width: 16px;
    height: 16px;
  }
}

/*  */
.athlete_contents {
  position: relative;
}

/* メインビジュアル
---------------------------------------------------------- */
.mv #mv_splide {
  pointer-events: none;
}

/* introduction↓
---------------------------------------------------------- */
.introduction {
  margin-top: 70px;
}
@media all and (min-width: 751px) {
  .introduction {
    margin-top: 160px;
  }
}
.introduction .ttl span {
  font-family: hiragino-mincho-pron, serif, sans-serif;
  font-style: normal;
  font-weight: 300;
  display: block;
  line-height: 2.16;
}
@media all and (min-width: 751px) {
  .introduction .ttl span {
    line-height: 2.42;
  }
}
.introduction .ttl span:not(:first-of-type) {
  margin-top: 26px;
}
@media all and (min-width: 751px) {
  .introduction .ttl span:not(:first-of-type) {
    margin-top: 50px;
  }
}

/* 追従アンカーリンク
---------------------------------------------------------- */
.sticky {
  position: fixed;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
  visibility: hidden;
  z-index: 1;
}
@media all and (max-width: 750px) {
  .sticky {
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media all and (min-width: 751px) {
  .sticky {
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.sticky.active {
  opacity: 1;
  visibility: visible;
}
@media all and (max-width: 750px) {
  .sticky .link_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.sticky .link_list .link_item {
  line-height: 1;
}
@media all and (max-width: 750px) {
  .sticky .link_list .link_item:nth-child(2) a {
    border-right: none;
    border-left: none;
  }
}
@media all and (min-width: 751px) {
  .sticky .link_list .link_item:nth-child(2) a {
    border-top: none;
    border-bottom: none;
  }
}
.sticky .link_list .link_item a {
  display: block;
  position: relative;
  background-color: #fff;
  color: #2E2E2E;
  border: 1px solid #2E2E2E;
  letter-spacing: 0.03em;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media all and (max-width: 750px) {
  .sticky .link_list .link_item a {
    padding: 8px 20px;
    font-size: 12px;
  }
}
@media all and (min-width: 751px) {
  .sticky .link_list .link_item a {
    padding: 30px 10px;
    vertical-align: top;
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    font-size: 16px;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .sticky .link_list .link_item a:hover {
    background-color: #000;
    color: #fff;
  }
}

/* LOOK
---------------------------------------------------------- */
section.sec_look {
  /* SPのみのスライダー */
  /* 番号ありスライダー */
}
section.sec_look .look_list .look_detail.separately {
  position: relative;
}
@media all and (max-width: 1149px) {
  section.sec_look .look_list .look_detail.separately .product_detail {
    padding: 0 20px 0 5px;
  }
}
@media screen and (min-width: 1150px) and (max-width: 1165px) {
  section.sec_look .look_list .look_detail.separately .product_detail {
    padding: 0 20px;
  }
}
@media all and (min-width: 1166px) {
  section.sec_look .look_list .look_detail.separately .product_detail {
    position: absolute;
    bottom: 15.8%;
    right: 8%;
    width: 36.66%;
  }
}
@media all and (min-width: 1366px) {
  section.sec_look .look_list .look_detail.separately .product_detail {
    bottom: 20%;
  }
}
@media screen and (min-width: 1165px) and (max-width: 1331px) {
  section.sec_look .look_list .look_detail.separately .product_detail {
    right: 4%;
    width: 42%;
  }
}
@media screen and (min-width: 830px) and (max-width: 1165px) {
  section.sec_look .look_list .look_detail.separately .product_detail {
    width: 60%;
  }
}
@media screen and (min-width: 751px) and (max-width: 831px) {
  section.sec_look .look_list .look_detail.separately .product_detail {
    width: 65%;
  }
}
@media screen and (min-width: 1165px) and (max-width: 1200px) {
  section.sec_look .look_list .look_detail.separately .product_detail {
    bottom: 13%;
  }
}
section.sec_look #sp_slide.sp_01 {
  margin: 20px 0 45px;
}
@media all and (min-width: 751px) {
  section.sec_look #sp_slide.sp_01 {
    margin: 40px 0 80px;
  }
}
@media all and (min-width: 751px) {
  section.sec_look #sp_slide.sp_01 .splide__list {
    gap: 0 20px;
  }
}
@media all and (min-width: 751px) {
  section.sec_look #sp_slide.sp_01 .splide__list .splide__slide {
    width: calc((100% - 20px) / 2) !important;
  }
}
@media all and (max-width: 750px) {
  section.sec_look #sp_slide.sp_02 {
    margin-bottom: 45px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1165px) {
  section.sec_look #sp_slide.sp_02 {
    padding: 0 20px;
    margin-bottom: 45px;
    overflow: hidden;
  }
}
@media all and (min-width: 1166px) {
  section.sec_look #sp_slide.sp_02 .splide__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    gap: 15px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1165px) {
  section.sec_look #sp_slide.sp_02 .splide__list {
    gap: 10px;
  }
}
@media all and (min-width: 1166px) {
  section.sec_look #sp_slide.sp_02 .splide__list .splide__slide {
    width: calc((100% - 15px) / 2) !important;
  }
}
section.sec_look #sp_slide.sp_03 {
  margin: 90px 0 45px;
  padding: 0;
}
@media all and (min-width: 751px) {
  section.sec_look #sp_slide.sp_03 {
    margin: 160px 0 80px;
  }
}
@media all and (min-width: 751px) {
  section.sec_look #sp_slide.sp_03 .splide__list {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}
@media all and (min-width: 751px) {
  section.sec_look #sp_slide.sp_03 .splide__list .splide__slide {
    width: 66.67% !important;
  }
}
section.sec_look #sp_slide.sp_03 .splide__list .splide__slide.slide01 {
  margin-left: auto !important;
}
@media all and (min-width: 751px) {
  section.sec_look #sp_slide.sp_03 .splide__list .splide__slide.slide02 {
    margin-top: 20px;
  }
}
section.sec_look #sp_slide.sp_04 {
  margin: 60px 0 90px;
}
@media all and (min-width: 751px) {
  section.sec_look #sp_slide.sp_04 {
    margin: 100px 0 180px;
  }
}
@media all and (min-width: 751px) {
  section.sec_look #sp_slide.sp_04 .splide__list {
    gap: 0 20px;
  }
}
@media all and (min-width: 751px) {
  section.sec_look #sp_slide.sp_04 .splide__list .splide__slide {
    width: calc((100% - 20px) / 2) !important;
  }
}
section.sec_look #sp_slide.sp_05 {
  margin: 60px 0 45px;
}
@media all and (min-width: 751px) {
  section.sec_look #sp_slide.sp_05 {
    margin: 50px 0 80px;
    padding: 0 25px;
  }
}
@media all and (min-width: 751px) {
  section.sec_look #sp_slide.sp_05 .splide__list {
    gap: 0 40px;
  }
}
@media all and (min-width: 751px) {
  section.sec_look #sp_slide.sp_05 .splide__list .splide__slide {
    width: calc((100% - 40px) / 2) !important;
  }
}
section.sec_look #sp_slide.sp_06 {
  margin: 120px 0 20px;
}
@media all and (min-width: 751px) {
  section.sec_look #sp_slide.sp_06 {
    margin: 200px 0 40px;
  }
}
@media all and (min-width: 751px) {
  section.sec_look #sp_slide.sp_06 .splide__list .splide__slide {
    width: 50% !important;
  }
}
section.sec_look #sp_slide.sp_07 {
  margin-bottom: 10px;
}
@media all and (min-width: 751px) {
  section.sec_look #sp_slide.sp_07 {
    margin-bottom: 15px;
  }
}
@media all and (min-width: 751px) {
  section.sec_look #sp_slide.sp_07, section.sec_look #sp_slide.sp_08 {
    padding: 0 20px;
  }
}
@media all and (min-width: 751px) {
  section.sec_look #sp_slide.sp_07 .splide__list, section.sec_look #sp_slide.sp_08 .splide__list {
    gap: 15px;
  }
}
@media all and (min-width: 751px) {
  section.sec_look #sp_slide.sp_07 .splide__list .splide__slide, section.sec_look #sp_slide.sp_08 .splide__list .splide__slide {
    width: calc((100% - 15px) / 2) !important;
  }
}
section.sec_look #sp_slide.sp_09 {
  margin: 55px 0 20px;
}
@media all and (min-width: 751px) {
  section.sec_look #sp_slide.sp_09 {
    margin: 120px 0 40px;
    padding: 0 40px;
  }
}
@media all and (min-width: 751px) {
  section.sec_look #sp_slide.sp_09 .splide__list {
    gap: 0 40px;
  }
}
@media all and (min-width: 751px) {
  section.sec_look #sp_slide.sp_09 .splide__list .splide__slide {
    width: calc((100% - 40px) / 2) !important;
  }
}
section.sec_look #look_slide.look_01 {
  margin-top: 45px;
}
@media all and (min-width: 751px) {
  section.sec_look #look_slide.look_01 {
    margin-top: 120px;
  }
}
@media all and (min-width: 751px) {
  section.sec_look #look_slide.look_01 .splide__list .splide__slide img {
    width: 66% !important;
  }
}
@media all and (max-width: 750px) {
  section.sec_look #look_slide.look_01 .splide__pagination {
    padding: 0 20px;
  }
}
@media all and (min-width: 751px) {
  section.sec_look #look_slide.look_01 .splide__pagination {
    width: 62.5%;
  }
}
section.sec_look #look_slide.look_02 {
  margin: 45px 0 120px;
}
@media all and (min-width: 751px) {
  section.sec_look #look_slide.look_02 {
    margin: 120px 0;
    padding: 0 20px;
  }
}
@media all and (max-width: 750px) {
  section.sec_look #look_slide.look_02 .splide__pagination {
    padding: 0 20px;
  }
}
@media all and (min-width: 751px) {
  section.sec_look #look_slide.look_02 .splide__pagination {
    width: 92.4%;
  }
}
section.sec_look #look_slide.look_03 {
  margin-top: 60px;
}
@media all and (min-width: 751px) {
  section.sec_look #look_slide.look_03 {
    margin-top: 120px;
  }
}
@media all and (min-width: 751px) {
  section.sec_look #look_slide.look_03 .splide__list .splide__slide img {
    width: 83.4% !important;
  }
}
section.sec_look #look_slide.look_03 .splide__pagination {
  width: 83.4%;
}
@media all and (min-width: 751px) {
  section.sec_look #look_slide.look_03 .splide__pagination {
    width: 79.9%;
  }
}
@media all and (min-width: 751px) {
  section.sec_look .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 30px 20px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1149px) {
  section.sec_look .wrap {
    display: block;
  }
}
section.sec_look .wrap .which {
  margin-bottom: 15px;
  text-align: left;
  color: #777777;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media all and (min-width: 751px) {
  section.sec_look .wrap .which {
    margin-bottom: 20px;
    font-size: 15px;
  }
}
@media all and (max-width: 750px) {
  section.sec_look .product_detail {
    text-align: left;
  }
}
@media all and (max-width: 1149px) {
  section.sec_look .product_detail:not(:first-child) {
    margin: 35px 0 0 15px;
  }
}
@media all and (min-width: 751px) {
  section.sec_look .product_detail.left {
    width: 60%;
  }
}
@media all and (min-width: 1320px) {
  section.sec_look .product_detail.left {
    width: 41.6%;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1319px) {
  section.sec_look .product_detail.left {
    width: 60%;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  section.sec_look .product_detail.left {
    width: 82%;
  }
}
section.sec_look .product_detail.right {
  text-align: right;
}
section.sec_look .product_detail.right .product_list {
  display: inline-block;
}
@media all and (max-width: 750px) {
  section.sec_look .product_detail.right .product_list {
    width: 100%;
  }
}
section.sec_look .product_detail.wh_detail_01 {
  margin: 45px auto 0;
}
@media all and (min-width: 751px) {
  section.sec_look .product_detail.wh_detail_01 {
    margin: 80px auto 0;
    width: 83.4%;
  }
}
section.sec_look .product_detail.wh_detail_02 {
  margin-top: 40px;
}
@media all and (min-width: 751px) {
  section.sec_look .product_detail.wh_detail_02 {
    margin-top: 80px;
    width: 41.6%;
  }
}
@media all and (min-width: 1320px) {
  section.sec_look .product_detail.wh_detail_02 {
    width: 41.6%;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1319px) {
  section.sec_look .product_detail.wh_detail_02 {
    width: 60%;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  section.sec_look .product_detail.wh_detail_02 {
    width: 82%;
  }
}
section.sec_look .product_detail .product_list .product {
  /* 商品名 */
  /* BUYボタン */
}
section.sec_look .product_detail .product_list .product:not(:first-child) {
  margin-top: 25px;
}
@media all and (min-width: 751px) {
  section.sec_look .product_detail .product_list .product:not(:first-child) {
    margin-top: 40px;
  }
}
section.sec_look .product_detail .product_list .product .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 13px;
}
@media all and (min-width: 751px) {
  section.sec_look .product_detail .product_list .product .wrap {
    gap: 0 20px;
  }
}
section.sec_look .product_detail .product_list .product .wrap.ttl {
  margin-bottom: 8px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  line-height: 1.3;
  gap: 0 13px;
}
@media all and (min-width: 751px) {
  section.sec_look .product_detail .product_list .product .wrap.ttl {
    margin-bottom: 15px;
    gap: 0 20px;
  }
}
@media all and (max-width: 750px) {
  section.sec_look .product_detail .product_list .product .wrap.one .product_name {
    margin-bottom: 8px;
  }
}
section.sec_look .product_detail .product_list .product .wrap.buy {
  text-align: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1.65;
}
@media all and (min-width: 751px) {
  section.sec_look .product_detail .product_list .product .wrap.buy {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
section.sec_look .product_detail .product_list .product .wrap.buy:not(:first-child) {
  margin-top: 4px;
}
@media all and (min-width: 751px) {
  section.sec_look .product_detail .product_list .product .wrap.buy:not(:first-child) {
    margin-top: 6px;
  }
}
section.sec_look .product_detail .product_list .product .product_name {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
@media all and (min-width: 751px) {
  section.sec_look .product_detail .product_list .product .product_name {
    font-size: 18px;
  }
}
section.sec_look .product_detail .product_list .product p {
  font-family: hiragino-mincho-pron, serif, sans-serif;
  font-style: normal;
  font-weight: 300;
  /* 着用サイズ */
}
@media all and (max-width: 750px) {
  section.sec_look .product_detail .product_list .product p:not(.size) {
    font-size: 11px;
    line-height: 1.8;
  }
}
@media all and (min-width: 751px) {
  section.sec_look .product_detail .product_list .product p:not(.size) {
    font-size: 14px;
  }
}
section.sec_look .product_detail .product_list .product p.size {
  font-size: 11px;
}
@media all and (min-width: 751px) {
  section.sec_look .product_detail .product_list .product p.size {
    font-size: 12px;
  }
}
section.sec_look .product_detail .product_list .product .buy_link {
  padding: 4px 12.5px;
  background-color: #2E2E2E;
  line-height: 1;
  color: #fff;
  border: 1px solid #2E2E2E;
}
@media all and (min-width: 751px) {
  section.sec_look .product_detail .product_list .product .buy_link {
    padding: 3.5px 13px;
    font-size: 14.5px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
}
@media (min-width: 751px) and (hover: hover) {
  section.sec_look .product_detail .product_list .product .buy_link:hover {
    background-color: #fff;
    color: #2E2E2E;
  }
}
section.sec_look .images.two {
  margin-top: 60px;
}
@media all and (min-width: 751px) {
  section.sec_look .images.two {
    margin-top: 160px;
  }
}
section.sec_look .images.two img {
  display: block;
  width: 83.59%;
}
@media all and (min-width: 751px) {
  section.sec_look .images.two img {
    width: 83%;
  }
}
section.sec_look .images.two .images_01 {
  margin: 0 0 14px auto;
}
@media all and (min-width: 751px) {
  section.sec_look .images.two .images_01 {
    margin: 0 0 40px auto;
  }
}
section.sec_look .images.two .images_02 {
  margin-bottom: 45px;
}
@media all and (min-width: 751px) {
  section.sec_look .images.two .images_02 {
    margin-bottom: 80px;
  }
}
@media all and (max-width: 750px) {
  section.sec_look .images.diagonal {
    padding: 0 20px;
  }
}
@media all and (min-width: 751px) {
  section.sec_look .images.diagonal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
section.sec_look .images.diagonal img {
  display: block;
  width: 83.6%;
}
@media all and (min-width: 751px) {
  section.sec_look .images.diagonal img {
    width: 50%;
  }
}
section.sec_look .images.diagonal .image_02 {
  margin-left: auto;
}
@media all and (min-width: 751px) {
  section.sec_look .images.diagonal .image_02 {
    margin: 0;
    padding-top: 200px;
  }
}
@media all and (min-width: 751px) {
  section.sec_look .one_image {
    width: 55%;
  }
}
section.sec_look .one_image_02 {
  margin: 0 auto;
}
@media all and (min-width: 751px) {
  section.sec_look .one_image_02 {
    width: 83.4%;
  }
}
section.sec_look .one_image_03 {
  margin: 60px calc(50% - 50vw) 90px;
}
@media all and (min-width: 751px) {
  section.sec_look .one_image_03 {
    margin: 90px auto 150px;
    width: 66.7%;
  }
}
section.sec_look .one_image_04 {
  margin-bottom: 45px;
}
@media all and (min-width: 751px) {
  section.sec_look .one_image_04 {
    margin-bottom: 80px;
  }
}

/* CAST
---------------------------------------------------------- */
section.sec_cast {
  border-bottom: 1px solid #2E2E2E;
}
@media all and (min-width: 751px) {
  section.sec_cast .cast_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 80px 40px;
  }
}
@media all and (min-width: 770px) {
  section.sec_cast .cast_list .cast_detail {
    width: calc((100% - 40px) / 2);
  }
}
@media all and (max-width: 750px) {
  section.sec_cast .cast_list .cast_detail:not(:first-child) {
    margin-top: 40px;
  }
}
section.sec_cast .cast_list .cast_detail .cast_name {
  margin-bottom: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  font-weight: 400;
  gap: 12px;
}
@media all and (min-width: 751px) {
  section.sec_cast .cast_list .cast_detail .cast_name {
    margin-bottom: 2px;
    gap: 15px;
  }
}
section.sec_cast .cast_list .cast_detail .cast_name .en {
  font-size: 18px;
}
@media all and (min-width: 751px) {
  section.sec_cast .cast_list .cast_detail .cast_name .en {
    font-size: clamp(20px, 1.76vw, 24px);
  }
}
section.sec_cast .cast_list .cast_detail .cast_name .jp {
  font-size: 11px;
  font-family: hiragino-mincho-pron, serif, sans-serif;
  font-style: normal;
  font-weight: 300;
}
@media all and (min-width: 751px) {
  section.sec_cast .cast_list .cast_detail .cast_name .jp {
    font-size: clamp(12px, 1.025vw, 14px);
  }
}
section.sec_cast .cast_list .cast_detail .image {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (min-width: 751px) {
  section.sec_cast .cast_list .cast_detail .image {
    margin-top: 20px;
  }
}
section.sec_cast .cast_list .cast_detail .image img {
  width: 50%;
}
section.sec_cast .cast_team {
  margin: 90px 0 80px;
}
@media all and (min-width: 751px) {
  section.sec_cast .cast_team {
    margin: 160px 0 102px;
  }
}
section.sec_cast .cast_team .name {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
}
@media all and (min-width: 751px) {
  section.sec_cast .cast_team .name {
    text-align: center;
    font-size: 26px;
  }
}
section.sec_cast .cast_team .sns {
  margin: 5px 0 20px;
}
@media all and (min-width: 751px) {
  section.sec_cast .cast_team .sns {
    margin: 15px auto 50px;
  }
}
section.sec_cast .cast_team .logo_link {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  margin: 0 auto;
  padding: 40px 57.5px;
  border: 1px solid #2E2E2E;
  width: 65.08%;
}
@media all and (min-width: 751px) {
  section.sec_cast .cast_team .logo_link {
    padding: 84px 124px;
    width: min(470px, 49.6%);
  }
}
section.sec_cast .cast_team .logo_link img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (min-width: 751px) and (hover: hover) {
  section.sec_cast .cast_team .logo_link:hover img {
    opacity: 0.6;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.casts {
  margin-top: 80px;
}
@media all and (min-width: 751px) {
  .casts {
    margin-top: 160px;
  }
}

/* ==========================================================================//
//
// footer
//
// ========================================================================== */
.footer {
  margin: 88px 0 40px;
}
@media all and (min-width: 751px) {
  .footer {
    margin: 200px 0 60px;
  }
}
.footer .online_store {
  margin-bottom: 70px;
}
@media all and (min-width: 751px) {
  .footer .online_store {
    margin-bottom: 120px;
  }
}
.footer .online_store a {
  padding: 24px;
  display: inline-block;
  border: 1px solid #777777;
  font-size: 14px;
  color: #2E2E2E;
  letter-spacing: 0.03em;
  line-height: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  width: 85.1%;
}
@media all and (min-width: 751px) {
  .footer .online_store a {
    padding: 26px;
    font-size: 16px;
    width: min(341px, 23.95%);
  }
}
@media (min-width: 751px) and (hover: hover) {
  .footer .online_store a:hover {
    background-color: #2E2E2E;
    color: #fff;
  }
}
.footer .logo {
  margin: 20px auto 30px;
  width: min(72px, 21.5%);
}
@media all and (min-width: 751px) {
  .footer .logo {
    margin: 0;
    width: min(74px, 17.25%);
  }
}
.footer .logo a {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (min-width: 751px) and (hover: hover) {
  .footer .logo a:hover {
    opacity: 0.6;
  }
}
@media all and (min-width: 751px) {
  .footer .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (min-width: 751px) and (max-width: 1279px) {
  .footer .wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer .wrap .copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 14px 0;
}
@media all and (min-width: 751px) {
  .footer .wrap .copy {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0 31px;
  }
}
.footer .wrap .copy p {
  display: inline-block;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.03em;
  line-height: 1;
}
@media all and (min-width: 751px) {
  .footer .wrap .copy p {
    text-align: left;
    font-size: 14px;
  }
}
.footer .wrap .link {
  margin-top: 40px;
}
@media all and (min-width: 751px) {
  .footer .wrap .link {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    gap: 0 40px;
  }
}
@media screen and (min-width: 751px) and (max-width: 1279px) {
  .footer .wrap .link {
    margin-top: 60px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer .wrap .sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 16px;
}
@media all and (min-width: 751px) {
  .footer .wrap .sns_list {
    gap: 0 20px;
  }
}
.footer .wrap .sns_list .sns_item a {
  font-size: 13px;
  letter-spacing: 0.03em;
  color: #2E2E2E;
  display: -webkit-box;
  overflow: hidden;
}
.footer .wrap .sns_list .sns_item a .line {
  text-decoration: none; /* デフォルトの下線を非表示にする */
  background-image: -webkit-gradient(linear, left top, right top, from(#2E2E2E), to(#2E2E2E));
  background-image: linear-gradient(90deg, #2E2E2E, #2E2E2E); /* 線の色 */
  background-repeat: no-repeat;
  background-position: left bottom 2px; /* 線の起点を左・下に設定 */
  background-size: 100% 1.2px; /* 線の横幅を0、縦幅を1pxに */
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media all and (min-width: 751px) {
  .footer .wrap .sns_list .sns_item a .line {
    background-position: left bottom 2px;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .footer .wrap .sns_list .sns_item a:hover span {
    background-size: 0% 1.2px; /* 線の横幅を100%にする */
    background-position: left bottom 2px; /* 線の起点を左・下に設定 */
  }
}
@media (min-width: 751px) and (hover: hover) and (min-width: 751px) {
  .footer .wrap .sns_list .sns_item a:hover span {
    background-position: left bottom 2px;
  }
}
@media all and (min-width: 751px) {
  .footer .wrap .sns_list .sns_item a {
    font-size: 14px;
  }
}