@charset "utf-8";
*{
	margin: 0;
	padding: 0;
	scroll-padding-top: 100px;
	scroll-behavior: smooth;
}
body{
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-size: 18px;
	color: #333333;
	min-width:1000px;
}
img{
	border:0;
	vertical-align:top;
}
a{
	text-decoration:underline;
	color: #333333;
} 
a:hover,
a:focus{
	text-decoration:none;
	color: #333333;
}
ol, ul {
	list-style: none;
}
#header{
    /*fixedで上部固定*/
	position: fixed;
	width:100%;
    z-index: 999;/*最前面へ*/
	/*以下はレイアウトのためのCSS*/
	display: flex;
	align-items: center;
	text-align: center;
	border-bottom: 1px solid #FFFFFF;
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, .5);
	background: url("../images/white01.png");
}
.heade01{
	width: 30%;
	float: left;
	display: inline;
	z-index: 999;
	padding: 0 0 0 20px;
}
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: 60px;
	display: block;
}
.heade02{
	width: 40%;
	float: left;
	display: inline;
	z-index: 999;
	text-align: center;
}

.global_menu { /* メニュー全体のスタイル */
  width: 100%;
  position: relative;
  color: #333; /* 文字色 */
  text-align: left;
}
 
.global_menu li {
  display: inline-block;
  font-size: 15px;
}
 
.global_menu a { /* 各項目のスタイル */
  display: block;
  padding: 10px 10px;
  text-decoration: none;
}
 
.menu:hover > a {
  background: #DA7092;
  color: #FFFFFF;
}
 
.child_menu > li > a { /* 子項目のスタイル */
  font-size: 1em;
  color: #FFFFFF;
}
.child_menu > li > a:hover { /* 子項目のスタイル（ホバー時） */
  background: #CE4471;
}
 
.child_menu { /* 下層メニューのスタイル */
  width: 80%;
  position: absolute;
  top: 100%; /* 親項目の直下に配置 */
  left: 0;
  padding: 15px;
  color: #FFFFFF; /* 文字色 */
  background: #DA7092; /* 背景色 */
  visibility: hidden; /* 下層メニューを非表示 */
}
 
.menu:hover .child_menu { /* 下層メニューのスタイル（親項目ホバー時） */
  visibility: visible; /* 下層メニューを表示 */
}
 
.child_menu a:hover {
  color: #fff;
}

.heade03{
	float: right;
    text-align: left;
    padding: 0 0 10px 0;
    display: block;
    margin-left: auto;
}
.heade03 img{
	width: auto;
	height: 20px;
}
address{
	font-style: normal;
	font-size: 12px;
	padding: 10px 10px 5px 0;
}
.htext01{
	font-size: 12px;
	text-align: left;
	clear: both;
}
.tel{
	float: left;
	display: inline;
}
.header03-1{
	width: 100%;
	height: 20px;
	clear: both;
	margin: 0 0 5px 0;
}
.yoyaku{
	float: left;
	display: inline;
	margin: 0 0 0 10px;
	font-size: 12px;
}
.yoyaku a{
	text-decoration: none;
	line-height: 20px;
	background: #00BAC7;
	color: #FFFFFF;
	padding: 0 16px 0 16px;
	display: block;
}
.heade04{
  width:150px;
  position:fixed;
  top:120px;
  right:10px;
}
.heade04 img{
	width: 100%;
}
.apokuru01{
	margin: 0 0 15px 0;
}
/*　上に上がる動き　*/

#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);
  }
}


.slide {
  position: relative;
  width: 100%;
  height: 100%;
min-height: 100vh;
  overflow: hidden;
  text-align: center;
}

.slide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 32s linear infinite;
}

.slide-image:nth-child(1) {
  background-image: url("../images/slide01.jpg");
  animation-delay: -2s;
}

.slide-image:nth-child(2) {
  background-image: url("../images/slide02.jpg");
  animation-delay: 6s;
}

.slide-image:nth-child(3) {
  background-image: url("../images/slide03.jpg");
  animation-delay: 14s;
}

