@charset "UTF-8";
/*
Utopia Std Regular
font-family: "utopia-std", serif;
font-weight: 400;
font-style: normal;

Utopia Std Display
font-family: "utopia-std-display", serif;
font-weight: 400;
font-style: normal;

Utopia Std Semibold Display
font-family: "utopia-std-display", serif;
font-weight: 600;
font-style: normal;
*/
:root {
  --white: #fff;
  --black: #000;
  --text-main: #171818;
  --bg-main: #fff;
  --line-color: #000;
  --font: utopia-std, 游明朝, YuMincho, ヒラギノ明朝 Pro W3, Hiragino Mincho Pro, ＭＳＰ明朝, MS PMincho, serif;
  --font-en: utopia-std-display, sans-serif;
  --pc-width: 1400;
  --tb-width: 768;
  --sp-width: 750;
}

/*----------共通設定 pc----------*/
* {
  font-feature-settings: normal;
}

* > #st240501keishirahata {
  font-family: var(--font);
  font-weight: 300;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 62.5%;
}



/*----------共通設定 tablet----------*/
@media only screen and (max-width: 1400px) and (min-width: 768px) {
  html {
    font-size: 0.7142857143vw;
  }
}
/*----------共通設定 sp----------*/
@media only screen and (max-width: 767px) {
  html {
    font-size: 1.3333333333vw;
  }
}
/*----------LP normalize SP----------*/
#st240501keishirahata {
  font-family: var(--font);
}
#st240501keishirahata * {
  box-sizing: border-box;
}
#st240501keishirahata img {
  height: auto;
  opacity: 1;
  width: 100%;
}
#st240501keishirahata a {
  text-decoration: none;
}
#st240501keishirahata picture, #st240501keishirahata a {
  display: block;
}
#st240501keishirahata p, #st240501keishirahata ul, #st240501keishirahata ol, #st240501keishirahata dl {
  margin: 0;
  list-style: none;
}
#st240501keishirahata .sp_only{
  display: none;
}
@media only screen and (max-width: 767px) {
  #st240501keishirahata .section__inner {
    max-width: 100%;
  }

   */
  #st240501keishirahata .sp_only {
    display: block;
  }
}


/*----------LP normalize PC----------*/
@media only screen and (min-width: 768px) {
  #Wrap {
    width: 100% !important;
  }
  .main-area .main-inner {
    max-width: 100%;
    width: 100%;
  }

}

/*----------アニメーション----------*/
._fadeup {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateY(50px);
}

._fadeup.fade-active {
  opacity: 1;
  transform: translateY(0rem);
}

._fadein {
  opacity: 0;
  transition: opacity 0.8s;
}

._fadein.fade-active {
  opacity: 1;
}

.fadeup-load {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateY(50px);
}

.fadeup-load.fade-active {
  opacity: 1;
  transform: translateY(0rem);
}

.fade_slide {
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateY(50px);
}

.fade_slide.fade-active {
  opacity: 1;
  transform: translateY(0rem);
}

.fade_slide02 {
  opacity: 0;
  transition: opacity 0.5s 0.3s, transform 0.5s 0.3s;
  transform: translateY(50px);
}

.fade_slide02.fade-active {
  opacity: 1;
  transform: translateY(0rem);
}

@media only screen and (max-width: 767px) {
  .fade_slide {
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    transform: translateY(50px);
  }
  .fade_slide.fade-active {
    opacity: 1;
    transform: translateY(0rem);
  }
  .fade_slide02 {
    opacity: 0;
    transition: opacity 0.5s, transform 0.5s;
    transform: translateY(50px);
  }
  .fade_slide02.fade-active {
    opacity: 1;
    transform: translateY(0rem);
  }
}
.rightAnime {
  opacity: 0; /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.title__line, .line-load {
  position: relative;
}

/*.title__line::before, .line-load::before {
  display: block;
  content: "";
  position: absolute;
  transition: height 0.2s 0s;
  width: 1px;
  height: 0;
  background-color: #000000;
  bottom: 0;
  left: 0;
  transform-origin: bottom left;
}
.title__line::after, .line-load::after {
  display: block;
  content: "";
  position: absolute;
  transition: width 0.3s 0.3s;
  width: 0;firstWrap__leadWrap-msg
  height: 1px;
  background-color: #000000;
  left: 0;
  top: 0;
  transform-origin: top left;
}*/
.fadein-load {
  opacity: 0;
  transition: opacity, 1s;
}

.fadein-load.fade-active {
  opacity: 1;
}

.zoom-load {
  position: relative;
  transform: scale(1.1);
  transition: all 0.8s ease;
  opacity: 0;
}

.zoom-load.fade-active {
  transform: scale(1);
  opacity: 1;
}

._zoom picture {
  position: relative;
  transform: scale(1.1);
  transition: all 0.8s ease;
  opacity: 0;
}

._zoom.fade-active picture {
  transform: scale(1);
  opacity: 1;
}

@keyframes imgMove_R {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
/*----------layout pc----------*/
#st240501keishirahata {
  margin: 0;
  background-size: cover;
  font-family: var(--font);
  font-weight: 400;
  color: #000000;
  position: relative;
  z-index: 0;
  /*----------mv----------*/
  /*----------sec----------*/
  /*----------.item__slider----------*/
}
.item__lead{
  font-size: 1.4rem;
  letter-spacing: 0.095em;
  line-height: 2.1428571429;
  /* margin: 1.5rem 0 0 0; */
  font-weight: 600;
  font-feature-settings: "palt";
}
.item__lead span{
  font-family: var(--font-en);
  font-size: 1.6rem;
  line-height: 2.1428571429;
  letter-spacing: 0.1em;
}

#st240501keishirahata a:hover {
  opacity: 1;
}
#st240501keishirahata .sec__inner {
  position: relative;
  margin: 0 auto;
}
#st240501keishirahata img {
  width: 100%;
  display: block;
}
#st240501keishirahata .mainVisual {
  margin: 4.7rem auto 5.8rem;
  font-feature-settings: "palt";
  text-align: center;
}
#st240501keishirahata .mainVisual .main__img {
  width: 92rem;
  margin: 8rem auto 0;
}

#st240501keishirahata .mainVisual .main__lead {
  display: block;
  line-height: 2.1428571429;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
  font-weight: 600;
}

#st240501keishirahata .main__lead-wrapper{
  width: 92rem;
  margin: 0 auto;
  text-align: center;
}
#st240501keishirahata .main-txt01{
  padding-bottom: 2.3rem;
}
#st240501keishirahata .main-txt02{
  padding-bottom: 5.8rem;
}
#st240501keishirahata .main-txt03{
  padding-bottom: 3rem;
}
#st240501keishirahata .firstWrap__leadWrap-msg {
  position: relative;
  font-size: 3rem;
  padding-bottom: 4.5rem;
  line-height: 1.5;
  margin-top: 6.4rem;
  letter-spacing: 0.055em;
}
#st240501keishirahata .sk-message .main__lead{

  letter-spacing: 0.098em;
}

