*{
	margin: 0;
	padding: 0;
}
body{
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-size: 20px;
	color: #333333;
	min-width:1000px;
}
img{
	border:0;
	vertical-align:top;
}
a{
	text-decoration:underline;
	color: #666666;
} 
a:hover,
a:focus{
	text-decoration:underline;
	color: #666666;
}
ol, ul {
	list-style: none;
}
#header{
    /*fixedで上部固定*/
	position: fixed;
	height: 100px;
	width:100%;
    z-index: 999;/*最前面へ*/
	/*以下はレイアウトのためのCSS*/
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	padding: 10px;
	background: #FFFFFF;
}
h1{
	text-indent: -9999px;
}
h1 a{
	background: url("../images/title.png") no-repeat center left;
	background-size: contain;
	text-indent: -9999px;
	width: 96%;
	line-height: 80px;
	display: block;
}
.heade01{
	width: 30%;
	float: left;
	display: inline;
}
.heade02{
	width: 50%;
	float: left;
	display: inline;
}
.heade03{
	width: 20%;
	float: left;
	display: inline;
	text-align: center;
}
.heade03 img{
	width: 90%;
}


/*　上に上がる動き　*/

#header.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 1;
	transform: translateY(0);
  }
  to {
    opacity: 0;
	transform: translateY(-130px);
  }
}

/*　下に下がる動き　*/

#header.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-130px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}

/* 以下は検証用のレイアウトのための CSS*/

nav ul{
list-style: none;
display: flex;
float: right;
}

nav ul li a{
text-decoration: none;
color: #666;
}
.gnavi__wrap {
    width: 100%;
    margin: 0 auto;
}
.gnavi__lists {
    display: flex;
}
.gnavi__list {
    width: 20%;
    height: 60px;
    background-color: #FFFFFF;
    position: relative;
    transition: all .3s;
	color: #333333;
}
.gnavi__list:hover {
    background-color: #009FDC;
}
.gnavi__list:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
}
.gnavi__list:hover::before {
    background-color: #009FDC;
}
.gnavi__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    font-size:max(1vw,15px);
    letter-spacing: 0.05em;
    font-weight: 300;
    transition: all .3s;
	color: #009FDC;
}
.gnavi__list:hover a {
    color: #fff;
}
.dropdown__lists {
    display: none;/*デフォルトでは非表示の状態にしておく*/
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
}
.gnavi__list:hover .dropdown__lists {
    display: block;/*Gナビメニューにホバーしたら表示*/
}
.dropdown__list {
    background-color: #0085B7;
    height: 60px;
    transition: all .3s;
    position: relative;
}
.dropdown__list:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #3492d1;
    position: absolute;
    top: 0;
    left: 0;
}
.dropdown__list:hover {
    background-color: #006A93;
}
.dropdown__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    position: relative;
}
/*
.dropdown__list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);
}
*/
.dropdown__lists {
    transform: scaleY(0);/*デフォルトでは非表示の状態にしておく*/
    transform-origin: center top;/*変形を適応する基準をtopとする*/
    transition: all .3s;/*表示の変化を0.3秒に指定*/
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
}
.gnavi__list:hover .dropdown__lists {
    transform: scaleY(1);/*Gナビメニューにホバーしたら表示*/
}
#area-1{
	padding: 120px 0 0 0;
}
.topimage{
	width: 100%;
	height: auto;
	float: left;
}
.w1000{
	width: 1000px;
	margin: 0 auto;
	padding: 50px 0 50px 0;
}
.headline{
  position: relative;
}
.headline:after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 5px;
  background: #FFFEC8;
  transition: all 0.5s;
}
.headline.isActive:after{
  width: 100%;
}
.headline2{
  position: relative;
}
.headline2:after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  box-shadow: 0 0 6px 0 #faccbc, 0 0 6px 1px #faccbc inset;/*ふわりとした影*/
  transition: all 0.5s;
}
.headline2.isActive:after{
  width: 100%;
}
.sub02{
	text-align: center;
	color: #DD5380;
	line-height: 70px;
	font-size: 40px;
	margin: 0 0 10px 0;
}
.sub01{
	text-align: center;
	color: #DD5380;
	line-height: 70px;
	font-size: 40px;
	margin: 0 0 50px 0;
}
.sub03{
	text-align: center;
	color: #DD5380;
	line-height: 70px;
	font-size: 35px;
	margin: 0 0 30px 0;
}
.fade01 {
  transition: all 1000ms;
  opacity: 0;
  visibility: hidden;
  transform: translate(0px, 30px);
}
.fadein {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
}
.waku01{
	padding: 0.2em 0.5em;
    margin: 0 0 20px 0;
    color: #565656;
    background:#FFFEE6;
    box-shadow: 0px 0px 0px 10px #FFFEE6;
    border: dashed 2px #ffc3c3;
    border-radius: 8px;
}
.p1{
	line-height: 1.8;
	padding: 40px 40px 40px 40px;
	text-align: center;
}
.p2{
	line-height: 1.8;
	padding: 0 40px 40px 40px;
	text-align: center;
}
.waku02{
	background-color:#fff;/*背景色*/
	box-shadow: 0 0 6px 1px #faccbc, 0 0 6px 1px #faccbc inset;/*ふわりとした影*/
	border-radius: 30px;
	width: 100%;
	float: left;
	display: inline;
	padding: 20px 0 0 0;
	margin: 10px 0 60px 0;
}
.waku02l{
	width: 40%;
	float: left;
}
.waku02l h2{
	text-align: center;
	color: #F8B49C;
	padding: 30px 0 10px 0;
}
.waku02l p{
	text-align: center;
	color: #F8B49C;
}
.waku02r{
	width: 60%;
	float: right;
	background: url("../images/nikukyuu01.png") no-repeat right bottom;
}
.waku02r p{
	padding: 0 40px 20px 20px;
	color: #666666;
}
#area-1,
#area-2,
#area-3,
#area-4{
	width: 100%;
	float: left;
	display: inline;
	clear: both;
}
#area-2{
	background: url("../images/back03.jpg") no-repeat;
	background-size: 100%;
	width: 100%;
