@charset "utf-8";
/*
///////////////////////////////////////////////////////////////////////////////////
//
//  基本CSS設定
//
///////////////////////////////////////////////////////////////////////////////////
/*
/* [RESET,FORMAT]
--------------------------------------------------------------------------*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-style: normal;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
article,aside,details,figcaption,figure, footer,header,hgroup,menu,nav,section { 
	display: block;
}
ul, li {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	color: #111;
	text-decoration: none;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-ms-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}
a:hover {
	opacity: 0.5;
	-webkit-opacity: 0.5;
	-moz-opacity: 0.5;
	filter: alpha(opacity=50);	/* IE lt 8 */
	-ms-filter: "alpha(opacity=50)"; /* IE 8 */
}
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	line-height: 160%;
}
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #CCC;
	margin: 1em 0;
	padding: 0;
}
input, select {
	vertical-align: middle;
}
img {
    vertical-align: bottom;
}

/* [SITE FORMAT]
--------------------------------------------------------------------------*/
html, body {
    background: #fffff5;
    font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
	font-size: 16px;
	height: auto;
	line-height: 160%;
    letter-spacing: 1px;
	color: #111111;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.fade-bg {
    background: #FFF;
    content: "";
    position: fixed;
    z-index: 1002;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    animation-name: PageAnime-fade;
    animation-duration: 1.5s;
    animation-delay: 1.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    pointer-events: none;
}
@keyframes PageAnime-fade {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        display: none;
    }
}
h1,h2,h3,h4,h5 {
    line-height: 160%;
    margin-bottom: 10px;
}
h1 {
    font-size: 30px;
    color: #f5a5a4;
}
h2 {
    font-size: 26px;
    color: #f5a5a4;
}
h3 {
    font-size: 24px;
    color: #f5a5a4;
}
h4,
h5 {
    font-size: 20px;
}
p {
    line-height: 160%;
    margin-bottom: 20px;
}
figcaption {
    margin-bottom: 20px;
}
.material-icons {
    font-size: 18px;
    display: inline-flex;
    vertical-align: middle;
    margin-left: 3px;
}
header {
    background: #FFF;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    box-sizing: border-box;
    top: 0;
    position: sticky;
    z-index: 1000;
}
header #logo {
    width: 180px;
    display: block;
    margin: 0 auto 20px auto;
}
header #logo img {
    vertical-align: bottom;
}
.box {
    animation: fadeIn linear both;
    animation-timeline: view();
}
@keyframes fadeIn {
    from {
        opacity: 2;
        clip-path: inset(-50%);
    }
    to {
        opacity: 0;
        clip-path: inset(50%);
    }
}
header #sns {
    width: 150px;
    display: block;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}
header #sns a {
    display: block;
    margin: 5px 0;
    color: #f5a5a4;
    transition: 0.3s;
}
header #sns a:hover {
    transform: scale(1.05);
}
header #sns a img {
    margin-right: 10px;
}
header #sns a#login {
    border: solid 1px #f5a5a4;
    background: #FFF;
    line-height: 36px;
    border-radius: 18px;
    box-sizing: border-box;
    padding: 0 10px;
    margin-bottom: 10px;
    text-align: center;
}
header #sns a#login:hover {
    background: #f5a5a4;
    color: #FFF;
}
header nav ul {
    width: 1080px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    box-sizing: border-box;
    margin: 0 auto;
}
header nav ul li a {
    color: #333;
    padding-left: 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}
header nav ul li:first-child a {
    background-image: url(../images/base/i-menu.png);
}
header nav ul li:nth-child(2) a {
    background-image: url(../images/base/i-salon.png);
}
header nav ul li:nth-child(3) a {
    background-image: url(../images/base/i-news.png);
}
header nav ul li:nth-child(4) a {
    background-image: url(../images/base/i-reserve.png);
}
header nav ul li:last-of-type a span {
    display: none;
}
header nav ul li:last-child a:hover {
    color: inherit !important;
}
body.modal-open header {
    display: none;
}
#menu-sp {
    display: none;
}
.slide-show {
    position: relative;
    width: 90%;
    max-width: 1080px;
    height: 608px;
    overflow: hidden;
    box-sizing: border-box;
    border-radius: 36px;
    margin: 30px auto;
}
.slide-show div {
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}
.slideimg-01 {
   background-image: url(../images/layouts/mv-top-01.png);
   animation: slide-animation-01 24s infinite;
}
.slideimg-02 {
   background-image: url(../images/layouts/mv-top-02.png);
   animation: slide-animation-02 24s infinite;
}
.slideimg-03 {
   background-image: url(../images/layouts/mv-top-10.png);
   animation: slide-animation-03 24s infinite;
}
@keyframes slide-animation-01 {
    0% {opacity: 1; transform: scale(1.0);}
    30% {opacity: 1;}
    40% {opacity: 0; transform: scale(1.15);}
    90% {opacity: 0}
    100% {opacity: 1; transform: scale(1.0);}
}
@keyframes slide-animation-02 {
    0% {opacity: 0;}
    30% {opacity: 0; transform: scale(1.1);}
    40% {opacity: 1;}
    60% {opacity: 1;}
    70% {opacity: 0; transform: scale(1.0);}
    100% {opacity: 0;}
}
@keyframes slide-animation-03 {
    0% {opacity: 0;}
    60% {opacity: 0;  transform: scale(1.0);}
    70% {opacity: 1;}
    90% {opacity: 1;}
    100% {opacity: 0; transform: scale(1.1);}
}