#st240501keishirahata .firstWrap__leadWrap-msg.director-name{
  font-size: 2rem;
  margin-top: 0;
  font-weight: 600;
  letter-spacing: 0.095em;
  padding-bottom: 4.8rem;
}
#st240501keishirahata .main__lead.msg-01{
  padding-bottom: 3rem;
}


#st240501keishirahata .firstWrap__leadWrap-msg.director-name .drctr{
  font-size: 2.6rem;
  letter-spacing: 0.01em;
}
#st240501keishirahata .slsh{
  padding: 0 0.8rem 0 0.3em;
  font-family: 游明朝体, Yu Mincho;
}
#st240501keishirahata .firstWrap__leadWrap-mf{
  font-size: 3.2rem;
  letter-spacing: 0.05em;
}
#st240501keishirahata .firstWrap__leadWrap-msgWrap{
  margin-top: 2.7rem;
}
/* ーーーーーーーーー▼　アコーディオン　▼ーーーーーーーーーーー */

.accordion__ttl span{
  font-size: 1.6rem;
  letter-spacing: 0.075em;
  padding-left: 2.1rem;
}

#st240501keishirahata .accordion__ttl {
  position: relative;
  z-index: 1;
  cursor: pointer;
  top: 5rem;
  left: -0.3rem;
  width: 7.3rem;
  margin: 0 auto;
}

.accordion__txt .leadWrap-txt01{
  padding-top: 3.1rem;
  padding-bottom: 3rem;
}

.accordion__txt .leadWrap-txt02{
  padding-bottom: 3rem;
}
.accordion__txt .leadWrap-txt03{
  padding-bottom: 3rem;
}
/* アコーディオングラデーション___________________________*/
.accordion__ttl::before {
  width: 100vw;
  height: calc(200*(100vw / 1400));
  background: linear-gradient(0deg, #fff 20%, transparent 100%);
  z-index: -1;
  bottom: 0;
  transition: opacity 0.5s;
  left: 50%;
  /* top: calc(-260* (100vw / 750)); */
  transform: translateX(-50%) translate(10px, 10px);
}

.accordion__ttl.open::before {
  content: none;
}

/* アコーディオンボタン矢印___________________________*/
.accordion__ttl::before,
.accordion__ttl::after {
  content: "";
  position: absolute;
}

.accordion__ttl::after {
  width: calc(5*(100vw / 1400));
  height: calc(5*(100vw / 1400));
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: translateX(-50%) translateZ(0) rotate(135deg);
  transform: translateX(-50%) translateZ(0) rotate(135deg);
  top: 0.2rem;
  left: 0.9rem;
}

.accordion__ttl.open::after {
  transform: translateX(-50%) translateZ(0) rotate(-45deg);
  left: 0.6rem;
  top: 0.5rem;
}
#st240501keishirahata .accordion__ttl.open {
  margin-bottom: 16.2rem;
}
#st240501keishirahata .acdn_btm-img{
  width: 32rem;
  height: 32rem;
  margin: 12.4rem auto 10rem;
}

.accordion__txt {
  display: none;
  /* margin-bottom: calc(19*(100vw / 750)); */
}

.firstWrap__accordion{
  background: #fff;
  left: 0;
  margin-bottom: calc(-6*(100vw / 750));
}

#st240501keishirahata .accordion__txt .item__lead .nxt{
  padding: 0 0.1rem;
}
#st240501keishirahata .accordion__txt .item__lead:nth-child(3){
  padding-bottom: 3rem;
  line-height: 2.02;
}

/* ーーーーーーーーー▲　アコーディオン　▲ーーーーーーーーーーー */

.sec__heading-wb{
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
}
.color-white {
  position: absolute;
  display: inline-block;
  font-size: 3.8rem;
  text-align: left;
}
.color-white{
  z-index: -1;
  color: #fff;
}

#st240501keishirahata .sec.sec__heading .sec__anchor {
  position: absolute;
  display: inline-block;
  font-size: 3.8rem;
  text-align: left;
  z-index: 1;
}

#st240501keishirahata .spOnly{
  display: none;
}
#st240501keishirahata .pc_only{
  display: block;
}
#st240501keishirahata .mainVisual .main__lead span {
  font-weight: 500;
}
#st240501keishirahata .sec {
  position: relative;
  text-align: center;
}
#st240501keishirahata .sec.sec01 {
  padding: 7.4rem 0 0 0;
}
#st240501keishirahata .sec.sec01 .sec__ttl .title__inner {
  padding: 0 0.12rem 0.7rem 0;
}
#st240501keishirahata .sec.sec01 .sec__ttl ._num {
  letter-spacing: -0.03em;
}


#st240501keishirahata .sec.sec02 {
  padding: 11.1rem 0 0 0;
}

#st240501keishirahata .sec.sec02 .sec__ttl ._category {
  padding-left: 0.4rem;
  letter-spacing: 0.067em;
}
#st240501keishirahata .sec.sec03 {
  padding: 11.3rem 0 0 0;
}

#st240501keishirahata .director-img{
  width: 36rem;
  margin: 14rem auto 3.1rem;
}
/* ============ ▼ "styling/ by kei shirahata”LOOK" ▼ ============ */
#st240501keishirahata .sec.sec04 .sec__inner .sec__ttl .title__inner {
  padding: 0;
  width: 100%;
}

#st240501keishirahata .sec04 .sec__ttl::after{
  bottom: -4px;
}

#st240501keishirahata .sec.sec04 .sec04-dq{
  font-size:4.8rem;
  font-family: 游明朝体, Yu Mincho;
}
#st240501keishirahata .sec.sec04 .sec04-by{
  font-size: 3.6rem;
  font-family: var(--font-en);
  padding: 0 0.7rem 0 0.7rem;
}
#st240501keishirahata .sec.sec04 .sec04-ks{
  font-size: 4.6rem;
  letter-spacing: 0.04em;
  padding: 0 0.4rem 0.3rem 2.9rem;
}
#st240501keishirahata .sec.sec04 {
  margin: 10.6rem 0 0 0;
  overflow: hidden;
  margin: 12.6rem 0 0 0;
}

