@charset "UTF-8";
/*-------------------------------------------> breakpoint */
/*-------------------------------------------> font */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
/*-------------------------------------------> color */
/*-------------------------------------------> ease */
.tough {
  /*-------------------------------------------> fade */
  /*-------------------------------------------> fade-in */
  /*-------------------------------------------> fade-scale-bound */
  /*-------------------------------------------> fad-line */
  /*-------------------------------------------> blur */
  /*-------------------------------------------> fade-mask */
  /*-------------------------------------------> fade-box */
  /*-------------------------------------------> delay */
}
.tough .fade {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0, 0, 0.105, 1);
}
.tough .fade.is-show {
  opacity: 1;
}
.tough .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0, 0, 0.105, 1), transform 0.6s cubic-bezier(0, 0, 0.105, 1);
}
.tough .fade-in.is-show {
  opacity: 1;
  transform: none;
}
.tough .fade-scale-bound {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.1s cubic-bezier(0, 0, 0.105, 1) 0.1s, transform 0.4s cubic-bezier(1, 0.43, 0.29, 1.51);
}
.tough .fade-scale-bound.is-show {
  opacity: 1;
  transform: scale(1);
}
.tough .fad-line {
  overflow: hidden;
}
.tough .fad-line::before {
  transition: transform 0.5s cubic-bezier(0, 0, 0.105, 1);
  transform: translateX(-100%);
}
.tough .fad-line.is-show::before {
  transform: none;
}
.tough .blur {
  filter: blur(4px);
  transition: filter 1.1s cubic-bezier(0, 0, 0.105, 1);
}
.tough .blur.is-show {
  filter: blur(0);
}
.tough .fade-mask {
  transform: none;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.1s cubic-bezier(0, 0, 0.105, 1);
}
.tough .fade-mask::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.4s cubic-bezier(0, 0, 0.105, 1) 0.1s;
}
.tough .fade-mask--black::before {
  background-color: #000;
}
.tough .fade-mask.is-show {
  opacity: 1;
}
.tough .fade-mask.is-show::before {
  transform: translateX(105%);
}
.tough .fade-target-box.is-show .fade {
  opacity: 1;
}
.tough .fade-target-box.is-show .fade-in {
  opacity: 1;
  transform: none;
}
.tough .fade-target-box.is-show .blur {
  filter: blur(0);
  transform: scale();
}
.tough .fade-target-box.is-show .fade-mask {
  opacity: 1;
}
.tough .fade-target-box.is-show .fade-mask::before {
  transform: translateX(105%);
}
.tough .fade-target-box.is-show .fade-scale-bound {
  opacity: 1;
  transform: scale(1);
}
.tough .delay-1 {
  transition-delay: 0.1s;
}
.tough .delay-1::before {
  transition-delay: 0.1s;
}
@media screen and (max-width: 767px) {
  .tough .delay-1.delay-off-sp {
    transition-delay: 0s;
  }
}
.tough .delay-2 {
  transition-delay: 0.2s;
}
.tough .delay-2::before {
  transition-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  .tough .delay-2.delay-off-sp {
    transition-delay: 0s;
  }
}
.tough .delay-3 {
  transition-delay: 0.3s;
}
.tough .delay-3::before {
  transition-delay: 0.3s;
}
@media screen and (max-width: 767px) {
  .tough .delay-3.delay-off-sp {
    transition-delay: 0s;
  }
}
.tough .delay-4 {
  transition-delay: 0.4s;
}
.tough .delay-4::before {
  transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .tough .delay-4.delay-off-sp {
    transition-delay: 0s;
  }
}
.tough .delay-5 {
  transition-delay: 0.5s;
}
.tough .delay-5::before {
  transition-delay: 0.5s;
}
@media screen and (max-width: 767px) {
  .tough .delay-5.delay-off-sp {
    transition-delay: 0s;
  }
}
.tough .delay-6 {
  transition-delay: 0.6s;
}
.tough .delay-6::before {
  transition-delay: 0.6s;
}
@media screen and (max-width: 767px) {
  .tough .delay-6.delay-off-sp {
    transition-delay: 0s;
  }
}
.tough .delay-7 {
  transition-delay: 0.7s;
}
.tough .delay-7::before {
  transition-delay: 0.7s;
}
@media screen and (max-width: 767px) {
  .tough .delay-7.delay-off-sp {
    transition-delay: 0s;
  }
}
.tough .delay-8 {
  transition-delay: 0.8s;
}
.tough .delay-8::before {
  transition-delay: 0.8s;
}
@media screen and (max-width: 767px) {
  .tough .delay-8.delay-off-sp {
    transition-delay: 0s;
  }
}
.tough .delay-9 {
  transition-delay: 0.9s;
}
.tough .delay-9::before {
  transition-delay: 0.9s;
}
@media screen and (max-width: 767px) {
  .tough .delay-9.delay-off-sp {
    transition-delay: 0s;
  }
}
.tough .delay-10 {
  transition-delay: 1s;
}
.tough .delay-10::before {
  transition-delay: 1s;
}
@media screen and (max-width: 767px) {
  .tough .delay-10.delay-off-sp {
    transition-delay: 0s;
  }
}

