charset@UTF-8
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
.pc { display: none !important; }
.sp { display: block !important; }
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
@media only screen and (min-width: 768px) {
.pc { display: block !important; }
.sp { display: none !important; }
}
/* --------html-------- */
html {   
}
h1 {
    color: #575050;
}
h2 {
    color: #575050;
}
h3 {
    color: #575050;
}
h4 {
    color: #575050;
}
h5 {
    color: #575050;
}
h6 {
    color: #575050;
}
p {
    color: #575050;
    line-height: 1.5;
}
li {
    color: #575050; 
}

@media only screen and (max-width: 768px) {
p{
    font-size: 0.85em;
    margin-bottom: 10px;
}
th, td {
    font-size: 0.75em;    
}
}

/* -------body------- */
body {
}
body.on {
    height: 100vh;
    overflow: hidden;
}
/* -------style------- */
table {
    border-collapse: collapse;
}
table th, table td {
    border: solid 1px #575050;
}
.mt10 {
    margin-top: 10px;
}
.mt20 {
    margin-top: 20px;
}
.mt30 {
    margin-top: 30px;
}
.mb10 {
    margin-bottom: 10px;
}
.mtb10 {
    margin: 10px 0;
}
.mr10 {
    margin-right: 10px;
}
.pl05 {
    padding: 0 0 0 0.5em;
}

.bgWhite {
    padding: 1em;
    background: rgba(255,255,255,0.5);
    border-radius: 5px;
}
.dotted {
    width: 100%;
    border-top: 1px dotted #999;
}

/* ------header------ */
header {
    min-width: 980px;
    background-color: #e58c8a;
    padding: 0 40px;
}

