@charset "utf-8";
html{
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;

  }
  
header{
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
}

main{
    background-color: hsl(200, 20%, 97%);
}

.header{
    padding: 10px 24px;
    background-color: hsl(200, 20%, 97%);
}

p{
    font-size: 14px;
    font-family: 'Kiwi Maru', serif;
}

ul{
    list-style: none;
    display: flex;
    display: flex;
    justify-content: center;
    gap: 36px;
    font-size: 20px;

}

li{
    padding: 10px;
    color: hsl(191, 100%, 57%);
}

li:hover{
    color: #1dbcc7;
}

a{
    text-decoration: none;
}
section{
    text-align: center;
}

#top{
    height: 100vh;
    background-image: url(../images/saito2.png) ;
    background-size: cover;
}

.flex{
    display: flex;
    justify-content: center;
}

.contents-view{
    margin: 0px;
    padding: 40px;
}

.contents-view img{
    width: 200px;
    padding-bottom: 10px;
}

.contents{
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}

.contents p{
    text-align: center;
}


.fontred{
    color: red;
}

h2{
    color: #24d7ff;
    position: relative;
    padding: 0.5rem 0 1rem;
    margin-bottom: 0.5rem;
    background-image: linear-gradient(135deg, #24d7ff 10%, #24d7ff 100%);
    background-repeat: no-repeat;
    background-size: 1rem 0.2rem;
    background-position: bottom;
}

.size{
    font-size: 24px;
}

.flexbox {
    flex-wrap: wrap;
    display: flex;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.space{
    padding-bottom: 10px;
    font-size: 15px;
}

.bg-cell{
    flex: 1;
    padding: 10px;
}

@media ( min-width : 1500px ){
    .flexbox {
      display: -webkit-flex;
      display: flex;
    }
    .main {
      margin: 0 10px 0 0;
    }
  }

  .scrollbox{
    overflow-y:scroll;
    max-block-size: 11rem;
  }

::-webkit-scrollbar{
    width: 10px;
 }
 ::-webkit-scrollbar-track{
    background-color: #e4e4e4;
 }
 ::-webkit-scrollbar-thumb{
    background-color: #24d7ff;
 }



.about{
    padding-bottom: 100px;
}

.mari{
    padding-top: 40px;
}

footer{
    position: sticky;
    width: 100%;
    top: 100%;
    background-color: #000;
    padding-top: 70px;
    padding-bottom: 70px;
}

footer p{
    font-size: 10px;
    color: #fff;
    text-align: center;
}

.wf-nicomoji{
    font-family: "Nico Moji";
}



/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
    margin:0 auto;
}

.slider img {
    width:60vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    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;/*ドットボタンの現在地表示の色*/
}

/*== 少し出ていた線が伸びる */

.btnlinestretches2{
    /*線の基点とするためrelativeを指定*/
	position:relative;
    /*ボタンの形状*/  
	color:#333;
    padding: 10px 30px;
	display:inline-block;
    text-decoration: none;
    outline: none;
}

/*線の設定*/
.btnlinestretches2::before,
.btnlinestretches2::after {
	content:'';
    /*絶対配置で線の位置を決める*/
	position:absolute;
    /*事前に出現させる線の形状*/
	border:solid #333;
	width:10px;
	height:10px;
    /*アニメーションの指定*/
	transition:all 0.3s ease-in-out;
}

.btnlinestretches2::before{
    /*事前に出現させる線の位置*/
	top:0;
	left:0;
    /*事前に出現させる線の形状*/
	border-width:2px 0 0 2px;
}

.btnlinestretches2::after{
    /*事前に出現させる線の位置*/
	bottom:0;
	right:0;
    /*事前に出現させる線の形状*/
	border-width:0 2px 2px 0;
}

/*hoverした際の線の形状*/
.btnlinestretches2:hover::before,
.btnlinestretches2:hover::after{
	width:calc(100% - 2px);
	height:calc(100% - 2px);
	border-color:#666
}