.tough {
  /*
  ===== original reset ===========================
  */
  /* 1: universal reset
  -------------------------------------*/
  /* box sizing
    -------------------------------------*/
  /* general params
    -------------------------------------*/
  /* word break
    -------------------------------------*/
  /* image
    -------------------------------------*/
  /* 2: form setting
    -------------------------------------*/
}
.tough html {
  cursor: default;
  font-size: 62.5%;
}
.tough *,
.tough ::before,
.tough ::after {
  box-sizing: border-box;
}
.tough h1,
.tough h2,
.tough h3,
.tough h4,
.tough h5,
.tough h6,
.tough body,
.tough div,
.tough p,
.tough pre,
.tough ul,
.tough ol,
.tough dl,
.tough dt,
.tough dd,
.tough address,
.tough form,
.tough blockquote,
.tough figure {
  margin: 0;
  padding: 0; /* margin&padding reset */
  font-style: normal;
  font-weight: normal;
}
.tough li {
  list-style: none;
}
.tough p {
  word-break: normal;
}
.tough img {
  vertical-align: bottom;
  border-style: none;
}
.tough option {
  padding-right: 10px;
}
.tough input,
.tough select {
  vertical-align: middle;
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}
.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}
.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
  vertical-align: middle;
}
.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}
.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}
.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}
.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "×";
  text-align: center;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}
.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}
.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 1200px;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}
.lt-ie9 .remodal {
  width: 700px;
}

.tough {
  color: #000000;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: normal;
  text-align: left;
  line-height: 1;
  background-color: #000000;
}
.tough img {
  width: 100%;
  max-width: none;
  height: auto;
}
.tough picture {
  display: block;
}
.tough a {
  text-decoration: none;
}
.tough a:hover {
  text-decoration: none;
}
.tough .pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .tough .pc {
    display: none;
  }
}
.tough .sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .tough .sp {
    display: block;
  }
}
.tough .common-inner {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .tough .common-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.tough .common-title {
  text-align: center;
}
.tough .common-title span {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  font-feature-settings: "palt";
  line-height: 1;
  letter-spacing: 0;
  padding-bottom: 12px;
  display: inline-block;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .tough .common-title span {
    font-size: 23px;
    padding-bottom: 10px;
  }
}
.tough .common-title span::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #d80112;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -10;
}
.tough .common-text {
  font-size: 20px;
  letter-spacing: 0.01em;
  font-feature-settings: "palt";
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .tough .common-text {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.5;
  }
}
.tough .common-btn {
  width: 428px;
  height: 72px;
  background-color: #fff;
  border-radius: 10px;
  transition: filter 0.2s cubic-bezier(0, 0, 0.105, 1);
}
@media screen and (max-width: 767px) {
  .tough .common-btn {
    width: 294px;
    height: 54px;
    margin-top: 251px;
    background: none;
    border-radius: 0;
  }
}
.tough .common-btn a {
  width: 100%;
  height: 100%;
  background-image: url("https://www.kabaya.co.jp/catalog/tough/img/btn-bg.png");
  background-repeat: repeat;
  background-size: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tough .common-btn a {
    background-image: url("https://www.kabaya.co.jp/catalog/tough/img/btn-bg--sp.png");
  }
}
.tough .common-btn:hover {
  filter: brightness(1.23);
}
.tough .common-tag-wrap {
  display: flex;
  justify-content: center;
}
.tough .common-tag {
  margin: 0 auto;
  padding: 12px 2px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tough .common-tag {
    padding: 7px 1px;
  }
}
.tough .common-tag::before {
  content: "";
  width: 100%;
  height: 4px;
  background-color: #0e357f;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .tough .common-tag::before {
    height: 2.5px;
  }
}
.tough .common-tag::after {
  content: "";
  width: 100%;
  height: 4px;
  background-color: #0e357f;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .tough .common-tag::after {
    height: 2.5px;
  }
}
.tough .common-tag .name {
  display: block;
}
.tough .bg-wrap {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.tough .bg-wrap::before {
  content: "";
  width: 862px;
  height: 1319px;
  background-image: url("https://www.kabaya.co.jp/catalog/tough/img/about-bg-left.png");
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: -59px;
  left: 0;
  z-index: -10;
}
@media screen and (max-width: 1366px) {
  .tough .bg-wrap::before {
    left: 50%;
    transform: translateX(-50%);
    margin-left: -250px;
  }
}
@media screen and (max-width: 767px) {
  .tough .bg-wrap::before {
    background-image: url("https://www.kabaya.co.jp/catalog/tough/img/about-bg-left--sp.png");
    width: 354.5px;
    height: 711.5px;
    top: 0;
    left: 0;
    transform: none;
    margin-left: 0;
  }
}
.tough .bg-wrap::after {
  content: "";
  width: 427px;
  height: 1259px;
  background-image: url("https://www.kabaya.co.jp/catalog/tough/img/about-bg-right.png");
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: -76px;
  right: 0;
  z-index: -10;
}
@media screen and (max-width: 1366px) {
  .tough .bg-wrap::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin-left: 471px;
  }
}
@media screen and (max-width: 767px) {
  .tough .bg-wrap::after {
    background-image: url("https://www.kabaya.co.jp/catalog/tough/img/about-bg-right--sp.png");
    width: 188px;
    height: 669.5px;
    top: 189px;
    right: 0;
    left: auto;
    transform: none;
    margin-left: 0;
  }
}