/*	background: #FFF9F0;*/
}
.bold{
	font-weight: bold;
}
.pink{
	color: #F8B49C;
}
.pink a{
	color: #F8B49C;
	text-decoration: none;
}
#area-3{
	background: url("../images/back04.png") no-repeat bottom #FFFFFF;
	background-size: 100%;
	width: 100%;
	padding: 0 0 50px 0;
}
.newswaku01{
	background-color:#fff;/*背景色*/
	box-shadow: 0 0 6px 1px #faccbc, 0 0 6px 1px #faccbc inset;/*ふわりとした影*/
	border-radius: 30px;
	width: 100%;
	float: left;
	display: inline;
	padding: 20px 0 0 0;
	margin: 0 0 50px 0;
}
.newswaku02{
	width: 40%;
	float: left;
}
.newswaku02 h2{
	text-align: center;
	color: #F8B49C;
	padding: 30px 0 10px 0;
}
.newswaku02 p{
	text-align: center;
	color: #F8B49C;
}
.newswaku02 a{
	color: #F8B49C;
}
.newswaku03{
	width: 60%;
	float: right;
	height: 165px;
}
.suku-sp{
	display: none;
}
#footer{
	background: url("../images/back05.png") repeat-y;
	background-size: 100%;
	width: 100%;
	float: left;
	display: inline;
}
.ftitle{
	width: 400px;
	padding: 50px 0 60px 0;
}
.w500{
	width: 50%;
	float: left;
	display: inline;
}
address{
	font-style: normal;
	color: #555555;
}
.ftext01{
	font-size: 24px;
	font-weight: bold;
	line-height: 50px;
}
.ftext01 a{
	text-decoration: none;
}
.ftext02{
	font-size: 15px;
	line-height: 1.8;
}
.fs01{
	float: left;
	width: 67px;
	display: block;
}
.yoyaku{
	margin: 0 0 0 20px;
	color: #DD5380;
}
.ftable{
	width:100%;
	border:2px solid #F8B49C;
	border-radius: 8px;
	background: #FDE9E1;
	overflow: hidden;
	margin: 0 0 20px 0;
	box-shadow: 0 0 6px 0 #faccbc, 0 0 0 0 #faccbc inset;/*ふわりとした影*/
}
.ftable td{
	font-size:70%;
	text-align: center;
	margin: 0;
	padding: 0;
}
.ftb01{
	border-right:1px solid #F8B49C;
	border-bottom:1px solid #F8B49C;
}
.ftb02{
	border-bottom:1px solid #F8B49C;
}
.ftb01b{
	border-right:1px solid #F8B49C;
}
.ftb02b{
}
.ftable img{
	width: 55%;
	height: auto;
	margin: 0;
	padding: 5px 0 5px 0;
}
.tw01{
	width: 30%;
	line-height: 30px;
	border-bottom:2px solid #F8B49C;
}
.tw02{
	width: 10%;
	border-bottom:2px solid #F8B49C;
}
.tw03{
	line-height: 40px;
}
.tb01{
	background: #FCD9CD;
	
}
.cardwaku01{
	border:2px solid #F8B49C;
	box-shadow: 0 0 6px 0 #faccbc, 0 0 0 0 #faccbc inset;/*ふわりとした影*/
	border-radius: 8px;
	background: #FFFFFF;
	text-align: center;
	overflow:hidden;
	margin: 0 0 20px 0;
}
.cardwaku02{
	border:2px solid #F8B49C;
	box-shadow: 0 0 6px 0 #faccbc, 0 0 0 0 #faccbc inset;/*ふわりとした影*/
	border-radius: 8px;
	background: #FFFFFF;
	text-align: center;
	overflow:hidden;
	margin: 0 0 80px 0;
}
.cardwaku01 img,
.cardwaku02 img{
	width: 96%;
	padding: 10px 0 10px 0;
}
.cardwaku01 h2,
.cardwaku02 h2{
	font-size: 70%;
	font-weight: normal;
	background: #FCD9CD;
	padding: 5px 0 5px 0;
	border-bottom:2px solid #F8B49C;
}
.gwaku01{
	border:2px solid #F8B49C;
	box-shadow: 0 0 6px 0 #faccbc, 0 0 0 0 #faccbc inset;/*ふわりとした影*/
	border-radius: 8px;
	clear: both;
	width: 100%;
	height: 500px;
	overflow: hidden;
	margin: 0 0 50px 0;
}
.copyright{
	text-align: center;
	font-size: 70%;
	background: #DD5380;
	color: #FFFFFF;
	line-height: 30px;
	width: 100%;
	clear: both;
}
#area-1 h2{
	background: url("../images/back03.jpg") no-repeat center;
	background-size: 100%;
	width: 100%;
	text-align: center;
	padding: 50px 0 50px 0;
	color: #DD5380;
	font-size: 40px;
}
.kj01{
	font-size: 150%;
	font-weight: bold;
}
.kjtext01{
	text-align: center;
	padding: 0 0 40px 0;
}
.satext01{
	padding: 0 40px 40px 40px;
	line-height: 1.8;
}
.salist01{
	margin: 0 0 40px 100px;
}
.salist01 li{
	list-style: none;
	background:url("../images/list01.png") no-repeat left center;
	padding: 0 0 0 35px;
	line-height: 40px;
	margin: 0 0 10px 0;
}
.blue{
	color: #009FDC;
}
#shoukai,
#setsubi,
#koinu,
#ippan{
	padding-top: 160px;
    margin-top:-160px;
}
.back04{
	background: url("../images/back04.png") no-repeat bottom;
	background-size: 100%;
	width: 100%;
/*	background: #FFF9F0;*/
}
.sawaku01{
	padding: 0.2em 0.5em;
    margin: 0 40px 40px 40px;
    color: #565656;
    background:#FFFEE6;
    box-shadow: 0px 0px 0px 10px #FFFEE6;
    border: dashed 2px #99E3FF;
    border-radius: 8px;
	float: left;
	display: inline;
}
.sawaku01 h3{
	color: #009FDC;
	padding: 0 0 0 35px;
	margin: 40px 0 20px 40px;
	background:url("../images/list01.png") no-repeat left center;
}
.sawaku01 p{
	padding: 0 40px 40px 40px;
	line-height: 1.8;
}
.photo01{
	float: right;
	display: inline;
	margin: -60px 40px 40px 20px;
	width: 200px;
	height: 200px;
	border-radius: 200px;
}
.osusume{
	background: #FFFFFF;
	border-radius: 20px;
	padding: 40px;
	margin: 0 0 40px 40px;
	float: left;
	display: inline;
	width: 736px;
	height: 310px;
}
.osusume h4{
	background: url("../images/osusume.png") no-repeat;
	width: 300px;
	line-height: 71px;
	text-align: center;
}
.osusume li{
	margin: 10px 40px 0 40px;
	list-style: none;
	border-bottom: 1px dashed #555555;
	background: url("../images/check.png") no-repeat center left;
	padding: 10px 0 8px 40px;
}
.osusume2{
	background: #EEEEEE;
	border-radius: 20px;
	padding: 40px 40px 60px 40px;
	margin: 0 0 100px 110px;
	float: left;
	display: inline;
	width: 700px;
}
.osusume2 li{
	margin: 10px 40px 0 40px;
	list-style: none;
	border-bottom: 1px dashed #555555;
	background: url("../images/check.png") no-repeat center left;
	padding: 10px 0 8px 40px;
}
.cend{
	margin: 0 0 100px 0;
}
.biwaku01{
	width: 960px;
	float: left;
	display: inline;
	margin: 0 0 40px 70px;
}
.biwaku02{
	width: 395px;
	height: 440px;
	float: left;
	display: inline;
	margin: 0 70px 40px 0;
}
.biwaku03{
	width: 395px;
	height: 350px;
	float: left;
	display: inline;
	margin: 0 70px 40px 0;
}
.box26 {
    position: relative;
    margin: 20px 0 0 0;
    padding: 0 20px 0 20px;
    border: dashed 3px #99E3FF;
    border-radius: 8px;
	box-shadow: 0 0 6px 1px #DFF7FF, 0 0 6px 1px #DFF7FF inset;/*ふわりとした影*/
}
.box26 .box-title {
    position: absolute;
    display: inline-block;
    top: -10px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #009FDC;
    font-weight: bold;
}
.box26 .bitext01{
    margin: 0; 
    padding: 0 0 15px 0;
	line-height: 1.8;
	font-size: 80%;
	height: 90px;
}
.box26 .bitext02{
    margin: 0; 
    padding: 137px 0 95px 0;
	line-height: 1.8;
	font-size: 80%;
	height: 90px;
	text-align: center;
}
.box26 img{
	width: 100%;
	height: auto;
	padding: 30px 0 15px 0;
	border-radius: 8px;
}
.inp01{
	margin: 0 0 15px 0;
}
.redline{
  position: relative;
}
.redline:after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0%;
  height: 3px;
  background: red;
  transition: all 0.5s;
}
.redline.isActive:after{
  width: 100%;
}
.yellowback{
  position: relative;
}
.yellowback:after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 30px;
  background:linear-gradient(transparent 60%, #ff6 60%);
  transition: all 0.5s;
  z-index: -1;
}
.yellowback.isActive {
	font-weight: bold;
}
.yellowback.isActive:after{
  width: 100%;
}
.table01{
	width:800px;
	background:url(../images/form.jpg) left top repeat-y;
	border:1px solid #F8B49C;
	border-top:0;
	margin:0 0 40px 99px;
	clear: both;
}
dl.table01 dt{
	float:left;
	display:inline;
	width:200px;
	padding:20px 0 20px 20px;
	border-top:1px solid #F8B49C;
}
dl.table01 dd{
	margin:0;
	margin-left:200px;
	padding:20px;
	border-top:1px solid #F8B49C;
	border-left:1px dotted #F8B49C;
}
.acwaku01{
	width: 960px;
	float: left;
	display: inline;
	margin: 0 0 40px 70px;
}
.acwaku02{
	width: 395px;
	float: left;
	display: inline;
	margin: 0 70px 0 0;
}
.box27 {
    position: relative;
    margin: 20px 0 0 0;
    padding: 0 20px 0 20px;
    border: dashed 3px #F8B49C;
    border-radius: 8px;
	box-shadow: 0 0 6px 1px #FDE9E1, 0 0 6px 1px #FDE9E1 inset;/*ふわりとした影*/
}
.box27 .box-title {
    position: absolute;
    display: inline-block;
    top: -10px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: #F8B49C;
    font-weight: bold;
}

