@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);

/* ------------------------------
 PC、SP共通
------------------------------ */

* {
	margin: 0;
	padding: 0;
}
html,body{
	width: 100%;
}

html {
	-webkit-text-size-adjust: none;
	scroll-behavior: smooth;
}
body {
	background-color: #FFF;
	margin: 0 auto;
	color: #111;
	text-align: center;
	font-family: 'Noto Sans JP', sans-serif;
}
table {
	text-align: left;
	border-collapse: collapse;
}
td {
	vertical-align: top;
}
hr {
	clear: both;
}
img {
	max-width: 100%;
	height: auto;
	width /***/:auto;
	border: none;
	vertical-align: middle;
	image-rendering: -webkit-optimize-contrast;
}

p {
	line-height: 1.75em;
}
ul {
	margin: 0;
	padding: 0;
}
ol {
	margin: 0;
	padding: 0;
}
li {
	line-height: 2em;
}
a {
	transition: all 100ms 0s ease;
}
a:hover {
	opacity: 0.5;
}

span.none {
	display: none;
}
.clear {
	clear: both;
}
.fnt_s {
	font-size: 0.7em;
}
.fnt_l {
	font-size: 1.3em;
}
.bg_gray {
	background-color: #EEE;
}
p.p_right {
	text-align: right;
}
span.red {
	color: #ed075a;
	font-weight: bold;
}
span.blue {
	color: #0065CB;
	font-weight: bold;
}
span.bg_y {
	background-image: linear-gradient(transparent 60%, #fcd900 50%);
}
span.bold {
	color: #000000;
	font-weight: bold;
}

/* ------------------------------
 見出し部分
------------------------------ */

h1 {
	font-size: 10px;
	font-weight: normal;
	margin: 0;
	padding: 0;
	clear: both;
}
h2 {
	font-family: Times,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
	clear: both;
}
h3 {
	font-family: Times,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;
	clear: both;
}
h4 {
	clear: both;
}
h5 {
	clear: both;
}
h6 {
	clear: both;
}


/* ------------------------------
 ロード画面用
 css側にて画像サイズ指定必須
------------------------------ */

#logo_loader {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 9999;
	background-color: #FFF;
	pointer-events: none;
}
#logo_loader .f_logo {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 204px;/*画像サイズ*/
	height: 204px;/*画像サイズ*/
	text-align: center;
	color: #fff;
}
#logo_loader .f_logo img {
	width: 100%;
	height: auto;
}
#logo_loader .f_logo:before {
	content: "";
	display: block;
	width: 100%;
	height: 110%;
	background-color: #FFF;
	position: absolute;
	top: 0;
	left: 100%;
	animation: loadLogo 1.5s;
}
@keyframes loadLogo {
	0% {
		left: 0;
		top: 0;
	}
	50% {
		left: 0;
		top: 0;
	}
	100% {
		left: 0;
		top: -110%;
	}
}
#logo_loader .f_logo:before {
	animation: loadLogo 1s;
}

#logo_loader.open {
	animation-name: slideOut;
	animation-fill-mode: forwards;
	animation-duration: 2s;
	animation-delay: 2s;
}

