/* ======================================================================
 reset
====================================================================== */
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  overflow-y: scroll;
}
/* html, body {
  height: 100%;
} */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
ul {
  list-style: none;
  padding-left: 0;
}


:root {
  --color-main: #0092c5;
  --color-text: #555555;
  --font-base: "Noto Sans JP", 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic',Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, sans-serif;
  --font-awesome: "Font Awesome 7 Free";
  --font-alpha: "Share Tech Mono", monospace;
  --base-width: 1240px;
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--font-base);
  font-weight: 400;
  color: var(--color-text);
  background: #000;
  line-height: 1.6;
  word-wrap : break-word;
	word-break: break-all;
  min-width: var(--base-width);
	overflow: hidden;
  @media (width <= 768px) {
    min-width: inherit;
  }
  &:before {
    background: url(../img/common/bg.jpg) center top / auto repeat-y;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
  }
}

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

strong {
	font-weight: bold;
}

a {
  transition: opacity .2s;
	&:link {
		color: var(--color-text);
		text-decoration: none;
		cursor: pointer;
	}
	&:visited {
		color: var(--color-text);
		text-decoration: none;
	}
	&:hover {
		color: var(--color-text);
		text-decoration: none;
    opacity: .8;
	}
	&:active {
		color: var(--color-text);
		text-decoration: none;
	}
}

/* モバイル時 電話番号カラー */
a[href^="tel"]{
  color: var(--color-text);
}

:focus-ring {
  outline: none;
}


/* input */
/* ( 1 ) radio / checkbox 以外リセット */
input[type='button'], input[type='submit'], input[type='text'], input[type='email'], input[type='tel'],  input[type='url'], input[type='password'], input[type='reset'], input[type='search'], textarea, select {
  display: block;
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  border-image: none;
  background: transparent;
  font-family: inherit; /* 子要素へ引き継ぎ */
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
}

input, textarea {
  &:placeholder-shown {
    color: var(--color-text);
  }
  &::placeholder {
    color: var(--color-text);
  }
  &:focus {
    &:placeholder-shown {
      color: var(--color-text);
    }
    &::placeholder {
      color: var(--color-text);
    }
  }
}


/* =================================
 l-content__size
================================= */
.l-content__size-pc-1 {
  width: var(--base-width);
  margin: 0 auto;
  padding-inline: 20px;
  @media (width <= 768px) {
    width: auto;
    padding-inline: 0;
  }
}


/* =================================
 l-header
================================= */
.l-header {
  z-index: 998;
  margin-bottom: -48px;
  position: relative;
  @media (width <= 768px) {
    margin-bottom: calc(-65/750*100vw);
  }
  nav {
    display: flex;
    justify-content: space-between;
  }
}

.l-header__logo {
  margin-block: 15px 0;
  margin-left: 23px;
  
  @media (width <= 768px) {
    width: calc(195/750*100vw);
    margin-block: calc(16/750*100vw) 0;
    margin-left: calc(22/750*100vw);
  }
}

.l-header__right {
  width: 239px;
  height: 48px;
  background: url(../img/index/bg_sns.png) no-repeat;
  @media (width <= 768px) {
    display: none;
  }
}

.l-header__sns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-right: 20px;
  margin-top: 14px;
  
}


.l-header__toggle,
.l-menu__toggle {
  background: transparent;
  border: none;
  padding: 0;
  position: fixed;
  top: 10px;
  right: 10px;
  cursor: pointer;
  @media (width <= 768px) {
    width: calc(90/750*100vw);
    top: calc(20/750*100vw);
    right: calc(20/750*100vw);
  }
}

.l-header__toggle {
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  &.fade-in {
    opacity: 1;
    pointer-events: auto;
  }
}

/* =================================
 l-menu
================================= */
.l-menu {
  z-index: -1;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  background: #000;
  @media (width <= 768px) {
    padding-bottom: calc(40/750*100vw);
  }
}