.slide-image:nth-child(4) {
  background-image: url("../images/slide04.jpg");
  animation-delay: 22s;
}

@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
#area-1 h2{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size:2.6vw;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.container {
  position: relative;
  width: 24px;
  height: 24px;
}

.chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

.text {
  display: block;
  margin-top: 75px;
  margin-left: -30px;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .25;
  animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
  to {
    opacity: 1;
  }
}
.container {
  position: absolute;
  bottom: 0;
  color: #FFFFFF;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0 0 80px 0;
}

.chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #000;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

.text {
  display: block;
  margin-top: 75px;
  margin-left: -30px;
  font-size: 12px;
  color: #000000;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .25;
  animation: pulse 2s linear alternate infinite;
}

@keyframes pulse {
  to {
    opacity: 1;
  }
}
.back01{
	width: 100%;
	clear: both;
	padding: 100px 0 100px 0;
	float: left;
	background: #F9E8ED;
}
.back02{
	width: 100%;
	clear: both;
	padding: 100px 0 100px 0;
	float: left;
	background: url("../images/back02.png");
}
.back03-2,
.back03{
	width: 100%;
	clear: both;
	padding: 100px 0 100px 0;
	float: left;
}
.back04{
	width: 100%;
	clear: both;
	padding: 100px 0 100px 0;
	float: left;
	background: #EEEEEE;
}
.w1000{
	width: 1000px;
	margin: 0 auto;
}
.sub01{
	text-align: center;
	padding: 50px 0 50px 0;
	color: #639EF1;
	font-size: 40px;
}
.sub02{
	text-align: center;
	padding: 50px 0 50px 0;
	color: #FFFFFF;
	font-size: 40px;
}
.news{
	margin:0 40px 40px 40px;
}
dl.news dt{
	float:left;
	display:inline;
	width:150px;
	padding:0 0 20px 10px;
	color: #FFFFFF;
}
dl.news dd{
	margin:0;
	margin-left:150px;
	padding:0 10px 20px 10px;
	color: #FFFFFF;
}
.text01{
	line-height: 1.8;
	padding: 0 40px 40px 40px;
}
.box01{
    padding: 0.2em 0.5em;
    margin: 2em 0;
    background: #d6ebff;
    box-shadow: 0px 0px 0px 10px #d6ebff;
    border: dashed 2px white;
	float: left;
	width: 100%;
}
.box01-2{
    padding: 0.2em 0.5em;
    margin: 2em 0;
    background: #d6ebff;
    box-shadow: 0px 0px 0px 10px #d6ebff;
    border: dashed 2px white;
	float: left;
	width: 100%;
}
.box02{
    padding: 0.2em 0.5em;
    margin: 2em 0;
    background: #DB7093;
    box-shadow: 0px 0px 0px 10px #DB7093;
    border: dashed 2px white;
	float: left;
	width: 100%;
}
/*
.box01{
	border: 2px solid #64A3F6;	
	position: relative;
	z-index: 0;
}
.box01:before {
	border-top:2px solid #DB7093;
	border-left:2px solid #DB7093;
	content: '';
	display: block;
	position: absolute;
	top: -2px;
	left: -2px;
	width: 200px;
	height: 200px;
	z-index: 1;
}
*/
.fade01 {
  transition: all 1000ms;
  opacity: 0;
  visibility: hidden;
  transform: translate(0px, 30px);
}
.fadein {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
}
.lwaku{
	width: 480px;
	float: left;
	display: inline;
}
.rwaku{
	width: 480px;
	float: right;
	display: inline;
}
.flwaku01{
	width: 480px;
	height: 100px;
	float: left;
	display: inline;
}
.frwaku01{
	width: 480px;
	height: 100px;
	float: right;
	display: inline;
}
.flwaku02{
	width: 480px;
	height: 220px;
	float: left;
	display: inline;
}
.frwaku02{
	width: 480px;
	height: 220px;
	float: right;
	display: inline;
}
.ftable{
	width:100%;
	border-bottom: 1px solid #64A3F6;
	margin: 0 0 10px 0;
}
.ftable td{
	text-align: center;
	line-height: 40px;
}
.tb01{
	background: #64A3F6;
	color: #FFFFFF;
}
.tw01{
	width: 30%;
}
.tw02{
	width: 10%;
}
.maru1{
	font-size: 23px;
}
.maru2{
	font-size: 21px;
}
.ftb01{
	font-size: 14px;
}
.wray{
	background: #FFFFFF;
}
.gray{
	background: #EEEEEE;
}
.snote{
	font-size: 14px;
	margin: 0 0 20px 0;
}
.yoyakusite{
	text-align: center;
}
.yoyakusite a{
	width: 100%;
	line-height: 100px;
	display: block;
	background: #CCCCCC;
	color: #FFFFFF;
	text-decoration: none;
}
.gmap{
	width: 480px;
	height: 380px;
	border: 1px solid #EEEEEE;
	margin: 0 0 20px 0;
}
.ftitle{
	width: 80%;
	height: auto;
	padding: 0 0 20px 0;
}
.yubin{
	font-size: 80%;
}
.ftel{
	margin: 0 0 20px 0;
	font-weight: bold;
}
.ftel a{
	text-decoration: none;
}
#footer{
	width: 100%;
	clear: both;
	background: #64A3F6;
}
.copyright{
	text-align: center;
	line-height: 30px;
	font-size: 12px;
	color: #FFFFFF;
}
.chirashi{
	width: 200px;
	height: auto;
	margin: 0 0 0 18px;
}
.photo01{
	width: 280px;
	height: auto;
	float: right;
	display: inline;
	margin: 0 40px 40px 40px;
	border-radius: 15px;
}
.table01{
	width:890px;
	border-bottom:1px dashed #FFFFFF;
	margin:0 0 60px 40px;
}
dl.table01 dt{
	float:left;
	display:inline;
	width:181px;
	padding:10px 10px 10px 10px;
	border-top:1px dashed #FFFFFF;
	font-size: 90%;
	line-height: 1.8;
}
dl.table01 dd{
	margin:0;
	margin-left:201px;
	padding:10px;
	border-top:1px dashed #FFFFFF;
	font-size: 90%;
	line-height: 1.8;
}
.fsub01{
	background: #64A3F6;
	color: #FFFFFF;
	font-size: 15px;
	font-weight: normal;
	text-align: center;
	line-height: 40px;
	margin: 0 0 0 0;
}
.ftext01{
	background: #FFFFFF;
	padding: 24px 20px 24px 20px;
	font-size: 90%;
	border-bottom: 1px solid #64A3F6;
}
.bold{
	font-weight: bold;
}
.amap img{
	width: 100%;
	height: auto;
	margin: 0 0 10px 0;
}
.sponly{
	display: none;
}
#menu-btn-check{
	display: none;
}
.underline{
	text-decoration: underline;
}
#area-0 h2{
	padding: 100px 0 0 0;
}
.w50l{
	width: 300px;
	float: left;
	display: inline;
	margin: 0 0 30px 100px;
}
.w50r{
	width: 450px;
	float: right;
	display: inline;
	margin: 0 100px 30px 0;
}
.w100{
	clear: both;
	margin: 0 100px 100px 100px;
}
.photo02{
	width: 100%;
	height: auto;
	border-radius: 15px;
}
.name01{
	color: #639EF1;
	margin: 0 0 40px 0;
	font-size: 30px;
	clear: both;
}
.name02{
	font-size: 70%;
}
.stext01{
	line-height: 1.8;
	margin: 0 0 10px 0;
}
.stext02{
	line-height: 1.8;
	margin: 0 0 20px 0;
}
.stext02end{
	line-height: 1.8;
	margin: 0 0 100px 0;
}
.ssub01{
	border-left: 5px solid #639EF1;
	padding: 10px 0 10px 10px;
	margin: 0 0 20px 0;
	color: #639EF1;
	background: #FFFFFF;
}
.table02{
	width:100%;
	margin: 0 0 40px 0;
}
dl.table02 dt{
	float:left;
	display:inline;
	width:150px;
	padding:10px 0 10px 10px;
	font-size: 90%;
	line-height: 1.8;
}
dl.table02 dd{
	margin:0;
	margin-left:150px;
	padding:10px;
	font-size: 90%;
	line-height: 1.8;
}
.sphoto01{
	width: 380px;
	float: left;
	display: inline;
	margin: 0 0 20px 0;
}
.sphoto02{
	width: 380px;
	float: right;
	display: inline;
	margin: 0 0 20px 0;
}
.sphoto01end{
	width: 380px;
	float: left;
	display: inline;
	margin: 0 0 100px 0;
}
.sphoto02end{
	width: 380px;
	float: right;
	display: inline;
	margin: 0 0 100px 0;
}
.sphoto01e{
	width: 380px;
	float: left;
	display: inline;
	margin: 0 0 60px 0;
}
.sphoto02e{
	width: 380px;
	float: right;
	display: inline;
	margin: 0 0 60px 0;
}
.sphoto01end img,
.sphoto02end img,
.sphoto02e img,
.sphoto01e img,
.sphoto02 img,
.sphoto01 img{
	width: 100%;
	height: auto;
}
.sponly{
	display: none;
}
.hktext01{
	margin: 0 100px 20px 100px;
	line-height: 1.8;
}
.yback{
	background: #FFFFBF;
}
.hkwaku01{
	width: 380px;
	float: left;
	display: inline;
	margin: 0 0 40px 100px;
}
.hkwaku02 img,
.hkwaku01 img{
	width: 100%;
	height: auto;
}
.hkwaku02{
	width: 380px;
	float: right;
	display: inline;
	margin: 0 100px 40px 0;
}
.hktext02{
	line-height: 1.8;
	margin: 0 0 40px 0;
}
.nagare01{
	width: 100%;
	float: left;
	display: inline;
	margin: 0 0 20px 0;
	clear: both;
}
.nagare03 h3,
.nagare02 h3{
	color: #639EF1;
	padding: 20px 0 20px 0;
}
.nagare02{
	width: 150px;
	float: left;
	text-align: center;
}
.nagare03{
	width: 600px;
	float: right;
	border-left: 1px solid #639EF1;
	padding: 0 0 20px 20px;
}
.sankaku{
	font-size: 30px;
	color: #639EF1;
	text-align: center;
	clear: both;
}
.nagare03 p{
	line-height: 1.8;
}

