@charset "UTF-8";
/* 下線が右から左へ消える①(最初から非表示)
---------------------------------------------------------- */
/* 下線が右から左へ消える②(最初から非表示)
---------------------------------------------------------- */
/* 下線が右から左へ消える(最初は非表示)
---------------------------------------------------------- */
/* ==========================================================================//
//
//　common
//
// ========================================================================== */
body {
  /* for iOS */
  -webkit-text-size-adjust: 100%;
}

body.athlete_25summer {
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
  font-size: 11px;
  font-weight: 400;
  line-height: 2;
  color: #2E2E2E;
  font-family: hiragino-mincho-pron, serif, sans-serif;
  font-style: normal;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media all and (min-width: 751px) {
  body.athlete_25summer {
    font-size: 14px;
  }
}

* {
  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;
  }
}

/* 共通
---------------------------------------------------------- */
/* スライドの詳細設定
---------------------------------------------------------- */
/* 矢印を非表示 */
.splide__arrows {
  display: none;
}

/* 番号を非表示 */
.splide__pagination {
  display: none;
}

@media all and (min-width: 751px) {
  .splide__list .splide__slide .image img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

/* アニメーション
---------------------------------------------------------- */
@-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
//
// ========================================================================== */
/* 共通
---------------------------------------------------------- */
/* コンテンツ幅からはみ出る */
.protrude_sp {
  margin: 0 calc(50% - 50vw);
}
@media all and (min-width: 751px) {
  .protrude_sp {
    margin: 0;
  }
}

.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;
  letter-spacing: 0.03em;
  font-family: adobe-garamond-pro, serif;
  font-style: normal;
  font-weight: 400;
}
@media all and (min-width: 751px) {
  .sns {
    padding-left: 26px;
    font-size: 15px;
    display: -webkit-box;
    overflow: hidden;
  }
  .sns .line {
    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: right bottom;
    background-size: 0 1px;
    -webkit-transition: background-size 0.4s, color 0.4s;
    transition: background-size 0.4s, color 0.4s;
  }
}
@media (min-width: 751px) and (hover: hover) {
  .sns:hover .line {
    color: #2E2E2E;
    background-size: 100% 1px;
    background-position: left bottom;
    -webkit-transition: background-size 0.4s, color 0.4s;
    transition: background-size 0.4s, color 0.4s;
  }
}
.sns::before {
  position: absolute;
  content: "";
  background-image: url(/assets/special/rugbyathlete/25summer/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;
  }
}

