@charset "UTF-8";
/*=======================================================
reset
=======================================================*/
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, 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,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section main {
	display: block;
}
html {
    -webkit-text-size-adjust: 100%;
}
body {
	font-family: "メイリオ", Meiryo, "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 28px; 
	background: #fff;
	line-height: 1;
	letter-spacing: 0.04em;
	position: relative;
	min-width: 750px;
	width: 750px;
	margin: auto;
}
ol, ul, li {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}
p,li,dt,dd,th,td {
	-ms-line-break:strict;
	line-break:strict;
	-ms-word-break:break-strict;
	word-break:break-strict;
}
footer small {
	font-family: Verdana;/* Android */
}
/*フォームリセット*/
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}

button,
input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
}

input[type="radio"] {
    display: none;
}
input[type="radio"]:checked + label {
    background: #ff0000;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;/* Chrome */
}
select::-ms-expand {
    display: none;
}
select::-ms-value {
    background: none;
    color: #222;
}
label {
	cursor: pointer;
}
a {
	color: #222;
	text-decoration: none;
	-webkit-text-decoration-skip: none;
}
a:hover {
	opacity: 0.8;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
.btn a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: #917d4d;
	margin: auto;
	position: relative;
	padding: 2px 0 0;
}
.btn a::after {
	position: absolute;
	top: 32px;
 	right: 18px;
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8.5px 0 8.5px 14px;
	border-color: transparent transparent transparent #fff;
}
img {
	max-width: 100%;
	height: auto;
	border-style: none;/* IE10 */
}
/*=======================================================
header
=======================================================*/
header  {
	width: 750px;
	height: 125px;
	position: fixed;
	background: url(../images/common/header_bg.png) bottom center no-repeat,#fff;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
}
/*ロゴ*/
header h1,
header .logo {
	position: absolute;
	top: 54px;
	left: 36px;
}
/*テキスト*/
header h1 + p,
header .logo + p {
	position: absolute;
	top: 24px;
	left: 36px;
	font-size: 20px;
}
/*language*/
header .language {
	display: none;
}
header .language a {
	background: #917d4d;
	color: #fff;
	font-size: 22px;
	letter-spacing: 0.08em;
	border-radius: 10px;
	width: 189px;
	height: 39px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: absolute;
	top: 37px;
	left: 418px;
}
header .language a::before {
	content: "";
	display: block;
	background: url(../../new/images/common/language.svg) top center / contain no-repeat;
	width: 27px;
	height: 27px;
	margin: 0 15px;
}
/*キャラクター*/
header .fluffy {
	position: absolute;
	top: 31px;
	left: 328px;
	z-index: 9999;
}
header .fluffy:hover {
	-webkit-animation: fluffy 1s linear 0s 1;
	animation: fluffy 1s linear 0s 1;
}
@-webkit-keyframes fluffy {
	0%   { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
	15%  { -webkit-transform: scale(0.9, 0.9) translate(0%, 5%); }
	30%  { -webkit-transform: scale(1.3, 0.8) translate(0%, 10%); }
	50%  { -webkit-transform: scale(0.8, 1.3) translate(0%, -10%); }
	70%  { -webkit-transform: scale(1.1, 0.9) translate(0%, 5%); }
	100% { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
}
@keyframes fluffy {
	0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }
	15%  { transform: scale(0.9, 0.9) translate(0%, 5%); }
	30%  { transform: scale(1.3, 0.8) translate(0%, 10%); }
	50%  { transform: scale(0.8, 1.3) translate(0%, -10%); }
	70%  { transform: scale(1.1, 0.9) translate(0%, 5%); }
	100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}
/*ナビゲーション*/
header nav,
header nav .icon{
	display: inline-block;
	width: 76px;
	height: 79px;
}
header nav {
	position: absolute;
	top: 23px;
	right: 30px;
}
header nav .icon{
	position: relative;
	z-index: 9999;
}
header nav .icon span {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	width: 76px;
	height: 5px;
	background-color: #26272e;
	border-radius: 3px;
	transition: all .4s;
}
header nav .icon span:nth-of-type(1) {
	top: 0;
}
header nav .icon span:nth-of-type(2) {
	top: 22px;
}
	header nav .icon span:nth-of-type(3) {
	top: 44px;
}
header nav.active .icon span:nth-of-type(1) {
	-webkit-transform: translateY(22px) rotate(-315deg);
	transform: translateY(22px) rotate(-315deg);
}
header nav.active .icon span:nth-of-type(2) {
	opacity: 0;
}
header nav.active .icon span:nth-of-type(3) {
	-webkit-transform: translateY(-22px) rotate(315deg);
	transform: translateY(-22px) rotate(315deg);
}
header nav .icon::after{
	content: "";
	display: block;
	background: url(../images/common/header_menu.svg) top center no-repeat;
	width: 70px;
	height: 23px;
	position: absolute;
	bottom: -6px;
	left: 0;
	right: 0;
	margin: auto;
}
/*中身*/
header nav .nav {
	display: none;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 125px;
	left: 0;
	z-index: 9998;
	background: url(../images/common/nav_bg.jpg) top center no-repeat;
}
header nav ul {
	width: 100%;
	height: 1000px;
	display: block;
	padding: 60px 0 0;
}
header nav ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 93px;
}
/*閉じるボタン*/
header nav ul li:last-of-type {
	content: "閉じる";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 248px;
	height: 76px;
	background: #a4903e;
	margin: 35px auto 0;
	border-radius: 10px;
}
/***技術スクール・ご予約***/
.header_link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 732px;
	margin: 66px auto 0;
	position: relative;
	z-index: 1;
}
/*技術スクール*/
.header_link li {
	width: 351px;
	height: 186px;
	background: url(../../new/images/top/nav_bg.png) top center no-repeat;
	position: relative;
}
.header_link li a {
	display: block;
	width: 334px;
	height: 173px;
	margin: auto;
}
.header_link li img {
	position: absolute;
	top: 95px;
	left: 106px;
}
.header_link li::after {
	content: "";
	display: block;
	background: url(../../new/images/top/nav_school_en.svg) top center no-repeat;
	width: 80px;
	height: 18px;
	position: absolute;
	bottom: 36px;
	left: 165px;
}
/*ご予約*/
.header_link li:last-of-type {
	background: url(../../new/images/top/nav_bg2.png) top center no-repeat;
}
.header_link li:last-of-type img {
	left: 107px;
}