.remodal.tough-modal {
  background: none;
  padding: 0;
  max-width: 860px;
  position: relative;
}
.remodal .remodal-cancel.modal-close {
  background: none;
  padding: 0;
  width: auto;
  height: auto;
  min-width: auto;
  position: absolute;
  top: -50px;
  right: -8px;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .remodal .remodal-cancel.modal-close {
    top: -13.3333333333vw;
    right: -2.1333333333vw;
    width: 10.6666666667vw;
    height: 10.6666666667vw;
  }
}
.remodal .remodal-cancel.modal-close::before,
.remodal .remodal-cancel.modal-close::after {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 0% 50%;
  transform: rotate(45deg) translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .remodal .remodal-cancel.modal-close::before,
  .remodal .remodal-cancel.modal-close::after {
    width: 8vw;
    height: 0.2666666667vw;
  }
}
.remodal .remodal-cancel.modal-close::after {
  transform: rotate(-45deg) translate(-50%, -50%);
}
.remodal .modal-movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.remodal .modal-movie video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: painted;
}

.remodal-wrapper {
  padding: 60px 60px 20px;
}
@media screen and (max-width: 767px) {
  .remodal-wrapper {
    padding: 16vw 2.6666666667vw 2.6666666667vw;
  }
}

.no-break {
  display: inline-block;
}

.tough .mv {
  overflow: hidden;
  /*-------------------------------------------> animation */
}


#container main .mv-area {
  /* max-width: 1040px; */
  text-align: center;
  padding-top: 20px;
  position: relative;
}
.bgitem01{
  top: 160px;
  left: 0;
  width: 199px;
  height: 193px;
  background-image: url(../img/bg_item01.jpg);
  position: absolute;
  z-index: 999;
}
#container main .mv {
  width: 70%;
  max-width: 300px;
}
@media screen and (min-width: 768px) {
  #container main .mv {
    width: 100%;
    max-width: 300px;
  }
}
#container main .mv-main {
  width: 100%;
  margin: auto;
  display: block;
  max-width: 1140px;
  text-align: center;
}

#container .lead{
  text-align: center;
  padding-top: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 768px) {
  #container .lead {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
  }
}

#container .lead p{
  font-weight: 600;
  color: #fff;
  font-size: clamp(15px, 2vw, 21px);
  line-height: 1.4;
}


section.movie{
  /* padding-top: 130px; */
}
@media screen and (max-width: 768px) {
  section.movie{
    padding-top: 30px;
  }
}