/* ============ ▲ "styling/ by kei shirahata”LOOK" ▲ ============ */
#st240501keishirahata .sec.sec__heading {
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 0 6rem 0;
  background-color: #0C2041;
}
#st240501keishirahata .sec.sec__heading .sec__anchor {
  position: absolute;
  display: inline-block;
  font-size: 3.8rem;
  text-align: left;
  z-index: 1;
}
#st240501keishirahata .sec.sec__heading .sec__anchor li {
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding-left: 0.9rem;
}
#st240501keishirahata .sec.sec__heading .sec__anchor li.sp_only{
  display: none;

}
#st240501keishirahata .sec.sec__heading .sec__anchor li:nth-of-type(1) a ._num {
  letter-spacing: -0.03em;
}
#st240501keishirahata .sec.sec__heading .sec__anchor li:nth-of-type(1) a ._num::after {
  right: -1.2rem;
}
#st240501keishirahata .sec.sec__heading .sec__anchor li:nth-of-type(1) a ._category {
  letter-spacing: 0.0332em;
  padding: 0 0 0 1.5rem;
}
#st240501keishirahata .sec.sec__heading .sec__anchor li:nth-of-type(2) {
  padding: 3.2rem 0 0 5rem;
}
#st240501keishirahata .sec.sec__heading .sec__anchor li:nth-of-type(2) a ._num::after {
  right: -1.8rem;
}
#st240501keishirahata .sec.sec__heading .sec__anchor li:nth-of-type(2) a ._category {
  padding: 0 0 0 2rem;
  letter-spacing: 0.055em;
}
#st240501keishirahata .sec.sec__heading .sec__anchor li:nth-of-type(3) {
  padding: 3.5rem 0 0 12rem;
}
#st240501keishirahata .sec.sec__heading .sec__anchor li:nth-of-type(3) a ._num::after {
  right: -1.6rem;
}
#st240501keishirahata .sec.sec__heading .sec__anchor li:nth-of-type(3) a ._category {
  padding: 0 0 0 1.6rem;
}
#st240501keishirahata .sec.sec__heading .sec__anchor a {
  display: flex;
  font-size: 6.8rem;
  font-family: 明朝体, Yu Mincho;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.065em;
}
#st240501keishirahata .sec.sec__heading .sec__anchor a ._num {
  display: block;
  font-size: 8.5rem;
  font-family: var(--font-en);
  position: relative;
}
#st240501keishirahata .sec.sec__heading .sec__anchor a ._num::after {
  display: block;
  content: ",";
  position: absolute;
  font-size: 6.4rem;
  font-family: 游明朝体, Yu Mincho;
  top: 0.2em;
  bottom: 0.2rem;
  right: -1.5rem;
  z-index: -1;
}

#st240501keishirahata .sec.sec__heading .sec__anchor a .num2{
  letter-spacing: 0.02em;
}

#st240501keishirahata  .sec__inner {
  position: relative;
  margin-inline: auto;
  /* margin-top: 50px; */
  max-width: 800px;
  width: 90rem;
}
#st240501keishirahata  .sec__inner01{
  width: 74rem;
}

.sample-img {
  margin-left: 20%; /* テキストの端から画像の端までの長さ */
}
.sample-img img {
  display: block;
  width: 100%;
}
.color-white,
.color-blue {
  white-space: nowrap;
  position: absolute;
  display: inline-block;
  top: 38.3rem;
  left: -17.2rem;
  font-size: 3.8rem;
  text-align: left;
  z-index: 1;
}
.color-blue {
  -webkit-text-stroke: 0.05rem #0C2041;
  text-stroke: 0.05rem #0C2041;
}

#st240501keishirahata .sec.sec__heading .sec__anchor.color-blue {
  pointer-events: all;
}

#st240501keishirahata .sec.sec__heading .sec__anchor.color-white {
  pointer-events: all;
}

#st240501keishirahata .sec.sec__heading .sec__anchor.color-blue-2 {
  pointer-events: none;
}


@media only screen and (min-width: 768px) {
  #st240501keishirahata .sec.sec__heading .sec__anchor.color-blue-2 {
    pointer-events: all;
  }

  #st240501keishirahata .sec.sec__heading .sec__anchor.color-white a{
    color: #fff;
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor.color-blue a{
    color: #0C2041;

  }
  #st240501keishirahata .sec.sec__heading .sec__anchor.color-blue {
    width: 48.82%;
    height: 17.8rem;
    right: 0;
    left: auto;
    overflow: hidden;
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor.color-blue li{
    margin-left: -161%;
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor.color-white{
    width: 72.8%;
    left: -20.3rem;
  }
}
@media only screen and (max-width: 767px) {
  #st240501keishirahata .sec.sec__heading .sec__anchor.color-white a{
    color: #fff;

  }
  #st240501keishirahata .sec.sec__heading .sec__anchor.color-blue a,
  #st240501keishirahata .sec.sec__heading .sec__anchor.color-blue-2 a{
    color: #0C2041;

  }
  #st240501keishirahata .sec.sec__heading .sec__anchor.color-blue {
    width: calc(370 * (100vw/750));
    height: calc(555 * (100vw/750));
    right: 0;
    left: auto;
    top: calc(198 * (100vw/750));
    overflow: hidden;
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor.color-blue-2{
    width: calc(370 * (100vw/750));
    height: calc(555 * (100vw/750));
    left: 0;
    top: calc(565 * (100vw/750));
    overflow: hidden;
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor.color-blue li{
    margin-left: calc(-365 * (100vw/750));
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor.color-blue-2 li{
    margin-left: calc(76*(100vw / 750));
    margin-top: calc(-81.4*(100vw / 750));
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor.color-white {
    width: calc(380 * (100vw/750));
    left: calc(15 * (100vw/750));
    z-index: 0;
  }
  #st240501keishirahata .sec.sec__heading{
    position: relative;
    z-index: 1;
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor.color-blue-2 li:nth-of-type(1) a span{
    letter-spacing: 0.04em;
  }
  .color-blue,
  .color-blue-2 {
    -webkit-text-stroke: calc(0.5 * (100vw/750)) #0C2041;
    text-stroke: calc(0.5 * (100vw/750)) #0C2041;
  }
}

#st240501keishirahata .sec.sec__heading .sec__anchor a ._category {
  display: block;
  font-size: 8.4rem;
  font-family: var(--font-en);
  padding: 0 0 0 2rem;
}
#st240501keishirahata .sec.sec__heading .img__wrap {
  width: 74rem;
  margin: 0 auto;
}

#st240501keishirahata .mixBlendArea{
  pointer-events: none;
  width: 36rem;
  height: 54rem;
  position: absolute;
  top: 2rem;
  right: 0;
  overflow: hidden;
}


#st240501keishirahata .mixBlendArea__cont{
  display: block;
  pointer-events: all;
  font-family: var(--font-en);
  font-size: 8.4rem;
  letter-spacing: 0.056em;
  color: #0c2041;
  position: absolute;
  bottom: -2.4rem;
  left: -0.88rem;
  z-index: 1;
}
#st240501keishirahata .mixBlendArea__cont.sp_only{
  display: none;
}

