@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;900&display=swap');
*{
    margin: 0;
    padding: 0;
}
/* トップ画像 */
.img img{
    width: 100vw;
    height: 500px;
    object-fit: cover;
}
.img{
    position: relative;
}
/* guide */
.guide{
    background-color: #F7F5F5;
    padding: 50px;
}
.guideText{
    max-width: 1000px;
    margin: 0 auto;
}
.guideText h1{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 40px;
    font-weight:900;
    text-align: center;
}
.guideSmallText{
    text-align: center;
    margin: 30px;
}
.guideSmallText span{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight:300;
}
@media screen and (max-width: 768px){
    .img img{
        height: 250px;
    }
    .guide {
        padding: 20px;
    }
    .guideText h1{
        font-size: 30px;
    }
}
/* button */
.button {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight:300;
    display:flex;
    flex-wrap: wrap;
    max-width: 1120px;
    margin: 0 auto;
    letter-spacing:2px;
}
.button-wrap {
    width: 50%;
}
.liveButton{
    border:1px solid #000000;
    text-align: center;
    max-width: 500px;
    line-height: 100px;
    margin: 30px 20px;
}

@media screen and (max-width: 768px){
    .button{
        width: 100%;
        margin: 0;
        display: block;
    }
    .button-wrap{
        width: 100%;
    }
    .liveButton{
        max-width: none;
        margin: 30px 0;
    }
}

/* ボタンアニメーション */
.btn{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    /*アニメーションの指定*/
    transition: ease .2s;
}
/*ボタン内spanの形状*/
.btn span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
}
.btn:hover span{
	color:#000000;
}
/*== 背景が流れる（左から右） */
.bgleft:before {
 	content: '';
    /*絶対配置で位置を指定*/
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
    /*色や形状*/
 	background:#DCD5CF;/*背景色*/
 	width: 100%;
	height: 100%;
    /*アニメーション*/
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
}
/*hoverした際の形状*/
.bgleft:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}
/* スクロール時 */
/* 画面外にいる状態 */
.fadein {
  opacity : 0;
  transform : translate(0, 50px);
  transition : all 500ms;
}

/* 画面内に入った状態 */
.fadein.scrollin {
  opacity : 1;
  transform : translate(0, 0);
}
