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

/*--作業用*/
.loading {display: ;}
/*--------------------------------------------------------------------------ページ全体を包括*/
#wrapper {
width: 100%;
margin: 0 auto;
overflow: hidden;/* 作業用 */
}

.fixed{
	position:fixed;
	top: 0;
	left: 0;
}

a:hover img{opacity:1.00;filter:alpha(opacity=100);-ms-filter: "alpha( opacity=100 )";}

.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1.5s;
  background-color: #fafaf5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150000;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #fafaf5;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

.loading img {
	width: 400px;
	height: 400px;
}

body {
  animation: disableScroll .1s linear 1.0s both;
}

@media screen and (max-width:767px){
.loading img {
	width: 250px;
	height: 250px;
}
}
h1,h2,h3,h4,h5,h6 { font-weight: normal;}
/*--------------------------------------------------------------------------ヘッダー*/

header {
	width: 100%;
	height: auto;
	text-align: center;
	margin: 0 auto;
	background-color:none;
	position: fixed;
	z-index:1001;
	transition: .5s;
}
.head {
	width: 100%;
	height: 350px;
	text-align: left;
	margin: 0 auto;
	padding: 0;
	line-height: 0;
	transition: .5s;
}
h1 {
	width: 262px;
	height: 70px;
	padding: 0;
	border: 0;
	margin-top: 20px;
	margin-left: 20px;
	margin-right: 0;
	margin-bottom: 0;
	position: absolute;
	z-index: 10000;
	transition: 0.6s;
	font-size: 0;
	line-height: 0;
	background-image: url(../web/object/hlogo01.png);
	font-size: 0;
	line-height: 0;
	z-index: 10001;
}

/*　スクロール時のヘッダー　*/
header .head.scroll-nav {
	height: 0px;
}
header h1.scroll-nav{
	width: 262px;
	height: 70px;
	background-image: url(../web/object/hlogo02.png);
	margin-top: 20px;
	margin-left: 20px;
}

@media screen and (max-width:767px){
header {
	width: 100%;
	text-align: center;
	margin: 0 auto;
	top:0 !important;
	left:0 !important;
}
.head {
	width: 100%;
	min-width: 320px;
	height: 70px;
	text-align: left;
	margin: 0 auto;
}
h1 {
	width: 187px;
	height: 50px;
	text-align: left;
	border: 0;
	margin-top: 10px;
	margin-left: 10px;
	margin-bottom: 0;
	position: relative;
	float: left;
	background-image: url(../web/object/hlogo02.png);
	background-size: contain;
}
header .head.scroll-nav {
	height: 70px;
}
header h1.scroll-nav{
	width: 187px;
	height: 50px;
	background-image: url(../web/object/hlogo02.png);
	background-size: contain;
	margin-top: 10px;
	margin-left: 10px;
}
header.scroll-nav{
	background-color:#FFF;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
}
}

@media screen and (max-width:767px){

}

/*ハンバーガーメニュー*/

#HMmenu {
	position: fixed;
	width: 60px;
	height: 60px;
    top: 30px;
    right: 40px;
    z-index: 100000;
}

input[type="checkbox"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.hamburger {
  display: block;
  width: 60px;
  height: 60px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 100000;
  border-radius: 30px;
  background-color: #f9a7be;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  position: absolute;
  display: block;
  content: "";
  width: 50%;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  transition: all 0.5s;
}
.hamburger span::before {
  width: 100%;
  top: -8px;
}
.hamburger span::after {
	width: 100%;
  bottom: -8px;
}
input[type="checkbox"]:checked + .hamburger span {
  background-color: transparent;
}
input[type="checkbox"]:checked + .hamburger span::before {
  top: 0;
  transform: rotate(45deg);
}
input[type="checkbox"]:checked + .hamburger span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.nav {
  position: fixed;
  width: 20%;
  height: 100vh;
  top: 0px;
  right: -125%;
  background-color: rgba(249,167,190,0.98);
  color: #fff;
  padding: 130px 0;
  transition: all 0.5s;
  z-index: 99999;
}
.nav__item a {
  display: block;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  padding: 15px 0px 15px 0px;
  text-transform: uppercase;
  color: #FFF;
  transition: 0.4s;
}
.nav__item a:hover {
  color: #fff;
  background-color: rgba(255,255,255,0.2);
}
input[type="checkbox"]:checked ~ .nav {
  right: 0;
}

#HMBox{
	width: 80%;
	height: auto;
	margin-top: 30px;
	margin-left: 10%;
	text-align: center;
	font-size: 13px;
	line-height: 20px;
}
#HMBox img{
	width: 80%;
	height: auto;
	margin-bottom: 15px;
}