.box27 img{
	width: 100%;
	height: auto;
	padding: 30px 0 20px 0;
	border-radius: 8px;
}
.gmap{
	border:1px solid #F8B49C;
	width: 800px;
	height: 600px;
	margin: 0 0 100px 99px;
}
.pmap{
	border:1px solid #F8B49C;
	width: 800px;
	height: auto;
	margin: 0 0 100px 99px;
}
.pmap img{
	width: 100%;
	height: auto;
}
.plist{
	margin: 0 0 50px 110px;
}
.plist li{
	list-style: none;
	font-size: 80%;
	line-height: 1.8;
}
.pspace{
	width: 350px;
	float: left;
	display: inline;
	color: #066BB8;
}
.sfwaku01{
	width: 860px;
	float: left;
	display: inline;
	margin: 0 0 0 70px;
}
.sfwaku02{
	float: left;
	display: inline;
	margin: 0 0 50px 0;
}
.sfwaku03{
	padding: 50px 50px 0 50px;
}
.sfwaku03 p{
	padding: 0 0 50px 50px;
	font-size: 80%;
	text-align: right;
}
.yakushoku{
	font-size: 92%;
}
.kspace{
	padding: 0 0 0 3em;
	display: block;
}
.sfwaku02 .box27{
	width: 814px;
}
.name01{
	border-bottom: 1px dashed #F8B49C;
	margin: 0 0 10px 0;
	padding: 0 0 3px 0;
}
.name02{
	padding: 0 0 50px 0;
}
.kyushinbi{
	font-size: 130%;
}
.sfwaku03 .sphoto01{
	border-radius: 8px;
	width: 200px;
	height: auto;
	margin: 0 0 20px 0;
	padding: 0;
}
.kjtable{
	width:858px;
	border:1px solid #CCC;
	border-top:0;
	margin:0 0 100px 70px;
	background: url("../images/kjtable.jpg") repeat-y left;
}
dl.kjtable dt{
	float:left;
	display:inline;
	width:191px;
	padding:20px;
	border-top:1px solid #CCC;
	font-size: 80%;
	font-weight: bold;
}
dl.kjtable dd{
	margin:0;
	margin-left:211px;
	padding:20px;
	border-top:1px solid #CCC;
	border-left:1px dotted #CCC;
	font-size:80%;
}
.sponly{
	display: none;
}
.suku2{
	display: none;
}
.hamburger-menu{
	display: none;
}