@keyframes slideOut {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

/* ------------------------------
 トップボタン
 SP時最下部にボタンつける場合は別クラスで追加指定
 位置はそれぞれ調整
------------------------------ */

div.pagetop {
	width: auto;
	margin: 0;
	position: fixed;
	right: 20px;
	z-index: 900;
	pointer-events: none;
	font-size: 14px;
}
div.pagetop a {
	background-color: #FFF;
	padding: 15px 20px;
	border: solid 1px #BBB;
	text-decoration: none;
	color: #555;
	pointer-events: auto;
}
div.pagetop a:hover {
	opacity: 1;
	color: #FFF;
	background-color: #555;
}


/* ------------------------------
 フォーム
------------------------------ */

div.inq01 {
	padding: 5px 0;
}
div.inq02 {
	padding: 5px 0;
}
input.input_box {
	width: 97%;
	padding: 10px 5px;
	border: solid 1px #BBB;
	border-radius: 3px / 3px;
	font-size: 16px;
}
input.input_box02 {
	width: 50%;
	padding: 5px 5px;
	border: solid 1px #BBB;
	border-radius: 3px / 3px;
	font-size: 16px;
}
input.input_box03 {
	width: 20%;
	padding: 5px 5px;
	border: solid 1px #BBB;
	border-radius: 3px / 3px;
	font-size: 16px;
}
textarea.input_box {
	width: 97%;
	height: 150px;
	border: solid 1px #BBB;
	border-radius: 3px / 3px;
	padding: 10px 5px;
	font-size: 16px;
}
::-webkit-input-placeholder {
	color: #aaa;
}
::-moz-placeholder {
	color: #aaa;
	opacity: 1;
}
:-ms-input-placeholder {
	color: #aaa;
}
label, input[type='radio'] {
	cursor: pointer;
}
label, input[type='checkbox'] {
	cursor: pointer;
}
select {
	padding: 5px 10px;
	border: solid 1px #BBB;
}
p.thanks {
	text-align: center;
	font-size: 1.3em;
	margin: 200px auto;
}

/* ------------------------------
 確認画面部分
------------------------------ */

div.wrapper_confirm {
}
table.formTable {
	width: 100%;
	margin: 20px auto;
	border-top: solid 1px #ddd;
	border-left: solid 1px #ddd;
	border-collapse: collapse;
}
table.formTable th {
	border-right: solid 1px #ddd;
	border-bottom: solid 1px #ddd;
	padding: 10px 10px;
	background-color: #EEE;
	font-weight: normal;
}
table.formTable td {
	border-right: solid 1px #ddd;
	border-bottom: solid 1px #ddd;
	padding: 5px 5px;
}

div#formWrap {
	max-width: 700px;
	margin: 0 auto;
}
div#formWrap input {
	font-size: 16px;
	padding: 5px 10px;
	margin-bottom: 5px;
}
p.error_messe {
	text-align: left;
	color: #F00;
}
p.form_text01 {
	font-weight: bold;
	font-size: 1em;
}


/* ------------------------------
 見出し部分
------------------------------ */

h1 {
}
h2 {
}
h2::before {
	content:url("image/bg_h2.png");
	vertical-align: middle;
}
h3 {
}
h3::before {
	content:url("image/bg_h3.png");
	vertical-align: middle;
}

/* ------------------------------
 セクション
------------------------------ */

article {
}
section {
	overflow: hidden;
	text-align: left;
}
section div.wrapper li {
}

/* ------------------------------
 テキスト関連
------------------------------ */

p.center {
	text-align: center;
	clear: both;
}

/* ------------------------------
 全体
------------------------------ */

body#index {
	background-image:url(image/bg.png);
	background-repeat: no-repeat;
	background-position: right;
	background-attachment: fixed;
}
div.main {
	margin: 0 auto;
	text-align: left;
	position: relative;
}
div.left {
	height: 100%;
	background-color: #0b375d;
	position: fixed;
}
div.left a {
	text-decoration: none;
}
div.left a:hover {
	opacity: 1 !important;
}
div.left_fixed {
}
div.right {
	margin: 0 auto;
	text-align: left;
}
div.wrapper {
	margin: 0 auto;
	background: rgba(255,255,255, 0.8);
	text-align: left;
	border: solid 1px #DDD;
}
section div {
	overflow: hidden;
	clear: both;
}

/* ------------------------------
 メイン画像
------------------------------ */

div.topimg {
	margin: 0 auto;
	background-color: #DDD;
}

/* ------------------------------
 お知らせ
------------------------------ */

div.info {
	max-height: 300px;
	overflow: auto;
	font-size: 0.9em;
}
div.info dl {
	border-bottom: solid 1px #AAA;
}
div.info dd {
	line-height: 1.8em;
}

/* ------------------------------
 infoページ
------------------------------ */

h1.info {
	text-align: center;
}

/* ------------------------------
 注意
------------------------------ */

div.caution_wrapper {
}
div.caution_wrapper div {
	border: solid 3px #6fafe7;
	border-radius: 5px / 5px;
}
div.caution04 {
	background-color: #f9bb00;
	border-radius: 5px / 5px;
}
div.caution04 p {
}

/* ------------------------------
 施術者紹介
------------------------------ */

p.haru {
	font-weight: bold;
	text-align: center;
}


