@charset "UTF-8";

/* リセット */
body,div,
dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
pre,form,fieldset,input,textarea,p,blockquote,th,td {
	margin: 0;
	padding: 0;
	font-size: 100%;
	list-style: none;
}
img {
  vertical-align: bottom;
	max-width: 100%;
}
body{
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
  /* font-family: 'Arial',YuGothic,'Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3','メイリオ', Meiryo,'ＭＳ ゴシック',sans-serif */
}
/* ヘッダーデザイン */
.site-header{
	background: rgba(255,255,255,0.8);
	/* background: #fff; */
	height: 6.6em;
	/* display: flex; */
	position: fixed;
	justify-content: space-between;
	width: 100%;
	z-index: 10;
	transition: .5s;
}

.header_wrapper{
	position: relative;
}
.header_left{
	position: absolute;
  left: 0;
	margin-top: .8em;
	margin-left: 6em;
	margin-bottom: .8em;
	float: left;
}
.header_left a:hover{
	opacity: 0.7;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
.header_left h1{
	font-weight: normal;
	font-size: 12px;
}
@media (max-width: 1280px){
	.site-header{
		height: 5em;
		/* position: fixed; */
	}
	.header_wrapper{
		height: 6em;
	}
	.header_left{
		margin-left: 1em;
		margin-bottom: .2em;
	}
	.header_left img{
		width: 80%;
	}
	.header_left h1{
		font-weight: normal;
		font-size: 10px;
	}
}
@media (max-width: 880px){
	.site-header{
		height: 4em;
	}
	.header_left img{
		width: 60%;
	}
}
/* header_right */
.header_right{
	position: absolute;
  right: 0;
	width: 950px;
	margin: 0 0  0 auto;
}
@media (max-width: 1280px){
	.header_right{
		width: 580px;
	}
}
/* ナビデザイン */
nav{
	float: left;
	/* margin-top: .8em; */
}
.menu{
	display: block;
	margin-top: .6em;
}
.menu li a{
	text-decoration: none;
	font-size: 16px;
	color: #4C1769;
	margin-left: 1.4em;
	margin-right: 1.4em;
	text-align: center;
}
.menu_text{
	padding-top: 1em;
}
.menu ul{
	width: 490px;
}
.menu li{
	float: left;
	width: auto;
	margin-left: auto;
	margin-right: auto;
	margin-top: .8em;
}
.menu li a:hover{
	color: #008FCD;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
.menu ul:after{
	content: "";
	display: block;
	clear: both;
}
.reseve a{
	text-decoration: none;
	color: #4C1769;
	border: 1px solid #4C1769;
	border-radius: 6px;
	padding: .8em 0;
	width: 176px;
	float: left;
	text-align: center;
	margin-top: 1.6em;
}
.reseve a:hover{
	background: #4C1769;
	color: #fff;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
/* 電話設定 */
.tel{
	background: #4C1769;
	height: 4.6em;
	float: right;
	padding: 1em 1.6em;
}
.tel.transform{
	display: none;
}
.yoyaku_time :after{
	content: "";
	display: block;
	clear: both;
}
.yoyaku{
	font-size: 13px;
	float: left;
	color: #4C1769;
	background: #fff;
	padding: .2em 1.2em;
	border-radius: 4px;
	margin-right: .6em;
}
.time p{
	font-size: 16px;
	color: #fff;
	padding-top: .1em;
}
.tel h3{
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 1px;
}
.ad{
	color: #fff;
	font-size: 11px;
}
/*  ハンバーガーメニュー */
.hamburger {
  position: fixed;
  z-index : 3;
  right : 13px;
  top   : 20px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
	z-index: 9999;
}
.hamburger{
	display: none;
}
@media (max-width: 1280px){
	.hamburger{
		display: block;
	}
}
@media (max-width: 880px){
	.hamburger{
		top   : 16px;
	}
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition   : 0.5s ease-in-out;
  transition        : 0.5s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}
/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(315deg);
  -moz-transform   : rotate(315deg);
  transform        : rotate(315deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(-315deg);
  -moz-transform   : rotate(-315deg);
  transform        : rotate(-315deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 10;
  top  : 0;
  left : 0;
  color: #000;
  background: #4C1769;
  text-align: center;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
	opacity: .9;
}

nav.globalMenuSp ul {
  background: #4C1769;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}
nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration :none;
	color: #FFF;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(0%);
}
.nav_yoyaku{
	font-size: 20px;
	color: #FFF;
}
.nav_tel{
	margin-top: 2em;
	color: #FFF;
}
.nav_phone h3{
	font-size: 28px;
	color: #FFF;
}
.nav_ad{
	font-size: 16px;
	margin-bottom: 4em;
}
/* *, *:before, *:after {
	z-index: 9999;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
ol, ul {
	list-style: none;
}
a {
	text-decoration: none;
	color: inherit;
}
.cp_offcm01 {
	position: absolute;
	top: 20px;
	right: 20px;
	display: inline-block;
} */

@media (max-width: 1280px){
	.menu, .header_right{
		display: none;
	}
}
@media (min-width: 1280px){
	.cp_cont{
		display: none;
	}
}
/* トップ画面デザイン */
.top_photo img {
    width: 100%;
    height: auto;
}
@media (max-width: 770px){
	.top_photo .pc{
		display: none;
	}
}
@media (min-width: 770px){
	.top_photo .sp{
		display: none;
	}
}
/* 「SlideDown」の動作内容 */
@keyframes SlideDown {
  0% {
    opacity: 0;/* 透明 */
    transform: translateY(50px);/* Y軸方向に50px */
  }
  100% {
    opacity: 1;/* 不透明 */
    transform: translateX(0);
  }
}
.formTable, footer, .line{
  animation-duration: 2s;/* アニメーション時間 */
  animation-name: SlideDown;/* アニメーション名 */
}
/* line */

.line{
	text-align: center;
	margin-top: 3em;
}
.line p{
	margin-top: .3em;
	font-size: 14pt;
}
.pop{
	font-family: Arial;
}

/* お問合せフォーム */
form{
	width:700px;
	margin-top: 4em;
	margin-bottom: 1em;
}
form input[type="text"],
form input[type="email"],
form input[type="date"]{
	width: 80%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
form textarea {
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
@media (max-width: 768px){
	form{
		width: 100%;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
	}
	form input[type="text"],
	form input[type="email"],{
		width: 100%;
	}
}
.item{
	overflow: hidden;
	margin-bottom: 2em;
}
.label{
	float: left;
	margin-right: 20px;
	width: 100%;
	padding-bottom: .4em;
}

input[type="text"],input[type="email"],input[type="date"]{
	border: solid 1px #aaa;
	border-radius:5px;
	padding:10px;
	font-size: 15px;
}
input[type=checkbox] {
	transform: scale(1);
}
textarea{
	border: solid 1px #aaa;
	border-radius:5px;
	padding: 10px;
	height: 160px;
	font-size: 15px;
}
.btn-area{
	text-align: center;
}
input[type="submit"]{
	margin-top: 2em;
	background: #4C1769;
	color: #FFF;
	font-size: 18px;
	padding: 12px 56px;
	border: 2px solid #FFF5FF;
	border-radius: 6px;
	text-decoration: none;
	margin-bottom: 2em;
}
.serves_button a {
    padding: 16px 60px;
    color: #4C1769;
    font-size: 18px;
    background: #FFF;
    border: 2px solid #F06909;
    text-decoration: none;
    border-radius: 6px;
}
input[type="submit"]:hover{
	/* color: #4C1769;
	background: #4C1769; */
	opacity:0.7;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
.item span{
	color:#ffffff;
	background: #cc0022;
	font-size: 12px;
	padding: .3em;
	margin-left: .5em;
}
/* チェックボックス設定 */
input[type=checkbox] {
	transform: scale(1.5);
	margin-left: .5em;
	margin-bottom: .5em;
	margin-right:.5em;
}

/* 自由に編集下さい */
#formWrap {
	width:700px;
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:90%;
}
table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
	background: #FFF;
}
table.formTable th{
	width:40%;
	font-weight:normal;
	background:#FFF5FF;
	text-align:left;
	font-size: 16px;
}
p.error_messe{
	margin:5px 0;
	color:red;
}
.formTable span{
	font-size: 14px;
	color: red;
	font-weight: normal;
}
@media screen and (max-width:572px) {
	#formWrap {
		width:95%;
		margin:0 auto;
	}
	table.formTable th, table.formTable td {
		width:auto;
		display:block;
	}
	table.formTable th {
		margin-top:5px;
		border-bottom:0;
	}
	input[type="submit"], input[type="reset"], input[type="button"] {
		display:block;
		width:100%;
		height:50px;
	}
}

/* footer設定 */
footer{
	background: #2E235E;
}
.footer_wrapper{
	width: 350px;
	margin-left: auto;
	margin-right: auto;
}
.footer_wrapper img{
	width: 100%;
	text-align: center;
	margin-top: 4em;
}
/* 問合せボタン */
.contact_buttom{
	text-align: center;
	background: #FFF;
	color: #2E235E;
	padding: .4em .6em;
	font-size: 16px;
	border-radius: 6px;
	width: 300px;
	margin-top: .6em;
	margin-left: auto;
	margin-right: auto;
}
.contact_buttom a{
	text-decoration: none;
	color: #2E235E;
}
.contact_buttom:hover{
	opacity: 0.7;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
.footer_tel{
	text-align: center;
	margin-top: .4em;
}
.footer_tel p{
	font-size: 24px;
	font-weight: bold;
	color: #FFF;
}
.footer_tel span{
	font-size: 14px;
	font-weight: normal;
}
.footer_ad p{
	font-size: 14px;
	color: #FFF;
	text-align: center;
	margin-top: .2em;
}
/* コピーライト設定 */
.copyright{
	margin-top: 2.5em;
	background-color: #2E235E;
}
.copyright p{
	font-size: 15px;
	padding-top: 1.2em;
	padding-bottom: 1.8em;
	color:white;
	text-align: center;
}