#st240501keishirahata .mixBlend-back{
  z-index: -1;
}
#st240501keishirahata .sec.sec__heading .content_img {
  width: 36rem;
  height: 54rem;
}
#st240501keishirahata .sec.sec__movie {
  width: 100%;
  margin: 12rem auto 0;
  padding: 4.5rem 0 4.3rem 0;
  background-color: rgba(221, 221, 221, 0.3);
}
#st240501keishirahata .sec.sec__movie .movie__wrap {
  width: 43.2rem;
  margin: 0 auto;
  position: relative;
}
#st240501keishirahata .sec.sec__movie video {
  width: 100%;
  margin: 0 auto;
}
#st240501keishirahata .sec.sec__movie #movie-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 43.2rem;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  cursor: pointer;
}
#st240501keishirahata .sec.sec__movie .movie-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8rem;
  height: 8rem;
  position: absolute;
}
#st240501keishirahata .sec.sec__movie .movie-button span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #CF000F;
  font-size: 1.2rem;
}
#st240501keishirahata .sec.sec__movie .movie-button span i {
  font-size: 2.6vw; /*アイコンの大きさを指定*/
}
#st240501keishirahata .sec .img__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 70rem;
  margin: 8rem auto 0;
}
#st240501keishirahata .sec .item__desc {
  width: 78rem;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  text-align: left;
}
#st240501keishirahata .sec .item__desc .item__text {
  width: 42rem;
  background-color: rgba(195, 195, 195, 0.3);
  box-sizing: border-box;
  padding: 7.2rem 3rem 0 5rem;
}
#st240501keishirahata .sec .item__desc .item__text .item__name {
  font-size: 2.4rem;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
#st240501keishirahata .item__text-prc{
  font-size: 2.3rem;
  font-weight: 900;
}

#st240501keishirahata .sec .item__desc .item__text .item__point {
  display: inline-block;
  position: relative;
  margin: 3.3rem 0 0 0;
  font-size: 1.8rem;
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
}
#st240501keishirahata .sec .item__desc .item__text .item__point::after {
  display: block;
  content: "";
  position: absolute;
  width: 10.4rem;
  height: 1.6rem;
  background-image: url(../img/poing_bg_pc.png);
  background-size: cover;
  background-repeat: no-repeat;
  top: 0.9rem;
  left: -1.4rem;
  z-index: -1;
}
#st240501keishirahata .sec .item__desc .item__text .item__lead,
#st240501keishirahata .sec .item__desc .item__text .item__lead02{
  font-size: 1.4rem;
  line-height: 2.1428571429;
  font-weight: 600;
  font-feature-settings: "palt";
  text-align: justify;
}
#st240501keishirahata .sec.sec01 .item__desc .item__text .item__lead{
  letter-spacing: 0.095em;
}
#st240501keishirahata .sec .item__desc .item__text .item__lead{
  margin: 1.5rem 0 0 0;
}
#st240501keishirahata .sec.sec02 .item__desc .item__text .item__lead02{
  margin-top: 3rem;
  letter-spacing: 0.1em;
}
#st240501keishirahata .sec.sec01 .item__desc .item__text .item__lead02{
  width: 97.5%;
  margin-top: 3rem;
  letter-spacing: 0.1em;
}

#st240501keishirahata .sec .item__desc .item__img {
  width: 36rem;
}
#st240501keishirahata .sec .sec__ttl {
  width: 90rem;
  display: block;
  margin-bottom: 3.5rem;
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 700;
  text-align: right;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-right: auto;
  color: #a0a0a0;
}
#st240501keishirahata .sec.sec04 .sec__ttl{
  letter-spacing: 0.035em;
  padding-bottom: 0.3rem;
  margin-bottom: 3.8rem;
}
#st240501keishirahata .sec .sec__ttl::after,
#st240501keishirahata .sec__ttl::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-size: 1rem 0.1rem;
  background-image: linear-gradient(to right, #000000 0.6rem, transparent 0.4rem);
  background-position: center bottom;
}
#st240501keishirahata .firstWrap__leadWrap-msg.sec__ttl::after{
  margin-top: 2rem;
}
#st240501keishirahata .firstWrap__leadWrap-msg.sec__ttl.msg-ks01::after{
  margin-top: 1.7rem;
}
#st240501keishirahata .sec__ttl.message01::after{
  margin-top: 1.7rem;
}
#st240501keishirahata .sec .sec__ttl .title__inner {
  display: inline-flex;
  align-items: end;
  justify-content: flex-end;
  width: auto;
  padding: 0 0 0.6rem 0;
  font-size: 4.2rem;
  font-family: 游明朝体, Yu Mincho;
  right: 3px;
  box-sizing: border-box;
  position: relative;
  color: rgba(160, 160, 160, 0);
  transition: color 1s;
  right: -0.4rem;
}

#st240501keishirahata .sec .sec__ttl .title__inner::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 2;
  transition: transform 1s;
  transform-origin: left;
  left: auto;
  right: 0;
  transform: scale(1, 1);
}
#st240501keishirahata .sec.sec02 .sec__ttl .title__inner{
  padding: 0 0 0.8rem 0;

}
#st240501keishirahata .sec .sec__ttl ._num {
  font-family: var(--font-en);
  font-size: 4.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

#st240501keishirahata .sec .sec__ttl ._category {
  font-family: var(--font-en);
  font-size: 4.6rem;
  font-weight: 500;
}
#st240501keishirahata .sec.sec01 .sec__ttl ._category {
  font-size: 4.6rem;
  letter-spacing: 0.058em;
}


#st240501keishirahata .sec .sec__ttl.fade-active .title__inner {
  color: #a0a0a0;
}
#st240501keishirahata .sec .sec__ttl.fade-active .title__inner::after {
  transform: scale(0, 1);
}
#st240501keishirahata .sec .content_img {
  width: 34rem;
  height: 51rem;
}
#st240501keishirahata .sec .content_img a {
  display: block;
}
#st240501keishirahata .sec .content_img.content_img--01 {
  margin: 0 0 0 38rem;
  width: 48.8%;
}
#st240501keishirahata .sec .content_img .swiper-pagination {
  display: flex;
  justify-content: space-between;
  width: 1.6rem;
  position: absolute;
  bottom: 0.5rem;
  left: auto;
  right: 0.5rem;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