/* ------------------------------
 お問い合わせ
------------------------------ */

div.inq01 {
	font-weight: bold;
	color: #000;
}
div.inq span.red {
	font-size: 0.9em;
}

input.button {
	-webkit-appearance: none;
}

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

footer {
	overflow: hidden;
	font-weight: bold;
}
body#info footer p {
	text-align: center;
}



/*=====================================================================================
画面の横幅が641px以上
=====================================================================================*/

@media screen and (min-width: 641px){

.smart_only {
	display: none;
}
.hamburger-menu {
	display: none;
}
p.smart_center {
	clear: both;
}
p.pc_center {
	text-align: center;
	margin: 50px auto !important;
	clear: both;
}



/* ------------------------------
 見出し部分
------------------------------ */

h1 {
}
h2 {
	font-size: 32px;
	margin: 25px 25px;
}
h2::before {
	padding-right: 10px;
}
h3 {
	font-size: 28px;
	margin: 25px 25px;
}
h3::before {
	padding-right: 10px;
}

/* ------------------------------
 セクション
------------------------------ */

article {
}
section {
	margin-bottom: 40px;
}
section p {
	margin: 30px 30px;
}
section div.wrapper ul,
section div.wrapper ol {
	margin: 30px 60px;
}
section div.wrapper li {
	margin-bottom: 5px;
}

/* ------------------------------
 画像関連
------------------------------ */

img.imgleft {
	float: left;
	margin: 0 40px 40px 0;
}
img.imgright {
	float: right;
	margin: 0 0 40px 40px;
}

/* ------------------------------
 テキスト関連
------------------------------ */

p.center {
	margin: 50px auto !important;
}

/* ------------------------------
 全体
------------------------------ */

body#index {
	background-size: contain;
}
div.main {
	max-width: 1250px;
}
div.left {
	width: 250px;
}
div.left_fixed {
	width: 200px;
	margin: 20px 25px 0;
}
div.right {
	max-width: 1000px;
	position: absolute;
	left: 250px;
}
div.wrapper {
	max-width: 900px;
	font-size: 1.25em;
	text-align: left;
}
section div {
}


/* ------------------------------
 メニュー
------------------------------ */

nav {
	margin-top: 30px;
	font-size: 20px;
}
nav ul {
	list-style: none;
	margin-bottom: 5px;
}
nav li a {
	color: #FFF;
	line-height: 40px;
	display: block;
}
nav li a::before {
	content: '■';
	color: #589fdd;
	margin-right: 10px;
}

nav a:hover {
	color: #ffbb00;
}

/* ------------------------------
 バナー
------------------------------ */

div.banner01 {
	margin-top: 30px;
	font-size: 20px;
}
div.banner01 a {
	display: block;
	color: #FFF;
	background-color: #ffae00;
	background-image:url(image/icon_access.png);
	background-repeat: no-repeat;
	background-position: 13px center;
	padding: 10px 0 10px 40px;
}
div.banner01 a:hover {
	background-color: #ff6600;
}

div.banner02 {
	margin-top: 10px;
	font-size: 20px;
}
div.banner02 a {
	display: block;
	color: #FFF;
	background-color: #ff1684;
	background-image:url(image/icon_mail.png);
	background-repeat: no-repeat;
	background-position: 8px center;
	padding: 10px 0 10px 45px;
}
div.banner02 a:hover {
	background-color: #ae0a34;
}

div.banner03 {
	margin-top: 10px;
	font-size: 20px;
}
div.banner03 a {
	display: block;
	color: #FFF;
	background-color: #2c883a;
	background-image:url(image/icon_blog.png);
	background-repeat: no-repeat;
	background-position: 8px center;
	padding: 10px 0 10px 70px;
}
div.banner03 a:hover {
	background-color: #00480b;
}



/* ------------------------------
 お知らせ
------------------------------ */

div.info {
	margin: 20px 60px;
}
div.info dl {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 5px;
	padding-bottom: 5px;
}
div.info dl dt {
	width: 17%;
}
div.info dl dd {
	width: 82%;
}

/* ------------------------------
 infoページ
------------------------------ */

h1.info {
	margin: 20px auto;
}

/* ------------------------------
 注意
------------------------------ */

