@charset "UTF-8";
/* CSS Document */

body{
	background-repeat: no-repeat;
		background-size: cover;
	background-position: center;
	
}

header{
	height: 70px;/*高さ指定*/
	width:100%;/*横幅指定*/
    margin: 0;
    padding: 0;
    background: #FFB52B;
    color: #FFB52B; 
}


#koritu{
    color: #FFFFFF;
    margin-left: 2px;
    line-height: 1em;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-style: normal;
    font-size: small;
}
#zokei{
    color: #FFFFFF;
    font-family: "Lucida Console", Monaco, monospace;
    font-size: x-large;
    font-weight: bolder;
}
#eng{
    color: #FFFFFF;
    font-family: "MS Serif", "New York", serif;
    font-variant: normal;
    font-weight: normal;
}


.tytle{
	width: 100%;
	text-align: center;
    margin-top: 0px;
	margin-left: auto;
	margin-right: auto;	
}
/* アニメーションスタートの遅延時間を決めるCSS*/

.delay-time02{
animation-delay: 0.5s;
}


/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box{
	opacity: 0;
}

/*==================================================
動き自体の指定：今回は「ふわっ」
===================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:1.5s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

#suimoamaimo{
    position:relative;
    
 
}
#zukan{
    position: relative;
	margin-top: -500px;

}
.sita{
	margin-top: 100px;
	margin-bottom: 100px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;	
}
.hajime{
    color: #FFB52B;
    font-weight: bold;
    text-align: center;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    vertical-align: baseline;
    word-spacing: 10px;
    letter-spacing: 1px;
    white-space: pre; 
	margin-bottom: 50px;
	
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#FFB52B;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center;
}

#g-nav li a{
	color: #FFFFFF;
	text-decoration: none;
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #FFFFFF;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
/*==================================================
スライダーのための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:#FFCF8F;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#FFB52B;/*ドットボタンの現在地表示の色*/
}
#hase{
    white-space: pre;
    color: #FFB52B;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-variant: normal;
   text-align: center;
    font-weight: bolder;
    font-size: normal;
	
}
#hasep{
    width: 50%;
    height: auto;

}
h1{
    color: #FFB52B;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-weight: bolder;
    font-size: xx-large;
    text-align: center;	
	margin-top: 80px;
	margin-bottom: 50px;
 text-stroke: 1px #FFFFFF;
  
	
}

#tagu{
    white-space: pre;
    color: #FFB52B;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-variant: normal;
   text-align: center;
    font-weight: bolder;
    font-size: normal;
}
#tagup{
    width: 50%;
    height: auto;
}
#ikeda{
    white-space: pre;
    color: #FFB52B;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-variant: normal;
    text-align: center;
    font-weight: bolder;
    font-size: normal;
}
#ikep{
    width:50%;
    height: auto;
}

#take{
    white-space: pre;
    color: #FFB52B;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-variant: normal;
 text-align: center;
    font-weight: bolder;
    font-size: normal;
}
#takep{
    width: 50%;
    height: auto;
}
#sasa{
    white-space: pre;
    color: #FFB52B;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-variant: normal;
 text-align: center;
    font-weight: bolder;
    font-size: normal;
}
#sasap{
    width: 50%;
    height: auto;
}
#sato{
    white-space: pre;
    color: #FFB52B;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-variant: normal;
	 text-align: center;
    font-weight: bolder;
    font-size: normal;
}
#satop{
    width: 50%;
    height: auto;

	
	
}

.sen{
	margin:0 auto; 
	display: flex;
	flex-wrap: wrap;
	
	
}
footer{
	height: 70px;/*高さ指定*/
	width:100%;/*横幅指定*/
    margin: 0;
    padding: 0;
    background: #FFB52B;
    color: #FFB52B; 
}

