@charset "utf-8";

.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
    margin:0 auto;
}

.slider img {
    width:60vw;
    height:auto;
}

@media screen and (min-width: 481px) {
  .slider img {
    width:30vw;/*PCレスポンシブ*/
    height:auto;
  }
}

.slider .slick-slide {
  transform: scale(0.8);/*左右の画像のサイズを80%に*/
  transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center{
  transform: scale(1);/*中央の画像のサイズだけ等倍に*/
  opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
  margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
  margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}


/*========= レイアウト ===========*/

html ,body {
    width: 100%;
    height: 100%;
    background-color: #fbfbfb;
    margin: 0px;
    padding: 0px;
}

.top{
    /* background-color: gray; */
    /* display: flex; */
    position: relative;
    width: 100%;
    height: 100vh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
} 

.top_title{
    font-family:'Yu Mincho',
          serif;
    font-size: 200%;
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline;
    transform: translate(-50%, -50%);
    writing-mode: vertical-rl;
}

@media screen and (min-width: 481px) {
  .top_title{
    font-family:'Yu Mincho',
          serif;
    font-size: 280%; /* PCレスポンシブ */
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline;
    transform: translate(-50%, -50%);
    writing-mode: vertical-rl;
  }
}

.video{
  width: 85%;
  aspect-ratio: 16 / 9;
  margin: auto auto 40% auto;
}

@media screen and (min-width: 481px) {
  .video{
    width: 65%;/* PCレスポンシブ */
    aspect-ratio: 16 / 9;
    margin: auto auto 20% auto;
  }
}

.video iframe {
  width: 100%;
  height: 100%;
}

.sliderparent{
    position: relative;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 50px 0 100px;
    overflow: hidden;
}

.live{
    display: flex;
    width: 70%;
    height: auto;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin: 0 auto;
}

@media screen and (min-width: 481px) {
  .live{
    display: flex;
    width: 40%;
    height: auto;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    margin: 0 auto;
  }
}

.live img{
    width: 100%;
    align-items: center;
    border-radius: 3%;
    margin: 10% auto;
}

.contact{
    display: flex;
    width: auto;
    height: 400px;
    align-items: center;
    justify-content: center;
    flex-direction: row;
  }
  
  .contact a{
    margin: 2%;
  }

ul{
  margin:0;
  padding: 0;
  list-style: none;
}

a{
  color: #333;
}

a:hover,
a:active{
  text-decoration: none;
}

.sa {
  opacity: 0;
  transition: all .5s ease;
}

.sa.show {
  opacity: 1;
  transform: none;
}

.sa--lr {
  transform: translate(-100px, 0);
}

.sa--rl {
  transform: translate(100px, 0);
}

.sa--up {
  transform: translate(0, 100px);
}

.sa--down {
  transform: translate(0, -100px);
}

.sa--scaleUp {
  transform: scale(.5);
}

.sa--scaleDown {
  transform: scale(1.5);
}

.sa--rotateL {
  transform: rotate(180deg);
}

.sa--rotateR {
  transform: rotate(-180deg);
}