div.caution_wrapper {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 30px 30px 0;
}
div.caution_wrapper div {
	margin-bottom: 25px;
}
div.caution_wrapper div p {
	margin: 15px 15px;
}
div.caution_wrapper div p img.imgright {
	margin: 20px 0 20px 20px;
}
div.caution01 {
	width: 30%;
}
div.caution02 {
	width: 66%;
}
div.caution03 {
	width: 48%;
}
div.caution04 {
	margin: 0 30px 30px;
	font-size: 1.2em;
}
div.caution04 p {
	margin: 15px 15px;
}

/* ------------------------------
 施術者紹介
------------------------------ */

p.haru {
	margin: 30px auto;
	font-size: 38px;
}
div.haru_wrapper {
	max-width: 840px;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	justify-content: center;
	grid-gap: 10px 10px;
	margin: 30px auto;
}

/* ------------------------------
 カレンダー
------------------------------ */

div.calender {
	max-width: 840px;
	margin: 30px auto;
}
div.calender iframe {
}

/* ------------------------------
 アクセス
------------------------------ */

div.google-maps {
	max-width: 840px;
	margin: 30px auto;
}
div.access_wrapper {
	max-width: 840px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 30px auto;
}
div.access {
	width: 400px;
	margin-bottom: 20px;
}
div.access p {
	margin: 10px 0;
}

/* ------------------------------
 お問い合わせ
------------------------------ */

div.inq_wrapper {
	max-width: 600px;
	margin: 30px auto;
}
input.button {
	font-size: 18px;
	padding: 10px 15px;
}

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

footer {
	font-size: 16px;
	margin: 40px 0 0 0;
	padding-bottom: 60px;
}
footer p {
	text-align: right;
}
div.bottom_link {
	display: none;
}


/* ------------------------------
 トップボタン位置
------------------------------ */

div.pagetop {
	bottom: 20px;
}

}

/*=====================================================================================
●smart.css  画面の横幅が640px以下
=====================================================================================*/

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

.pc_only {
	display: none;
}
p.smart_center {
	text-align: center;
	clear: both;
}


nav{
	display: none;
}

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

.menu-btn {
	position: fixed;
	top: 10px;
	right: 10px;
	display: flex;
	height: 50px;
	width: 50px;
	justify-content: center;
	align-items: center;
	z-index: 999;
	background-color: #555;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background-color: #ffffff;
	position: absolute;
}
.menu-btn span:before {
	bottom: 8px;
}
.menu-btn span:after {
	top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
	background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
	bottom: 0;
	transform: rotate(45deg);
	transition: all 0.3s;
}
#menu-btn-check:checked ~ .menu-btn span::after {
	top: 0;
	transform: rotate(-45deg);
	transition: all 0.3s;
}
#menu-btn-check {
	display: none;
}

.menu-content {
	width: 80%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 100%;
	z-index: 997;
	background-color: rgba(0,0,0,0.85);
	transition: all 0.3s;
	text-align: left;
	overflow: auto;
}
#menu-btn-check:checked ~ .menu-content {
	left: 20%;
}
.menu-content ul {
	padding: 70px 10px 100px;
}
.menu-content ul li {
	border-bottom: solid 1px #AAA;
	list-style: none;
}
.menu-content ul li a {
	display: block;
	width: 100%;
	font-size: 20px;
	box-sizing: border-box;
	color:#ffffff;
	text-decoration: none;
	padding: 12px 15px 13px 0;
	position: relative;
}
.menu-content ul li a::before {
	content: "";
	width: 7px;
	height: 7px;
	border-top: solid 2px #ffffff;
	border-right: solid 2px #ffffff;
	transform: rotate(45deg);
	position: absolute;
	right: 5%;
	top: 16px;
}

/* ------------------------------
 見出し部分
------------------------------ */

h1 {
}
h2 {
	font-size: 26px;
	margin: 20px 20px;
}
h2::before {
	padding-right: 15px;
}
h3 {
	font-size: 24px;
	margin: 20px 20px;
}
h3::before {
	padding-right: 10px;
}

/* ------------------------------
 セクション
------------------------------ */