.headerInner {
    width: 900px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.headerLeft {
    width: 50px;
}
.headerLeft img {
    width: 50px;
}

@media screen and (max-width: 768px) {
header {
    min-width: 100%;
    padding: 0;
}
.headerInner {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.headerLeft {
    width: 40px;
    padding: 10px 0;
}
.headerLeft img {
    width: 40px;
}
.headerRight i{
    display: none;
}
}
.headerRight i {
    color: #575050;
    font-size: 1.25em;
}

/* -----グローバルナビ----- */
/* PC */
.gNavi {
    min-width: 900px;
    background-color: #fff;
    width: 75%;
    margin: auto;
    border-radius: 5px;
    position: relative;
    top: 22px;
    z-index: 5;
}
.gNavi ul {
    display: flex;
    justify-content: space-between;
}
.gNavi li {
    width: 100%;
    font-weight: bold;
    text-align: center;
    display: block;
    list-style: none;
}
.gNavi a {
    color: #575050;
    font-size: 0.9em;
    padding: 10px 5px;
    text-decoration: none;
    display: block;
}
.gNavi a:hover {
    background-color: rgba(133,204,198,0.25);
    border-radius: 5px;
    transition: all .3s ease;
}
@media screen and (max-width: 768px) {
.gNavi {
    display: none;
}
}
/* sp */
.menu-toggle {
    width: 40px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}
.menu-toggle.on .one {
    -moz-transform: rotate(45deg) translate(7px, 7px);
    -ms-transform: rotate(45deg) translate(7px, 7px);
    -webkit-transform: rotate(45deg) translate(7px, 7px);
    transform: rotate(45deg) translate(7px, 7px);
}
.menu-toggle.on .two {
    opacity: 0;
}
.menu-toggle.on .three {
    -moz-transform: rotate(-45deg) translate(8px, -10px);
    -ms-transform: rotate(-45deg) translate(8px, -10px);
    -webkit-transform: rotate(-45deg) translate(8px, -10px);
    transform: rotate(-45deg) translate(8px, -10px);
}

.one,
.two,
.three {
    width: 100%;
    height: 5px;
    background: white;
    margin: 6px auto;
    backface-visibility: hidden;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.gNaviSP ul {
    margin: 0;
    padding: 0;
    font-family: Open Sans;
    list-style: none;
    margin: 50px auto;
    text-align: center;
}
.gNaviSP ul.hidden {
    display: none;
}
.gNaviSP ul a {
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    text-decoration: none;
    color: white;
    line-height: 1.5;
    width: 100%;
    display: block;
}
.gNaviSP ul a:hover {
    background-color: rgba(0, 0, 0, 0.5);
}
.gNaviSP li {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0.5em auto;
}

.menuSP.on {
    z-index: 10;
    width: 100%;
    height: 100%;
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
}

@media screen and (min-width: 769px) {
.menuSP {
    display: none;
}
}

/* -------アーティクル------- */
article {
    min-width: 980px;
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 768px) {
article {
    min-width: 100%;
    }
}
/* ------メインビジュアル------ */
.eyecatch {
    position: relative;
}
/*
.catchpic01 {
    width: 100%;
    min-width: 980px;
    height: 600px;
    background: url(../images/eyecatch01.jpg) center center /cover no-repeat;
}
*/
.catchpic img {
    max-width: 100%;
}
.catchtext {
    color: #fff;
    margin: 0 3em 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    bottom: 25%;
    right: 0;
}
@media screen and (max-width: 768px) {
.catchpic {
    min-width: 100%;
    height: 100%;
}
.catchtext{
    margin: 0 1em 0 0;
    position: absolute;
    top: 25%;
    right: 0;
}   
}

.catchtext h1 {
    color: #fff;
    line-height: 1.5;
}
.catchtext h2 {
    color: #fff;
    line-height: 1.5;
}
@media screen and (max-width: 768px) {
.catchtext h1 {
    font-size: 1em;
}
.catchtext h2 {
    font-size: 1em;
}
}

/* ------メインコンテンツ------ */
#greet {
    min-width: 980px;
}
.greetInner {
    width: 980px;
    min-width: 980px;
    margin: auto;
    padding: 3em 0;
    display : flex;
}
.greetLeft {
    width: 25%;
    padding: 0 3em;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: dotted 1px #575050;
}
.greetLeft h2 {
    font-size: 2em;

}
.greetRight {
    width: 75%;
    padding: 0 3em;
}
@media screen and (max-width: 768px) {
#greet {
    min-width: 100%;
    }
.greetInner {
    width: 90%;
    min-width: 90%;
    margin: auto;
    padding: 1em 0;
    display : flex;
    flex-direction: column;
    justify-content: center;
}
.greetLeft {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: none;
}
.greetLeft h2 {
    padding: 0 0 1em 0;
}
.greetRight {
    width: 100%;
    padding: 0;
}
}

#menu{
    min-width: 980px;
    background-color: #fef7fa;
}
.menuInner {
    width: 980px;
    min-width: 980px;
    margin: auto;
    padding: 3em;
    display : flex;
    flex-direction: column;
    justify-content: center;
}
.menuTitle {
    display: inline-flex;
}
.menuTitle h2 {
    margin: 0 auto 2em;
    border-bottom: solid 2px #575050; 
}
.menuContent {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.content {
    width: 280px;
    padding: 0.5em;
    border: solid 1px #575050;
    position: relative;
}
.contentImg {
    filter: opacity(75%);
}
.contentImg:hover {
    filter: none;
}
.contentImg img {
    width: 100%;
}
.contentText {
    width: 80%;
    display: inline-flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
}
.contentText h3 {
    color: #fff;
    font-size: 1.5em;
    margin: auto;
    border-bottom: solid 2px #fff;
}
.contentText p {
    color: #fff;
    text-shadow: 2px 2px 5px #999;
    margin: auto;
    padding: 0.8em 0 0 0;
}


@media screen and (max-width: 768px) {
#menu {
    min-width: 100%;
    }
.menuInner {
    width: 90%;
    min-width: 90%;
    padding: 3em 0;
    display : flex;
    flex-direction: column;
    justify-content: center;
}
.menuContent {
    display: flex;
    flex-direction: column;
}
.content {
    width: 100%;
    margin: 1em auto;
}
.contentImg img {
    width: 100%;
}
}