/* メインビジュアル
---------------------------------------------------------- */
.mv {
  position: relative;
}
.mv .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  width: min(110px, 29.34%);
  -webkit-animation: zoom 3s ease-in-out 0.5s forwards;
          animation: zoom 3s ease-in-out 0.5s forwards;
  z-index: 1;
}
@media all and (min-width: 751px) {
  .mv .logo {
    width: min(211px, 15.45%);
  }
}
@-webkit-keyframes zoom {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes zoom {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}

/* introduction
---------------------------------------------------------- */
.introduction {
  margin-top: 80px;
}
@media all and (min-width: 751px) {
  .introduction {
    margin-top: 140px;
  }
}
@media all and (min-width: 1001px) {
  .introduction .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.introduction .wrap .ttl {
  margin-bottom: 36px;
}
@media all and (min-width: 1001px) {
  .introduction .wrap .ttl {
    margin-bottom: 0;
    width: 24.1%;
  }
}
.introduction .wrap .ttl span {
  display: block;
}
.introduction .wrap .ttl .main {
  margin-bottom: 18px;
  width: 60.3%;
}
@media all and (min-width: 751px) {
  .introduction .wrap .ttl .main {
    margin-bottom: 20px;
    width: 98.6%;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .introduction .wrap .ttl .main {
    width: 34.2%;
  }
}
.introduction .wrap .ttl .sub {
  width: 32.85%;
}
@media all and (min-width: 751px) {
  .introduction .wrap .ttl .sub {
    width: 45.7%;
  }
}
@media screen and (min-width: 751px) and (max-width: 1000px) {
  .introduction .wrap .ttl .sub {
    width: 15.9%;
  }
}
.introduction .wrap .txt {
  text-align: left;
}
@media all and (min-width: 1001px) {
  .introduction .wrap .txt {
    width: 66.5%;
  }
}
.introduction .wrap .txt p {
  font-size: 12px;
}
@media all and (min-width: 751px) {
  .introduction .wrap .txt p {
    font-size: 15px;
  }
}
.introduction .wrap .txt p:not(:first-child) {
  margin-top: 25px;
}
@media all and (min-width: 751px) {
  .introduction .wrap .txt p:not(:first-child) {
    margin-top: 30px;
  }
}

/* RUGBY ATHLETE SUMMER 2025
---------------------------------------------------------- */
.athlete_contents {
  margin-top: 120px;
}
@media all and (min-width: 751px) {
  .athlete_contents {
    margin-top: 190px;
  }
}
.athlete_contents .look_list .look_detail {
  /* 商品詳細 */
  /* スライド */
  /* 中央配置1枚画像 */
  /*  */
}
.athlete_contents .look_list .look_detail:not(:first-child) {
  margin-top: 110px;
}
@media all and (min-width: 751px) {
  .athlete_contents .look_list .look_detail:not(:first-child) {
    margin-top: 180px;
  }
}
.athlete_contents .look_list .look_detail .image_area {
  position: relative;
}
@media (hover: hover) {
  .athlete_contents .look_list .look_detail .image_area:hover .button {
    opacity: 1;
  }
}
.athlete_contents .look_list .look_detail .image_area:not(.active) {
  cursor: pointer;
}
.athlete_contents .look_list .look_detail .image_area:not(.active) .contents {
  opacity: 0;
  visibility: hidden;
}
.athlete_contents .look_list .look_detail .image_area.active .button {
  opacity: 1;
}
.athlete_contents .look_list .look_detail .image_area.active .button::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.athlete_contents .look_list .look_detail .image_area.active .contents {
  opacity: 1;
  visibility: visible;
}
.athlete_contents .look_list .look_detail .image_area .button {
  cursor: pointer;
  position: absolute;
  background-color: rgba(14, 49, 22, 0.8);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  bottom: 15px;
  right: 15px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 1;
}
@media all and (min-width: 751px) {
  .athlete_contents .look_list .look_detail .image_area .button {
    opacity: 0;
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
  }
}
.athlete_contents .look_list .look_detail .image_area .button::after {
  position: absolute;
  content: "";
  background-image: url(/assets/special/rugbyathlete/25summer/assets/img/athlete/ico_active.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 8.9px;
  height: 8.9px;
  bottom: 11px;
  right: 11px;
  z-index: 2;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media all and (min-width: 751px) {
  .athlete_contents .look_list .look_detail .image_area .button::after {
    width: 15px;
    height: 15px;
    bottom: 17px;
    right: 17px;
  }
}
.athlete_contents .look_list .look_detail .contents {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 49, 22, 0.7);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  z-index: 0;
}
.athlete_contents .look_list .look_detail .contents .product_list {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 25px;
}
@media all and (min-width: 751px) {
  .athlete_contents .look_list .look_detail .contents .product_list {
    width: 87.8%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.athlete_contents .look_list .look_detail .contents .product_list .product_detail:not(:first-child) {
  margin-top: 16px;
}
@media all and (min-width: 751px) {
  .athlete_contents .look_list .look_detail .contents .product_list .product_detail:not(:first-child) {
    margin-top: 45px;
  }
}
.athlete_contents .look_list .look_detail .contents .product_list .product_detail .product_name {
  margin-bottom: 10px;
  text-align: left;
  color: #fff;
  line-height: 1;
  font-family: adobe-garamond-pro, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.03em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media all and (min-width: 751px) {
  .athlete_contents .look_list .look_detail .contents .product_list .product_detail .product_name {
    margin-bottom: 10px;
    font-size: 20px;
  }
}
.athlete_contents .look_list .look_detail .contents .product_list .product_detail .detail_contents .detail {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  display: -webkit-box;
  overflow: hidden;
  line-height: 1.5;
}
.athlete_contents .look_list .look_detail .contents .product_list .product_detail .detail_contents .detail .line {
  background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#fff));
  background-image: linear-gradient(90deg, #fff, #fff);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 1px;
  -webkit-transition: background-size 0.4s, color 0.4s;
  transition: background-size 0.4s, color 0.4s;
}
@media (hover: hover) {
  .athlete_contents .look_list .look_detail .contents .product_list .product_detail .detail_contents .detail:hover .line {
    color: #fff;
    background-size: 0 1px;
    background-position: right bottom;
    -webkit-transition: background-size 0.4s, color 0.4s;
    transition: background-size 0.4s, color 0.4s;
  }
}
@media all and (min-width: 751px) {
  .athlete_contents .look_list .look_detail .contents .product_list .product_detail .detail_contents .detail {
    font-size: 14px;
  }
  .athlete_contents .look_list .look_detail .contents .product_list .product_detail .detail_contents .detail:not(:first-child) {
    margin-top: 10px;
  }
}
@media all and (max-width: 750px) {
  .athlete_contents .look_list .look_detail .sp_slide {
    margin-top: 40px;
    padding: 0 20px;
    overflow: hidden;
  }
  .athlete_contents .look_list .look_detail .sp_slide .splide__track {
    overflow: visible;
  }
}
@media all and (min-width: 751px) {
  .athlete_contents .look_list .look_detail .sp_slide {
    margin-top: 80px;
    pointer-events: none;
  }
}
.athlete_contents .look_list .look_detail .sp_slide.sp_01 {
  margin: 40px 0;
}
@media all and (min-width: 751px) {
  .athlete_contents .look_list .look_detail .sp_slide.sp_01 {
    margin: 80px 0;
  }
}
.athlete_contents .look_list .look_detail .sp_slide.sp_03 {
  margin: 40px 0;
}
@media all and (min-width: 751px) {
  .athlete_contents .look_list .look_detail .sp_slide.sp_03 {
    margin: 0 0 120px;
  }
}
.athlete_contents .look_list .look_detail .sp_slide.sp_04 {
  margin: 30px 0;
}
@media all and (min-width: 751px) {
  .athlete_contents .look_list .look_detail .sp_slide.sp_04 {
    margin: 120px 0;
  }
}
.athlete_contents .look_list .look_detail .one_image {
  margin: 0 auto;
  width: 78.67%;
}
@media all and (min-width: 751px) {
  .athlete_contents .look_list .look_detail .one_image {
    width: 43.93%;
  }
}
.athlete_contents .look_list .look_detail .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media all and (min-width: 751px) {
  .athlete_contents .look_list .look_detail .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .athlete_contents .look_list .look_detail .wrap:not(.shift, .two) {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.athlete_contents .look_list .look_detail .wrap.shift {
  margin-top: 40px;
}
@media all and (min-width: 751px) {
  .athlete_contents .look_list .look_detail .wrap.shift {
    margin-top: 120px;
  }
}
.athlete_contents .look_list .look_detail .wrap.shift .image {
  width: 89.3%;
}
@media all and (min-width: 751px) {
  .athlete_contents .look_list .look_detail .wrap.shift .image {
    width: 50%;
  }
}
.athlete_contents .look_list .look_detail .wrap.shift .image:nth-child(2) {
  margin-left: auto;
}
@media all and (min-width: 751px) {
  .athlete_contents .look_list .look_detail .wrap.shift .image:nth-child(2) {
    margin: 0;
    padding-top: 150px;
  }
}
.athlete_contents .look_list .look_detail .wrap.two {
  margin-top: 30px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media all and (min-width: 751px) {
  .athlete_contents .look_list .look_detail .wrap.two {
    margin-top: 120px;
    gap: 20px;
  }
}
.athlete_contents .look_list .look_detail .wrap.two .image {
  padding: 0 10px;
}
@media all and (min-width: 751px) {
  .athlete_contents .look_list .look_detail .wrap.two .image {
    padding: 0 20px;
  }
}
.athlete_contents .look_list .look_detail .wrap.vh {
  margin-bottom: 30px;
  padding: 0 10px;
}
@media all and (min-width: 751px) {
  .athlete_contents .look_list .look_detail .wrap.vh {
    margin-bottom: 120px;
    padding: 0;
    gap: 20px;
  }
}
.athlete_contents .look_list .look_detail .wrap.vh .image:first-child {
  width: 78.9%;
}
@media all and (min-width: 751px) {
  .athlete_contents .look_list .look_detail .wrap.vh .image:first-child {
    width: 40.1%;
  }
}
.athlete_contents .look_list .look_detail .wrap.vh .image:nth-child(2) {
  margin: 10px 0 0 auto;
  width: 84.6%;
}
@media all and (min-width: 751px) {
  .athlete_contents .look_list .look_detail .wrap.vh .image:nth-child(2) {
    margin: 0;
    width: 58.5%;
  }
}

/* CAST
---------------------------------------------------------- */
.sec_cast {
  margin-top: 130px;
}
@media all and (min-width: 751px) {
  .sec_cast {
    margin-top: 200px;
  }
}
.sec_cast .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%);
  font-family: adobe-garamond-pro, serif;
  font-style: normal;
  font-weight: 400;
}
@media all and (min-width: 751px) {
  .sec_cast .sec_ttl {
    margin: 0 auto 72px;
    padding-bottom: 12px;
    font-size: 18px;
    width: min(140px, 12.1%);
  }
}
.sec_cast .sec_ttl::after {
  position: absolute;
  content: "";
  background-color: #777777;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
}
.sec_cast .cast_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media all and (min-width: 920px) {
  .sec_cast .cast_list {
    gap: 80px;
  }
}
@media all and (max-width: 919px) {
  .sec_cast .cast_list .cast_detail:not(:first-child) {
    margin-top: 40px;
  }
}
@media all and (min-width: 1101px) {
  .sec_cast .cast_list .cast_detail {
    width: calc((100% - 210px) / 2);
  }
}
@media screen and (min-width: 920px) and (max-width: 1100px) {
  .sec_cast .cast_list .cast_detail {
    width: calc((100% - 80px) / 2);
  }
}
.sec_cast .cast_list .cast_detail .cast_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media all and (min-width: 751px) {
  .sec_cast .cast_list .cast_detail .cast_name {
    margin-bottom: 5px;
    gap: 15px;
  }
}
.sec_cast .cast_list .cast_detail .cast_name .en {
  font-size: 18px;
  letter-spacing: 0.03em;
  font-family: adobe-garamond-pro, serif;
  font-style: normal;
  font-weight: 400;
}
@media all and (min-width: 751px) {
  .sec_cast .cast_list .cast_detail .cast_name .en {
    font-size: 24px;
  }
}
.sec_cast .cast_list .cast_detail .cast_name .jp {
  font-weight: 300;
}
.sec_cast .cast_list .cast_detail .image {
  margin-top: 15px;
}
@media all and (min-width: 751px) {
  .sec_cast .cast_list .cast_detail .image {
    margin-top: 22px;
  }
}

.cast_team {
  margin: 100px 0 80px;
}
@media all and (min-width: 751px) {
  .cast_team {
    margin: 160px 0 102px;
  }
}
.cast_team .name {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}
@media all and (min-width: 751px) {
  .cast_team .name {
    font-size: 26px;
  }
}
.cast_team .sns {
  margin: 8px auto 24px;
}
@media all and (min-width: 751px) {
  .cast_team .sns {
    margin: 18px auto 42px;
  }
}
.cast_team .logo_link {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  margin: 0 auto;
  width: 40.9%;
}
@media all and (min-width: 751px) {
  .cast_team .logo_link {
    width: min(250px, 20.85%);
  }
}
.cast_team .logo_link img {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (min-width: 751px) and (hover: hover) {
  .cast_team .logo_link:hover img {
    opacity: 0.6;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

/* ==========================================================================//
//
// footer
//
// ========================================================================== */
.footer {
  margin: 80px 0 40px;
}
@media all and (min-width: 751px) {
  .footer {
    margin: 150px 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%;
  font-family: adobe-garamond-pro, serif;
  font-style: normal;
  font-weight: 400;
}
@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;
  font-family: adobe-garamond-pro, serif;
  font-style: normal;
  font-weight: 400;
}
@media all and (min-width: 751px) {
  .footer .wrap .copy p {
    text-align: left;
    font-size: 14px;
  }
}
.footer .wrap .link {
  margin-top: 35px;
}
@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;
  font-family: adobe-garamond-pro, serif;
  font-style: normal;
  font-weight: 400;
  display: -webkit-box;
  overflow: hidden;
}
.footer .wrap .sns_list .sns_item a .line {
  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% 1px;
  -webkit-transition: background-size 0.4s, color 0.4s;
  transition: background-size 0.4s, color 0.4s;
}
@media (hover: hover) {
  .footer .wrap .sns_list .sns_item a:hover .line {
    color: #2E2E2E;
    background-size: 0 1px;
    background-position: right bottom 2px;
    -webkit-transition: background-size 0.4s, color 0.4s;
    transition: background-size 0.4s, color 0.4s;
  }
}
@media all and (min-width: 751px) {
  .footer .wrap .sns_list .sns_item a {
    font-size: 14px;
  }
}