/*ハンバーガーメニュー モバイル*/
@media screen and (max-width:767px){

#HMmenu {
	position: fixed;
	width: 40px;
	height: 40px;
    top: 15px;
    right: 10px;
    z-index: 100000;
}

input[type="checkbox"] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}
.hamburger {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10000;
  border-radius: 20px;
  background-color: #f9a7be;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  position: absolute;
  display: block;
  content: "";
  width: 50%;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  transition: all 0.5s;
}
.hamburger span::before {
  width: 100%;
  top: -6px;
}
.hamburger span::after {
	width: 100%;
  bottom: -6px;
}
input[type="checkbox"]:checked + .hamburger span {
  background-color: transparent;
}
input[type="checkbox"]:checked + .hamburger span::before {
  top: 0;
  transform: rotate(45deg);
}
input[type="checkbox"]:checked + .hamburger span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.nav {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  right: -120%;
  background-color: rgba(249,167,190,0.95);
  color: #fff;
  padding: 80px 0;
  transition: all 0.5s;
  z-index: 9999;
}
.nav__item a {
  display: block;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  padding: 0px 0px 20px 0px;
  text-transform: uppercase;
  color: #FFF;
  transition: 0.4s;
}
.nav__item a:hover {
  color: #fff;
  background-color: rgba(255,255,255,0.2);
}
input[type="checkbox"]:checked ~ .nav {
  right: 0;
}
#HMBox{
	width: 100%;
	height: auto;
	margin-top: 20px;
	margin-left: 0%;
	text-align: center;
	font-size: 12px;
	line-height: 15px;
}
#HMBox img{
	width: 70%;
	height: auto;
	margin-bottom: 15px;
}

}

/*--------------------------------------------------------------------------フッター*/
footer {
	position: relative;
	width: 100%;
	height: auto;
	margin-top: 0px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 50px;
	background-color: #FFF;
	clear: both;
	float: left;
	z-index: 1000;
}
#fcontact {
	width: 1060px;
	height: 200px;
	padding: 0 20px 0 20px;
	margin: 0 auto;
	background-color: #f7f7f7;
	border-radius: 5px;
}
#fcontact .ttl{
	width: auto; 
	height: auto;
	float: left;
	font-size: 25px;
	line-height: 25px;
	font-weight: 500;
	color: #4f97c4;
	text-align: left;
	letter-spacing: 1px;
	margin-top: -15px;
}

#fcBox {
	width: 429px;
	height: 120px;
	float: left;
	margin-top: 35px;
	border-right: 1px solid #CCC;
	clear: both;
}

#fcBox .t1 {
	width: 100%;
	font-size: 16px;
	line-height: 16px;
	text-align: left;
	text-align: left;
	float: left;
}
#fcBox .t2 a{
	width: 100%;
	font-size: 47px;
	line-height: 47px;
	text-align: left;
	text-indent: 40px;
	font-weight: 700;
	color: #000;
	text-align: left;
	letter-spacing: 1px;
	background-image: url(../web/object/ftac01.png);
	background-repeat: no-repeat;
	background-position: left bottom;
	float: left;
	margin-top: 13px;
}
#fcBox .t3{
	width: 100%;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: 1px;
	text-align: left;
	margin-top: 20px;
	text-align: left;
	float: left;
}

.contactbtn a{
	display:block;
	width: 500px;
	height: 60px;
	border-radius: 30px;
	float: left;
	outline: 1px solid #999;
	outline-offset: -1px;
	font-size: 18px;
	line-height: 58px;
	text-align: center;
	color: #000;
	margin-top: 65px;
	margin-left: 90px;
	transition: 0.4s;
	background-color: #FFF;
	background-image: url(../web/object/ftac02.png);
}
.contactbtn a:hover{
	outline: 1px solid #4f97c4;
	outline-offset: -1px;
	background-color: #4f97c4;
	color: #FFF;
	transition: 0.4s;
	background-image: url(../web/object/ftac03.png);
}