#course {
    min-width: 980px;
}
.courseInner {
    width: 980px;
    min-width: 900px;
    margin: auto;
    padding: 3em;
    display : flex;
    flex-direction: column;
    justify-content: center;
}
.courseTitle {
    display: inline-flex;
}
.courseTitle h2 {
    margin: 0 auto 2em;
    border-bottom: solid 2px #575050; 
}
.courseContent {
    display: flex;
    flex-wrap: wrap;
}
.courseText {
    width: 50%;
    padding: 1em;
    display: flex;
    flex-direction: column;
}
.courseText img {
    width: 100%;
    margin: 0 0 0.5em 0;
}
.courseText p {
    margin-bottom: 1em;
}
.coursebtn {
    padding: 0.5em 1em;
    margin: auto 0 0 auto;
    border: solid 2px #e58c8a;
    border-radius: 5px;
    display: block;
}
.coursebtn a {
    color: #e58c8a;
    text-decoration: none;
}
.coursebtnPk {
    padding: 0.5em 1em;
    margin: auto 0 0 auto;
    border: solid 2px #fed0c2;
    border-radius: 5px;
    display: block;
}
.coursebtnPk a {
    color: #fed0c2;
    text-decoration: none;
}
@media screen and (max-width: 768px) {
#course {
    min-width: 100%;
    }
.courseInner {
    width: 90%;
    min-width: 90%;
    padding: 3em 0;
    display : flex;
    flex-direction: column;
    justify-content: center;
}
.courseText {
    width: 100%;
    padding: 1em 0;
}
.courseText h3 {
    font-size: 1em;
    padding: 0.5em;
}
.courseText p {
    padding: 0 0 0.5em 0;
}
.coursebtn {
    padding: 0.25em 0.5em;
    width: 100%;
}
.coursebtnPk {
    padding: 0.25em 0.5em;
    width: 100%;
}
}

#access {
    min-width: 980px;
    background-color: #fef7fa;
}
.accessInner {
    width: 900px;
    min-width: 900px;
    margin: auto;
    padding: 3em;
    display : flex;
    flex-direction: column;
    justify-content: center;
}
.accessTitle {
    display: inline-flex;
}
.accessTitle h2 {
    margin: 0 auto 2em;
    border-bottom: solid 2px #575050; 
}
.accessContent {
    margin: 0 auto;
}
.accessMap {
    width: 850px;
    height: 340px;
    position: relative;
}
.accessMap h3 {
    position: absolute;
    right: 0;
}
.mapIcon {
    width: 150px;
    position: absolute;
    bottom: 10px;
    left: 0;
    z-index: 2;
}
.map {
    position: absolute;
    top: 30px;
    z-index: 1;
}
.accessText {
}
.accessbtn {
    padding: 0.5em 1em;
    margin: 0 auto;
    border: solid 2px #e58c8a;
    border-radius: 5px;
    display: block;
}
.accessbtn a {
    color: #e58c8a;
    text-decoration: none;
}
@media screen and (max-width: 768px) {
#access {
    min-width: 100%;
    }
.accessInner {
    width: 90%;
    min-width: 90%;
    padding: 3em 0;
}
.accessContent {
    width: 100%;
}
.accessMap {
    width: 100%;
    min-width: 100%;
}
.mapIcon {
    width: 25%;
}
}

#reserve {
    min-width: 980px;
}
.reserveInner {
    width: 900px;
    min-width: 900px;
    margin: auto;
    padding: 3em;
    display : flex;
    flex-direction: column;
    justify-content: center;
}
.reserveTitle {
    display: inline-flex;
}
.reserveTitle h2 {
    margin: 0 auto 2em;
    border-bottom: solid 2px #575050; 
}
.reserveText {
    margin: 0 auto;
}
.reserveText img{
    width: 800px;
}
@media screen and (max-width: 768px) {
#reserve {
    min-width: 100%;
}
.reserveInner {
    width: 90%;
    min-width: 90%;
    padding: 3em 0;
}
.reserveText img{
    width: 100%;
}
}

#footerMargin {
    height: 40px;
}
@media screen and (min-width: 768px) {
#footerMargin {
    display: none;
}  
}

.top {
    width: 40px;
    height: 40px;
    background-color: #575050;
    opacity: 0.5;
    border-radius: 10px;
    display: flex;
    position: fixed;
    bottom: 75px;
    right: 20px;
}
.fa-sort-up {
    margin: auto;
    padding: 10px 0 0 0;
    font-size: 2em;
}
@media screen and (max-width: 979px) {
.top {
    position: fixed;
    bottom: 75px;
    right: 10px;
}
}

footer.pc {
    min-width: 980px;
    background-color: #999;
}
.footerInner {
    width: 980px;
    min-width : 980px;
    margin: auto;
    padding: 3em 0;
    display : flex;
    justify-content: space-between;
}
.footerLogo img {
    width: 120px;
}
.footerContent {
    
}
.copyright {
    background-color: #777;
}
.copyright p {
    text-align: center;
    margin: 0;
}
@media screen and (max-width: 768px) {
.pc {
    display: none;
}
}

