@charset "utf-8";


body{background-color: black;

}
html {
  scroll-behavior: smooth; /* スムーズスクロールを適用 */
}
body.no-scroll {
  overflow: hidden;
}
.topbtn,body,a,#hamburger,.Form-Btn,.prev,.next,#indicator .list{
  cursor: none !important;
}

/*独自のマウスカーソルを作成*/
.cursor {
  position: fixed;
  top: -5px;
  left: -5px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #808080;
  z-index: 100000;
  transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
  transform: translate(0, 0);
  pointer-events: none;
  
}

/*aタグにホバーした時に見た目変化*/
.cursor.cursor--hover{
  top: -20px;
  left: -20px;
  width: 50px;
  height: 50px;
  background: rgba(253, 254, 0, 0.8);
}
iframe:hover + #cursor {
  
 
  display: none; /* iframeホバー時にカーソルを非表示に */
  }

.start {
  background-color: #ffffff; /* 背景を真っ白に設定 */
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1000000;/* ローディング画面を最前面に配置 */
  display: flex;
  justify-content: center;
  align-items: center; /* ロゴを中央に配置 */
}

.start img {
  width: 150px; /* ロゴのサイズを調整 */
  height: auto;
  opacity: 0; /* 初期状態で透明 */
  transition: opacity 1s ease-in-out; /* フェードインのアニメーション */
}



.top{position: relative;
z-index: 3;
width: 100%;
display: block; 
margin: 0;
}

.dollrogo{position: absolute;
z-index: 4;
top: 30px;
left: 30px;
width: 70px;
object-fit: cover;}

.menu-btn{
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
z-index: 10;
cursor: pointer;
width: 32px;
height: 32px;
background-color: #fff;
margin: 30px;

}

.menu-btn span {
  /*3本の線を作る*/
  transition: all .3s;
  position: absolute;
  height: 2px;
  background-color: #333;
  width:80%;
  z-index: 10;
}
.menu-btn span:nth-of-type(1) {
  /*上の線の位置*/
  top: 4px;
}
.menu-btn span:nth-of-type(2) {
  /*真ん中の線の位置*/
  top: 12px;
}
.menu-btn span:nth-of-type(3) {
  /*下の線の位置*/
  top: 20px;
}
.menu-btn.open span:nth-of-type(1) {
  /*openのとき、上の線を右斜めにする*/
  top: 10px;
  transform: translateY(6px) rotate(-33deg);
}
.menu-btn.open span:nth-of-type(2) {
  /*真ん中の線を消す*/
  opacity: 0;
}
.menu-btn.open span:nth-of-type(3) {
  /*下の線を左斜めにする*/
  top: 22px;
  transform: translateY(-6px) rotate(33deg);
}

.menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #333;
  transform: translateX(100vw);
  transition: all 0.3s linear;
  z-index: 5;
}

.menu.is-active {
  transform: translateX(0);
}
.menu__item{
  width: 100%;
  height: auto;
  padding: .5em 1em;
  text-align: center;
  box-sizing: border-box;
  
}



.menutap{width: 100px;
object-fit: cover;
}

.menutap:hover {
  background-color: #808080; 
 
}


.menutapa{width:120px;
  object-fit: cover;}

  .menutapa:hover {
    background-color: #808080; 
   
  }

  .menutapb{width:170px;
    object-fit: cover;}

    .menutapb:hover {
      background-color: #808080; 
     
    }

.menutapsns{width: 50px;
object-fit: cover;
transition: transform 0.4s; 
padding-left: 10px;
padding-top: 10px;
}


.menutapsns:hover {
  transform: scale(1.1); 
}


.menutapsnsa{width: 65px;
  object-fit: cover;
  transition: transform 0.4s; 
  padding-bottom: 10px;
  }
  
  
  .menutapsnsa:hover {
    transform: scale(1.1); 
  }