#fbox {
	width: 1100px;
	height: 200px;
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
}
#fbox .flogo{
	width: 260px;
	height: auto;
	float: left;
	font-size: 14px;
	line-height: 20px;
	text-align: left;
}
#fbox .flogo p{
	width: 100%;
	font-size: 14px;
	line-height: 20px;
	text-align: left;
	margin-top: 20px;
}
#fbox .flogo img{
	width: 260px;
	height: 80px;
}
#fbox .sitemap{
	width: 730px;
	height: auto;
	float: left;
	text-align: right;
	margin-left: 110px;
	margin-top: 40px;
}
#fbox .sitemap li a{
	list-style: none;
	padding:0;
	float: left;
	font-size: 14px;
	line-height: 14px;
	text-align: right;
	margin-left: 20px;
	color: #000;
}

#cr{
	width: 730px;
	text-align: right;
	font-size: 11px;
	line-height: 11px;
	color: #000;
	float: left;
	margin-left: 110px;
	margin-top: 60px;
}

@media screen and (max-width:767px){
footer {
	width: 100%;
	height: auto;
	margin-top: 30px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 0px;
}
#fcontact {
	width: 300px;
	height: 200px;
	padding: 0 10px 0 10px;
	margin: 0 auto;
	background-color: #f7f7f7;
	border-radius: 5px;
}
#fcontact .ttl{
	width: auto; 
	height: auto;
	float: left;
	font-size: 20px;
	line-height: 20px;
	font-weight: 500;
	color: #4f97c4;
	text-align: left;
	letter-spacing: 1px;
	margin-top: -10px;
}

#fcBox {
	width: 300px;
	height: auto;
	float: left;
	margin-top: 15px;
	border-right: 0px solid #CCC;
	clear: both;
}

#fcBox .t1 {
	width: 100%;
	font-size: 12px;
	line-height: 12px;
	text-align: left;
	text-align: left;
	float: left;
}
#fcBox .t2 a{
	width: 100%;
	font-size: 35px;
	line-height: 35px;
	text-align: left;
	text-indent: 30px;
	font-weight: 600;
	color: #000;
	text-align: left;
	letter-spacing: 1px;
	background-image: url(../web/object/ftac01sp.png);
	background-repeat: no-repeat;
	background-position: left bottom;
	float: left;
	margin-top: 10px;
}
#fcBox .t3{
	width: 100%;
	font-size: 12px;
	line-height: 12px;
	letter-spacing: 1px;
	text-align: left;
	margin-top: 15px;
	text-align: left;
	float: left;
}

.contactbtn a{
	display:block;
	width: 300px;
	height: 36px;
	border-radius: 18px;
	float: left;
	outline: 1px solid #999;
	outline-offset: -1px;
	font-size: 15px;
	line-height: 34px;
	text-align: center;
	color: #000;
	margin-top: 25px;
	margin-left: 0px;
	transition: 0.4s;
	background-color: #FFF;
	background-image: url(../web/object/ftac02sp.png);
}
.contactbtn a:hover{
	outline: 1px solid #4f97c4;
	outline-offset: -1px;
	background-color: #4f97c4;
	color: #FFF;
	transition: 0.4s;
	background-image: url(../web/object/ftac03sp.png);
}

#fbox {
	width: 320px;
	height: 150px;
	margin-top: 20px;
	margin-left: auto;
	margin-right: auto;
}
#fbox .flogo{
	width: 320px;
	height: auto;
	float: left;
	font-size: 12px;
	line-height: 14px;
	text-align: center;
}
#fbox .flogo p{
	width: 100%;
	font-size: 12px;
	line-height: 14px;
	text-align: center;
	margin-top: 10px;
}
#fbox .flogo img{
	width: 200px;
	height: 62px;
}
#fbox .sitemap{ display:none;}


#cr{
	width: 100%;
	text-align: center;
	font-size: 10px;
	line-height: 10px;
	color: #000;
	float: left;
	margin-left: 0px;
	margin-top: 20px;
}

}