.sp {
    width: 100%;
    background-color: #e58c8a;
    opacity: 0.9;
    position: fixed;
    bottom: 0;
    z-index: 3;
}
.footerBox {
    display: flex;
}
.footerBox li {
    list-style: none;
}
.footerIcon {
    width: 25%;
    padding: 0.5em 0;
    border: solid 1px #999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footerIcon p {
    margin: 0;
    text-align: center;
}
.footerIcon a {
    text-decoration: none;
}
.footerIcon .iconDisc {
    font-size: 0.65em;
}
.icon {
    display: block;
}

/* ------子ページ------ */
.salon1{
    background-color: #fff;
}
.salon2{
    background-color: #fef7fa;
}
.salonInner {
    max-width: 980px;
    margin: auto;
    padding: 3em 0;
    display : flex;
    flex-direction: column;
    justify-content: center;
}
.salonTitle {
    display: inline-flex;
}
.salonTitle h2 {
    margin: 0 auto 2em;
    border-bottom: solid 2px #575050; 
}
.salonContent {
    display: flex;
}
.salonContent h3 {
    margin-bottom: 1em;
}
.salonImg {
    width: 50%;
    padding: 0 1em;
}
.salonImg img {
    width: 100%;
}
.salonText {
    width: 50%;
    padding: 0 1em;
}
.salonText p {
    margin: 0 0 1em 0;
}
.salonPrice {
    width: 100%;
    background: #fff;
    text-align: center;
    margin: 0 0 0.5em 0;
}
.salonPricePk {
    width: 100%;
    text-align: center;
    margin: 0 0 0.5em 0;
}
.salonPrice th {
    color: #575050;
    background-color: #e58c8a;
    padding: 0.5em 0;
}
.salonPricePk th {
    color: #575050;
    background-color: #fed0c2;
    padding: 0.5em 0;
}
.salonPrice td {
    color: #575050;
    background-color: rgba(255,255,255,0.3);
    padding: 0.5em;
}
.salonPricePk td {
    color: #575050;
    background-color: rgba(255,255,255,0.3);
    padding: 0.5em;
}
.optionBox {
    display: flex;
    justify-content: space-between;
}
.option {
    width: 30%;
}
.option ul {
    display: flex;
    flex-direction: column;
}
.option li {
    list-style: none;
}
.option2Box {
    display: flex;
    justify-content: flex-start;
}
.option2 {
    width: 30%;
    margin: 0 3% 0 0;
}
.option2 ul {
    display: flex;
    flex-direction: column;
}
.option2 li {
    list-style: none;
}
.salonCard {
    width: 50%;
    background-color: #fff;
    margin: 0 1em 0 0;
    border: solid 1px #575050;
    display: flex;
    flex-direction: column;
}
.salonCard h3 {
    padding: 0.5em;
    text-align: center;
}
.salonCard h4 {
    color: #fff;
    background-color: #575050;
    padding: 0.5em 0 0.5em 1em;
}
.salonCard img {
    width: 100%;
}
.cardText {
}
.cardText ul {
    padding: 0.5em;
    list-style: none;
}
.cardText li {
    font-size: 0.75em;
    padding: 0 1em;
    margin: 0.5em 0;
}
.salonAbout {
    display: flex;
    flex-direction: row;
}
.aboutInner {
    width: 45%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}
.aboutInner img {
    width: 100%;
}
.aboutInner h3{
    margin: 0;
}

@media screen and (max-width: 979px) {
.salonInner {
    width: 90%;
}
.salonContent {
    flex-direction: column;
}
.salonImg {
    width: 100%;
    padding: 0;
    margin: 0 0 1em 0;
}
.salonText {
    width: 100%;
    padding: 0;
}
.salonCard {
    width: 100%;
    margin: 0 0 1em 0;
}
.optionBox {
    flex-direction: column;
    }
.option {
    width: 90%;
    margin: 10px 0;
}
.option2Box {
    flex-direction: column;
    }
.option2 {
    width: 90%;
    margin: 10px 0;
}
}