.hend{
	margin:  0 0 100px 0;
}
.acsub01{
	color: #639EF1;
	text-align: center;
	margin: 0 100px 50px 100px;
	border-bottom: 1px solid #639EF1;
	border-top: 1px solid #639EF1;
	line-height: 50px;
	clear: both;
}
.acwaku01{
	width: 360px;
	height: 650px;
	float: left;
	display: inline;
	margin: 0 0 0 100px;
}
.acwaku02{
	width: 360px;
	height: 650px;
	float: right;
	display: inline;
	margin: 0 100px 0 0;
}
.acwaku01 img,
.acwaku02 img{
	width: 100%;
	height: auto;
}
.actext01{
	font-size: 90%;
	padding: 10px 0 0 0;
}
.gwaku01{
	border: 2px solid #FFFFFF;
	margin: 0 100px 50px 100px;
}
.gsub01{
	background: #639EF1;
	color: #FFFFFF;
	padding: 10px 20px;
	margin: 20px;
}
.gtext01{
	margin: 0 20px 20px 20px;
	line-height: 1.8;
	font-size: 90%;
}
.note01{
	border: 1px dashed #639EF1;
	margin: 0 20px 20px 20px;
	background: #FFFFFF;
}
.gtext02{
	padding: 10px;
	line-height: 1.8;
	font-size: 90%;
}
.gsub02{
	border-left: 5px solid #639EF1;
	padding: 10px 0 10px 10px;
	margin: 0 20px 20px 20px;
	color: #639EF1;
	background: #FFFFFF;
}
.gsub04{
	border-top: 1px solid #639EF1;
	border-bottom: 2px solid #639EF1;
	margin: 0 20px 20px 20px;
	color: #639EF1;
	padding: 5px 0 5px 0;
}
.price{
	margin:0 20px 20px 20px;
}
dl.price dt{
	border-bottom: 1px dashed #639EF1;
	font-size: 90%;
	font-weight: bold;
	padding: 0 0 5px 0;
}
dl.price dd{
	font-size: 90%;
	text-align: right;
	margin: 0 0 20px 0;
	padding: 5px 0 0 0;
}
.ijo{
	border: 1px solid #F39800;
	margin: 0 20px 20px 20px;
	background: #FFFFFF;
	padding: 0 0 40px 0;
}
.gsub03{
	color: #F39800;
	border-bottom: 1px solid #F39800;
	margin: 20px 40px 20px 40px;
	padding: 0 0 10px 0;
}
.ijo li{
	margin: 10px 40px 0 40px;
	list-style: none;
	border-bottom: 1px dashed #CCCCCC;
	background: url("../images/check.png") no-repeat center left;
	padding: 10px 0 8px 40px;
}
.note{
	margin: 0 20px 20px 20px;
	font-size: 90%;
	line-height: 1.8;
	text-indent: -1.5em;
	padding-left: 1.5em;
}
.gwaku03{
	border: 1px solid #639EF1;
	background: #FFFFFF;
	width: 50%;
	height: auto;
	margin: 0 0 20px 20px;
	text-align: center;
}
.gwaku03 img{
	width: 90%;
	padding: 20px 0 20px 0;
}
.gtext03{
	background: #639EF1;
	color: #FFFFFF;
	text-align: center;
	padding: 5px 0 5px 0;
}
.red{
	color: red;
}
.gp{
	clear: both;
	width: 756px;
	height: 246px;
	margin: 0 20px 20px 20px;
}
.gp1{
	width: 368px;
	height: 246px;
	float: left;
	display: inline;
}
.gp2{
	width: 368px;
	height: 246px;
	float: right;
	display: inline;
}
.gp3-0{
	clear: both;
	width: 756px;
	margin: 0 20px 20px 20px;
	float: left;
	display: inline;
}
.gp3-1{
	width: 368px;
	float: left;
	display: inline;
	background: #000;
	text-align: center;
	padding: 20px 0 0 0;
}
.gp3-2{
	width: 368px;
	float: right;
	display: inline;
	background: #000;
	text-align: center;
	padding: 20px 0 0 0;
}
.gp3-1 img,
.gp3-2 img{
	width: auto;
	height: 300px;
}
.gpt01{
	color: #FFFFFF;
	font-size: 80%;
	padding: 10px;
}
.gp4{
	padding: 0 0 20px 0;
}
.gname{
	font-size: 90%;
	margin: 0 0 20px 450px;
}
.gwaku04{
	margin: 0 20px 20px 20px;
	height: 110px;
	clear: both;
	border: 1px solid #FEC581;
	background: #FFFFFF;
}
.gwaku04d{
	margin: 0 20px 20px 20px;
	height: 110px;
	clear: both;
	border: 1px solid #76CFBE;
	background: #FFFFFF;
}
.gwaku05{
	width: 150px;
	float: left;
	display: inline;
}
.gwaku06{
	width: 600px;
	float: left;
	display: inline;
}
.gsub05{
	background: #FEC581;
	line-height: 110px;
	text-align: center;
	font-size: 20px;
	color: #FFFFFF;
}
.gsub05d{
	background: #76CFBE;
	line-height: 110px;
	text-align: center;
	font-size: 20px;
	color: #FFFFFF;
}
.glist01 li{
	margin: 20px 0 0 35px;
	float: left;
	list-style:disc;
	font-size: 90%;
}
.gsub07{
	font-size: 100%;
	margin: 0 20px 10px 20px;
	border: 1px dashed #CCCCCC;
	padding: 10px;
	background: #FFFFFF;
}
.o_green{
	color:#BFFFBF;
}
.o_blue{
	color: #BFEFFF;
}
.o_red{
	color: #FFCFBF;
}
.o_big{
	font-size: 120%;
}
.nagare04{
	clear: both;
}
.nagare03 .monshin01{
	width: 300px;
	margin: 0 0 10px 0;
}