@charset "utf-8";
/* ----------------------------------------------------------------------
 基本設定
---------------------------------------------------------------------- */
*, *:before, *:after {
    box-sizing: border-box;
}
html{
    font-size: 18px;/*★*/
	}
body {
    font-size: 18px;
	font-family: 'Noto Serif JP', serif;
	clear: both;
	color: #333333;
	line-height: 1.8em;
	-webkit-text-size-adjust: 100%;/* iPhoneで文字が大きくなってしまう際の対処 */
}
section {
	clear: both;
}
.relative {
	position: relative;
}

/* リンクテキスト */

a:link{
	color: #333333;/* ブルーグレー */
	text-decoration: none;
}
a:visited{
	color:#333333;
	text-decoration:none;
}
a:hover{
	color: #EB627C;
	text-decoration: none;
}
a:active{
	color:#333333;
	text-decoration:none;
}



@media only screen and (max-width: 960px){
section {
	line-height: 1.8em;
}
}
@media only screen and (min-width: 961px){
section {

}
}
a:hover img
{
    opacity:0.8;
    -moz-opacity:0.8;
    filter:alpha(opacity = 80);
}
img {
	max-width: 100%;
}
img.full {
	width: 100%;
	text-align: center;
}

/* ----------------------------------------------------------------------
 ヘッダー
---------------------------------------------------------------------- */
 header {
	position: relative;
}
.inner_head {
    position: fixed;/*fixedを設定して固定*/
    z-index: 999;/*最前面へ*/
    top:0;/*位置指定*/
    left:0;/*位置指定*/
	width: 100%;
}
.logo {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	padding-top: 10px;
}
.change-color {
    background-color: rgba(255,255,255,0.7);
}
@media only screen and (max-width: 1024px) {
  .header {
}
.logo img {
	margin: 0 auto;
	max-width: 30%;
}

}
@media only screen and (min-width: 1025px) {
 .header {
}
.inner_head {

}
.logo {

}
.logo img {

}
}

/*　ナビゲーション　*/
@media only screen and (max-width: 1024px) {
	nav{
	display: none;
	position: absolute;
	width: 100%;
	top: 0;
	right: 0;
	z-index: 99;
	background-image: url(../image/bg01.png);
	}
	header nav ul{
		display: block;
		margin: 0 auto;
		width: 100%;
	}
	header nav ul li{
	text-align: center;
	display: block;
	padding-top: 1em;
	padding-bottom: 1em;
	margin: 0 1%;
	border-bottom: 1px solid #EB627C;
	}
	header nav ul li img {
			display: block;
			width: 30px;
			margin: 0 auto;
		}
	header nav ul li a{
	display: block;
	color: #333333!important;
	}
	/*開閉ボタン*/
	#nav_toggle{
	display: block;
	width: 50px;
	height: 50px;
	position: absolute;
	top: 10px;
	right: 0px;
	z-index: 100;
	}
	#nav_toggle div {
		position: relative;
	}
	#nav_toggle span{
		display: block;
		height: 3px;
		background: #333333;
		position:relative;
		width: 32px;
		left: 4px;
		-webkit-transition: 0.5s ease-in-out;
		-moz-transition: 0.5s ease-in-out;
		transition: 0.5s ease-in-out;	
	}
	#nav_toggle span:nth-child(1){
		top:8px;
	}
	#nav_toggle span:nth-child(2){
		top:16px;
	}
	#nav_toggle span:nth-child(3){
		top:24px;
	}
	/*開閉ボタンopen時*/
	.open #nav_toggle span:nth-child(1) {
			top: 16px;
		   -webkit-transform: rotate(135deg);
			-moz-transform: rotate(135deg);
			transform: rotate(135deg);
		}
		.open #nav_toggle span:nth-child(2) {
			width: 0;
			left: 50%;
		}
		.open #nav_toggle span:nth-child(3) {
			top: 10px;
			-webkit-transform: rotate(-135deg);
			-moz-transform: rotate(-135deg);
			transform: rotate(-135deg);
		}