#st240501keishirahata .sec .content_img .swiper-pagination span {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 0 !important;
  margin: 0;
  border: 1px solid;
  border-color: rgba(0, 0, 0, 0.9);
  background-color: transparent;
  opacity: 1 !important;
}
#st240501keishirahata .sec .content_img .swiper-pagination span.swiper-pagination-bullet-active {
  width: 0.6rem;
  height: 0.6rem;
  background-color: rgba(0, 0, 0, 0.9);
  border: 1px solid transparent;
}
#st240501keishirahata .sec .content_img.swiper:hover {
  opacity: 0.6;
}
#st240501keishirahata .sec .item__textArea {
  margin: 0 0 0 0;
  letter-spacing: 0.12em;
}
#st240501keishirahata .sec .item__textArea .item__lead {
  margin: 5.2rem 0 0 0;
  text-align: center;
  font-feature-settings: "palt";
  letter-spacing: 0.12em;
  line-height: 2.1428571429;
}
#st240501keishirahata .sec .item__textArea .item__credit {
  margin: 3rem 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 1.5rem;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
}
#st240501keishirahata .sec .item__textArea .item__credit a {
  letter-spacing: 0.05em;
}
#st240501keishirahata .sec .item__textArea .item__credit span {
  width: 100%;
}
#st240501keishirahata .item__slider .sec__inner {
  max-width: max-content !important;
  width: 680rem !important;
  display: flex;
}
#st240501keishirahata .item__slider .slide__list {
  display: flex;
  width: 170rem;
  justify-content: space-around;
  flex-wrap: wrap;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 60s;
  animation-name: imgMove_R;
}
#st240501keishirahata .item__slider .slide__list li {
  width: 34rem;
  padding: 0;
}

#st240501keishirahata .all_item_btn {
  width: 46rem;
  height: 7rem;
  background-color: #0C2041;
  color: #fff;
  margin: 10rem auto 12rem;

}
#st240501keishirahata .all_item_btn a {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 2rem;
  letter-spacing: 0.035em;
  font-weight: 500;
  font-style: normal;
  text-align: center;
  padding: 2.5rem 2rem 0 0;
  box-sizing: border-box;
  font-family: var(--font-en);
  font-weight: 600;
}
#st240501keishirahata .all_item_btn a::after {
  display: block;
  content: "";
  position: absolute;
  height: calc(1rem/2 * 1.7320508076);
  width: 1rem;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  z-index: 1;
  background-color: #fff;
  transform: rotate(90deg);
  right: 13rem;
  top: 3rem;
}
#st240501keishirahata .footer_border {
  margin: auto;
  margin-top: 9.8rem;
  border-bottom: 1px solid #000;
}
#st240501keishirahata .staff {
  margin: auto;
  margin-top: 1.6rem;
  padding-left: 0;
  width: 112rem;
  text-align: left;
}
#st240501keishirahata .staff .staff__ttl {
  font-size: 1.5rem;
  font-weight: 200;
  margin-bottom: 0rem;
}
#st240501keishirahata .staff .staff__ttl .sc01 {
  margin-top: 0.6rem;
  margin-bottom: 2.4rem;
}
#st240501keishirahata .staff__credit {
  margin: 0.5rem 0 0;
  font-size: 1.4rem;
  line-height: 1.6428571429;
  letter-spacing: 0.05em;
  font-weight: 200;
}