article {
}
section {
	margin-bottom: 30px;
}
section p {
	margin: 20px 20px;
}
section div.wrapper ul,
section div.wrapper ol {
	margin: 30px 40px;
}
section div.wrapper li {
	margin-bottom: 5px;
}

/* ------------------------------
 テキスト関連
------------------------------ */

p.center {
	margin: 30px auto !important;
}

/* ------------------------------
 全体
------------------------------ */

body#index {
	background-size: cover;
}
div.main {
	width: auto;
}
div.left {
	display: none;
}
div.right {
	width: auto;
}
div.wrapper {
	width: auto;
	font-size: 1.25em;
	text-align: left;
	margin: 0 10px;
	padding: 0 0;
}
/* ------------------------------
 お知らせ
------------------------------ */

div.info {
	margin: 20px 20px;
}
div.info dl {
	margin-bottom: 8px;
	padding-bottom: 8px;
}
div.info dl dt {
	margin-bottom: 5px;
}
div.info dl dd {
}

/* ------------------------------
 infoページ
------------------------------ */

h1.info {
	margin: 20px auto;
}

/* ------------------------------
 注意
------------------------------ */

div.caution_wrapper {
	margin: 30px 10px 0;
}
div.caution_wrapper div {
	margin-bottom: 20px;
}
div.caution_wrapper div p {
	margin: 15px 15px;
}
div.caution_wrapper div p img.imgright {
	margin: 20px 20px;
}
div.caution01 {
	width: auto;
}
div.caution02 {
	width: auto;
}
div.caution03 {
	width: auto;
}
div.caution04 {
	margin: 0 10px 20px;
	font-size: 1.2em;
}
div.caution04 p {
	margin: 15px 15px;
}

/* ------------------------------
 施術者紹介
------------------------------ */

p.haru {
	margin: 20px auto;
	font-size: 28px;
}
div.haru_wrapper {
	width: auto;
	text-align: center;
	margin: 30px auto;
}
div.haru_wrapper img {
	margin-bottom: 20px;
}

/* ------------------------------
 カレンダー
------------------------------ */

div.calender {
	width: auto;
	margin: 30px 10px;
}
div.calender iframe {
	width: 100%;
	height: 500px;
}

/* ------------------------------
 アクセス
------------------------------ */

.google-maps {
	position: relative;
	padding-bottom: 75%;
	padding-top: 30px;
	height: 0;
	margin: 20px 10px;
}

.google-maps iframe,
.google-maps object,
.google-maps embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

div.access_wrapper {
	width: auto;
	margin: 30px 10px 0;
}
div.access {
	margin-bottom: 30px;
}
div.access p {
	margin: 10px 0;
}

/* ------------------------------
 お問い合わせ
------------------------------ */

div.inq_wrapper {
	width: auto;
	margin: 30px 10px;
}
input.button {
	font-size: 18px;
	padding: 10px 15px;
}

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

footer {
	font-size: 16px;
	margin: 40px 0 0 0;
	padding-bottom: 10px;
}
footer p {
	text-align: center;
}
body#index footer {
	padding-bottom: 100px !important;
}

/* ------------------------------
 スマホ最下部用ボタン
------------------------------ */

div.bottom_link {
	background-color: #0b375d;
	width: 100%;
	text-align: center;
	position: fixed;
	bottom: 0px;
	z-index: 850;
	padding: 20px 0;
	font-weight: bold;
}
div.bottom_link ul {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	justify-content: center;
	grid-gap: 10px 10px;
	list-style: none;
	margin: 0 10px;
}
div.bottom_link li.bottom_access a {
	background-color: #ffae00;
	background-image:url(image/icon_access.png);
	background-repeat: no-repeat;
	background-position: 10px center;
}
div.bottom_link li.bottom_contact a {
	background-color: #ff1684;
	background-image:url(image/icon_mail.png);
	background-repeat: no-repeat;
	background-position: 5px center;
}
div.bottom_link a {
	display: block;
	font-size: 16px;
	color: #FFF;
	text-decoration: none;
	padding: 10px 0 10px 15px;
	border-radius: 5px / 5px;
}


/* ------------------------------
 トップボタン位置
------------------------------ */

div.pagetop {
	bottom: 30px;
}
body#index div.pagetop {
	bottom: 120px !important;
}



}