.sp_insta {
	position: absolute;
	right: 55px;
	top: 16px;
}
}
@media only screen and (min-width: 1025px) {
nav {
    position: absolute;
	top: 25px;
	right: 3%;
}
nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
}
nav ul li {
  margin-left: 20px;
	}
nav ul li a{
		color: #333333;
		text-decoration: none;
	}
#nav_toggle{
	display: none;
}
.sp_insta {
	display: none;
}
}



/*　スライダー　*/
.slider {
	width: 100%;
	z-index: 0;
}
.slider img {
	width: 100%;
}
@media only screen and (max-width: 768px) {
.slider_box {
}
}
@media only screen and (min-width: 769px) {
.slider_box {
	}
}


/* ----------------------------------------------------------------------
トップページ
---------------------------------------------------------------------- */

/* イントロ */

.intro {
	background-image: url(../image/bg01.png);
	text-align: center;
}
.intro_tt {
	margin: 0 auto 0.6em;
	color: #EB627C;
}
.intro_tt span {
	display: block;
}
.intro p {
	margin: 0 auto 2em;
}
@media only screen and (max-width: 768px) {
	.intro_tt {
	max-width: 800px;
	font-size: 1.15rem;
	line-height: 1.6em;
}
}
@media only screen and (min-width: 769px) {
	.intro {
	padding-top: 2em;
	}
	.intro_tt {
	max-width: 900px;
	font-size: 1.5rem;
	line-height: 2em;
	margin: 0 auto 1.5em;
}
}

/* ----------------------------------------------------------------------
 コンテンツ
---------------------------------------------------------------------- */