/* バウンド */
@keyframes bounce {
  0% { transform: translateX(100vw); }
  40% { transform: translateX(-10px); }
  60% { transform: translateX(5px); }
  80% { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}

.menu.is-active {
  animation: bounce 0.5s ease;
  transform: translateX(0); /* 確定した位置 */
}
.navisns{display: flex;
  padding-top: 50px;
}

.erishimizu{position: absolute;
z-index: 4;
width: 400px;
object-fit: cover;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
}

.topa{object-position: center;
}

.topimage{width: 100%;
object-fit: cover;
height: 100vh;
}
.topimage::-webkit-media-controls {
  display: none !important;
}

/* Firefoxのメディアコントロールを非表示 */
.topimage::-moz-media-controls {
  display: none !important;
}

/* Edge/IEのメディアコントロールを非表示 */
.topimage::-ms-media-controls {
  display: none !important;
}

/* 操作を無効化 */
.topimage {
  pointer-events: none; /* マウス操作を無効化 */
  user-select: none;    /* 選択操作を無効化 */
}


/* iOSでの再生ボタンの隠し方 */
.topimage::-webkit-media-controls-start-playback-button {
  display: none !important;
}

/* その他の全体的な操作無効化 */
.topimage {
  pointer-events: none;
  user-select: none;
}

.sp{    display: none;}

/* 画像をフェードイン */



  .content {
    opacity: 0;
    transition-duration: 2s;
    transition-property: opacity, transform;
position: relative;

  }
  .is-scrollIn {
    opacity: 1;
    transform: translate(0, 0);}

.js-fadeIn {
 
  transform: translateY(30px); 
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;

}

.movieart::-webkit-media-controls {
  display: none !important; /* Webkitブラウザ（Chrome, Safariなど）のコントロールを非表示 */
}

.movieart::-moz-media-controls {
  display: none !important; /* Firefoxのコントロールを非表示 */
}

.movieart::-ms-media-controls {
  display: none !important; /* Edge/IEのコントロールを非表示 */
}

.movieart {
  pointer-events: none; /* マウス操作を無効化 */
  user-select: none;    /* 選択操作を無効化 */
}

.movieart{width: 100%;
  display: block;
  margin-top: 50px;
height: auto;
height: 85vh;
    object-fit: cover;
    padding-bottom: 50px;
  }


.booka{color: #fff;
  font-family: 'TA-Kobe', sans-serif;
background-color: rgba(205, 128, 30, 0.6);
font-size: 26px;
height: 100px;
position: absolute;
width: 100%;
top: 465px;
display: flex;
align-items: center;
flex-direction: row-reverse;
padding-right: 20px;
}
.bookb{color: #fff;
  font-family: 'TA-Kobe', sans-serif;
background-color: rgba(205, 128, 30, 0.6);
font-size: 26px;
height: 100px;
position: absolute;
width: 100%;
top: 465px;
display: flex;
align-items: center;
padding-left: 20px;
}

.booka, .bookb {
  opacity: 0;
  transition: opacity 0.3s ease-out 0.3s; 
}

.fadeIn-delay {
  opacity: 1;
}


/* ハイブリットスクロール */
.container {
  padding: 5rem;

}

.scroll_container {
  height: 300vh;
}

.horizontal_scroll {
  position: absolute;
  top: 0;
  height: 100%;
  width: 300vw;
  will-change: transform;
  display: flex;
  justify-content: space-between;
  width: 300vw;
  transition: transform 1.5s ease-out;
  

}

.content{
  height: 100%;
  width: 100vw;
 
}

.sticky_wrap {
  overflow: hidden;
  position: sticky;
  top: 0;
  height: 100vh;
}



.left {
  margin-top: 5vh;
  margin-left: 5vw;
}

.right {
  text-align: right;
  margin-top: 85vh;
  margin-right: 5vw;
}



/* 下段 */



.background::before{content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:200vh;
  background-repeat:no-repeat;
  background-position:50% 100%;
  background-image:url(image/sister.png);
  background-size:cover;}

  /* ニュース */
  *,body,ul {
    margin: 0;
    padding: 0;
  }

  .newsa{display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
position: relative;
  }
  li {
    list-style: none;
  }
  /* ↓ スライドの外枠 */
  .slide-wrapper {
    width: 65%;
    height: 680px;
    position: relative;
    overflow: hidden; /* はみ出したスライドを隠す */
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 100px;
    font-family:"Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  }
  /*  ↓ スライド（コンテンツ） */
  .slide { /*スライド全体 */
    width: 300%;
    height: 100%;
    display: flex;
    transition: all 0.3s;
    color: #fff;
    padding-bottom: 50px;
  }
  .slide div { /* スライド */
    width: 33.33%;
    height: 100%;
    font-size: 16px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .slide1 { /* スライドさせるために必要なクラス */
    transform: translateX(0);
  }
  .slide2 { /* スライドさせるために必要なクラス */
    transform: translateX(-33.33%);
  }
  .slide3 { /* スライドさせるために必要なクラス */
    transform: translateX(-66.66%);
  }

  /* ↓ 左右のボタン */
  .next {
    position: absolute;
    width: 15px;
    height: 15px;
    right: 10px;
    bottom: 50%;
    z-index: 0;
    cursor: pointer;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    -webkit-transform: rotate(45deg) translateY(50%);
    transform: rotate(45deg) translateY(50%);
  }
  .prev {
    position: absolute;
    width: 15px;
    height: 15px;
    left: 25px;
    bottom: 50%;
    z-index:0;
    cursor: pointer;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    -webkit-transform: rotate(-135deg) translateY(-50%);
    transform: rotate(-135deg) translateY(-50%);
  }
  /* ↓ インジケーター */
  .indicator {
    width: 100%;
    position: absolute;
    bottom: 20px;
    display: flex;
    column-gap: 18px;
    z-index: 0;
    justify-content: center;
    align-items: center;
  }
  .indicator li {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    list-style: none;
    background-color: #fff;
    border: 2px #fff solid;
    cursor: pointer;
  }
  .indicator li:first-of-type {
    background-color: #fff;
  }

  .news{display: flex;
    flex-direction: column;
  }
 
  .lineup{
height: 300px;
  object-fit: cover;
margin-bottom: 20px;}

  .newsbtn:hover{

    opacity: 0.5; /* 半透明 */
}

.fwa{position: relative;
display: flex;
justify-content: center;}

.dolle{width: 300px;
object-fit: cover;}

.bbc{position: absolute;
  top: 100px;
left: 300px;
width: 150px;
object-fit: cover;}

.bba{position: absolute;
  top: 0px;
  left: 450px;
  width: 52px;
  object-fit: cover;}

.bbb{position: absolute;
  top: 100px;
  right: 372px;
  width: 74px;
  object-fit: cover;}
  
  .sha {
    display: inline-block; /* アニメーションのためにブロック要素化 */
  }
  
  .dolle {
    animation: sway 2s infinite ease-in-out; /* アニメーション名と継続時間を設定 */
  }
  
  /* ゆらゆら揺れるアニメーションの定義 */
  @keyframes sway {
    0% {
      transform: translateX(0); /* 初期位置 */
    }
    25% {
      transform: translateX(-10px) rotate(-2deg); /* 左に少し揺れる */
    }
    50% {
      transform: translateX(0) rotate(0); /* 中央に戻る */
    }
    75% {
      transform: translateX(10px) rotate(2deg); /* 右に少し揺れる */
    }
    100% {
      transform: translateX(0) rotate(0); /* 元の位置に戻る */
    }
  }
 

/* 下二つ */
.na{display: flex;
margin-top: 50px;
justify-content: center;
margin-bottom: 30px;
}

/* TOPPHOTO */
.topphoto{display: flex;
    flex-direction: column;
    align-items: center;
align-items: flex-end;}

.photoa{width: 200px;
object-fit: cover;
margin-bottom: 20px;}

.topimage{transition: opacity 0.3s ease;}

.topimg:hover{
    opacity:0.5;
    transition:0.3s;
  }

.photob{width: 200px;
object-fit: cover;
margin-top: 10px;
margin-bottom: 20px;
animation: fadeIn linear both;
animation-range: entry 10% cover 40%;

}

.photob:hover {
  opacity: 0.5; /* 半透明 */
}

@keyframes fadeIn {
  from {
    opacity: 0;
    clip-path: inset(10% 10% 10% 10%);
  }

  to {
    opacity: 1;
    clip-path: inset(0% 0% 0% 0%);
  }
}


.viewmore {
  color: #fff;
  background-color: #808080;
  padding: 10px;
  margin-top: 50px;
  font-size: 13px;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-family:"Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.viewmore:hover {
  background-color: #fff; 
  color: #333; 
}


/* HOME */
.HOME{display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    display: flex;
    flex-direction: column;}

.box{width: 200px;
object-fit: cover;}

.boxes-wrapper{
  display: flex;
  justify-content: center;
 
  margin-top: 100px;
}
.scroll-in{

  opacity: 0;
}
.displayed{
  animation: fadeUp 1s forwards;
}
@keyframes fadeUp{
  0%{opacity:0; transform: translateY(0);}
100%{opacity:1; transform: translateY(-50px);}
}

.dolla{width: 300px;
object-fit: cover;
margin-top: 30px;
}

@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  50% { transform: translateX(5px); }
  75% { transform: translateX(-5px); }
  100% { transform: translateX(0); }
}

.shake-on-scroll {
  animation: none; /* 初期状態でアニメーションを無効化 */
}

.shake-active {
  animation: shake 0.5s ease-in-out; /* アニメーションを0.5秒で実行 */
}

.name{font-size: 30px;
    font-family:"Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
color: #fff;
margin-top: 30px;}

.introduction{font-size: 20px;
font-family: "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
color: #fff;
margin-top: 50px;}

.career{font-size: 15px;
font-family: "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
color: #fff;
margin-top: 50px;
}

.kobito{width: 200px;
object-fit: cover;
margin-top: 50px;}

/* フッター */

.footerback {
  width: 100%;
  height: 50vh; /* 画面の高さの半分 */
  object-fit: cover; /* 画像を要素にフィットさせる */
  position: absolute; /* 絶対配置 */
  top: 0;
  left: 0;
}
.footer {
  position: relative;
  width: 100%;
  min-height: 50vh; /* 画面の高さの半分 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end; /* コンテンツを下端に揃える */
}

.middle{position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
      flex-direction: column;
      align-items: center;
    gap: 10px;
  z-index: 1;}
.lastnavi{
display: flex;

}

.navi{color: #fff;
    font-size: 21px;
    text-decoration: none;
    list-style: none;
    font-family: "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
   margin: 10px;
   
  }
  .navi:hover {
    background-color: #808080; 
  }
  
    .sns{    display: flex;
      gap: 10px;
      margin-top: 10px;
}

    .SNSicon{width: 50px;
object-fit: cover;
transition: transform 0.4s; 
margin: 10px;
padding-left: 10px;
padding-top: 5px;
 }

 .SNSicon:hover {
  transform: scale(1.1); 
}

.SNSicona{width: 55px;
  object-fit: cover;
  transition: transform 0.4s; 
  margin: 10px;
   }
  
   .SNSicona:hover {
    transform: scale(1.1); 
  }
.copy{
color: #fff;
font-size: 15px;

}
.dollc, .dolld {
  width: 250px;
  object-fit: cover;
  position: absolute;
  top: 0%; /* 初期位置を画面外の下に設定 */
  z-index: 1;
  opacity: 0; /* 最初は非表示 */
  transition: opacity 1s ease-in-out;
}

/* dollc (左側) */
.dollc {
  left: 30px; /* 固定位置 */
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

/* dolld (右側) */
.dolld {
  right: 30px; /* 固定位置 */
  transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

   /* キーフレームアニメーション */
   @keyframes jumpUp {
    0% {
      transform: translateY(50px); /* 下に動き出す */
      opacity: 0.5;
    }
    30% {
      transform: translateY(-30px); /* 大きく跳ねる */
    }
    50% {
      transform: translateY(-15px); /* 少し下がる */
    }
    70% {
      transform: translateY(-25px); /* 再度跳ねる */
    }
    100% {
      transform: translateY(0); /* 元の位置に戻る */
      opacity: 1;
    }}

 /* ビューポートに入ったときに適用されるクラス */
 .animate-dollc {
  animation: jumpUp 1s forwards; /* 下から跳ねるように上がる */
}

.animate-dolld {
  animation: jumpUp 1s forwards; /* 下から跳ねるように上がる */
}

.topbtn {
  width: 100px;
  object-fit: cover;
  position: absolute;
  top: 88px;
  right: 200px;
  transition: transform 0.4s;
  z-index: 2;
}
.topbtn:hover {
  transform: scale(1.1); 
}

#a {
  cursor: pointer;
}




/*ワークページ */


.topback{
  width: 100%;
  height: 50vh; /* 画面の高さの半分 */
  object-fit: cover; /* 画像を要素にフィットさせる */
  position: absolute; /* 絶対配置 */
  top: 0;
  left: 0;
}
.decoration{
  position: relative;
  width: 100%;
  min-height: 50vh; /* 画面の高さの半分 */
  display: flex;
  flex-direction: column;
  align-items: center;

}


/* smallb のアニメーション */
.smallb {
  position: absolute;
  top: 1px;
  right: -100px; /* 初期位置（右の外側） */
  animation: slide-in-right-bounce 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

/* smallc のアニメーション */
.smallc {
  position: absolute;
  top: -100px; /* 初期位置（上の外側） */
  left: 1px;
  animation: slide-in-down-bounce 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

/* アニメーション定義: smallb */
@keyframes slide-in-right-bounce {
  0% {
    transform: translateX(100px); /* 初期位置：右の外側 */
    opacity: 0; /* 不透明度0 */
  }
  60% {
    transform: translateX(-90px); /* 右から少し突き出す */
    opacity: 1; /* 不透明度1 */
  }
  80% {
    transform: translateX(-80px); /* 少し戻る */
  }
  100% {
    transform: translateX(-100px); /* 最終位置 */
  }
}

/* アニメーション定義: smallc */
@keyframes slide-in-down-bounce {
  0% {
    transform: translateY(-100px); /* 初期位置：上の外側 */
    opacity: 0; /* 不透明度0 */
  }
  60% {
    transform: translateY(80px); /* 下に少し突き出す */
    opacity: 1; /* 不透明度1 */
  }
  80% {
    transform: translateY(60px); /* 少し戻る */
  }
  100% {
    transform: translateY(80px); /* 最終位置：100px下げる */
  }

}

.work{padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
      align-items: center;}
.workna{display: flex;
  flex-direction: column;
  justify-items: center;
  margin-bottom: 20px;
  margin-top: 50px;
  align-items: center;
  color: #fff;
  gap: 30px;
}

.year{display: flex;
gap: 20px;
margin-bottom: 60px;
font-family: "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;}
.years{background-color: #808080;
color: #fff;
padding: 10px;}
.years:hover{background-color: #fff;
color: #808080;}

.le{display: flex;
  align-items: center;
gap: 30px;}
.ri{display: flex;
  align-items: center;
gap: 30px;}

.le img, .ri img {
 
  height: auto;
}

.le p, .ri p {
  max-width: 400px; 
  text-align: left; 
}

.workphoto{width: 300px;
object-fit: cover;}

.pilot{color: #fff;}
.pilot:hover{color:#808080 ;}
span{    font-family:"Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;}

/* フォトページ */


.photo{display: flex;
  flex-direction: column;
  align-items: center;
padding-top: 100px;}

  .photona{display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;}
  .photoart{width: 200px;
    object-fit: cover;}



    .photoh img:hover{
      opacity:0.5;
      transition:0.3s;
    }

.lightbox {
  position: relative;
  display: inline-block;
}

.lightbox .caption {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  display: none;
}

.lightbox:hover .caption {
  display: block; 
}


/* ムービーページ */
.movie{padding-top: 100px;
padding-bottom: 100px;
display: flex;
flex-direction: column;
    align-items: center;
}
.moviena{display: grid;
  grid-template-columns: 1fr 1fr;
;
align-items: end;
  margin-bottom: 20px;
  margin-top: 50px;

  color: #fff;
gap: 50px;
justify-items: start}

.youtubeart{width: 500px;
object-fit: cover;
}

.youtube{background-color: #808080;
color: #fff;
padding: 10px;
margin-top: 10px;}

.youtube:hover{background-color: #fff; 
  color: #333; }

.font{font-family: "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;}
  /* コンタクトページ */

  .contact{color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
padding-top: 100px;
padding-bottom: 100px;
font-family: "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}
  .Form {
    color: #fff;
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
    margin-bottom: 50px;
  
  }
  .Form-Item {
    border-top: 1px solid #ddd;
    padding-top: 24px;
    padding-bottom: 24px;
    width: 100%;
    display: flex;
    align-items: center;
  
  }
  .Form-Item:nth-child(5) {
    border-bottom: 1px solid #ddd;
  }
  .Form-Item-Label {
    width: 100%;
    max-width: 248px;
    letter-spacing: 0.05em;
    font-weight: bold;
    font-size: 18px;
  }

  .Form-Item-Label.isMsg {
    margin-top: 8px;
    margin-bottom: auto;
  }
  
  .Form-Item-Label-Required {
    border-radius: 6px;
    margin-right: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 48px;
    display: inline-block;
    text-align: center;
    background: red;
    color: #fff;
    font-size: 14px;
  }
  
  .Form-Item-Input {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    height: 48px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
    font-size: 18px;

  }
  .Form-Item-Textarea {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-left: 40px;
    padding-left: 1em;
    padding-right: 1em;
    height: 216px;
    flex: 1;
    width: 100%;
    max-width: 410px;
    background: #eaedf2;
    font-size: 18px;
  }

  .Form-Btn {
    border-radius: 6px;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    width: 280px;
    display: block;
    letter-spacing: 0.05em;
    background: #808080;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
  }

  .Form-Btn:hover{
      background-color: #fff; 
      color: #333; 
  }




  @media screen and (max-width: 1260px){
    .dollrogo{width: 50px;}
    .erishimizu{width: 300px;}
    .middle{top: 75%;
    gap: 8px;}
    .navi{font-size: 16px;}
    .copy {
      font-size: 12px;
  }
  .dollc{width: 205px;}
  .dolld{width: 205px;}
.background::before{  height:160vh;}


.bbc{    
  left: 164px;}
  
  .bba{    left: 305px;
    }
  
  .bbb{    right: 229px;}
    
  
/* ムービーページレスポンシブ */
.youtube{width: 400px;}
.moviena{    grid-template-columns: 1fr;}
  }
.displayed{text-align: center;}
.moviena{    justify-items: center;}



  @media screen and (max-width: 1000px) {
    body{cursor: none;}
.dollrogo{width: 50px;}

.erishimizu{width: 240px;}
.background::before{  height:115vh;}



.lineup{
  height: 250px;
    object-fit: cover;}
.bbc{

  left: 40px;}
  
  .bba{ left: 130px;
    }
  
  .bbb{ right: 97px;}
      /* 本文レスポンシブ */

.res{display: grid;
  grid-template-columns:1fr 1fr;
  justify-items: center;
  gap: 30px;}
  .photob {
    width: 230px;
}

    .introduction {
      font-size: 18px;}
      .career {
        font-size: 14px;}
/* フッターレスポンシブ */
    .na{    flex-direction: column-reverse;
    }
    .topphoto {
      flex-direction: column;
      align-items: center;
  }
  .middle{
    gap: 0px;}
    .navi {
      font-size: 13px;
      margin: 8px;
  }

  .SNSicon {
    width: 30px;
}
.SNSicona {
  width: 35px;
}
  
  .dollc{width: 150px;
    top: 85px;}
  .dolld{width: 150px;
    top: 80px;}
  .topbtn{width: 80px;}
  .copy{font-size: 10px}

  .topbtn {
    width: 70px;
    top: 78px;
    right: 126px;}
 /* ワークページレスポンシブ */
.workphoto{width: 235px;}
.workphoto p{width: 260px;}
  /* フォトページレスポンシブ */
    .smallb {
        width: 325px;
        top: 80px;
    }
  .smallc{        width: 350px;}
  .photona{grid-template-columns: 1fr 1fr 1fr; }

}

  @media screen and (max-width: 700px){
   
      #cursor {
        display: none;
      }

    .dollrogo {
      top: 18px;
      width: 50px;
  }
  .erishimizu {width: 200px;}
.movieart{margin-top: 180px;
  height: 50vh;}
.booka{font-size: 18px;
  height: 75px;
  top: 404px;}
.bookb{font-size: 18px;
  height: 75px;
  top: 404px;}

  .slide-wrapper {
    height: 500px;
    width: 90%;
  }
  .lineup{
    height: 200px;
    
      object-fit: cover;}
      .dolle{width: 200px;}
      .slide div{font-size: 13px;
      margin-left: 15px;
    margin-right: 15px;
  text-align: left;}
  .bbc{
    left: -80px;
    top: 30px;
    }
    
    .bba{    left: 56px;
 
      }
    
    .bbb{      right: -8px;
   }
  /* 本文レスポンシブ */
  .photob {
    width: 180px;
}
    .name {
      font-size: 25px;}
    .introduction {
      font-size: 13px;}
    .career {
      font-size: 11px;}
/* フッターレスポンシブ */
.navi{font-size: 11px;}
    .SNSicon{width: 30px;}
    .SNSicona{width: 33px;}
    .copy{font-size: 10px;}
    .dollc{width: 95px;
      top: 150px;}
    .dolld{width: 95px;
      top: 150px;}

    .topbtn {
      width: 50px;
    top: 133px;
      right: 94px;}

      /* ワークページレスポンシブ*/
      .smallb {
        width: 205px;
        top: 110px
    }
  .smallc{         width: 275px;
    }
      .workphoto {
        width: 230px;}

        .year {
          flex-wrap: wrap;
          margin: 58px;
          justify-content: center;
      }
    .le{font-size: 13px;
      flex-direction: column;
    margin-bottom: 50px;}
    .ri{font-size: 13px;
      flex-direction: column-reverse;
    margin-bottom: 50px;}

  .le p, .ri p {
   width: 300px;
}  
  /* フォトページレスポンシブ */
  .photona{grid-template-columns: 1fr 1fr; }
/* ムービーページレスポンシブ */
.youtubeart{width: 400px;}

  /* コンタクトページレスポンシブ */
.Form {
    margin-top: 40px;
  }
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
}
.Form-Item-Textarea {
  margin-top: 18px;
  margin-left: 0;
  height: 200px;
  flex: inherit;
  font-size: 15px;
}
 .Form-Btn {
      margin-top: 24px;
      padding-top: 8px;
      padding-bottom: 8px;
      width: 160px;
      font-size: 16px;
    }

    .contact{font-size: 13px;}
}


  @media screen and (max-width: 480px){

    .pc{display:none;}
    .sp{  display: block;}
.movieart{margin-top: 230px;
  height: 32vh;}
    .booka{display: none;
      font-size: 15px;
      height: 44px;
      top: 149px;}
    .bookb{display: none;
      font-size: 15px;
      height: 50px;
      top: 495px;}

     
      .lineup{
        height: 150px;
          object-fit: cover;}
          .slide-wrapper{margin-bottom: 50px;}

     .change{display: flex;
      flex-direction: column-reverse;
    }
    .dolle{width: 150px;
    margin-top: 100px;}
    .bbc{top: 70px;
      }
      .bba{   top: 40px
        }
      .bbb{ top: 100px;
     }
    /* 本文 */
  .na{margin-top: 0px;}
    .photob {
      width: 125px;
  }
  .photob {
    margin-top: -38px;
    margin-bottom: 20px;
}
.viewmore{border-radius: 10px;}
    .dolla{width: 200px;}

    .introduction {
      margin: 10px;
}
.career {

  margin: 10px;
}
    /* フッターレスポンシブ */
    .middle {
      top: 70%;
  }
  .lastnavi{    margin-bottom: 10px;}
    .navi{font-size: 10px;
      margin: 2px}
    .sns{margin-top: -5px;}
    .SNSicon{width: 25px;
    margin: 3px;}
    .SNSicona{width: 25px;
      margin: 3px;}
    .copy{font-size: 7px;}
    .dollc{width: 72px;
      top: 200px;
      left: -4px;}
    .dolld {
      width: 72px;
      top: 200px;
      right: 4px;
  }

  .topbtn {
    width: 50px;
    top: 157px;
    right: 55px;}
          /* ワークページレスポンシブ */
          .smallb {
            width: 190px;
        }
        .smallc {
          width: 260px;  
      
      }
.years{    border-radius: 10px;}
      .year {
    
        margin: 28px;
        
    }
   .le{ 
      font-size: 11px;}
  .ri{
    font-size: 11px;}
      /* フォトページレスポンシブ */
      .photoart {
        width: 150px;
  
    }

  /* ムービーページレスポンシブ */
  .youtube{width: 340px;
    border-radius: 10px;
  }
    .moviena p{font-size: 13px;}  
   
    .youtubeart{width: 300px;}

  /* コンタクトページレスポンシブ */
.contact{font-size: 12px;}
}
   