@media only screen and (max-width: 767px) {
  .main-area .main-inner {
    padding: 0;
  }

  /*----------layout sp----------*/
  #st240501keishirahata {
    max-width: 100%;
    width: calc(750 * (100vw/750));
    overflow: hidden;
    margin: 0;
    position: relative;
    background-color: #fff;
    border: none;
    font-family: var(--font);
    /*----------mv----------*/
    /*----------sec----------*/
    /*----------.item__slider----------*/
  }
  #st240501keishirahata a:hover {
    opacity: 1;
  }
  #st240501keishirahata .pc_only {
    display: none !important;
  }
  #st240501keishirahata .spOnly{
    display: block;
  }
  #st240501keishirahata .sp_brnone{
    display: none;
  }
  #st240501keishirahata .sec__inner {
    width: 100%;
  }
  #st240501keishirahata .mainVisual {
    width: calc(750 * (100vw/750));
    max-width: 100%;
    margin: 0 auto 0;
  }
  #st240501keishirahata .mainVisual .main__img {
    width: 100%;
    margin: 1.8rem 0 0 0;
  }

  #st240501keishirahata .main-txts{
    margin: calc(88* (100vw / 750)) 0 0 0;
  }
  #st240501keishirahata .mainVisual .main__lead {
    /* margin: calc(90 * (100vw/750)) 0 0 0; */
    /* padding: 0 0 calc(103 * (100vw/750)) 0; */
    font-size: calc(22 * (100vw/750));
    line-height: 2;
  }
  #st240501keishirahata .mainVisual .main__lead.main-txt01 {
    padding-bottom: calc(33* (100vw / 750));

  }

  #st240501keishirahata .mainVisual .main__lead.main-txt02 {
    line-height: 1.8;
    padding-bottom: calc(90* (100vw / 750));
  }

  /* ============ ▼ "Director / 白幡 啓" ▼ ============  */
  #st240501keishirahata .director-img{
    width: calc(480* (100vw / 750));
    margin: calc(120* (100vw / 750)) auto calc(45* (100vw / 750));
  }
  #st240501keishirahata .firstWrap__leadWrap-msg.director-name{
    font-size: calc(32* (100vw / 750));
    padding-bottom: calc(38* (100vw / 750));
  }
  #st240501keishirahata .firstWrap__leadWrap-msg.director-name .drctr{
    font-size: calc(38* (100vw / 750));
    letter-spacing: 0.04em;
  }
  #st240501keishirahata .firstWrap__leadWrap-msg.sec__ttl.director-name::after {
    margin-top: calc(11* (100vw / 750));

  }
  #st240501keishirahata .slsh{
    padding: 0 calc(11* (100vw / 750)) 0 calc(10* (100vw / 750));
  }
  #st240501keishirahata .sk-message .item__lead{
    margin: 0;
    letter-spacing: 0.095em;
  }
  #st240501keishirahata .main__lead.msg-01{
    padding-bottom: calc(47* (100vw / 750));
  }
  #st240501keishirahata .sk-message .item__lead,
  #st240501keishirahata .sec .item__desc .item__text .item__lead{
    font-size: calc(22 * (100vw/750));
    line-height: 2;
    font-feature-settings: "palt";
  }

  /* ============ ▲ "Director / 白幡 啓" ▲ ============  */

  #st240501keishirahata .firstWrap__leadWrap-msg {
    font-size: calc(45* (100vw / 750));
    padding-bottom: calc(35* (100vw / 750));
    line-height: 1.53;
    letter-spacing: 0.055em;
    margin-top: calc(90* (100vw / 750));
  }
  #st240501keishirahata .firstWrap__leadWrap-msg.sec__ttl.msg-ks01::after{
    margin-top: calc(5* (100vw / 750));
  }
  #st240501keishirahata .main-txt03 {
    padding-bottom: calc(43* (100vw / 750));
  }
  #st240501keishirahata .firstWrap__leadWrap-mf {
    font-size: calc(48* (100vw / 750));
  }
  #st240501keishirahata .main__lead-wrapper{
    width: 100%;
  }


  #st240501keishirahata .section-list {
    border: none;
    background-color: #fff;
  }
  #st240501keishirahata .sec {
    width: 100%;
    border: none;
  }

  /* ーーーーーーーーーアコーディオンーーーーーーーーーーー */
  .accordion__ttl::after {
    width: calc(10*(100vw / 750));
    height: calc(10*(100vw / 750));
    top: calc(3*(100vw / 750));
    left: calc(-6*(100vw / 750));
  }
  .accordion__ttl::after
  #st240501keishirahata .accordion__ttl::before{
    width: 100vw;
    height: calc(500*(100vw / 750));
    bottom: calc(0*(100vw / 750));
  }
  #st240501keishirahata .accordion__ttl::before{
    height: calc(300*(100vw / 750));
  }
  #st240501keishirahata .accordion__ttl {
    top: calc(65* (100vw / 750));
    right: calc(-16* (100vw / 750));
  }
  .accordion__ttl.open::after{
    top: calc(10*(100vw / 750));
    left: calc(-10*(100vw / 750));
  }
  #st240501keishirahata .accordion__ttl.open {
    margin-bottom: 20.7rem;
  }
  #st240501keishirahata .accordion__ttl span{
    font-size: calc(24* (100vw / 750));
    padding-left: calc(15* (100vw / 750));
  }
  #st240501keishirahata .accordion__txt .item__lead{
    padding: calc(43*(100vw / 750)) 0 0 0;
  }
  #st240501keishirahata .accordion__txt .item__lead:nth-child(3){
    padding: calc(44*(100vw / 750)) 0 0 0;
    line-height: 1.92;
  }
  #st240501keishirahata .accordion__txt .item__lead:nth-child(4){
    padding: calc(45*(100vw / 750)) 0 0 0;
  }
  /* ーーーーーーーーーアコーディオンーーーーーーーーーーー */

  #st240501keishirahata .acdn_btm-img{
    width: calc(400* (100vw / 750));
    height: calc(400* (100vw / 750));
    margin: calc(145* (100vw / 750)) auto calc(140* (100vw / 750));
  }
  #st240501keishirahata .sec.sec01 {
    padding: calc(107 * (100vw/750)) 0 0 0;
  }
  #st240501keishirahata .sec.sec01 .sec__ttl .title__inner {
    padding: 0 calc(25 * (100vw/750)) 0 0;
  }
  #st240501keishirahata .sec.sec01 .sec__ttl ._num {
    letter-spacing: -0.03em;
  }
  #st240501keishirahata .sec.sec01 .sec__ttl ._category {
    letter-spacing: 0.025em;
  }
  #st240501keishirahata .sec.sec02 {
    padding: calc(107*(100vw / 750)) 0 0 0;
  }
  #st240501keishirahata .sec.sec02 .sec__ttl ._category{
    padding-left: 0;
    letter-spacing: 0.03em;
    margin-right: calc(20*(100vw / 750));
  }
  #st240501keishirahata .sec.sec02 .sec__ttl .title__inner{
    padding: 0;
  }
  #st240501keishirahata .sec.sec01 .item__desc .item__text .item__lead02,
  #st240501keishirahata .sec.sec02 .item__desc .item__text .item__lead02{
    margin-top: calc(45* (100vw / 750));
    letter-spacing: 0.08em;
    width: 99%;
  }
  #st240501keishirahata .sec.sec02 .item__desc .item__text .item__lead02{
    width: calc(475*(100vw / 750));
    text-align: justify;
  }
  #st240501keishirahata .sec.sec03 {
    padding: calc(115 * (100vw/750)) 0 0 0;
  }

  /* ============ ▼ "styling/ by kei shirahata”LOOK" ▼ ============ */
  #st240501keishirahata .sec.sec04 .title__inner{
    padding-right: calc(21*(100vw / 750));
  }
  #st240501keishirahata .sec.sec04 .sec__inner .sec__ttl .title__inner{
    letter-spacing: 0.05em;
    flex-wrap: wrap;
    padding: 0 calc(17*(100vw / 750)) 0 0;
  }
  #st240501keishirahata .sec.sec04 .sec__inner .sec__ttl .title__inner{
    letter-spacing: 0.05em;
    flex-wrap: wrap;
    padding: 0 calc(17*(100vw / 750)) 0 0;
  }

  #st240501keishirahata .sec.sec04 .sec04-ks{
    padding-right: calc(10*(100vw / 750));
  }
  #st240501keishirahata .sec.sec04 span.sec04-dq{
    font-size: calc(58* (100vw / 750));
  }
  #st240501keishirahata .sec.sec04 .sec04-by{
    font-size: calc(52* (100vw / 750));
    font-family: var(--font-en);
    padding: 0 calc(8* (100vw / 750)) calc(16* (100vw / 750)) calc(12* (100vw / 750));
  }
  #st240501keishirahata .sec.sec04 .sec04-ks{
    font-size: calc(74* (100vw / 750));
    padding-left: calc(7*(100vw / 750));
  }
  #st240501keishirahata .sec.sec04 {
    margin: calc(104 * (100vw/750)) 0 0 0;
  }
  #st240501keishirahata .sec.sec04 .sec__ttl ._category{
    font-size: calc(62* (100vw / 750));
  }
  #st240501keishirahata .sec.sec04 .sec__inner {
    width: 100%;
  }

  /*  ============ ▼ "styling/ by kei shirahata”LOOK" ▼ ============  */
  #st240501keishirahata .sec.sec__heading {
    padding: calc(65 * (100vw/750)) 0 calc(85 * (100vw/750)) 0;
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor {
    /* width: calc(480 * (100vw/750)); */
    top: calc(198*(100vw / 750));
    left: calc(15*(100vw / 750));
    font-size: calc(96 * (100vw/750));
    z-index: 1;
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor li {
    box-sizing: border-box;
    display: block;
    width: 100%;
    padding-left: 0;
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor li.sp_only{
    display: block;
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor li:nth-of-type(1) a ._num {
    letter-spacing: -0.03em;
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor li:nth-of-type(1) a ._num::after {
    right: calc(-15 * (100vw/750));
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor li:nth-of-type(1) a ._category {
    letter-spacing: 0.02em;
    padding: 0 0 0 1.6rem;
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor li:nth-of-type(2) {
    padding: calc(49*(100vw / 750)) 0 0 calc(25*(100vw / 750));
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor li:nth-of-type(2) a ._num::after {
    right: calc(-23 * (100vw/750));
  }

  #st240501keishirahata .sec.sec__heading .sec__anchor li:nth-of-type(2) a ._category {
    padding: 0 0 0 calc(21* (100vw / 750));
    letter-spacing: 0.035em;
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor li:nth-of-type(3) {
    padding: calc(26.5*(100vw / 750)) 0 0 calc(63*(100vw / 750));
    letter-spacing: 0.073em;
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor li:nth-of-type(3) a ._num::after {
    right: calc(-17 * (100vw/750));
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor li:nth-of-type(3) a ._category {
    letter-spacing: 0.04em;
    padding: 0 0 0 calc(14 * (100vw/750));
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor a {
    /* font-size: calc(96 * (100vw/750)); */
    font-family: var(--font);
    line-height: 1;
    letter-spacing: 0.04em;
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor a ._num {
    font-size: calc(106 * (100vw/750));
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor a ._num::after {
    display: block;
    content: ",";
    position: absolute;
    font-size: calc(96 * (100vw/750));
    font-family: 游明朝体, Yu Mincho;
    top: auto;
    bottom: calc(6 * (100vw/750));
    right: calc(-10 * (100vw/750));
    z-index: -1;
  }
  #st240501keishirahata .sec.sec__heading .sec__anchor a ._category {
    font-size: calc(106 * (100vw/750));
    font-family: var(--font-en);
  }
  #st240501keishirahata .sec.sec04 .sec__anchor a ._category {
    font-size: calc(62 * (100vw/750));
  }
  #st240501keishirahata .sec.sec__heading .img__wrap {
    width: 100%;
    margin: 0 auto;
  }
  #st240501keishirahata .mixBlendArea{
    width: calc(370*(100vw / 750));
    height: calc(555*(100vw / 750));
    right: 0;
    opacity: 0;
  }

  #st240501keishirahata .mixBlendArea-02{
    pointer-events: none;
    width: calc(370*(100vw / 750));
    height: calc(555*(100vw / 750));
    position: absolute;
    top: calc(565*(100vw / 750));
    left: 0;
    overflow: hidden;
    opacity: 0;
  }
  #st240501keishirahata .mixBlendArea__cont{
    font-size: calc(106* (100vw / 750));
    bottom: calc(-25* (100vw / 750));
    left: calc(-9* (100vw / 750));
  }


  #st240501keishirahata .mixBlendArea__cont.sp_only {
    display: block
  }
  #st240501keishirahata .mixBlendArea__cont.sp_only a{
    -webkit-text-stroke: calc(1.5*(100vw / 750)) #0C2041;
    text-stroke: calc(1.5*(100vw / 750)) #0C2041;
  }
  #st240501keishirahata .mixBlendArea__cont.pc_only{
    display: none;
  }

  #st240501keishirahata .mixBlendArea__cont-01{
    top: calc(178*(100vw / 750));
    left: calc(-12.5*(100vw / 750));
    letter-spacing: 0.02em;
  }
  #st240501keishirahata .mixBlendArea__cont-02{
    top: calc(332.5*(100vw / 750));
    left: calc(-17.2*(100vw / 750));
    letter-spacing: 0.035em;
  }
  #st240501keishirahata .mixBlendArea__cont-03{
    top: calc(-82*(100vw / 750));
    bottom: auto;
    left: calc(92*(100vw / 750));
    letter-spacing: 0.04em;
    pointer-events: none;
  }
  #st240501keishirahata .mixBlendArea__cont-03 a{
    pointer-events: all;
  }
  #st240501keishirahata .sec.sec__heading .content_img {
    width: calc(370 * (100vw/750));
    height: calc(555 * (100vw/750));
  }
  #st240501keishirahata .sec.sec__movie {
    width: 100%;
    margin: calc(120 * (100vw/750)) auto 0;
    padding: calc(65 * (100vw/750)) 0 calc(65 * (100vw/750)) 0;
    background-color: rgba(221, 221, 221, 0.3);
  }
  #st240501keishirahata .sec.sec__movie .movie__wrap {
    width: calc(540 * (100vw/750));
    margin: 0 auto;
  }
  #st240501keishirahata .sec.sec__movie video {
    width: 100%;
    margin: 0 auto;
  }
  #st240501keishirahata .sec.sec__movie #movie-button {
    width: 100%;
  }
  #st240501keishirahata .sec.sec__movie .movie-button {
    width: calc(100 * (100vw/750));
    height: calc(100 * (100vw/750));
  }
  #st240501keishirahata .sec .img__wrap {
    margin: calc(102*(100vw / 750)) 0 0 0;
    width: 100%;
    gap: calc(10 * (100vw/750));
  }
  #st240501keishirahata .sec .item__desc {
    width: calc(585*(100vw / 750));
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
    text-align: left;
    position: relative;
  }
  #st240501keishirahata .sec .item__desc .item__text {
    width: 100%;
    background-color: rgba(221, 221, 221, 0.3);
    box-sizing: border-box;
    padding: calc(55 * (100vw/750)) calc(55 * (100vw/750)) calc(64 * (100vw/750)) calc(60 * (100vw/750));
    position: relative;
  }
  #st240501keishirahata .sec02 .item__desc .item__text{
    padding: calc(55 * (100vw/750)) 0 calc(64 * (100vw/750)) calc(60 * (100vw/750));
  }

  #st240501keishirahata .sec .item__desc .item__text .item__point {
    margin: 0 0 0 0;
    font-size: calc(30 * (100vw/750));
    letter-spacing: 0.05em;
    line-height: 1;
    z-index: 0;
  }
  #st240501keishirahata .sec .item__desc .item__text .item__point::after {
    width: calc(180 * (100vw/750));
    height: calc(28 * (100vw/750));
    background-image: url(../img/poing_bg_sp.png);
    background-size: cover;
    background-repeat: no-repeat;
    top: calc(10 * (100vw/750));
    left: calc(-24 * (100vw/750));
    z-index: -1;
  }

  .item__lead span{
    font-size: calc(24* (100vw / 750));
  }
  #st240501keishirahata .sec .item__desc .item__text .item__lead:nth-of-type(n+2) {
    margin: calc(27 * (100vw/750)) 0 0 0;
  }
  #st240501keishirahata .sec .item__desc .item__text .item__lead,
  #st240501keishirahata .sec .item__desc .item__text .item__lead02{
    font-size: calc(22*(100vw / 750));
    line-height: 2;

  }

  #st240501keishirahata .sec .item__desc .item__img {
    width: 100%;
    position: relative;
  }
  #st240501keishirahata .sec .item__desc .item__img .item__name {
    width: 100%;
    text-align: center;
    font-family: var(--font-en);
    font-size: calc(44 * (100vw/750));
    font-weight: 600;
    position: absolute;
    bottom: calc(32 * (100vw/750));
    left: 0;
    line-height: 1;
    letter-spacing: 0.045em;
    color: #fff;
  }

  #st240501keishirahata .sec.sec02 .sec__ttl{
    margin: 0 auto calc(19*(100vw / 750));
  }

  #st240501keishirahata .sec.sec02  .item__name.sp_only{
    display: block;
  }
  #st240501keishirahata .sec .sec__ttl {
    width: 100%;
    display: block;
    margin: 0 auto calc(16*(100vw / 750));
    padding: 0 0 calc(7.5*(100vw / 750)) 0;
    line-height: 1;
    bottom: 0;
    left: 0;
    transform: translateX(0);
  }
  #st240501keishirahata .sec.sec04 .sec__ttl{
    padding: 0 0 calc(4.5*(100vw / 750)) 0;
    margin-bottom: calc(21*(100vw / 750));
  }

  #st240501keishirahata .sec .sec__ttl::after {
    display: block;
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background-size: calc(10 * (100vw/750)) 1px;
    background-image: linear-gradient(to right, #000000 calc(6 * (100vw/750)), transparent calc(4 * (100vw/750)));
    bottom: 0;
  }
  #st240501keishirahata .sec .sec__ttl .title__inner {
    font-size: calc(66 * (100vw/750));
    padding: 0 calc(20 * (100vw/750)) 0 0;
    align-items: baseline;
  }
  #st240501keishirahata .sec .sec__ttl ._num {
    font-size: calc(76 * (100vw/750));
    margin: 0 0 0 0;
  }
  #st240501keishirahata .sec.sec01 .sec__ttl ._category,
  #st240501keishirahata .sec.sec02 .sec__ttl ._category{
    font-size: calc(74 * (100vw/750));
    font-weight: 500;
    letter-spacing: 0.04em;
  }
  #st240501keishirahata .sec.sec01 .sec__ttl ._category{
    letter-spacing: 0.025em;
  }
  #st240501keishirahata .sec.sec02 .sec__ttl ._category {
    letter-spacing: 0.031em;
  }
  #st240501keishirahata .sec.sec02 .item__desc .item__text .item__lead{
    letter-spacing: 0.085em;
  }
  #st240501keishirahata .sec .content_img {
    width: calc(370 * (100vw/750));
    height: calc(555 * (100vw/750));
  }
  #st240501keishirahata .sec .content_img.content_img--01 {
    width: calc(370 * (100vw/750));
    margin: 0 0 0 calc(380 * (100vw/750));
  }
  #st240501keishirahata .sec .content_img .swiper-pagination {
    width: calc(30 * (100vw/750));
    bottom: calc(10 * (100vw/750));
    right: calc(10 * (100vw/750));
  }
  #st240501keishirahata .sec .content_img .swiper-pagination span {
    width: calc(12 * (100vw/750));
    height: calc(12 * (100vw/750));
  }
  #st240501keishirahata .sec .content_img .swiper-pagination span.swiper-pagination-bullet-active {
    width: calc(12 * (100vw/750));
    height: calc(12 * (100vw/750));
    border: 2px solid transparent;
  }
  #st240501keishirahata .sec .item__textArea {
    width: 100%;
    margin: 0 0 0 0;
    letter-spacing: 0.12em;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  #st240501keishirahata .sec .item__textArea .item__lead {
    order: 1;
    margin: calc(55 * (100vw/750)) calc(55 * (100vw/750)) calc(55 * (100vw/750)) calc(55 * (100vw/750));
    text-align: center;
    font-size: calc(22 * (100vw/750));
    letter-spacing: 0.12em;
    line-height: 2;
  }
  #st240501keishirahata .sec .item__textArea .item__credit {
    order: 2;
    margin: calc(40 * (100vw/750)) 0 0 0;
    gap: calc(18 * (100vw/750)) calc(20 * (100vw/750));
    font-size: calc(22 * (100vw/750));
    letter-spacing: 0.12em;
  }
  #st240501keishirahata .sec .item__textArea .item__credit a {
    letter-spacing: 0.05em;
  }
  #st240501keishirahata .sec .item__textArea .item__credit span {
    width: 100%;
  }
  #st240501keishirahata .sec .content_price {
    width: 100%;
    margin-top: calc(40 * (100vw/750));
    font-size: calc(22 * (100vw/750));
    line-height: 1.8181818182;
  }
  #st240501keishirahata .sec .content_price a {
    font-weight: 200;
    display: inline;
  }
  #st240501keishirahata .sec .content_price span {
    font-weight: 200;
  }
  #st240501keishirahata .item__slider .sec__inner {
    max-width: max-content !important;
    width: calc(7400 * (100vw/750)) !important;
    display: flex;
  }
  #st240501keishirahata .item__slider .slide__list {
    display: flex;
    width: calc(1850*(100vw / 750));
    justify-content: space-around;
    flex-wrap: wrap;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 60s;
    animation-name: imgMove_R;
  }
  #st240501keishirahata .item__slider .slide__list li {
    width: calc(370 * (100vw/750));
    padding: 0;
  }
  #st240501keishirahata .all_item_btn {
    width: calc(480 * (100vw/750));
    height: calc(80 * (100vw/750));
    margin: calc(107*(100vw / 750)) auto calc(159*(100vw / 750));
    border: none;
    line-height: 1;
    position: relative;
  }
  #st240501keishirahata .all_item_btn::after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    top: -1rem;
  }
  #st240501keishirahata .all_item_btn a {
    font-size: calc(24 * (100vw/750));
    font-style: normal;
    text-align: center;
    padding: calc(30 * (100vw/750)) calc(34 * (100vw/750)) 0 0;
    line-height: 1;
  }
  #st240501keishirahata .all_item_btn a::after {
    display: block;
    content: "";
    position: absolute;
    height: calc(1.5rem/2 * 1.7320508076);
    width: 1.5rem;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    transform: rotate(90deg);
    right: calc(117 * (100vw/750));
    top: calc(33 * (100vw/750));
    letter-spacing: 0.04em;
  }
  #st240501keishirahata .all_item_btn picture {
    line-height: 1;
  }
  #st240501keishirahata .all_item_btn img {
    line-height: 1;
  }
  #st240501keishirahata .footer_border {
    margin: auto;
    margin-top: 9.8rem;
    border-bottom: 1px solid #000;
  }
  #st240501keishirahata .staff {
    margin: 0;
    padding: calc(38 * (100vw/750)) 0 calc(40 * (100vw/750)) calc(51 * (100vw/750));
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #000;
  }
  #st240501keishirahata .staff .staff__ttl {
    font-size: calc(22 * (100vw/750));
    font-weight: 200;
    margin-bottom: 0rem;
  }
  #st240501keishirahata .staff .staff__ttl .sc01 {
    margin-top: calc(22 * (100vw/750));
    margin-bottom: calc(22 * (100vw/750));
  }
  #st240501keishirahata .staff__credit {
    margin: calc(9 * (100vw/750)) 0 0;
    font-size: calc(22 * (100vw/750));
    line-height: 1.8181818182;
  }
  #st240501keishirahata .sec .item__desc .item__img .item__name.sp_only {
    display: block;
    width: 100%;
    text-align: center;
    font-family: var(--font-en);
    font-size: calc(44*(100vw / 750));
    font-weight: 600;
    position: absolute;
    bottom: calc(22*(100vw / 750));
    left: 0;
    line-height: 1.2;
    letter-spacing: 0.045em;
    color: #fff;
}
}/*# sourceMappingURL=style.css.map */