.l-menu__list {
  margin: 250px auto 100px;
  width: 900px;
  @media (width <= 1024px) {
    padding-inline: calc(40/750*100vw);
    width: auto;
  }
  @media (width <= 768px) {
    margin: calc(242/750*100vw) calc(40/750*100vw) calc(254/750*100vw);
    /* width: auto; */
  }
  a {
    padding: 38px 40px;
    display: flex;
    align-items: center;
    position: relative;
    transition: background .2s;
    @media (width <= 768px) {
      padding: calc(40/750*100vw);
      display: block;
    }
    &:after {
      content: "\f105";
      font-family: var(--font-awesome);
      position: absolute;
      font-size: 1.8rem;
      font-weight: 900;
      top: calc(50% - 8px);
      right: 40px;
      line-height: 1;
      transition: right .2s;
      @media (width <= 768px) {
        font-size: calc(28/750*100vw);
        top: calc(50% - (14/750*100vw));
        right: calc(40/750*100vw);
      }
    }
    &:hover {
      background: #0c0c0c;
      &:after {
        right: 20px;
        @media (width <= 768px) {
          right: calc(40/750*100vw);
        }
      }
    }
  }
  li {
    &:not(:last-of-type) {
      border-bottom: 1px solid #333333;
    }
  }
}

.l-menu__list-en {
  color: var(--color-main);
  font-family: var(--font-alpha);
  font-size: 3rem;
  display: flex;
  align-items: center;
  line-height: 1;
  @media (width <= 768px) {
    font-size: calc(60/750*100vw);
  }
  &:after {
    content:"";
    width: 49px;
    height: 1px;
    background: var(--color-main);
    margin-inline: 16px;
    display: inline-block;
    @media (width <= 768px) {
      display: none;
    }
  }
}

.l-menu__list-ja {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  @media (width <= 768px) {
    font-size: calc(26/750*100vw);
  }
}

.l-menu__sns {
  display: none;
  @media (width <= 768px) {
    display: flex;
    justify-content: center;
    gap: calc(30/750*100vw);
    li {
      width: calc(70/750*100vw);
    }
  }
}


/* =================================
 l-main
================================= */
.l-main {
  
}

/* =================================
 l-footer
================================= */
.l-footer {
  margin-top: -110px;
  @media (width <= 768px) {
    margin-top: calc(-88/750*100vw);
  }
}

.l-footer__sankyo {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  @media (width <= 768px) {
    margin-inline: auto;
    margin-bottom: calc(20/750*100vw);
    width: calc(289/750*100vw);
  }
}

.l-footer__top {
  background: url(../img/common/bg_footer.png) center top / auto no-repeat;
  padding-block: 85px 40px;
  @media (width <= 768px) {
    background: url(../img/common/sp/bg_footer.png) center top / 100% no-repeat;
    padding-block: calc(70/750*100vw) calc(60/750*100vw);
  }
}

.l-footer__bottom {
  background: #171717;
  padding: 16px 0;
  @media (width <= 768px) {
    padding: calc(20/750*100vw) 0 calc(110/750*100vw);
  }
}

.l-footer__copy {
  font-size: 1.1rem;
  text-align: center;
  @media (width <= 768px) {
    font-size: calc(20/750*100vw);
  }
}

.l-footer__attend {
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  @media (width <= 768px) {
    font-size: calc(20/750*100vw);
  }
}


/* =================================
 l-loader
================================= */
.l-loader {
  z-index: 1000;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  margin: 0;
  padding: 0;
  background: #000;
}

.l-loader.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms;
}
.l-loader__img {
  position: relative;
  top: calc(50% - 90px);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  /* animation: loading 300ms linear 0ms infinite normal both; */
}
@media screen and (max-width: 768px) {
  .l-loader__img {
    top: calc(50% - (149 /750*100vw));
    margin: 0 auto;
    width: calc(283 /750*100vw);
  }
  .l-loader__img img {
    max-width: 100%;
  }
}