.tough .mv-area .mv-fade-scale {
  opacity: 0;
  transform: scale(0.7) translateY(3%);
  transition: opacity 0.3s cubic-bezier(0, 0, 0.105, 1) 0.03s, transform 0.6s cubic-bezier(0, 0, 0.105, 1) 0.03s;
}
.tough .mv-area .mv-fade-scale-bound {
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.2s linear 0.3s, transform 0.6s cubic-bezier(1, 0.43, 0.29, 1.51) 0.1s;
}
.tough .mv-area .mv-fade {
  opacity: 0;
  transform: scale(0.9) translateY(8%);
  transition: opacity 0.25s cubic-bezier(0.33, 1, 0.68, 1) 0.1s,
              transform 0.35s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
}
.tough .mv-area .fade-target-box.is-show .mv-fade-scale {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.tough .mv-area .fade-target-box.is-show .mv-fade-scale-bound {
  opacity: 1;
  transform: scale(1);
}
.tough .mv-area.is-show .mv-fade {
  opacity: 1;
  transform: none;
}

.tough .link-area{
  display: flex;
  gap: 50px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .tough .link-area{
    padding-left: 20px;
    padding-right: 20px;
    flex-direction: column;
    gap: 30px;
  }
}
.tough .link-area .block{
  border: 3px solid #fcce00;
}
@media screen and (max-width: 768px) {
  .tough .link-area .block{
    width: 70%;
    margin: 0 auto;
    min-width: 290px;
  }
}
.tough .link-area .block a{
  color: #fcce00;
  font-size: 20px;
  width: 290px;
  height: 70px;
  font-weight: 600;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
}
@media screen and (max-width: 768px) {
  .tough .link-area .block a{
    width: 100%;
    font-size: 16px;
  }
}
.tough .link-area .block a::after{
  content: "▼";
  padding-left: 18px;
  font-size: 14px;
}

.tough .story .common-inner {
  max-width: 100%;
  height: 100%;
  padding-top: 180px;
  /* padding-bottom: 148px; */
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .tough .story .common-inner {
    padding-top: 90px;
    padding-bottom: 50px;
  }
}
.tough .story p.story-lead{
  color: #fff;
  text-align: center;
  padding-top: 40px;
  font-size: 20px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .tough .story p.story-lead{
    font-size: 16px;
    padding-top: 20px;
  }
}
.tough .story .story-list {
  max-width: 1040px;
  margin: 90px auto 0;
}
@media screen and (max-width: 767px) {
  .tough .story .story-list {
    margin-top: 48px;
  }
}
.tough .story .talent-info h3{
  font-size: 24px;
  color: #fcce00;
  /* font-family: serif; */
  font-weight: 600;
}
.tough .story .talent-info p{
  color: #fff;
  font-size: 16px;
  padding: 20px 0;
}

.tough .story .story-list .item {
  display: flex;
  align-items: center;
  position: relative;
  gap: 70px;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .tough .story .story-list .item {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}
.tough .story .story-list .img_max300{
  max-width: 300px;
}
.tough .story .story-list .item + .item {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .tough .story .story-list .item + .item {
    margin-top: 50px;
  }
}
.tough .story .story-list .item.--reverse {
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .tough .story .story-list .item.--reverse {
    flex-direction: column;
  }
}

.tough .story .story-list .item.--reverse .talent-info{
  /* text-align: right; */
}

.tough .story .story-list .item .img-link {
  position: relative;
  width: 40%;
}
@media screen and (max-width: 767px) {
  .tough .story .story-list .item .img-link {
    margin: 0 auto;
    width: 100%;
  }
}
.tough .story .story-list .item .img-link .story-img {
  transition: filter 0.1s ease-out, transform 0.15s ease-out;
}
@media screen and (max-width: 768px) {
  .tough .story .story-list .item .img-link .story-img{
    text-align: center;
    margin: 0 auto;
  }
  .tough .story .story-list .item .img-link .story-img img{
    width: 50%;
  }
}
.tough .story .story-list .item .img-link:hover .story-img {
  filter: brightness(1.1);
  transform: scale(1.02);
}
.tough .story .story-list .item .img-link.--hover-remove {
  pointer-events: none;
}

.tough .story .story-list .item .text-area{
  width: 50%;
}
@media screen and (max-width: 768px) {
  .tough .story .story-list .item .text-area{
    width: 100%;
    text-align: center;
  }
}

.tough .story .story-list .item .text-area dd{
  font-size: 16px;
  display: flex;
  margin-bottom: 10px;
}
.tough .story .story-list .item .text-area dd span{
  width: 22%;
}
.tough .story .story-list .item .text-area dd p{
  width: 100%;
}

.tough .story .story-list .tag {
  background-color: #fcce00;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  line-height: initial;
  background-image: linear-gradient(180deg, rgba(255, 220, 0, 1), rgba(223, 186, 0, 1) 25%, rgba(186, 146, 0, 1) 50%, rgba(225, 187, 0, 1) 78%, rgba(255, 220, 0, 1));
  padding: 3px 10px;

}

@media screen and (max-width: 767px) {
  .tough .story .story-list .tag {
    /* height: 17px; */
  }
}


.tough .story .story-list .text {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.5;
  font-feature-settings: "palt";
  margin-top: 17px;
}
@media screen and (max-width: 767px) {
  .tough .story .story-list .text {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 12px;
    text-align: left;
  }
  .tough .story .story-list .item .text-area dt{
    font-size: 16px;
  }
  .tough .story .story-list .item .text-area dd{
    font-size: 14px;
  }

}
.tough .story .story-list .text small {
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .tough .story .story-list .text small {
    font-size: 10px;
  }
}
.tough .story .story-list .link {
  color: #fff;
  font-size: 16px;
  font-feature-settings: "palt";
  letter-spacing: 0.01em;
  margin-top: 16px;
  padding-bottom: 9px;
  display: inline-block;
  position: relative;
  transition: opacity 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .tough .story .story-list .link {
    font-size: 11px;
    margin-top: 10px;
    padding-bottom: 6px;
  }
}
.tough .story .story-list .link::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.tough .story .story-list .link:hover {
  opacity: 0.7;
}

.tough .x-cmp .wrap{
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 150px;
}
@media screen and (max-width: 768px) {
  .tough .x-cmp .wrap{
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 50px;
  }
}
.tough .x-cmp .wrap h4{
  font-size: 27px;
  color: #fcce00;
  /* font-family: serif; */
  font-weight: 600;
  text-align: center;
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .tough .x-cmp .wrap h4{
    font-size: 20px;
  }
}

.tough .x-cmp .wrap .artist{
  display: flex;
  color: #fff;
  padding-top: 40px;
  gap: 30px;
}

.tough .x-cmp .wrap .artist picture{
  width: 50%;
}
.tough .x-cmp .wrap .artist p{
  width: 50%;
}
@media screen and (max-width: 768px) {
  .tough .x-cmp .wrap .artist{
    flex-direction: column;
  }
  .tough .x-cmp .wrap .artist p{
    width: 100%;
  }
  .tough .x-cmp .wrap .artist picture{
    width: 70%;
    margin: 0 auto;
    min-width: 330px;
  }
  .tough .x-cmp .wrap .award{
    padding-top: 30px;
    gap: 5px;
  }
  .tough .x-cmp .wrap h4{
    padding-top: 20px;
  }
}
.tough .x-cmp .wrap .award{
  display: flex;
  color: #fff;
  gap: 20px;
  padding-top: 70px;
  text-align: center;
  padding-bottom: 20px;
}
.tough .x-cmp .wrap .award .text-yellow{
  font-size: 30px;
  font-weight: 600;
  color: #fcce00;
  padding: 10px;
}
.tough .x-cmp .wrap .award .text-yellow span{
  font-size: 16px;
}

.tough .x-cmp .wrap .award picture{
  max-width: 300px;
}
.tough .x-cmp .wrap .award .c-award picture{
  max-width: 417px;
}
.tough .x-cmp .wrap .howto{
  color: #fff;
  text-align: center;
  font-size: 20px;
  margin-bottom: 50px;
}
.tough .x-cmp .wrap .howto p.ttl{
  font-size: 30px;
  color: #fcce00;
  font-weight: 600;
  margin: 40px auto 20px;
  border-bottom: 2px solid #d80112;
  padding-bottom: 9px;
  display: inline-block;
}
.tough .x-cmp .wrap .howto p.first{
  margin-bottom: 13px;
}
.tough .x-cmp .wrap .howto p.first a{
  color: #fff;
}

.tough .twitter .common-inner {
  padding-bottom: 120px;
  position: relative;
  z-index: 0;
  padding-top: 120px;
}

@media screen and (max-width: 767px) {
  .tough .twitter .common-inner {
    padding-bottom: 50px;
  }
}
.tough .twitter .twitter-content {
  margin: 0 auto;
  padding: 54px 20px 64px;
  max-width: 926px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("../img/bg-pattern-02.jpg");
  background-size: 100px 100px;
  background-repeat: repeat;
}
@media screen and (max-width: 767px) {
  .tough .twitter .twitter-content {
    padding: 31px 18px 30px;
  }
}
.tough .twitter .text-decoration {
  width: 185px;
}
@media screen and (max-width: 767px) {
  .tough .twitter .text-decoration {
    width: 111.5px;
  }
}
.tough .twitter .twitter-title {
  color: #579bf0;
  font-size: 36px;
  font-weight: bold;
  line-height: 2.1666666667;
  letter-spacing: 0;
  font-feature-settings: "palt";
  text-align: center;
  margin-top: -3px;
}
@media screen and (max-width: 767px) {
  .tough .twitter .twitter-title {
    font-size: 21px;
    margin-top: 2px;
  }
}
.tough .twitter .twitter-product {
  width: 427px;
  margin-top: -17px;
}
@media screen and (max-width: 767px) {
  .tough .twitter .twitter-product {
    width: 300px;
    margin-top: -7px;
  }
}
.tough .twitter .text {
  color: #fff;
  font-size: 18px;
  line-height: 2;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: -6px;
}
@media screen and (max-width: 767px) {
  .tough .twitter .text {
    font-size: 12px;
    line-height: 1.75;
    margin-top: -5px;
  }
}
.tough .twitter .twitter-timeline-wrap {
  width: 100%;
  max-width: 740px;
  margin: 23px auto 0;
}
@media screen and (max-width: 767px) {
  .tough .twitter .twitter-timeline-wrap {
    max-width: 440px;
    margin-top: 27px;
  }
}
.tough .twitter .twitter-btn {
  width: 330px;
  height: 54px;
  border-radius: 27px;
  margin-top: 42px;
  background-color: #579bf0;
}
@media screen and (max-width: 767px) {
  .tough .twitter .twitter-btn {
    width: 180px;
    height: 44px;
    border-radius: 22px;
    margin-top: 30px;
  }
}
.tough .twitter .twitter-btn .link {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease-out;
}
.tough .twitter .twitter-btn .link:hover {
  opacity: 0.7;
}
.tough .twitter .btn-icon {
  width: 33px;
}
@media screen and (max-width: 767px) {
  .tough .twitter .btn-icon {
    width: 18px;
  }
}
.tough .twitter .btn-name {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  padding-left: 10px;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .tough .twitter .btn-name {
    font-size: 12px;
    padding-left: 7px;
  }
}

.tough .product .common-inner {
  max-width: 100%;
  height: 100%;
  /* padding-top: 84px; */
  padding-bottom: 148px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .tough .product .common-inner {
    padding-top: 45px;
    padding-bottom: 50px;
  }
}

.tough .product .product-list {
  max-width: 790px;
  margin: 76px auto 0;
}
@media screen and (max-width: 767px) {
  .tough .product .product-list {
    margin-top: 48px;
    max-width: 335px;
  }
}
.tough .product .product-list .item {
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tough .product .product-list .item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.tough .product .product-list .item + .item {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .tough .product .product-list .item + .item {
    margin-top: 50px;
  }
}
.tough .product .product-list .item.--reverse {
  flex-direction: row-reverse;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .tough .product .product-list .item.--reverse {
    flex-direction: column;
  }
}
.tough .product .product-list .item.--reverse .text-area {
  margin-left: 0;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .tough .product .product-list .item.--reverse .text-area {
    margin-right: auto;
    margin-left: auto;
  }
}
.tough .product .product-list .item .img-link {
  position: relative;
}
@media screen and (max-width: 767px) {
  .tough .product .product-list .item .img-link {
    margin: 0 auto;
  }
}
.tough .product .product-list .item .img-link .product-img {
  transition: filter 0.1s ease-out, transform 0.15s ease-out;
}
.tough .product .product-list .item .img-link:hover .product-img {
  filter: brightness(1.1);
  transform: scale(1.02);
}
.tough .product .product-list .item .img-link.--hover-remove {
  pointer-events: none;
}
.tough .product .product-list .item .icon-new {
  width: 104px;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .tough .product .product-list .item .icon-new {
    width: 73.5px;
    position: static;
    transform: initial;
    margin: 0 auto;
    margin-bottom: 10px;
  }
}
.tough .product .product-list .item .icon-0509 {
  width: 164px;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .tough .product .product-list .item .icon-0509 {
    width: 108px;
    top: -2px;
  }
}
.tough .product .product-list .product-img {
  width: 240px;
  height: 320px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tough .product .product-list .product-img {
    width: 143px;
    height: 191px;
    margin: 0 auto;
    position: relative;
  }
}
.tough .product .product-list .product-img.--product-05 {
  width: 280px;
  height: 360px;
}
@media screen and (max-width: 767px) {
  .tough .product .product-list .product-img.--product-05 {
    width: 170px;
    height: 220px;
  }
}
.tough .product .product-list .product-img img {
  width: 580px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .tough .product .product-list .product-img img {
    width: 348px;
  }
}
.tough .product .product-list .text-area {
  margin-top: -8px;
  margin-left: 70px;
}
@media screen and (max-width: 767px) {
  .tough .product .product-list .text-area {
    margin-top: 22px;
    margin-left: auto;
    margin-right: auto;
    max-width: 284px;
    width: 75.7333333333vw;
  }
}
.tough .product .product-list .tag {
  width: auto;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .tough .product .product-list .tag {
    height: 17px;
  }
}
.tough .product .product-list .tag img {
  width: auto;
  height: 100%;
}
.tough .product .product-list .name {
  width: auto;
  height: 34px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .tough .product .product-list .name {
    height: 20px;
    margin-top: 13px;
  }
}
.tough .product .product-list .name img {
  width: auto;
  height: 100%;
}
.tough .product .product-list .name.limited {
  height: auto;
}
.tough .product .product-list .name.limited img {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .tough .product .product-list .name.limited img {
    height: 48px;
  }
}
.tough .product .product-list .name.limited img.second {
  margin-left: 21px;
}
@media screen and (max-width: 767px) {
  .tough .product .product-list .name.limited img.second {
    margin-left: 12px;
  }
}
.tough .product .product-list .name.pro {
  height: auto;
}
.tough .product .product-list .name.pro img {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .tough .product .product-list .name.pro img {
    height: 76px;
  }
}
.tough .product .product-list .text {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.5;
  font-feature-settings: "palt";
  margin-top: 17px;
}
@media screen and (max-width: 767px) {
  .tough .product .product-list .text {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 12px;
  }
}
.tough .product .product-list .text small {
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .tough .product .product-list .text small {
    font-size: 10px;
  }
}
.tough .product .product-list .link {
  color: #fff;
  font-size: 16px;
  font-feature-settings: "palt";
  letter-spacing: 0.01em;
  margin-top: 16px;
  padding-bottom: 9px;
  display: inline-block;
  position: relative;
  transition: opacity 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .tough .product .product-list .link {
    font-size: 11px;
    margin-top: 10px;
    padding-bottom: 6px;
  }
}
.tough .product .product-list .link::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.tough .product .product-list .link:hover {
  opacity: 0.7;
}


.tough .movie .common-title {
  margin-bottom: 64px;
}
@media screen and (max-width: 767px) {
  .tough .movie .common-title {
    margin-bottom: 25px;
  }
}
.tough .movie .common-inner {
  padding-top: 109px;
  padding-bottom: 40px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .tough .movie .common-inner {
    padding-top: 44px;
    padding-bottom: 30px;
  }
}
.tough .movie .movie-title {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  margin: 4px auto 10px;
}
.tough .swiper-slide .movie-title:last-of-type{
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .tough .movie .movie-title {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 12px;
  }
}
.tough .movie .flex-box{
  display: flex;
}
@media screen and (max-width: 1100px) {
  .tough .movie .flex-box{
    display: block;
  }
}
/* 
.tough .movie .movie-wrap {
  margin: 56px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .tough .movie .movie-wrap {
    margin-top: 44px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
.tough .movie .movie-wrap.second {
  max-width: 936px;
  margin-top: 0;
  justify-content: space-between;
}
.tough .movie .movie-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 0;
}
.tough .movie .movie-box::before {
  content: "";
  width: 616px;
  height: 501px;
  background-image: url("../img/movie-bg.png");
  background-size: 100%;
  position: absolute;
  top: -50px;
  left: 50%;
  z-index: -10;
  transform: translateX(-50%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .tough .movie .movie-box::before {
    width: 460px;
    height: 290px;
    opacity: 0.6;
  }
}
@media screen and (max-width: 767px) {
  .tough .movie .movie-box + .movie-box {
    margin-top: 47px;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .tough .movie .movie-box.--movie-02 > .movie-item {
    margin-top: 14px;
  }
}
@media screen and (max-width: 767px) {
  .tough .movie .movie-box.--movie-03 {
    margin-top: 25px;
  }
}
.tough .movie .movie-box.--movie-04 {
  margin: 75px auto 0;
}
@media screen and (max-width: 767px) {
  .tough .movie .movie-box.--movie-04 {
    margin-top: 47px;
  }
}
.tough .movie .movie-box video {
  width: 100%;
  height: 100%;
} */
.tough .movie .movie-item {
  /* margin-top: 26px; */
  display: block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tough .movie .movie-item {
    width: 80%;
  }
}
.tough .movie .movie-item.--coming-soon {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.tough .movie .movie-item.--coming-soon .icon-coming-soon {
  width: 163px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .tough .movie .movie-item.--coming-soon .icon-coming-soon {
    width: 37.8666666667vw;
  }
}
.tough .movie .movie-item.--coming-soon .movie {
  cursor: auto;
}
.tough .movie .movie-item.--coming-soon .movie::before {
  display: none;
}
@media screen and (max-width: 767px) {
  .tough .movie .movie-item {
    margin-top: 14px;
  }
}
.tough .movie-item .movie_modal_button {
  width: 100%;
}
.tough .movie .movie {
  cursor: pointer;
  display: block;
  position: relative;
  z-index: 0;
  border: 2px solid rgb(201, 201, 201);
  overflow: hidden;
}
.tough .movie .movie::before {
  content: "";
  width: 49px;
  height: 25px;
  background-image: url("../img/icon-play.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 22px;
  bottom: 13px;
  z-index: 10;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .tough .movie .movie::before {
    width: 41px;
    height: 21px;
    left: 16.5px;
    bottom: 10px;
  }
}
.tough .movie .movie-left{
  width: 22%;
}
@media screen and (max-width: 1100px) {
  .tough .movie .movie-left{
    display: flex;
    width: auto;
    justify-content: center;
  }
}
.tough .movie .movie-left picture{
  width: 200px;
  height: 259px;
  position: relative;
}
.tough .movie .movie-left img{
  width: 420px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .tough .movie .movie-left img {
    width: 370px;
  }
}
.tough .movie .movie picture {
  cursor: pointer;
  transition: transform 0.2s ease-out;
}
.tough .movie .movie:hover picture {
  transform: scale(1.02);
}
.tough .movie .movie-name.second {
  text-align: center;
  margin: 56px auto 0;
  width: 45.1403887689%;
}
.tough .movie .movie-name.second img {
  width: auto;
}
.tough .movie .movie-slide-wrapper {
  /* margin-block: 60px; */
  width: 70%;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .tough .movie .movie-slide-wrapper {
    margin-block: 25px 10px;
    /* width: 100%; */
  }
}
.tough .movie .movie-name {
  text-align: center;
}
.tough .movie .movie-name img {
  width: auto;
  height: 25px;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .tough .movie .movie-name img {
    height: 20px;
  }
}

.js-webMovie,
.js-toughMovie {
  overflow: visible;
  padding: 20px 0;
  position: relative;
  margin-bottom: 120px !important;
}
@media screen and (max-width: 767px) {
  .js-webMovie,
  .js-toughMovie {
    padding: 0;
    margin-bottom: 64px !important;
  }
}

@media screen and (max-width: 767px) {
  .js-webMovie .movie-item,
  .js-toughMovie .movie-item {
    width: 100% !important;
  }
}
.js-webMovie .swiper-slide,
.js-toughMovie .swiper-slide {
  opacity: 0.4;
  transition: opacity 0.3s ease;
  width: 300px !important;
}
@media screen and (max-width: 767px) {
  .js-webMovie .swiper-slide,
  .js-toughMovie .swiper-slide {
    width: 80% !important;
    max-width: 100%;
  }
}
.js-webMovie .swiper-slide-active,
.js-toughMovie .swiper-slide-active {
  opacity: 1;
}
.js-webMovie .movie-item .movie img,
.js-toughMovie .movie-item .movie img {
  width: 300px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .js-webMovie .movie-item .movie img,
  .js-toughMovie .movie-item .movie img {
    width: 100%;
    height: auto;
  }
}
.movie-slide-wrapper  .swiper-button-prev,
.movie-slide-wrapper .swiper-button-next{
  /* top: 50%;
  transform: translateY(-50%); */
  width: 40px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1100px) {
  .movie-slide-wrapper  .swiper-button-prev,
.movie-slide-wrapper .swiper-button-next {
    top: 62%;
  }
}
.movie-slide-wrapper .swiper-button-prev::after,
.movie-slide-wrapper .swiper-button-next::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .movie-slide-wrapper .swiper-button-prev,
  .movie-slide-wrapper .swiper-button-next {
    width: 32px;
    height: 32px;
  }
}
.movie-slide-wrapper .swiper-button-prev {
  left: 22%;
  background-image: url("../img/icon-arrow-slide-left.svg");
}
@media screen and (max-width: 1100px) {
  .movie-slide-wrapper .swiper-button-prev {
    left: 10%;
  }
}
@media screen and (max-width: 767px) {
  .movie-slide-wrapper .swiper-button-prev {
    /* left: -10px; */
  }
}
.movie-slide-wrapper .swiper-button-next {
  right: 2%;
  background-image: url("../img/icon-arrow-slide-right.svg");
}
@media screen and (max-width: 1100px) {
  .movie-slide-wrapper .swiper-button-next {
    right: 10%;
  }
}
@media screen and (max-width: 767px) {
  .movie-slide-wrapper .swiper-button-next {
    /* right: -10px; */
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-horizontal .swiper-pagination-custom,
.swiper-horizontal .swiper-pagination-fraction {
  bottom: -40px !important;
}
@media screen and (max-width: 767px) {
  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-horizontal .swiper-pagination-custom,
  .swiper-horizontal .swiper-pagination-fraction {
    bottom: -24px !important;
  }
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 !important;
}

.js-toughMovie .swiper-pagination-bullet {
  width: 93.3333333333px !important;
}
@media screen and (max-width: 767px) {
  .js-toughMovie .swiper-pagination-bullet {
    width: 16.6666666667% !important;
  }
}

.js-webMovie .swiper-pagination-bullet {
  width: 186.6666666667px !important;
}
@media screen and (max-width: 767px) {
  .js-webMovie .swiper-pagination-bullet {
    width: 33.3333333333% !important;
  }
}

.swiper-pagination-bullet {
  height: 4px !important;
  background: #313131 !important;
  border-radius: 0 !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet:first-child {
  border-radius: 2px 0 0 2px !important;
}
.swiper-pagination-bullet:last-child {
  border-radius: 0 2px 2px 0 !important;
}

.swiper-pagination-bullet-active {
  background: #797979 !important;
}

.pagetop {
  background-color: rgba(150, 150, 150, 0.5);
}

.remodal {
  max-width: 100%;
  width: 860px;
  margin-bottom: 35px;
  padding: 0;
  padding-inline: 0;
  background: transparent;
}

.remodal video {
  width: 100%;
}

.remodal-wrapper {
  padding: 0;
}

.remodal-overlay {
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
}

.tough .detail .common-inner {
  max-width: 100%;
  height: 100%;
  padding-top: 31px;
  padding-bottom: 53px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .tough .detail .common-inner {
    padding-top: 51px;
    padding-bottom: 48px;
  }
}
.tough .detail .common-inner::before {
  content: "";
  width: 100vw;
  height: 100%;
  background-image: url("../img/bg-pattern-01.jpg");
  background-size: 100px 100px;
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -10;
}
@media screen and (max-width: 767px) {
  .tough .detail .common-inner::before {
    transform: translateX(-50%);
  }
}
.tough .detail .common-title {
  position: relative;
  z-index: 10;
}
.tough .detail .detail-body {
  max-width: 1040px;
  height: 630px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1119px) {
  .tough .detail .detail-body {
    height: 52vw;
  }
}
@media screen and (max-width: 767px) {
  .tough .detail .detail-body {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.tough .detail .detail-img {
  width: 670px;
  height: 652px;
  position: absolute;
  top: -31px;
  left: 185px;
}
@media screen and (min-width: 768px) and (max-width: 1119px) {
  .tough .detail .detail-img {
    width: 59.8214285714vw;
    height: 58.2142857143vw;
    /* top: -9.9107142857vw; */
    left: 16.5178571429vw;
  }
}
@media screen and (max-width: 767px) {
  .tough .detail .detail-img {
    max-width: 375px;
    width: 100%;
    height: auto;
    margin: -42px auto 0;
    position: relative;
    top: 0;
    left: 0;
    z-index: -10;
  }
}
.tough .detail .detail-desc {
  width: 350px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
}
@media screen and (min-width: 768px) and (max-width: 1119px) {
  .tough .detail .detail-desc {
    width: 31.25vw;
    height: 17.8571428571vw;
  }
}
@media screen and (max-width: 767px) {
  .tough .detail .detail-desc {
    width: 100%;
    height: 100%;
    position: static;
    margin-top: -36px;
  }
}
@media screen and (max-width: 767px) {
  .tough .detail .detail-desc + .detail-desc {
    margin-top: 16px;
  }
}
.tough .detail .detail-desc .title {
  width: auto;
  height: 46px;
}
@media screen and (min-width: 768px) and (max-width: 1119px) {
  .tough .detail .detail-desc .title {
    height: 4.1071428571vw;
  }
}
@media screen and (max-width: 767px) {
  .tough .detail .detail-desc .title {
    height: 34px;
  }
}
.tough .detail .detail-desc .title img {
  width: auto;
  height: 100%;
}
.tough .detail .detail-desc .text {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-feature-settings: "palt";
  text-align: center;
  margin-top: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1119px) {
  .tough .detail .detail-desc .text {
    font-size: 1.7857142857vw;
    margin-top: 1.7857142857vw;
  }
}
@media screen and (max-width: 767px) {
  .tough .detail .detail-desc .text {
    font-size: 15px;
    line-height: 1.5333333333;
    margin-top: 7px;
  }
}
.tough .detail .detail-desc.--desc-01 {
  top: 148px;
  left: 44px;
}
@media screen and (min-width: 768px) and (max-width: 1119px) {
  .tough .detail .detail-desc.--desc-01 {
    top: 13.2142857143vw;
    left: 3.9285714286vw;
  }
}
.tough .detail .detail-desc.--desc-02 {
  top: 80px;
  left: 673px;
}
@media screen and (min-width: 768px) and (max-width: 1119px) {
  .tough .detail .detail-desc.--desc-02 {
    top: 7.1428571429vw;
    left: 60.0892857143vw;
  }
}
.tough .detail .detail-desc.--desc-03 {
  top: 251px;
  left: 672px;
}
@media screen and (min-width: 768px) and (max-width: 1119px) {
  .tough .detail .detail-desc.--desc-03 {
    top: 22.4107142857vw;
    left: 60vw;
  }
}
.tough .detail .bnr{
  max-width: 1040px;
  margin: 0 auto;
  border-radius: initial;
}
@media screen and (max-width: 767px) {
  .tough .detail .bnr{
    margin-top: 30px;
  }
}