@charset "UTF-8";
/*============== Config ==============*/
span.highlight {
	font-weight: bold;
	color: #f79531;
}

a:hover img.hover,
span:hover img.hover {
	opacity: 0.8;
}

img.b,
.b {
	display: block;
}

img.auto {
	display: block;
	margin: 0 auto;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
figure,
figcaption,
article,
section,
nav,
header,
footer {
	margin: 0;
	padding: 0;
	font-weight: normal;
	font-style: normal;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

form input,
form textarea {
	-webkit-box-sizing: border-box !important;
	-o-box-sizing: border-box !important;
	-ms-box-sizing: border-box !important;
	box-sizing: border-box !important;
}

body {
	margin: 0;
	padding: 0;
	width: 100%;
	-webkit-font-smoothing: subpixel-antialiased;
	-moz-osx-font-smoothing: unset;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
	(-webkit-min-device-pixel-ratio: 2),
	(min-resolution: 2dppx) {
	body {
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
}

html {
	width: 100%;
	overflow-y: scroll;
	font-size: 62.5%;
}

img {
	border: none;
	-ms-interpolation-mode: bicubic;
}

p {
	margin: 0 0 1em 0;
}

ul,
ol {
	list-style: none;
	list-style-position: inside;
}

ul li,
ol li {
	margin-bottom: 0.5em;
}

dl {
	margin: 0;
}

dl dt {
	margin: 0;
	font-weight: bold;
}

dl dt a {
	font-weight: bold;
}

dl dd {
	margin-bottom: 0.5em;
}

hr {
	border-color: #ddd;
	border-style: solid;
	border-width: 1px 0 0 0;
	height: 1px;
}

hr.solid {
	border-style: solid;
	border-color: #ccc;
}

hr.dotted {
	border-style: dotted;
	border-color: #ccc;
}

hr.dashed {
	border-style: dashed;
	border-color: #bbb;
}

hr.trans {
	border-color: transparent;
	margin: 25px 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
	font-size: inherit;
}

body {
	letter-spacing: 2px;
	line-height: 10px;
	color: #3a2525;
	font-family: 'Noto Sans JP', sans-serif;
}

p {
	font-size: 14px;
	line-height: 25px;
}

.bold h2 {
	position: relative;
	display: inline-block;
	margin-bottom: 1em;
	letter-spacing: 1rem;
	font-weight: bold;
	font-size: 18px;
	font-family: 'Noto Serif JP', serif;
}

.bold h2:before {
	content: '';
	position: absolute;
	bottom: -25px;
	display: inline-block;
	width: 60px;
	height: 2px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #ADADAD;
	border-radius: 2px;
}

.bold p {
	margin-top: 25px;
}

a:hover {
	opacity: 0.7;
}

.frame,
.frame > img {
	margin: 0;
	padding: 0;
	border: 0;
}

.frame {
	position: relative;
	display: inline-block;
	font-size: 0;
	line-height: 0;
}

.frame:after {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	-webkit-box-shadow: inset 0px 0px 15px 15px #fff;
	box-shadow: inset 0px 0px 12px 12px #fff;
	content: ' ';
}

/* animation */
.sa {
	opacity: 0;
	-webkit-transition: all 1.5s ease;
	transition: all 1.5s ease;
}

.sa.show {
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}

.sa--up {
	-webkit-transform: translate(0, 100px);
	transform: translate(0, 100px);
}

.sa--down {
	-webkit-transform: translate(0, -100px);
	transform: translate(0, -100px);
}

.sa--lr {
	-webkit-transform: translate(-100px, 0);
	transform: translate(-100px, 0);
}

.sa--rl {
	-webkit-transform: translate(100px, 0);
	transform: translate(100px, 0);
}

.sa--scaleUp {
	-webkit-transform: scale(0.5);
	transform: scale(0.5);
}

.sa--rotateR {
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}

/********************
loading effects
********************/
.loadingAnim {
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
}

.loadingAnim:before,
.loadingAnim:after {
	line-height: 1;
	position: fixed;
	z-index: 99;
	right: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 50%;
	margin-right: auto;
	margin-left: auto;
	content: ' ';
	-webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
	transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
	background-color: #f2f2f2;
}

.loadingAnim:before {
	top: 0;
}

.loadingAnim:after {
	bottom: 0;
}

.loaded .loadingAnim:before {
	height: 0;
	-webkit-transform: translateY(-1%);
	transform: translateY(-1%);
}

.loaded .loadingAnim:after {
	height: 0;
	-webkit-transform: translateY(1%);
	transform: translateY(1%);
}

.loadingAnim_line {
	line-height: 1;
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: inline-block;
	overflow: hidden;
	width: 150px;
	height: 1.25em;
	margin: auto;
	-webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
	transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
	-webkit-transition-delay: 0.6s;
	transition-delay: 0.6s;
	text-align: center;
}

.loadingAnim_line:after {
	position: absolute;
	z-index: 100;
	top: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 0;
	height: 100%;
	margin: auto auto auto 0;
	content: ' ';
	-webkit-animation: loadingAnim 2s ease-in-out 0.1s infinite normal backwards;
	animation: loadingAnim 2s ease-in-out 0.1s infinite normal backwards;
	background-color: #fff;
	will-change: transform, width;
}

.loadingAnim_line:before {
	font-family: 'Poppins', sans-serif;
	font-size: 1.25em;
	font-weight: bold;
	font-style: normal;
	line-height: 1;
	display: block;
	content: '& Sat.';
	-webkit-animation: loadingAnim_text 1s ease 0.1s infinite alternate both;
	animation: loadingAnim_text 1s ease 0.1s infinite alternate both;
	letter-spacing: 0.5em;
	color: #fff;
	will-change: opacity;
}

.loaded .loadingAnim_line {
	overflow: hidden;
	height: 0;
}

.loaded .loadingAnim_line:after,
.loaded .loadingAnim_line:before {
	-webkit-animation: none;
	animation: none;
}

.loaded .loadingAnim_line:before {
	content: '& Sat.';
}

/********************
loading effects
********************/
.loadingAnim {
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	text-align: center;
}

.loadingAnim:before,
.loadingAnim:after {
	line-height: 1;
	position: fixed;
	z-index: 99;
	right: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 50%;
	margin-right: auto;
	margin-left: auto;
	content: ' ';
	-webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
	transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
	background-color: #f2f2f2;
}

.loadingAnim:before {
	top: 0;
}

.loadingAnim:after {
	bottom: 0;
}

.loaded .loadingAnim:before {
	height: 0;
	-webkit-transform: translateY(-1%);
	transform: translateY(-1%);
}

.loaded .loadingAnim:after {
	height: 0;
	-webkit-transform: translateY(1%);
	transform: translateY(1%);
}

.loadingAnim_line {
	line-height: 1;
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: inline-block;
	overflow: hidden;
	width: 150px;
	height: 20px;
	margin: auto;
	-webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
	transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
	-webkit-transition-delay: 0.6s;
	transition-delay: 0.6s;
	text-align: center;
}

.loadingAnim_line:after {
	position: absolute;
	z-index: 100;
	top: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 0;
	height: 100%;
	margin: auto auto auto 0;
	content: ' ';
	-webkit-animation: loadingAnim 2s ease-in-out 0.1s infinite normal backwards;
	animation: loadingAnim 2s ease-in-out 0.1s infinite normal backwards;
	background-color: #fff;
	will-change: transform, width;
}

.loadingAnim_line:before {
	font-family: 'Poppins', sans-serif;
	font-size: 20px;
	font-weight: bold;
	font-style: normal;
	line-height: 1;
	display: block;
	content: '& Sat.';
	-webkit-animation: loadingAnim_text 1s ease 0.1s infinite alternate both;
	animation: loadingAnim_text 1s ease 0.1s infinite alternate both;
	letter-spacing: 0.5em;
	color: #fff;
	will-change: opacity;
}

.loaded .loadingAnim_line {
	overflow: hidden;
	height: 0;
}

.loaded .loadingAnim_line:after,
.loaded .loadingAnim_line:before {
	-webkit-animation: none;
	animation: none;
}

.loaded .loadingAnim_line:before {
	content: '& Sat.';
}

/********************
animation setting
********************/
@-webkit-keyframes loadingAnim {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
		-webkit-transform: translate(100%);
		transform: translate(100%);
	}
}

@keyframes loadingAnim {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
		-webkit-transform: translate(100%);
		transform: translate(100%);
	}
}

@-webkit-keyframes loadingAnim_text {
	0% {
		opacity: 1;
		color: #f2f2f2;
	}
	50% {
		color: #333;
	}
	100% {
		opacity: 0.5;
		color: #fff;
	}
}

@keyframes loadingAnim_text {
	0% {
		opacity: 1;
		color: #f2f2f2;
	}
	50% {
		color: #333;
	}
	100% {
		opacity: 0.5;
		color: #fff;
	}
}

.loading {
	z-index: 9999;
	visibility: visible;
}

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

.loading-animation {
	opacity: 0;
	visibility: hidden;
}

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

.pagenation {
	margin: 1em 0;
}

.pagenation:after,
.pagenation ul:after {
	clear: both;
	content: '.aac';
	display: block;
	height: 0;
	visibility: hidden;
}

.pagenation ul {
	margin: 0;
}

.pagenation li {
	float: left;
	list-style: none outside none;
	margin-left: 3px;
}

.pagenation li:first-child {
	margin-left: 0;
}

.pagenation li.active {
	background-color: #999999;
	border-radius: 3px;
	color: #ffffff;
	cursor: not-allowed;
	padding: 10px 20px;
}

.pagenation li a {
	background: none repeat scroll 0 0 #cccccc;
	border-radius: 3px;
	color: #ffffff;
	display: block;
	padding: 10px 20px;
	text-decoration: none;
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.pagenation li a:hover {
	background-color: #444444;
	color: #ffffff;
	opacity: 0.8;
	-webkit-transition-duration: 500ms;
	transition-duration: 500ms;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-timing-function: ease;
	transition-timing-function: ease;
}

/*============== Base ==============*/
.footer {
	background: #474747;
	padding: 20px 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer img {
	width: 100px;
	/* margin: 0 4px; */
}

.sns-icon img {
	width: 30px;
	margin: 0 4px;
}

.footer small {
	font-size: 16px;
	color: white;
}

.footer .sm-btn {
	position: absolute;
	bottom: 0;
	left: 0;
}

.top {
	background: #f2f2f2;
	height: 100vh;
	width: 100%;
	position: relative;
}

.topimg {
	width: 80%;
	margin: 0 auto;
	height: 80vh;
	/* 表示画像の高さ ÷ 表示画像の幅 × 100 */
}

.toplogo {
	position: absolute;
	top: 60%;
	left: 23%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
	z-index: 100;
	width: 35%;
	min-width: 250px;
}

header .pageTitle {
	text-align: center;
}

.header2 {
	display: none;
}

nav {
	color: #474747;
	margin: 0 auto;
	padding: 10px;
	z-index: 100;
	/*一番前に表示されるように設定*/
	top: 0;
	/*画面一番上で固定*/
	width: 100%;
	/*ヘッダーが横幅いっぱいになるように指定*/
}

nav .navigation {
	width: 1000px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

nav a {
	font-family: 'Noto Serif JP', serif;
	font-size: 18px;
	text-decoration: none;
	padding: 0 20px;
	color: #474747;
}

nav img {
	width: 100px;
	height: 100%;
	margin-top: 15px;
	margin-right: 100px;
}

.booking {
	background: #474747;
	padding: 15px 10px;
}

.booking a {
	color: white !important;
	font-weight: bold;
	font-size: 14px;
}

.booking:hover {
	-webkit-transition: 1s;
	transition: 1s;
}

nav ul,
ol {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.site-header {
	background: #f2f2f2;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	width: 100%;
}

.site-header.transform {
	background: rgba(255, 255, 255, 0.9);
	padding: 20px;
}

.fixed {
	position: fixed;
	z-index: 9999;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.7);
	padding: 10px;
	-webkit-transition: all 1s;
	transition: all 1s;
}

/********************
レスポンシブ
********************/
/*　画面サイズが768px(for iPad)まではここを読み込む　*/
@media screen and (max-width: 768px) {
	.site-header {
		display: none;
	}
	.toplogo {
		z-index: 98;
	}
	.header2 {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding: 0 20px;
		background: #f2f2f2;
		-webkit-transition: 0.5s;
		transition: 0.5s;
	}
	.header2 img {
		width: 100px;
		padding-left: 20px;
	}
	.header2.transform {
		background: rgba(255, 255, 255, 0.9);
		padding: 20px;
	}
	.fixed {
		position: fixed;
		z-index: 9999;
		width: 100%;
		height: 70px;
		background-color: rgba(255, 255, 255, 0.7);
		padding: 5px;
		-webkit-transition: all 1s;
		transition: all 1s;
	}
	.header__nav2 {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		line-height: 40px;
	}
	.header__nav2 ul {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.logo {
		font-size: 24px;
	}
	/*------------------------------
  
    ここから下がハンバーガーメニュー
    に関するCSS
  
  ------------------------------*/
	/* チェックボックスは非表示に */
	.drawer-hidden {
		display: none;
	}
	/* ハンバーガーアイコンの設置スペース */
	.drawer-open {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		height: 60px;
		width: 60px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		position: relative;
		z-index: 100;
		/* 重なり順を一番上に */
		cursor: pointer;
	}
	/* ハンバーガーメニューのアイコン */
	.drawer-open span,
	.drawer-open span:before,
	.drawer-open span:after {
		content: '';
		display: block;
		height: 3px;
		width: 25px;
		border-radius: 3px;
		background: #333;
		-webkit-transition: 0.5s;
		transition: 0.5s;
		position: absolute;
	}
	/* 三本線のうち一番上の棒の位置調整 */
	.drawer-open span:before {
		bottom: 8px;
	}
	/* 三本線のうち一番下の棒の位置調整 */
	.drawer-open span:after {
		top: 8px;
	}
	/* アイコンがクリックされたら真ん中の線を透明にする */
	#drawer-check:checked ~ .drawer-open span {
		background: rgba(255, 255, 255, 0);
	}
	/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
	#drawer-check:checked ~ .drawer-open span::before {
		bottom: 0;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	#drawer-check:checked ~ .drawer-open span::after {
		top: 0;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	/* メニューのデザイン*/
	.drawer-content {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 100%;
		/* メニューを画面の外に飛ばす */
		z-index: 99;
		background: #f2f2f2;
		opacity: 0.9;
		-webkit-transition: 0.5s;
		transition: 0.5s;
	}
	.drawer-content a {
		color: #3a2525;
	}
	.drawer-content .drawer-list {
		margin-top: 100px;
	}
	/* アイコンがクリックされたらメニューを表示 */
	#drawer-check:checked ~ .drawer-content {
		left: 0;
		/* メニューを画面に入れる */
	}
}

.mobile-part {
	display: none;
}

.storyItem {
	width: 80%;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 80px;
	text-align: justify;
}

.storyItem:nth-child(odd) {
	margin-left: auto;
	/* margin-right: 0; */
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.storyItem > a {
	width: 100%;
}

.storyItem-img {
	height: 300px;
	width: 100%;
	min-width: 300px;
	background: url('../img/andSat.jpeg') 0 0 no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}

.storyItem-img h2 {
	color: white;
	font-size: 56px;
	line-height: 56px;
	position: absolute;
	bottom: 15%;
	left: 20px;
	text-align: left;
	font-family: 'Noto Serif JP', serif;
	text-shadow: 1px 2px 3px #808080;
}

.storyItem-img h2 span {
	display: block;
	font-size: 24px;
	line-height: 24px;
}

.storyItem-img img {
	max-width: 200px;
	width: 50%;
	position: absolute;
	top: 60%;
	padding-left: 20px;
}

.storyItem-img2 {
	height: 300px;
	width: 100%;
	min-width: 300px;
	background: url('../img/menu.jpeg') 0 0 no-repeat;
	background-size: cover;
	background-position: center;
	/* min-width: 300px; */
	position: relative;
}

.storyItem-img2 h2 {
	color: white;
	font-size: 56px;
	line-height: 56px;
	position: absolute;
	bottom: 15%;
	left: 20px;
	text-align: left;
	font-family: 'Noto Serif JP', serif;
	text-shadow: 1px 2px 3px #808080;

}

.storyItem-img2 h2 span {
	display: block;
	font-size: 24px;
	line-height: 24px;
}

.storyItem-img2 img {
	max-width: 200px;
	width: 50%;
	position: absolute;
	top: 60%;
	padding-left: 20px;
}

.storyItem-img3 {
	height: 300px;
	width: 100%;
	min-width: 300px;
	background: url('../img/corporate.jpeg') 0 0 no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}

.storyItem-img3 h2 {
	color: white;
	font-size: 56px;
	line-height: 56px;
	position: absolute;
	bottom: 15%;
	left: 20px;
	text-align: left;
	font-family: 'Noto Serif JP', serif;
	text-shadow: 1px 2px 3px #808080;

}

.storyItem-img3 h2 span {
	display: block;
	font-size: 24px;
	line-height: 24px;
}

.storyItem-img3 img {
	max-width: 200px;
	width: 50%;
	position: absolute;
	top: 60%;
	padding-left: 20px;
}

.storyItem-img4 {
	height: 300px;
	width: 100%;
	min-width: 300px;
	background: url('../img/mibt.jpg') 0 0 no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}

.storyItem-img4 h2 {
	color: white;
	font-size: 56px;
	line-height: 56px;
	position: absolute;
	bottom: 15%;
	left: 20px;
	text-align: left;
	font-family: 'Noto Serif JP', serif;
	text-shadow: 1px 2px 3px #808080;

}

.storyItem-img4 h2 span {
	display: block;
	font-size: 24px;
	line-height: 24px;
}

.storyItem-img4 img {
	max-width: 200px;
	width: 50%;
	position: absolute;
	top: 60%;
	padding-left: 20px;
}

.salon {
	max-width: 450px;
	width: 50%;
	min-width: 350px;
	text-align: center;
	padding: 80px 30px 50px 30px;
	margin: 100px 0 0 0;
	-webkit-box-shadow: 0 0 10px lightgrey;
	box-shadow: 0 0 10px lightgrey;
}

.salon h3 {
	font-family: 'Noto Serif JP', serif;
	text-align: center;
	font-size: 24px;
	z-index: 100;
	padding: 0 0 30px 0;
	font-weight: bold;
}

.salon p {
	margin: 0 0 1em 0;
	text-align: center;
	padding-bottom: 30px;
}

.salon a {
	font-weight: bold;
	margin-bottom: 20px;
	text-decoration: underline;
	/*下線を引く*/
	-webkit-text-decoration-color: #3a2525;
	text-decoration-color: #3a2525;
	/*下線を赤色*/
}

.sec {
	text-align: center;
}

.news {
	margin-top: 100px;
	text-align: center;
}

.article {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 70%;
	margin: 50px auto;
}

.article a {
	text-decoration: none;
	color: #3a2525;
}

.article .article-title h4 {
	font-size: 12px;
	font-weight: bold;
	margin: 15px 0 20px 0;
}

.article .img-card {
	margin: 0 10px;
	width: 250px;
}

.article .img-card img {
	width: 100%;
	height: 150px;
	-o-object-fit: cover;
	object-fit: cover;
}

.view a {
	margin-top: 30px;
	font-weight: bold;
	margin-bottom: 20px;
	text-decoration: underline;
	-webkit-text-decoration-color: #3a2525;
	text-decoration-color: #3a2525;
}

.access {
	margin-top: 100px;
	text-align: center;
}

.info {
	margin: 0 auto;
	padding-top: 50px;
	padding-bottom: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

table th {
	min-width: 120px;
	padding: 10px;
	font-weight: bold;
	font-size: 12px;
}

table td {
	padding-left: 30px;
	text-align: left;
	font-size: 12px;
	line-height: 30px;
}

.iframe-wrap {
	position: relative;
	width: 400px;
	padding-top: 300px;
	/* = height ÷ width × 100 */
}

.iframe-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 300px;
	height: 300px;
	margin-left: 40px;
}

.reserve {
	margin-top: 100px;
	text-align: center;
}

.reserve button {
	width: 300px;
	color: #ffffff;
	background-color: #474747;
	padding: 15px 0;
	font-family: 'Noto Serif JP', serif;
	letter-spacing: 2px;
	cursor: pointer;
}

.reserve button:hover {
	opacity: 0.8;
}

.reserve .required {
	text-align: center;
	width: 400px;
	margin: 0 auto;
}

.reserve .required h3 {
	font-weight: bold;
}

.reserve .required p {
	text-align: left;
	width: 200px;
	margin: 20px auto;
}

.form {
	width: 500px;
	margin: 0 auto 100px;
}

.form .form_row {
	text-align: left;
}

.form .form_row label {
	font-size: 12px;
	font-weight: bold;
}

.form .form_row span {
	color: red;
	padding-left: 10px;
}

.form .form_row-center {
	text-align: center;
}

.form .form_row-center .btn-send {
	width: 100px;
	text-align: center;
}

#mw_wp_form_mw-wp-form-63 {
	margin-top: 50px;
}

form input,
form textarea {
	height: 30px;
	width: 100%;
	margin: 0 auto;
}

.form_content textarea {
	height: 150px;
}

.form-row input {
	width: 100px;
}

.btn-send {
	margin-top: 30px;
	color: white;
	background: #474747;
	border: none;
	letter-spacing: 2px;
}

.btn-send:hover,
.btn-back:hover {
	opacity: 0.7;
}

.btn-back {
	margin-top: 30px;
	width: 100px;
	color: white;
	background: #474747;
	border: none;
	letter-spacing: 2px;
}

.mns_container_icon_wrapper {
	display: none;
}

.about-top {
	background: #f2f2f2;
	width: 100%;
	height: 350px;
}

.about-top .aboutimg {
	width: 80%;
	margin: 0 auto;
	background: url('../img/about2.jpg') center center/cover no-repeat;
	height: 300px;
	position: relative;
}

.about-top .aboutimg p {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
	font-size: 38px;
	letter-spacing: 5px;
	/*文字の装飾は省略*/
	font-family: 'Noto Serif JP', serif;
}

.concept {
	margin: 100px 0;
	text-align: center;
}

.concept .thought {
	text-align: center;
	max-width: 600px;
	width: 80%;
	margin: 20px auto;
}

.strength {
	padding: 70px 40px;
	text-align: center;
	background: url('../img/imagetop5.PNG') 0 0 no-repeat;
	background-size: cover;
	background-position: center;
	margin-bottom: 100px;
}

.strength .article3 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: left;
}

.strength .article3 .card {
	max-width: 300px;
	width: 100%;
	height: auto;
	margin: 20px 40px;
	text-align: justify;
}

.strength .article3 img {
	width: 100%;
}

.strength .article3 h3 {
	font-weight: bold;
	font-size: 18px;
	line-height: 25px;
	letter-spacing: 5px;
	margin: 20px 0;
}

.strength .article3 h4 {
	font-size: 14px;
	line-height: 25px;
}

.profile {
	width: 90%;
	height: auto;
	padding: 50px 30px;
	background: #f2f2f2;
	margin: 0 auto;
	text-align: center;
}

.profile .chiaki {
	max-width: 1000px;
	margin: 0 auto;
	margin-top: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.profile .chiaki img {
	max-width: 400px;
	-webkit-box-shadow: 0 0 30px lightgrey;
	box-shadow: 0 0 30px lightgrey;
}

.profile .chiaki .experience {
	margin-left: 50px;
}

.profile .chiaki .experience p {
	text-align: justify;
}

.profile .certification {
	margin: 30px auto 0;
	width: 500px;
}

.profile .certification .img1 {
	max-width: 300px;
	width: 40%;
	min-width: 200px;
}

.profile .certification .img2 {
	max-width: 150px;
	width: 20%;
	min-width: 100px;
}

.menu-container {
	text-align: center;
}

.menu-container .menu-top {
	background: #f2f2f2;
	width: 100%;
	height: 350px;
}

.menu-container .menu-top .menuimg {
	width: 80%;
	margin: 0 auto;
	background: url('../img/menu2.PNG') center center/cover no-repeat;
	height: 300px;
	position: relative;
}

.menu-container .menu-top .menuimg p {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
	font-size: 38px;
	letter-spacing: 5px;
	/*文字の装飾は省略*/
	font-family: 'Noto Serif JP', serif;
}

.menu-container .menu_thought p {
	margin: 70px 0;
}

.course_menu {
	text-align: center;
	margin-top: 100px;
}

.course_menu p {
	margin-bottom: 50px;
}

.text {
	width: 100%;
	background: #f2f2f2;
	opacity: 0.7;
	height: 120px;
	position: absolute;
	bottom: 0;
}

.text h3 {
	font-size: 16px;
	font-weight: bold;
	padding-top: 40px;
	letter-spacing: 5px;
}

.text p {
	margin-top: 20px;
}

.text h3,
.text p {
	z-index: 100;
}

.logoimg {
	width: 100px;
}

.article-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 90%;
	margin: 0 auto;
}

.article-list a {
	margin: 0 50px;
	text-decoration: none;
	color: black;
	position: relative;
	margin-bottom: 2em;
}

.article-list .menuimg-wrap img {
	width: 350px;
	height: 350px;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-box-shadow: 0 0 30px lightgrey;
	box-shadow: 0 0 30px lightgrey;
}

.courseContainer {
	margin: 100px auto;
	max-width: 800px;
	width: 80%;
	height: auto;
	padding: 50px 50px;
	background-color: beige;
	background: url('../img/55C88937-6B62-4076-9D81-25EEED47524A.jpg') 0 0 no-repeat;
	background-size: cover;
	background-position: center;
	text-align: center;
	position: relative;
}

.courseContainer a {
	color: white;
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 4px;
	margin: 0 30px;
	position: relative;
	z-index: 100;
}

.courseContainer::after {
	content: '';
	background-color: rgba(195, 175, 175, 0.5);
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.story {
	width: 80%;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	padding-bottom: 30px;
	padding-top: 30px;
	text-align: justify;
}

.story img {
	max-width: 200px;
	min-width: 150px;
	/* min-width: 300px; */
}

.story:nth-child(odd) {
	margin-left: auto;
	/* margin-right: 0; */
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

.service {
	max-width: 600px;
	width: 50%;
	min-width: 200px;
	text-align: center;
	padding: 50px 30px 0px 30px;
}

.service img {
	position: relative;
	top: -100px;
	width: 10px;
	z-index: -100;
}

.service h3 {
	font-family: 'Noto Sans JP', sans-serif;
	text-align: center;
	font-size: 24px;
	z-index: 100;
	padding: 0 0 30px 0;
	font-weight: bold;
	letter-spacing: 1rem;
}

.service p {
	margin: 0;
	text-align: center;
	/* padding-bottom: 30px; */
	position: relative;
	top: -90px;
	text-align: justify;
}

.service a {
	font-weight: bold;
	margin-bottom: 20px;
	text-decoration: underline;
	/*下線を引く*/
	-webkit-text-decoration-color: #3a2525;
	text-decoration-color: #3a2525;
	/*下線を赤色*/
}

.caution {
	max-width: 800px;
	width: 90%;
	margin: 70px auto 150px;
	background: #f2f2f2;
	padding: 70px 30px 30px;
	text-align: center;
}

.caution h3 {
	/* font-family: Noto Sans JP, sans-serif; */
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 3.5px;
	margin: 0 40px 16px;
	line-height: 130%;
}

.caution p {
	margin: 0 auto 40px;
	width: 80%;
}

.policy {
	max-width: 600px;
	width: 80%;
	margin: 0 auto 70px;
	background: #fbf8f8;
	padding: 70px 30px 30px;
	text-align: center;
}

.policy p {
	text-align: center;
}

.news-top {
	background: #f2f2f2;
	width: 100%;
	height: 350px;
}

.news-top .newsimg {
	width: 80%;
	margin: 0 auto;
	background: url('../img/news2.PNG') center center/cover no-repeat;
	height: 300px;
	position: relative;
}

.news-top .newsimg p {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
	font-size: 38px;
	letter-spacing: 5px;
	/*文字の装飾は省略*/
	font-family: 'Noto Serif JP', serif;
}

.article-sec {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 90%;
	margin: 100px auto;
}

.article-sec a {
	text-decoration: none;
	color: #3a2525;
	margin: 20px 30px;
}

.article-sec .article-title2 {
	padding: 15px 0 1px 0;
	text-align: center;
	line-height: 20px;
}

.article-sec .article-title2 h4 {
	font-size: 12px;
	font-weight: bold;
	width: 90%;
	margin: 20px auto;
}

.article-sec .article-title2 p {
	padding: 0 25px;
	font-size: 12px;
}

.article-sec .card {
	width: 350px;
	-webkit-box-shadow: 0 0 30px lightgrey;
	box-shadow: 0 0 30px lightgrey;
}

.article-sec .card img {
	width: 100%;
	height: 200px;
	-o-object-fit: cover;
	object-fit: cover;
}

.top-img h1 {
	font-size: 50px;
	padding-top: 300px;
	padding-left: 250px;
}

.single {
	width: 100%;
	margin: 0 auto;
	/* text-align: center; */
}

.article-content {
	width: 90%;
	margin: 0 auto;
	padding-top: 50px;
	padding-bottom: 100px;
}

.category {
	width: auto;
	text-decoration: none;
	padding: 10px 20px;
	border-radius: 5px;
	margin-top: 30px;
	/* background-color: #FFEDDD; */
}

.article-author i {
	padding-right: 5px;
	padding-left: 10px;
}

.wp-pagenavi {
	text-align: center;
}

.navigation2 {
	width: 80%;
	margin: 0 auto;
}

.h1 {
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 20px;
	/* margin-top: 20px; */
	padding: 0.25em 0.5em;
	/*上下 左右の余白*/
	color: #494949;
	/*文字色*/
	background: transparent;
	/*背景透明に*/
	border-left: solid 5px #b8989e;
	/*左線*/
}

.article-img {
	text-align: center;
}

.article-img img {
	width: 70%;
	height: auto;
	text-align: center;
	margin: 20px 0;
}

.content {
	padding-bottom: 30px;
	text-align: left;
}

.content p {
	width: 90%;
	margin: 25px auto 0;
}

/* .article-info img {
  width: 15%;
  position: absolute;
  top: 100px;
  left: 60%;
} */
.prev {
	float: left;
}

.next {
	float: right;
}

.breadcrumb {
	text-decoration: none;
}

.archive {
	border: 1px solid #ccc;
	margin-bottom: 30px;
}

.archive:last-child {
	margin-bottom: 0;
}

.archive .archive_title {
	font-size: 16px;
	padding: 20px 10px;
	line-height: 1;
	border-bottom: 1px solid #ccc;
}

@media only screen and (max-width: 767px) {
	.archive .archive_title {
		font-size: 16px;
	}
}

.archive .archive_list li {
	margin: 0;
	border-bottom: 1px solid #ccc;
	line-height: 1;
}

.archive .archive_list li:last-child {
	border-bottom: none;
}

.archive .archive_list li a {
	padding: 20px 10px;
	display: block;
	text-decoration: none;
	position: relative;
	line-height: 1;
	-webkit-transition: all 300ms 0s ease;
	transition: all 300ms 0s ease;
}

.archive .archive_list li a:after {
	font-weight: 900;
	position: absolute;
	top: 50%;
	right: 10px;
	display: block;
	margin-top: -0.5em;
	font-size: 14px;
	content: '\f105';
	font-family: 'Font Awesome 5 Free';
	color: #bbb;
}

@media only screen and (max-width: 767px) {
	.archive .archive_list li a:after {
		font-size: 14px;
	}
}

.archive .archive_list li a:hover {
	background-color: rgba(112, 70, 46, 0.1);
}

.course-container {
	text-align: center;
}

.course-container .course-breadcrumb {
	margin: 20px 0 20px 20px;
	text-align: left;
}

.course-container .course-content {
	width: 80%;
	margin: 0 auto;
}

.course-container .course-content p {
	font-size: 14px;
}

.course-container .course-content h4 {
	font-size: 18px;
	position: relative;
	display: inline-block;
	margin-bottom: 1em;
	letter-spacing: 1rem;
	margin: 50px 0;
}

.course-container .course-content h4:before {
	content: '';
	position: absolute;
	bottom: -25px;
	display: inline-block;
	width: 60px;
	height: 2px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #b8989e;
	border-radius: 2px;
}

.course-container .course-content .common {
	width: 90%;
	margin: 0 auto;
	background: #f2f2f2;
	letter-spacing: 5px;
}

.course-container .course-content .common p {
	width: 100%;
	font-size: 16px;
	padding: 10px 0;
}

.img-wrap {
	position: relative;
}

.headline {
	width: 800px;
	position: absolute;
	z-index: 100;
	text-align: center;
	color: #fff;
	left: 50%;
	top: 50%;
	/* -webkit-transform: translate(-50%,-50%); */
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.headline h3 {
	color: black;
	font-size: 38px;
	color: black;
	font-size: 38px;
	/* font-weight: bold; */
	letter-spacing: 10px;
	line-height: 45px;
	font-family: 'Noto Serif JP', serif;
}

.margin {
	margin: 50px auto;
	text-align: left;
	max-width: 370px;
	width: 90%;
	min-width: 320px;
}

.margin2 {
	padding-top: 30px;
}

.course-img img {
	width: 100%;
	height: 400px;
	-o-object-fit: cover;
	object-fit: cover;
}

.margin3 {
	margin: 20px auto;
	text-align: left;
	max-width: 400px;
	width: 90%;
}

.whichType {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.wp-block-uagb-advanced-heading {
	width: 400px;
	text-align: left !important;
	border-style: solid;
	border-width: 1px;
	border-color: #bb9998;
	-webkit-transition: background 0.3s, border 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
	transition: background 0.3s, border 0.3s, border-radius 0.3s, -webkit-box-shadow 0.3s;
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
	margin: 20px !important;
}

.wp-block-uagb-advanced-heading h2 {
	font-size: 18px;
	text-align: left !important;
	margin: 15px !important;
}

.wp-block-uagb-advanced-heading p {
	margin: 15px !important;
	text-align: left !important;
}

.uagb-desc-text {
	text-align: left;
}

.uagb-heading-text {
	line-height: 20px;
}

.uagb-separator-wrap {
	padding: 0 10px !important;
	text-align: left !important;
}

.wp-block-uagb-advanced-heading .uagb-separator {
	border-top-style: solid;
	display: inline-block;
	border-top-width: 1px;
	width: 100% !important;
	margin: 0px 0px 0px 0px;
}

.uagb-separator {
	border-top-style: dashed !important;
	margin-bottom: 0px !important;
	color: #bb9998 !important;
}

.description {
	margin: 50px 0;
}

.course-photo {
	width: 300px;
	height: auto;
	margin: 20px 0;
}

.course-recommend {
	margin-top: 30px;
}

.course-recommend .head_test {
	margin: 0;
	/* デフォルトCSS打ち消し */
	font-size: 16px;
	/* 文字サイズ指定 */
	position: relative;
	/* 位置調整 */
	font-weight: normal;
	/* 文字の太さ調整 */
	display: inline-block;
	/* インラインブロックにする */
	padding-top: 40px;
	/* 余白指定 */
	padding-left: 40px;
	/* 余白指定 */
	padding-bottom: 0px;
	/* 余白指定 */
	font-weight: bold;
}

.course-recommend .head_test:before {
	content: '';
	/* 空白の要素を作る */
	background-color: #e3d4cf;
	/* 背景色指定 */
	display: block;
	/* ブロック要素にする */
	position: absolute;
	/* 位置調整 */
	left: 0;
	/* 位置調整 */
	height: 90px;
	/* 高さ指定 */
	width: 90px;
	/* 幅指定 */
	border-radius: 5%;
	/* 丸くする */
	top: 0;
	/* 位置調整 */
	z-index: -1;
	/* 重なり調整 */
}

.caption_box {
	line-height: 20px;
	position: relative;
	width: 80%;
	margin: 50px auto;
	padding: 1em 2em;
	border: 1px dashed #bb9998;
	font-size: 14px;
}

.caption_box .caption {
	position: absolute;
	top: 0;
	left: 0;
	font-size: 1.4em;
	font-weight: 300;
	color: #bb9998;
	margin: 0;
	padding: 0 10px;
	background-color: #fff;
	-webkit-transform: translateY(-50%) translateX(1em);
	transform: translateY(-50%) translateX(1em);
}

.content {
	text-align: center;
}

.content img {
	width: 80%;
	height: auto;
	margin: 30px auto 0;
}

.content p {
	text-align: left;
}

.sm-only {
	display: none;
}

/*============== Libs ==============*/
/*============== Modules ==============*/
/*============== Breakpoints ==============*/
@media (max-width: 1200px) {
	nav .navigation {
		padding-left: 5%;
	}
	.toplogo {
		left: 30%;
		width: 45%;
	}
	.article {
		width: 90%;
	}
	.headline {
		z-index: 20;
	}
	.course-container .course-content .common {
		width: 100%;
	}
	.article-img img {
		width: 50%;
	}
}

@media (max-width: 768px) {
	.top {
		background: #f2f2f2;
		height: 600px;
		width: 100%;
	}
	.toplogo {
		top: 60%;
	}
	.topimg {
		height: 550px;
		background: url(../img/9DA3E562-85C8-462D-A3C9-93A359CADC44.jpg) 0 0 no-repeat;
	}
	.storyItem-img img {
		top: 130%;
	}
	.storyItem-img2 img {
		top: 180%;
	}
	.article {
		width: 90%;
		margin: 50px auto 30px;
		-ms-flex-wrap: nowrap;
		flex-wrap: nowrap;
	}
	.article .img-card {
		margin: 0 10px;
		width: 200px;
	}
	.info {
		width: 90%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-ms-flex-pack: distribute;
		justify-content: space-around;
	}
	table {
		margin-bottom: 30px;
	}
	.profile .chiaki {
		margin-top: 30px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.experience p {
		width: 400px;
	}
	.menu-container .menu_thought p {
		width: 80%;
		margin: 70px auto;
		text-align: left;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.article-list .menuimg-wrap img {
		width: 550px;
		height: 300px;
		-o-object-fit: cover;
		object-fit: cover;
		-webkit-box-shadow: 0 0 30px lightgrey;
		box-shadow: 0 0 30px lightgrey;
	}
	.article-list a {
		margin: 20px 50px;
		text-decoration: none;
		color: black;
		position: relative;
		margin-bottom: 2em;
	}
	.service h3 {
		font-family: Noto Sans JP, sans-serif;
		text-align: center;
		font-size: 24px;
		z-index: 100;
		padding: 0 0 00px 0;
		font-weight: bold;
		letter-spacing: 1rem;
		line-height: 35px;
	}
	.headline {
		width: 700px;
	}
	.article-sec {
		width: 100%;
	}
	.article-sec .card {
/* 		width: 300px; */
	}
	.sm-only {
		position: fixed;
		bottom: 0;
		width: 100%;
		display: block;
	}
	.sm-only a {
		display: block;
		text-align: center;
		padding: 20px 0;
		font-size: 16px;
		text-transform: none;
		text-decoration: none;
		background-color: #3a2525;
		color: white;
	}

	.is-hidden {
		visibility: hidden;
		opacity: 0;
		transition: all 0.3s;
	}
}

@media (max-width: 544px) {
	.toplogo {
		left: 40%;
	}
	.article {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.article .img-card {
		margin: 0 10px;
		width: 300px;
	}
	.form {
		width: 350px;
	}
	.footer {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		text-align: center;
	}
	.footer img {
		margin: 0 auto 10px;
	}
	.footer small {
		font-size: 10px;
	}
	#sub-frame-error {
		height: 80%;
		left: -70px;
	}
	.storyItem {
		width: 90%;
	}
/* 	.mobile-part {
		display: block;
	} */
	.storyItem-img {
		height: 300px;
		width: 100%;
/* 		margin-top: 150px; */
		background: url(../img/menu.png) 0 0 no-repeat;
		background-size: cover;
		background-position: center;
		/* min-width: 300px; */
	}
	.storyItem-img img {
		top: 15%;
	}
	.storyItem-img2 {
		width: 100%;
	}
	.storyItem-img2 img {
		top: 15%;
	}
	.salon {
		max-width: 450px;
		width: 50%;
		min-width: 350px;
		text-align: center;
		padding: 80px 30px 50px 30px;
		margin: 0 auto;
		position: relative;
		top: -150px;
		background: white;
		-webkit-box-shadow: 0 0 10px lightgrey;
		box-shadow: 0 0 10px lightgrey;
	}
/* 	.news {
		margin-top: 0px;
	} */
	.info {
		padding-right: 20px;
		padding-left: 0px;
	}
	.iframe-wrap {
		position: relative;
		left: -20px;
	}
	.thought p {
		text-align: justify;
	}
	.profile .chiaki img {
		width: 100%;
	}
	.profile .chiaki .experience {
		margin-left: 0;
	}
	.profile .chiaki .experience p {
		width: 300px;
	}
	.profile .chiaki .experience {
		margin-left: 0px;
	}
	.profile .certification {
		margin: 30px auto 0;
		width: 100%;
	}
	.img2 {
		margin-top: 20px;
	}
	.reserve .required {
		width: 100%;
	}
	.menu_thought p {
		text-align: justify;
	}
	.article-list .menuimg-wrap img {
		width: 350px;
		height: 250px;
	}
	.service {
		min-width: 350px;
	}
	.story:nth-child(odd) {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.story {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding-top: 0px;
		padding-bottom: 0px;
	}
	.storyItem-img img {
		top: 15%;
	}
	.frame {
		position: relative;
		top: -70px;
		text-align: center;
	}
	.policy h3 {
		margin: 40px 0;
		line-height: 20px;
	}
	.policy p {
		width: 100%;
	}
	.headline {
		width: 300px;
	}
	.common p {
		text-align: justify-content;
	}
	.course-container {
		text-align: left;
	}
	.course-detail,
	.course-present,
	.course-price,
	.course-time {
		text-align: center;
	}
	.course-price p {
		text-align: center !important;
	}
	.course-time p {
		text-align: center !important;
	}
	.article-info .h1 {
		line-height: 35px;
	}
	
	.strength .article3 .card {
		max-width: none;
		margin: 20px 0;
	}
	
	.content p {
		width: 100%;
	}
	
	.caution {
		padding: 70px 0 30px;
	}
}
/*# sourceMappingURL=styles.css.map */