.header_link li:last-of-type::after {
	background: url(../../new/images/top/nav_reserve_en.svg) top center no-repeat;
	width: 94px;
	height: 16px;
	left: 109px;
}
/*=======================================================
footer
=======================================================*/
footer {
	background: #fff;
	color: #fff;
	font-size: 28px;
	letter-spacing: 0.06em;
	position: relative;
}
/*ロゴ*/
footer p {
	margin: 0 0 20px 35px
}
/*メニュー*/
footer ul:first-child {
	display: flex;
	flex-wrap: wrap;
	background: #26272e;
}
footer ul:first-child li {
	width: 50%;
	border-right: 1px solid #5d626e;
	border-bottom: 1px solid #5d626e;
}
footer ul:first-child li:nth-child(even) {
	border-right: none;
}
footer ul:first-child li:nth-child(5),
footer ul:first-child li:last-of-type  {
	border-bottom: none;
}
footer ul:first-child li a {
	color: #fff;
	display: flex;
	align-items: center;
	font-size: 28px;
	height: 88px;
	padding: 0 0 0 38px;
}
footer ul:first-child li a::before {
	color: #917d4d;
	content: "▶";
	font-size: 18px;
	margin: 0 20px 0 0;
}
/*店舗一覧*/
footer dl {
	width: 750px;
	background: #333543;
}
footer dl dt {
	text-align: center;
	font-size: 32px;
	color: #fff;
	border-bottom: 1px solid #5d626e;
	height: 60px;
	padding: 14px 0 0;
}
footer dl dd {
	display: inline-block;
	width: 50%;
	border-right: 1px solid #5d626e;
	border-bottom: 1px solid #5d626e;
}
footer dl dd:nth-child(odd) {
	border-right: none;
}
footer dl dd:last-of-type  {
	border-bottom: none;
}
footer dl dd a {
	color: #fff;
	font-size: 28px;
	letter-spacing: 0.06em;
	display: flex;
	align-items: center;
	height: 88px;
	padding: 0 0 0 38px;
}
footer dl dd a::before {
	color: #917d4d;
	content: "▶";
	font-size: 18px;
	margin: 0 20px 0 0;
}
/*他メニュー*/
footer ul:nth-child(3) {
	display: flex;
	flex-wrap: wrap;
	padding: 36px 0 40px;
}
footer ul:nth-child(3) li {
	width: 50%;
}
footer ul:nth-child(3) li a {
	color: #222;
	display: flex;
	align-items: center;
	font-size: 24px;
	height: 55px;
	padding: 0 0 0 38px;
}
footer ul:nth-child(3) li a::before {
	color: #917d4d;
	content: "▶";
	font-size: 16px;
	margin: 0 20px 0 0;
}
/*コピーライト*/
footer small {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 18px;
	letter-spacing: 0.075em;
	color: #fff;
	background: #949494;
	padding: 17px 0 15px;
}
/*=============================
　ページトップボタン
=============================*/
#page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	cursor: pointer;
}
#page-top img {
	width: 104px;
	height: 104px;
}
/*=============================
　パンくず
=============================*/
.breadcrumbs {
	width: 750px;
	margin: 0 auto 32px;
	font-size: 18px;
	letter-spacing: 0.075em;
	padding: 10px 25px;
}
.breadcrumbs ol {
	display: flex;
	align-items: center;
}
.breadcrumbs ol .home a {
	background: url(../../new/images/common/icon_home.png) top center no-repeat;	height: 17px;
	width: 21px;
	overflow: hidden;
	text-indent: 100%;
	white-space: nowrap;
	display: block;
}
.breadcrumbs ol li,
.breadcrumbs ol li a {
	color: #fff;
}
.breadcrumbs ol li + li::before {
	content: ">";
	margin: 0 20px 0 13px;
}