@keyframes loading {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes loading-ltr {
  0% {
    transform-origin: center left;
    transform: scale(2,2) translateX(-300%) skewX(-45deg);
  }
  50% {
    transform-origin: center left;
    transform: scale(2,2) translateX(-17%) skewX(-45deg);
  }
  50.001% {
    transform-origin: center left;
    transform: scale(2,2) translateX(-17%) skewX(-45deg);
  }
  100% {
    transform-origin: center left;
    transform: scale(2,2) translateX(300%) skewX(-45deg);
    display: none;
  }
}

@media screen and (max-width: 768px) {
  @keyframes loading-ltr{
    0% {
      transform-origin: center left;
      transform: scale(5,5) translateX(-300%) skewX(-45deg);
    }
    50% {
      transform-origin: center left;
      transform: scale(5,5) translateX(-17%) skewX(-45deg);
    }
    50.001% {
      transform-origin: center left;
      transform: scale(5,5) translateX(-17%) skewX(-45deg);
    }
    100% {
      transform-origin: center left;
      transform: scale(5,5) translateX(300%) skewX(-45deg);
    }
  }
}


.l-loader__bg {
  position: fixed;
  left: 0;
  top: 70px;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: var(--color-main);
  display: none;
  transition: all .6s;
  cursor: pointer;
  z-index: 99993;
}
.l-loader__bg.show {
  display: block;
  animation-name: loading-ltr;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}


@keyframes ltor {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@media screen and (max-width: 768px) {
  @keyframes ltor {
    0% {
      opacity: 0;
      transform: translateX(-2.66666vw);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* アニメーション */
.c-sa {
  opacity: 0;
}
.c-sa.show {
  opacity: 1;
}

.c-sa__lr.show {
  animation: ltor 1.2s ease-in-out;
}

.c-sa__fadein.show {
  animation: fadein 1.2s ease-in-out;
}

.c-toTop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 997;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  @media (width <= 768px) {
    width: calc(90/750*100vw);
    height: calc(90/750*100vw);
    bottom: calc(20/750*100vw);
    right: calc(20/750*100vw);
  }
  &.fade-in {
    opacity: 1;
    pointer-events: auto;
  }
}

.c-bottom {
  background: url(../img/common/bg_bnrs.png) center top / auto no-repeat;
  padding-block: 113px 135px;
  margin-top: 79px;
  @media (width <= 768px) {
    background: url(../img/common/sp/bg_bnrs.png) center top / 100% no-repeat;
    padding-block: calc(170/750*100vw) calc(174/750*100vw);
    margin-top: calc(44/750*100vw);
  }
}

.c-bottom__sankyo {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
  @media (width <= 768px) {
    width: calc(704/750*100vw);
    margin-bottom: calc(78/750*100vw);
    margin-left: calc(40/750*100vw);
  }
}

.c-bottom__list {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
  @media (width <= 768px) {
    flex-direction: column;
    gap: calc(50/750*100vw);
    margin-bottom: calc(30/750*100vw);
    li {
      width: calc(550/750*100vw);
      margin-inline: auto;
    }
  }
}

.c-bottom__copy {
  font-size: 1.1rem;
  text-align: center;
  color: #fff;
  @media (width <= 768px) {
    font-size: calc(20/750*100vw);
  }
}

.p-index {
  .c-bottom {
    background: url(../img/index/bg_bnrs.png) center top / auto no-repeat;
    padding-block: 96px 137px;
    margin-top: 0;
    @media (width <= 768px) {
      background: url(../img/index/sp/bg_bnrs.png) center top / 100% no-repeat;
      padding-block: calc(115/750*100vw) calc(174/750*100vw);
    }
  }
  &:has(.p-index__mv-movie) {
    .l-footer__bottom {
      @media (width <= 768px) {
        padding-bottom: calc(160/750*100vw);
      }
    }
  }
  /* 偶数の時 */
  &:has(.p-index__contents-list li:nth-child(even):last-child) {
    .p-index__contents {
      margin-bottom: 17px;
      @media (width <= 768px) {
        margin-bottom: 0;
      }
    }
    .p-index__news-chara {
      top: -323px;
    }
  }
}


.p-index__modal {
  display: none;
}

.p-index .fancybox-content {
  background: transparent;
  padding: 0;
  
}

.p-index__mv-img {
  margin-inline: -400px;
  margin-bottom: -1005px;
  @media (width <= 768px) {
    margin-inline: 0 calc(-20/750*100vw);
    margin-bottom: calc(-1165/750*100vw);
  }
}

.p-index__mv-scroll {
  margin-left: 20px;
  margin-bottom: 129px;
  position: relative;
  @media (width <= 768px) {
    margin-left: calc(29/750*100vw);
    margin-bottom: calc(273/750*100vw);
    width: calc(16/750*100vw);
  }
}

.p-index__mv-logo {
  margin-right: -93px;
  margin-right: 25px;
  margin-bottom: 110px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  @media (width <= 768px) {
    margin-right: 0;
    margin-left: auto;
    margin-bottom: calc(176/750*100vw);
    width: calc(693/750*100vw);
  }
}

.p-index__contents {
  /* background: url(../img/index/bg_contents.png) center bottom / auto no-repeat; */
  padding-bottom: 376px;
  margin-bottom: -99px;
  @media (width <= 768px) {
    background: url(../img/index/sp/bg_contents.png) center bottom / 100% no-repeat;
    padding-bottom: calc(202/750*100vw);
    margin-bottom: 0;
  }
  
}

.p-index__contents-list {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  gap: 0 11px;
  margin-right: 20px;
  @media (width <= 768px) {
    display: block;
    margin-right: 0;
  }
  a {
    position: relative;
    display: block;
  }
  .hot {
    position: absolute;
    top: -34px;
    right: 0;
    margin-right: -30px;
    @media (width <= 768px) {
      top: calc(-54/750*100vw);
      left: 0;
      right: inherit;
      margin-right: 0;
      width: calc(159/750*100vw);
    }
  }
  li {
    &:nth-of-type(even) {
      margin-block: 124px -128px;
      @media (width <= 768px) {
        margin-block: calc(-20/750*100vw) 0;
      }
    }
    @media (width <= 768px) {
      margin-left: auto;
      width: calc(710/750*100vw);
      &:nth-of-type(3) {
        margin-top: calc(-8/750*100vw);
      }
    }
  }
}


.p-index__news {
  background: linear-gradient(#ffffff, #ffffff) center center / 2000px no-repeat transparent;
  position: relative;
  margin-bottom: 156px;
  margin-bottom: 36px;
  @media (width <= 768px) {
    background: #fff;
    margin-bottom: calc(44/750*100vw);
  }
  &:before {
    content: url(../img/index/bg_news_top.png);
    width: 100%;
    height: 258px;
    position: absolute;
    top: -258px;
    left: calc(50% - 1000px);
    @media (width <= 768px) {
      content: "";
      background: url(../img/index/sp/bg_news_top.png) center bottom / 100% no-repeat;
      height: calc(132/750*100vw);
      top: calc(-132/750*100vw);
      left: 0;
    }
  }
  &:after {
    content: url(../img/index/bg_news_bottom.png) ;
    width: 100%;
    height: 124px;
    position: absolute;
    bottom: -124px;
    left: calc(50% - 1000px);
    @media (width <= 768px) {
      content: "";
      background: url(../img/index/sp/bg_news_bottom.png) center top / 100% no-repeat;
      height: calc(86/750*100vw);
      bottom: calc(-86/750*100vw);
      left: 0;
    }
  }
  .l-content__size-pc-1 {
    position: relative;
  }
}

.p-index__news-chara {
  position: absolute;
  top: -276px;
  right: 0;
  margin-right: -107px;
  z-index: 1;
}

.p-index__news-ttl {
  margin-left: 155px;
  /* margin-bottom: 15px; */
  position: relative;
  top: -165px;
  @media (width <= 768px) {
    margin-left: calc(40/750*100vw);
    margin-bottom: calc(35/750*100vw);
    width: calc(292/750*100vw);
    top: 0;
  }
}

.p-index__news-list {
  width: 890px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
  top: -150px;
  background: rgb(255 255 255 / .9);
  @media (width <= 768px) {
    margin-bottom: calc(64/750*100vw);
    width: calc(670/750*100vw);
    top: 0;
  }
}

.p-index__news-item {
  border-left: 1px solid #d1d1d1;
  border-right: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
  
  &:first-of-type {
    border-top: 1px solid #d1d1d1;
  }
  &.nolink {
    display: flex;
    align-items: center;
    padding: 20px 30px 20px 40px;
    @media (width <= 768px) {
      display: block;
      padding:  calc(20/750*100vw) calc(60/750*100vw) calc(20/750*100vw) calc(30/750*100vw);
    }
  }
  a {
    display: flex;
    align-items: center;
    padding: 20px 30px 20px 40px;
    position: relative;
    @media (width <= 768px) {
      display: block;
      padding: calc(20/750*100vw) calc(60/750*100vw) calc(20/750*100vw) calc(30/750*100vw);
    }
    &:after {
      content: "\f105";
      font-family: var(--font-awesome);
      position: absolute;
      font-size: 1.2rem;
      font-weight: 900;
      color: #c0c0c0;
      top: calc(50% - 6px);
      right: 30px;
      line-height: 1;
      transition: right .2s;
      @media (width <= 768px) {
        font-size: calc(24/750*100vw);
        top: calc(50% - (12/750*100vw));
        right: calc(30/750*100vw);
      }
    }
    &:hover {
      /* background: #0c0c0c; */
      &:after {
        right: 20px;
        @media (width <= 768px) {
          right: calc(30/750*100vw);
        }
      }
    }
  }
  .date {
    font-size: 1.6rem;
    font-family: var(--font-alpha);
    color: var(--color-main);
    width: 117px;
    @media (width <= 768px) {
      font-size: calc(24/750*100vw);
      width: inherit;
    }
  }
  .txt {
    flex: 1;
    font-size: 1.5rem;
    margin-right: 75px;
    @media (width <= 768px) {
      font-size: calc(26/750*100vw);
      margin-right: 0;
    }
    a {
      display: block;
      
    }
  }
}

.p-index__news-margin {
  margin-top: -150px;
  height: 1px;
  @media (width <= 768px) {
    margin-top: 0;
  }
}

.p-index__mv-movie {
  z-index: 10;
  position: fixed;
  bottom: 10px;
  left: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  @media (width <= 768px) {
    width: calc(230/750*100vw);
    bottom: calc(20/750*100vw);
    left: calc(20/750*100vw);
  }
  &.fade-in {
    opacity: 1;
    pointer-events: auto;
  }
}

.p-subcon__mv {
  position: relative;
  margin-bottom: 213px;
  @media (width <= 768px) {
    margin-bottom: calc(186/750*100vw);
  }
}

.p-subcon__mv-img {
  margin-inline: -400px;
  margin-bottom: -405px;
  @media (width <= 768px) {
    margin-inline: 0;
    margin-bottom: calc(-744/750*100vw);
  }
}


.p-subcon__mv-scroll {
  margin-left: 20px;
  position: relative;
  @media (width <= 768px) {
    margin-left: calc(29/750*100vw);
    width: calc(16/750*100vw);
  }
}

.p-subcon__mv-logo {
  position: absolute;
  right: 0;
  top: 310px;
  @media (width <= 768px) {
    position: relative;
    right: inherit;
    top: inherit;
    margin-top: calc(-244/750*100vw);
    margin-left: auto;
    width: calc(614/750*100vw);
  }
}

.p-subcon__contents {
  background: linear-gradient(#ffffff, #ffffff) center center / 2000px no-repeat transparent;
  position: relative;
  padding-bottom: 10px;
  @media (width <= 768px) {
    background: #fff;
    padding-bottom: calc(120/750*100vw);
  }
  &:before {
    position: absolute;
    top: -189px;
    left: 0;
    width: 100%;
    height: 189px;
    content: "";
    background: url(../img/common/bg_contents_top.png) center bottom / auto no-repeat;
    @media (width <= 768px) {
      top: calc(-162/750*100vw);
      height: calc(162/750*100vw);
      background: url(../img/common/sp/bg_contents_top.png) center bottom / 100% no-repeat;
    }
  }
  &:after {
    position: absolute;
    bottom: -152px;
    left: 0;
    width: 100%;
    height: 152px;
    content: "";
    background: url(../img/common/bg_contents_bottom.png) center top / auto no-repeat;
    @media (width <= 768px) {
      bottom: calc(-86/750*100vw);
      height: calc(86/750*100vw);
      background: url(../img/common/sp/bg_contents_bottom.png) center bottom / 100% no-repeat;
    }
  }
}

.p-subcon__contents-ttl {
  margin-left: -400px;
  position: relative;
  top: -78px;
  @media (width <= 768px) {
    margin-left: 0;
    top: calc(-20/750*100vw);
    width: calc(710/750*100vw);
    margin-bottom: calc(90/750*100vw);
  }
}

.p-subcon__contents-ttlR {
  margin-inline: 100px -400px;
  margin-bottom: 28px;
  @media (width <= 768px) {
    margin-inline: calc(40/750*100vw) 0;
    margin-bottom: calc(80/750*100vw);
  }
}

.p-subcon__contents-ttlL {
  margin-left: -400px;
  margin-bottom: 28px;
  @media (width <= 768px) {
    margin-inline: 0 calc(40/750*100vw);
    margin-bottom: calc(50/750*100vw);
  }
}

.p-cm__contents-list {
  position: relative;
  top: -9px;
  @media (width <= 768px) {
    top: 0;
  }
  li {
    display: flex;
    justify-content: center;
  }
}

.p-story__contents-img {
  margin-block: 50px 80px;
  display: flex;
  justify-content: center;
  @media (width <= 768px) {
    margin: 0 calc(40/750*100vw) calc(100/750*100vw);
  }
}

.p-story__contents-charas {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 35px 30px;
  margin-bottom: 80px;
  margin-left: 100px;
  @media (width <= 768px) {
    gap: calc(22/750*100vw) calc(50/750*100vw);
    margin-bottom: calc(100/750*100vw);
    margin-left: calc(50/750*100vw);
    li {
      width: calc(300/750*100vw);
    }
  }
}

.p-story__contents-suits {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 35px 44px;
  margin-bottom: 21px;
  margin-left: 100px;
  @media (width <= 768px) {
    gap: calc(40/750*100vw) calc(50/750*100vw);
    margin-bottom: 0;
    margin-left: calc(50/750*100vw);
    li {
      width: calc(300/750*100vw);
    }
  }
}


.p-movie__contents-list {
  position: relative;
  top: -9px;
  @media (width <= 768px) {
    top: 0;
  }
  li {
    display: flex;
    justify-content: center;
  }
}

.p-movie__contents-fans-outer {
  margin-top: 80px;
  @media (width <= 768px) {
    margin-top: calc(100/750*100vw);
  }
  .p-subcon__contents-ttlR {
    margin-bottom: 46px;
    @media (width <= 768px) {
      margin-bottom: calc(80/750*100vw);
    }
  }
}

.p-movie__contents-fans {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-left: 150px;
  margin-bottom: 19px;
  @media (width <= 768px) {
    flex-direction: column;
    gap: calc(80/750*100vw);
    margin-left: 0;
    margin-bottom: 0;
    li {
      width: calc(570/750*100vw);
      margin-inline: auto;
    }
  }
}


 /* spからコーディング : モバイルファースト */
/* @media (width >= 1025px) {
  .u-pc {
    display: block;
  }
  .u-sp {
    display: none;
  }
}
@media (width <= 1024px) {
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
} */

/* pcからコーディング */
@media (width >= 769px) {
  .u-pc {
    display: block;
  }
  .u-sp {
    display: none;
  }
}
@media (width <= 768px) {
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}