@charset "UTF-8";
/* CSS Document */
*{
	margin: 0px;
	padding: 0px;
}

body{
	background-repeat: no-repeat;
		background-size: cover;
	background-position: center;
	
}
header{
	height: 70px;/*高さ指定*/
	width:100%;/*横幅指定*/
    margin: 0;
    padding: 0;
    background: #FFB52B;
    color: #FFB52B; 
}


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

#hase{
	text-align: center;
    margin-top: 0px;
	margin-left: 10px;
	margin-right: auto;	
	
}
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
/* 下から */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:3s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}
#hasep{
	width: 80%;
	height: auto;
	text-align: center;
    margin-top: -30px;
	margin-left: 35px;
	
}
footer{
	height: 70px;/*高さ指定*/
	width:100%;/*横幅指定*/
    margin: 0;
    padding: 0;
    background: #FFB52B;
    color: #FFB52B; 
}
.pro{
    color: #FFB52B;
    font-weight: bold;
    text-align: left;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    vertical-align: baseline;
    word-spacing: 5px;
    letter-spacing: 1px;
    white-space: pre;
    margin-top: 20px;
    font-size: xx-large;
	margin-left: 20px;
	
}
#intr{
    color: #FFB52B;
    text-align: left;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    vertical-align: baseline;
    margin-left: 20px;
    letter-spacing: 1px;
    white-space: pre;
    font-size: small;
	
}
/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
	border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size: 1rem;
    font-size: large;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
    color: #FFB52B;
    font-weight: bold;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #FFB52B;
    
}
.title::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
	transform: rotate(45deg);
}

.title.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
	margin:0 3% 3% 3%;
    padding: 3%;
}

#home{color: #FFB52B;
    font-weight: bold;
    text-align: center;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    vertical-align: baseline;
    word-spacing: 5px;
    letter-spacing: 1px;
    margin-top: 100px;
	margin-bottom: 40px;
    font-size: large;
	}
	
p{
    color: #FFB52B;
    text-align: left;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    vertical-align: baseline;
    margin-left: 20px;
    letter-spacing: 1px;
    white-space: pre;
    font-size: medium;
	
}
#kome{
	width: 330px;
	height: auto;
	margin-left: -5px;
	
}
#sha{
	width: 330px;
	height: auto;
	margin-left: -2.5px;
	
}
#mikaku{
	width: 330px;
	height: auto;
	margin-left: -5px;
	
}

#yu{
	width: 330px;
	height: auto;
	margin-left: -5px;
	
}
#pa{
	width: 330px;
	height: auto;
	margin-left: -5px;
}
/*========= ローディング画面のためのCSS ===============*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #FFB52B;
	z-index: 9999999;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
    display: block;
    content: "";
    position:fixed;
	z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleX(0);
    background-color: #FFB52B;/*伸びる背景色の設定*/
	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
}

@keyframes PageAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

/*画面遷移の後現れるコンテンツ設定*/
#container{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}