/* inner */
@media only screen and (max-width: 768px){
.inner {
	width: 90%;
	margin: 0 auto;
	padding: 2em 0;
	}
}
@media only screen and (min-width: 769px) {
.inner {
	width: 90%;
	max-width: 1100px;
	margin: 0px auto;
	overflow: hidden;
	vertical-align: top;
	padding: 2em 0;
}
}
p.bi {
	background-image: url(../image/bi01.png);
	background-repeat: no-repeat;
	padding-top: 120px;
}
.point {
}
.tt_point {
	color: #EB627C;
	background-image: url(../image/line02.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	text-align: center!important;
	line-height: 2.5em!important;
}
.fs200:first-letter {
    font-size:2em;
}

.point li {
	background-image: url(../image/icon01.png);
	background-repeat: no-repeat;
	padding-left: 1.5em;
	background-position: 0% 7px;
}
p.tokucho {
	color: #EB627C;
	background-image: url(../image/line03.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	text-align: center!important;
	line-height: 3em!important;
	font-size: 1.5rem;
	margin-bottom: 1em;
}
@media only screen and (max-width: 768px){
p.bi {
	background-position: center 0%;
}
.point {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2em;
}
.point ul {
	margin-left: 10%;
	margin-top: 1em;
	margin-bottom: 2em;
}
.point li {
	text-align: left;
}
}

@media only screen and (min-width: 769px) {
.point {
	display: inline-block;
	width: 48%;
}
.point ul {
	margin-left: 1em;
	margin-top: 1em;
	margin-bottom: 2em;
}
}

.facial {
	overflow: hidden;
	margin-bottom: 1em;
	max-width: 450px;
	margin-left: auto;
	margin-right: auto;
}
.body {
	clear: both;
	max-width: 450px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2em;
	padding-left: 5%;
}
.facial img {
	float: left;
	margin-right: 10px;
	vertical-align: middle;
}
.facial span{
	vertical-align: middle;
}
.body img {
	float: right;
	margin-right: 5%;
}
.body span{
	vertical-align: middle;
}
@media only screen and (max-width: 768px) {
.facial img {
	width: 20%!important;
}
.body img {
	width: 20%!important;
}
.facial p {
	font-size: 0.9rem;
}
.body p {
	font-size: 0.9rem;
}
}
@media only screen and (min-width: 769px) {
.facial img {
	width: 100px!important;
}
.body img {
	width: 100px!important;
}
}
.kassa{
	background: none;
	border: 1px solid #f3cbd0;	/* 線の太さ・種類・色 */
	margin: 10px auto; /* 外側の余白 */
	padding: 20px; /* 内側の余白 */
	position: relative;
	max-width: 900px;
	clear: both;
}
.kassa:after{
	background: none;
	border: 1px solid #f3cbd0;	/* 線の太さ・種類・色 */
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.tt_kassa {
	color: #EB627C;
	background-image: url(../image/line03.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	text-align: center!important;
	line-height: 4em!important;
	font-size: 1.125rem;
	margin-bottom: 1em;
}
@media only screen and (min-width: 769px) {
.kassa {

}
.kassa p {
	margin-left: 1em;
	margin-right: 1em;
}
}

/*　MENU　料金　*/
#menu {
	background-image: url(../image/bg02.png);
	padding-top: 2em;
}
.menu_box_out {
	background-color: #FFFFFF;
	padding: 10px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}
.menu_box_in {
	background: url(../image/i_bg1.png) left top no-repeat,url(../image/i_bg2.png) right top no-repeat,url(../image/i_bg4.png) right  bottom no-repeat,url(../image/i_bg3.png) left bottom no-repeat;
	border: 1px solid #3E3A39;
	text-align: center;
}
@media only screen and (max-width: 768px) {
.menu_box_out {
	margin-bottom: 2em;
}
.menu_box_in {
	padding-left: 5px;
	padding-right: 5px;
}
}@media only screen and (min-width: 769px) {
.menu_box_out {
	margin-bottom: 3em;
	}
}
.menu_box_in h3 {
	margin: 1em auto;
}
.menu_box_in h4 {
	color: #EB627C;
	font-weight: bold;
	font-size: 1.15rem;
}
.menu_box_in h4 img {
	vertical-align: middle;
}
.pink_p {
	color: #EB627C;
	font-size: 0.9rem;
	margin-bottom: 0.5em;
}
.pink_p2 {
	color: #EB627C;
	font-size: 1.5rem;
	margin-bottom: 0.5em;
	font-weight: bold;
    font-style:italic;
}
.tti {
	margin-bottom: 0.5em;
}
.tti:first-letter {
    font-size:2em;
    font-weight:bold;
    font-style:italic;
}
.tti2 {
	margin-bottom: 0.5em;
}
.price {
	font-size: 1.5rem;
	font-style: italic;
	margin-bottom: 2em;
	font-weight: bold;
}
.price span {
	font-size: 0.7rem;
}
.price2 {
	font-size: 1.5rem;
	font-style: italic;
	font-weight: bold;
}
.price2 span {
	font-size: 0.7rem;
}
.price2 span.kesi {
	font-size: 1.0rem;
	font-style: normal;
	font-weight: normal;
    text-decoration: line-through;
}
.price3 {
	font-size: 1.125rem;
	color: #EB627C;
	margin-bottom: 1em;
}
h4.syokai {
	font-size: 1.5rem;
}
.maituki {
	padding: 0.5em 0;/*上下の余白*/
	border-top: 1px solid #CCCCCC;/*上線*/
	border-bottom: solid 1px #CCCCCC;/*下線*/
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 3em;
}
/*　プロフィール　*/
#profile {
	background-image: url(../image/bg_aiko.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
.profile_intro {
	color: #EB627C;
	font-size: 1.125rem;
	text-align: center;
	margin-bottom: 2em;
}
.mybox h4 {
	color: #EB627C;
	font-size: 1.125rem;
	text-align: center;
	margin-bottom: 1em;
}
/*　予約　*/
#reserv {
	background-image: url(../image/bg02.png);
	padding-top: 2em;
}

/*　テキストボタン　*/
.btn {
	color: #575757;
	margin: 0 auto 3em;
	padding: 0.7em 0;
	text-align: center;
	display: block;
	font-size: 1.0rem;
	background-color: #FFFFFF;
	border:#73E398 solid 1px;
}
.btn:hover {
	color: #fff!important;
	background-color: #C0F7D2;
}
@media only screen and (max-width: 768px) {
.btn {
	width: 90%;
	max-width: 490px;
	font-size: 1rem;
}
}
@media only screen and (min-width: 769px) {
.btn {
	width: 300px;
	font-size: 1.1rem;
}
}

.btn_siro {
	color: #FF6699!important;
	margin: 0 auto 2em;
	padding: 0.7em 0;
	text-align: center;
	display: block;
	font-size: 1.0rem;
	background-color: #FFFFFF;
}
.btn_siro:hover {
	color: #FF6699!important;
	background-color: #FFE1EB;
}
@media only screen and (max-width: 768px) {
	.btn_siro {
		width: 90%;
		max-width: 490px;
		font-size: 1.125rem;
	}
}
@media only screen and (min-width: 769px) {
	.btn_siro {
		width: 490px;
		font-size: 1.5rem;
	}
}

/* ----------------------------------------------------------------------
見出し
---------------------------------------------------------------------- */
h1 {}
h2 {
}


/* ----------------------------------------------------------------------
　フッター　
---------------------------------------------------------------------- */

.pagetop{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #FAD2DB;
  opacity: 0.9;
}
.pagetop a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
.pagetop a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

footer {
	background-color: #FAD2DB;
}
.foot_nav {
	font-size: 85%;
	line-height: 1.8em!important;
	background-color: #fff;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
}
.foot_logo {
	text-align: center;
	padding-top: 2em;
	}
.foot_add {
	font-size: 90%;
}

.foot_nav p {
	padding-top: 0.8em;
	font-size: 90%;
}
.copy {
	padding-top: 0.2em;
	padding-bottom: 0.2em;
	clear: both;
	font-size: 80%;
	text-align: center;
	color: #333333;
	}
@media only screen and (max-width: 766px) {
	footer {
	clear: both;
	font-size: 0.7em;
	line-height: 1em;
}
}

/*　SNS　*/
.sns {
	border: 1px solid #FFFFFF;
	text-align: center;
	color: #FFFFFF;
	font-size: 1.875rem;
	font-weight: bold;
	padding: 10px;
	margin: 0px auto 10px;
	width: 250px;
}
@media only screen and (min-width: 769px) {
.sns {
	padding-top: 5px;
	}
}

/*　枠いろいろ　*/
.box1 {
    padding: 1.5em;
    margin: 2em 0;
    background: #E7FCF3;/*背景色*/

    box-shadow: 1px 1px 2px #acacac;
}
.box1 p {
    margin: 0; 
    padding: 0;
}

.clip-box-a {
	position: relative;
	margin: 2em auto;
	padding: 15px 10px;
	width: 90%; /* ボックス幅 */
	background-color: #fff; /* ボックス背景色 */
	color: #555555; /* 文章色 */
	border: 1px solid #ccc; /* 枠線 */
	box-shadow: 1px 1px 1px #acacac; /* 影の色 */
}
.clip-box-a::before {
 position: absolute;
 content: '';
 top: -15px;
 right: 10px;
 height: 55px;
 width: 15px;
 border: 3px solid #555555; /*クリップ色 */
 background-color: none;
 border-radius: 12px;
 box-shadow: 1px 1px 2px #999;
 transform: rotate(10deg);
 z-index: 1;
}
.clip-box-a::after {
 position: absolute;
 content: '';
 top: 0px;
 width: 10px; 
 right: 20px;
 border: solid 5px #fff; /*背景色と同じ色にする*/
 z-index: 2;
}
.clip-box-a h5 {
	text-align: center;
	font-size: 1.125rem;
}
@media only screen and (max-width: 768px) {
.clip-box-a {
	width: 100%;
	font-size: 95%;
}
}
.mybox{
	background-color: #fff;	/* 背景色 */
	border: 1px solid #ccc; /* 線の太さ・種類・色 */
	box-shadow: 1px 1px 6px 0px #ccc;
	-moz-box-shadow: 1px 1px 6px 0px #ccc;
	-webkit-box-shadow: 1px 1px 6px 0px #ccc;
	-o-box-shadow: 1px 1px 6px 0px #ccc;
	margin: 2em auto; /* 外側の余白 上下・左右 */
	padding: 30px 20px 20px 20px; /* 内側の余白 上・右・下・左 */
	position: relative;
	z-index: 0;
	width: 90%;
	max-width: 850px;
}
.mybox:after{
	background-color: #F39FB0; /* マステ部分の色1 */
	background-image: linear-gradient(45deg, #F5B6C2 25%, transparent 25%, transparent 75%, #F5B6C2 75%, #F5B6C2), linear-gradient(45deg, #F5B6C2 25%, transparent 25%, transparent 75%, #F5B6C2 75%, #F5B6C2); /* マステ部分の色2 */
	background-position: 0 0, 12px 12px;
	background-size: 24px 24px;
	border-left: 2px dotted rgba(255,255,255,0.9);
	border-right: 2px dotted rgba(255,255,255,0.9);
	box-shadow: 0 0 5px rgba(255,255,255,0.5);
	content: '経　歴';
	display: block;
	margin: 0 0 10px 0;
	padding: 5px 20px;
	color: #fff;  /* マステ部分文字色 */
	text-align: center;
	position: absolute;
	top: -10px;
	left: 20px;
	transform: rotate(-3deg);
	-moz-transform: rotate(-3deg);
	-webkit-transform: rotate(-3deg);
	-o-transform: rotate(-3deg);
}
.mybox2 {
	background-color: #fff;	/* 背景色 */
	border: 1px solid #ccc; /* 線の太さ・種類・色 */
	box-shadow: 1px 1px 6px 0px #ccc;
	-moz-box-shadow: 1px 1px 6px 0px #ccc;
	-webkit-box-shadow: 1px 1px 6px 0px #ccc;
	-o-box-shadow: 1px 1px 6px 0px #ccc;
	margin: 2em auto; /* 外側の余白 上下・左右 */
	padding: 30px 20px 20px 20px; /* 内側の余白 上・右・下・左 */
	position: relative;
	z-index: 0;
	width: 90%;
	max-width: 850px;
}
.mybox2:after{
	background-color: #F39FB0; /* マステ部分の色1 */
	background-image: linear-gradient(45deg, #F5B6C2 25%, transparent 25%, transparent 75%, #F5B6C2 75%, #F5B6C2), linear-gradient(45deg, #F5B6C2 25%, transparent 25%, transparent 75%, #F5B6C2 75%, #F5B6C2); /* マステ部分の色2 */
	background-position: 0 0, 12px 12px;
	background-size: 24px 24px;
	border-left: 2px dotted rgba(255,255,255,0.9);
	border-right: 2px dotted rgba(255,255,255,0.9);
	box-shadow: 0 0 5px rgba(255,255,255,0.5);
	content: '趣　味';
	display: block;
	margin: 0 0 10px 0;
	padding: 5px 20px;
	color: #fff;  /* マステ部分文字色 */
	text-align: center;
	position: absolute;
	top: -10px;
	left: 20px;
	transform: rotate(-3deg);
	-moz-transform: rotate(-3deg);
	-webkit-transform: rotate(-3deg);
	-o-transform: rotate(-3deg);
}
.mybox3 {
	background-color: #fff;	/* 背景色 */
	border: 1px solid #ccc; /* 線の太さ・種類・色 */
	box-shadow: 1px 1px 6px 0px #ccc;
	-moz-box-shadow: 1px 1px 6px 0px #ccc;
	-webkit-box-shadow: 1px 1px 6px 0px #ccc;
	-o-box-shadow: 1px 1px 6px 0px #ccc;
	margin: 2em auto; /* 外側の余白 上下・左右 */
	padding: 30px 20px 20px 20px; /* 内側の余白 上・右・下・左 */
	position: relative;
	z-index: 0;
	width: 90%;
	max-width: 850px;
}
.mybox3:after{
	background-color: #F39FB0; /* マステ部分の色1 */
	background-image: linear-gradient(45deg, #F5B6C2 25%, transparent 25%, transparent 75%, #F5B6C2 75%, #F5B6C2), linear-gradient(45deg, #F5B6C2 25%, transparent 25%, transparent 75%, #F5B6C2 75%, #F5B6C2); /* マステ部分の色2 */
	background-position: 0 0, 12px 12px;
	background-size: 24px 24px;
	border-left: 2px dotted rgba(255,255,255,0.9);
	border-right: 2px dotted rgba(255,255,255,0.9);
	box-shadow: 0 0 5px rgba(255,255,255,0.5);
	display: block;
	margin: 0 0 10px 0;
	padding: 5px 20px;
	color: #fff;  /* マステ部分文字色 */
	text-align: center;
	position: absolute;
	top: -10px;
	left: 20px;
	transform: rotate(-3deg);
	-moz-transform: rotate(-3deg);
	-webkit-transform: rotate(-3deg);
	-o-transform: rotate(-3deg);
}
/*　カラム設定　*/
.column_all {
display: flex;
justify-content:space-between;
}
@media only screen and (max-width: 768px) {
.column {

}
.columnx {
    display:-webkit-box;/*--- Androidブラウザ用 ---*/
    display:-ms-flexbox;/*--- IE10 ---*/
    display:-webkit-flex;/*--- safari（PC）用 ---*/
    display:flex; 
    -ms-flex-wrap:wrap;/*--- IE10用 ---*/
    -webkit-flex-wrap:wrap;/*--- safari（PC）用 ---*/
    flex-wrap:wrap;
}
}
@media only screen and (min-width: 769px) {
.column {
display: flex;
justify-content:space-between;
}
.columnx {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
}
/* column01 */
@media only screen and (max-width: 768px) {
.column01 {
	margin: 15px auto;
	width: 90%;
	text-align: center;
  }
.column01 p {
	text-align: left;
	line-height: 1.5em;
	}

.o1 {
   order: 1;
}
.o2 {
   order: 2;
}
.o3 {
   order: 3;
}
}
@media only screen and (min-width: 769px) {
.column01 {
	margin: 30px 2%;
	width: 45%;
  }
.column01 img {
	width: 100%;
	}
  }
.column02 img {
	vertical-align: middle;
  }
@media only screen and (max-width: 768px) {
.column02 {
	margin: 15px auto;
	width: 90%;
	text-align: center;
	line-height: 1.8em;
  }
}
@media only screen and (min-width: 769px) {
.column02  {
	margin: 30px 2%;
	width: 45%;
	font-size: 0.85rem;
	text-align: center;
  }
  }
@media only screen and (max-width: 768px) {
.column03 {
	margin: 15px auto;
	width: 95%;
  }
}
@media only screen and (min-width: 769px) {
.column03 {
	padding: 5px;
	width: 50%;
  }
  }



@media only screen and (min-width: 769px) {
.columny{
  display : -webkit-box;     /* old Android */
  display : -webkit-flex;    /* Safari etc. */
  display : -ms-flexbox;     /* IE10        */
  display : flex;
  align-items: flex-end;
 }
.c_box {
  -webkit-flex-basis: 65%;
  -ms-flex-basis    : 65%;
  flex-basis        : 65%;
	position: relative;
}
.c_box img {
	width: 100%;
}
.c_box2 {
	-webkit-flex-basis: 35%;
	-ms-flex-basis    : 35%;
	flex-basis        : 35%;
	padding-left: 50px;
	padding-bottom: 15px;
}
.cc_box {
  -webkit-flex-basis: 65%;
  -ms-flex-basis    : 65%;
  flex-basis        : 65%;
	position: relative;

}
.cc_box img {
	width: 100%;
}
.cc_box2 {
	-webkit-flex-basis: 35%;
	-ms-flex-basis    : 35%;
	flex-basis        : 35%;
	padding-bottom: 15px;
	padding-right: 15px;
}
}

/************************************
** お問合せフォーム
************************************/
@media screen and (max-width:767px) {
#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="text"], textarea {
	width:80%;
	padding:5px;
	font-size:110%;
	display:block;
}
input[type="submit"], input[type="reset"], input[type="button"] {
	display:block;
	width:100%;
	height:40px;
}
.mt5 {
	margin-top: 5px;
	background-color: #FFFFFF;
}
}
@media only screen and (min-width: 768px) {
#formWrap {
	width: 80%;
	max-width: 700px;
}
}


/************************************
** デバイス専用
************************************/

@media only screen and (max-width: 768px) {
.img_right {
	text-align: center;
	margin: 0px auto 1em;
	display: block;
	}
.img_left {
	display: block;
	margin-left: auto;
	margin-right: auto;
	}
.w90m700 {
	width: 90%;
	margin: 0 auto 3em;
	}
.w90m800 {
	width: 90%;
	margin: 0 auto 3em;
	}
.w90m850 {
	width: 90%;
	margin: 0 auto 2em;
	}
.w90m900 {
	width: 90%;
	margin: 0 auto 2em;
	}
.w95m800 {
	width: 95%;
	margin: 0 auto 3em;
	}
.w95m1000 {
	width: 90%;
	margin: 0 auto;
	}
.sp_nono {
	display: none;
}
.br-pc {
	display: none;
}
}
@media only screen and (min-width: 769px) {
.img_right {
	float: right;
	margin-left: 10px;
	margin-bottom: 10px;
	}
.img_left {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
	}
.w90m700 {
	width: 90%;
	max-width: 700px;
	margin: 0 auto 3em;
}
.w90m800 {
	width: 90%;
	max-width: 800px;
	margin: 0 auto 3em;
	}
.w90m850 {
	width: 90%;
	max-width: 850px;
	margin: 0 auto 2em;
	}
.w90m900 {
	width: 90%;
	max-width: 900px;
	margin: 0 auto 2em;
	}
.w95m800 {
	width: 95%;
	max-width: 800px;
	margin: 0 auto;
	}
.w95m1000 {
	width: 95%;
	max-width: 1000px;
	margin: 0 auto 3em;
	}
.w80m760 {
	width: 80%;
	max-width: 760px;
	margin: 0 auto 3em;
	}
.pcmt3 {
	margin-top: 3em!important;
}
.pcpb3 {
	padding-bottom: 3em;
}
.br-sp {
	display: none;
}
.pc_none {
	display: none;
}
}
@media only screen and (max-width: 960px){
.smp_txt {
	font-size: 95%;
	margin-bottom: 10px;	
}
.smt1 {
	padding-top: 1em;
}
.smtb3 {
	padding-top: 3em;
	padding-bottom: 3em;
}
.smtb_10 {
	padding-top: 10px;
	padding-bottom: 10px;
}
.smmb170 {
	margin-bottom: 170px;	
}
.smmb20 {
	margin-bottom: 2em;	
}
.sp_c {
	margin: 0 auto 10px;
	display: block;
}
.sp_center {
	margin: 0 auto 10px;
	text-align: center;
}
.sp_size90 {
	margin: 0 5%;
}
.sp_f80 {
	font-size: 80%;
}
.nowrap {
	white-space :nowrap;
}
.pc_header,
.pc_img,
.pc_txt,
.side_inq,
.head_r,
.head_l,
#topwrap,
#gnavi,
.head_tel,
.snsarea span,
.fbox2,
#sidenavi,
.pcbr,
.sp_no,
.pc_table
{
	display: none;
}

.space_bottom_ll {
	margin-bottom: 4em!important;
}
.space_bottom_l {
	margin-bottom: 3em!important;
}
.space_bottom_m {
	margin-bottom: 2em;
}
.space_bottom_s {
	margin-bottom: 0.5em;
}
.space_top_b {
	margin-top: 2em;
}
.wid300 {
	width: 300px;
	margin: 0 auto 2em;
}
.wid200 {
	width: 200px;
	margin: 0 auto 2em;
}
.wid150 {
	width: 150px;
	margin: 0 auto;
}

/* 画像サイズ */
img.wid50 {
	width: 50%;
}
img.wid45 {
	width: 45%;
}
img.wid30 {
	width: 30%;
}
img.wid65 {
	width: 65%;
}
.wid50p {
	width: 50px !important;
}
img.wid65 {
	width: 65% !important;
}
img.wid80 {
	width: 80% !important;
}
img.wid95 {
	width: 95% !important;
}

}
@media only screen and (min-width: 961px) {
img.full_pc {
	width: 100%;
	text-align: center;
}
.wid600 {
	width: 600px;
	margin: 0 auto 3em;
}

.wid300 {
	width: 300px;
	margin: 0 auto 3em;
}
.pcwid300 {
	width: 300px;
	margin: 0 auto 1em;
}
.wid200 {
	width: 200px;
	margin: 0 auto 3em;
}
.wid150 {
	width: 150px;
	margin: 0 auto;
}
.smp_tel,
.smp_header,
.smp_txt,
.smp_tt,
.smp_img,
.spbt_inq,
#pd_menu,
.pd_icon,
.smpbr,
.smp_table,
.sp_ftel,
.pcbr,
.sp_no,
.sp_ftel {
	display: none;
}
.pc_left {
	float: left;
}
.pc_right {
	float:right;
}
.pct_left {
	text-align: left;
}
.pct_right {
	text-align: right;
}
.pcmb30 {
	margin-bottom: 30px;
}
.pcml20 {
	margin-left: 20px;
}
.pcml30 {
	margin-left: 30px;
}
.pcml30 {
	margin-left: 30px;
}
.pcml90 {
	margin-left: 90px;
}
.pcmr10 {
	margin-right: 10px;
}
.pcmr20 {
	margin-right: 20px;
}
.pcmr50 {
	margin-right: 50px;
}
.pcpb50 {
	padding-bottom: 50px;
}
.space_bottom_ll {
	margin-bottom: 7em!important;
}
.space_bottom_l {
	margin-bottom: 5em!important;
}
.space_bottom_m {
	margin-bottom: 3em;
}
.space_bottom_s {
	margin-bottom: 1em;
}
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block!important; }
.sp { display: none!important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 961px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

/************************************
** スマートフォン用のメディアクエリ
************************************/
/*767px以下*/
@media only screen and (max-width: 767px) {
}

/************************************
** タブレット用のメディアクエリ
************************************/
/*960px以下*/
@media only screen and (max-width: 960px){
}

/************************************
** スマートフォン・タブレッド用のメディアクエリ
************************************/
/*960px以下*/
@media only screen and (max-width: 960px){

}
/************************************
** タブレット・PC用のメディアクエリ
************************************/
/*768px以上*/
@media only screen and (min-width: 768px) {
}

/************************************
** PC用のメディアクエリ
************************************/
/*961px以上*/
@media only screen and (min-width: 961px) {
	
}