/* -----ロミロミ----- */
.lomilomiBg01 {
    width: 100%;
    /* max-width: 1920px; */
    min-height: 600px;
    background-image: url(../images/lomilomi_bg01.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position:  center bottom;
}
.lomilomiText p {
    margin: 0 0 1em 0;
}
@media screen and (max-width: 768px) {
.lomilomiBg01 {
    background-image: url(../images/lomilomi_bg01.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position:  bottom;
}
}

/* -----インディバ----- */
.indibaList {
    font-size: 0.85em;
}
.indibaList li {
    line-height: 1.5;
    list-style-position: inside;
}

/* -----おすすめコース------ */
.menuList {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.courseMenu {
    padding: 2em 0 3em 0;
    border-top: dotted 1px #575050;
}
.courseMenu img {
    max-width: 100%;
    margin: 0 0 0.5em 0;
}
.courseMenu h4 {
    margin: 0 0 0.5em 0;
}
.courseMenu p {
    margin: 0 0 0.5em 0;  
}
/* ---タブメニュー--- */
.tabnav{
    margin: 0;
    padding: 0;
    display: flex;
}
.tabnav li{
    width: 50%;
    display: block;
}
.tabnav li a{
    display: block;
    background: #575050;
    color: #fff;
    padding: 10px;
    text-decoration: none;
}
.tabnav li a:hover {
    background: #575050;
    opacity: 0.75;
}
.tabnav li a.active{
    color: #575050;
    background: #e58c8a;
}
.tabContent{
    padding: 1em;
    border: 1px solid #ccc;
}
#tab01 {
    display: flex;
    flex-wrap: wrap;
}
#tab02 {
    display: flex;
    flex-wrap: wrap;
}

/* -----アクセス----- */
.salonAccess {
    padding: 0 0 1em 0;
    border-bottom: dotted 1px #999;
}

/* -----ご予約----- */
.btnBox {
    margin: 0 0 1em 0;
    display: flex;
    justify-content: space-between;
}
.reserveBtn {
    width: 48%;
    padding: 0.5em 1em;
    border-radius: 5px;
    display: block;
    text-align: center;
}
.reserveBtn a {
    color: #fff;
    text-decoration: none;
}
.telBtn {
    background-color: #ff7f7f;
}
.mailBtn {
    background-color: #7fbfff;
}
.siteBtn {
    background-color: #7fff7f;
}
.instaBtn {
    background-color: #e58c8a;
}
.notice {
    font-size: 0.75em;
}
@media screen and (max-width: 768px) {
.reserveBtn {
    width: 48%;
    padding: 1em 0.5em;
}
.reserveBtn a {
    font-size: 0.75em;
} 
}

/* ----- 202302 Add ----- */
.catchpic01 {
    width: 100%;
    min-width: 980px;
    height: 600px;
    background: url(../images/eyecatch01.jpg) center center /cover no-repeat;
}
.catchpic02 {
    width: 100%;
    min-width: 980px;
    height: 600px;
    background: url(../images/about02.jpg) center center /cover no-repeat;
}
.catchpic03 {
    width: 100%;
    min-width: 980px;
    height: 600px;
    background: url(../images/eyecatch09.jpg) center center /cover no-repeat;
}
.catchpic04 {
    width: 100%;
    min-width: 980px;
    height: 600px;
    background: url(../images/eyecatch05.jpg) left center /cover no-repeat;
}
.catchpic05 {
    width: 100%;
    min-width: 980px;
    height: 600px;
    background: url(../images/eyecatch03.jpg) center center /cover no-repeat;
}
.catchpic06 {
    width: 100%;
    min-width: 980px;
    height: 600px;
    background: url(../images/eyecatch04.jpg) center center /cover no-repeat;
}
.catchpic07 {
    width: 100%;
    min-width: 980px;
    height: 600px;
    background: url(../images/eyecatch06.jpg) center center /cover no-repeat;
}
.catchpic08 {
    width: 100%;
    min-width: 980px;
    height: 600px;
    background: url(../images/eyecatch07.jpg) center center /cover no-repeat;
}
.catchpic09 {
    width: 100%;
    min-width: 980px;
    height: 600px;
    background: url(../images/eyecatch08.jpg) center center /cover no-repeat;
}

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

.catchpic01,
.catchpic02,
.catchpic03,
.catchpic04,
.catchpic05,
.catchpic06,
.catchpic07,
.catchpic08,
.catchpic09 {
    min-width: 100%;
    height: 130px;
}

}

