@charset "utf-8";

/* ========================================
    リセットcss
========================================= */
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 {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
    /*padding-left: 1.5em;
    text-indent: -1.5em;*/
    text-align: justify;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
button{
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

ol li  {
  list-style: none;
  text-align: justify;
}

.cf:after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}

.cf{display: inline-block;}

/* Hides from IE Mac \*/
* html .cf {height: 1%;}
.cf{display:block;}

/* Hides from IE Mac \*/
* html .cf {height: 1%;}
.cf{display:block;}
/* End Hack */

/* CSS ここから */
html {
-webkit-text-size-adjust: 100%;
}
/* ========================================
	共通定義 
========================================= */
:root {
  --main-bg-color: #DFCCBA;
  --main-font-color: #70594A;
  --header-nav-color: #3F3F3F;
  --sub-bg-color: #DFCCBA;
  --sub-font-color: #593628;
  --about-font-color: #FFF;
  --menu-border-color: #CCA530;
  --staff-bg-color: #FFFCFA;
  --salon-bg-color: #E7D9C9;
}

body {
    font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif;
    font-size: 20px;
    color: var(--main-font-color);
}

a {
    text-decoration: none;
    cursor: pointer;
    color: var(--link-color);
}

.pc {
    display: none;
}

.bold {
    font-weight: bold;
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mr20 {
    margin-right: 20px;
}

h2 {
    font-size: 24px;
    font-weight: bold;
}

/* ========================================
    ラッパー
========================================= */
#wrapper {
    height: auto;
    margin: 0 auto;
}


/* ========================================
    メイン画像
========================================= */
#mainimage {
    position: relative;
}

.mainimg, .logo {
    width: 100%;
    object-fit: cover;
    object-position: 100%;
    display:block;
    vertical-align:top;
}

nav {
    position: absolute;
    top: 12%;
    right: 0;
    left: 0;
    margin: 0 auto;
}

nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 35px;
}

nav ul li a {
    color: var(--header-nav-color);
    text-decoration: none;
    font-size: 18px;
}

h1 {
    position: absolute;
    bottom: 23%;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 50vw;
}

.rbutton {
    position: absolute;
    bottom: 60px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: calc(100% - 60px);
}

.btn {
    display: block;
    text-align: center;
    text-decoration: none;
    border-radius: 100vh;
    transition: 0.5s;
    font-size: 14px;
    line-height: 34px;
}

.btn_reserve_main {
    border: 1px solid var(--header-nav-color);
    color: var(--header-nav-color);
}

.btn_reserve_main:hover {
    background-color: var(--header-nav-color);
    color: var(--about-font-color);
}


/* ========================================
    about
========================================= */

#about {
    position: relative;
    color: #fff;
}

#about h2 {
    position: absolute;
    top: 45px;
    left: 30px;
}

#about img {
    width: 100%;
    object-fit: cover;
    object-position: 100%;
    display:block;
    vertical-align:top;
}

#about p {
    position: absolute;
    top: 90px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: calc(100% - 60px);
    line-height: 20px;  
    font-size: 14px;
    text-align: justify;
}

.btn_reserve {
    border: 1px solid var(--about-font-color);
    border-radius: 100vh;
    color: var(--about-font-color);
}

.btn_reserve:hover {
    background-color: var(--about-font-color);
    color: var(--main-bg-color);
}


/* ========================================
    menu
========================================= */
#menu {
    background-color: var(--main-bg-color);
    padding: 10px;
}

.menu_wrapper {
    background-color: #fff;
    padding: 10px 10px 30px;
    border: 1px solid var(--menu-border-color);
}

#menu h2 {
    margin: 20px 0;
}

.menup { 
    font-size: 14px;
    line-height: 18px;
    text-align: justify;
}

.menu_inner {
    margin-top: 30px;
}

.menu_title {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 20px;
}

.menu_title p {
    font-size: 18px;
    font-weight: bold;
}

.menu_image {
    width: 70px;
}

.menu_content {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    line-height: 18px;
}

.menu_sup {
    font-size: 11px;
    line-height: 14px;
    text-decoration: none;
    padding-left: 10px;
    padding-top: 4px;
}

.per {
    text-align: right;
    font-size: 11px;
    line-height: 14px;
}

.menu-margin {
    margin-top: 20px;
}


/* ========================================
    staff
========================================= */
#staff {
    background-color: var(--staff-bg-color);
    padding: 55px 0 0 0;
    position: relative;
}

#staff h2 {
    position: absolute;
    top: 20px;
    left: 20px;
}

.staff_image_area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.staff_image {
    width: 100px;
    border:3px solid var(--main-bg-color);
}

.staff_name_area {
    position: relative;
    text-align: center;
}

.staff_name_image {
    width: 150px;
    margin-top: 6px;
}

.staff_name {
    position: absolute;
    top: 26px;
    right: 0;
    left: 0;
    margin: 0 auto;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.staff_memo {
    font-size: 14px;
}

.staff_message {
    padding: 20px 20px 30px;
    line-height: 17px;  
    font-size: 14px;
    text-align: justify;
}

.salon_image {
    width: 100%;
    height: 100vw;
    display:block;
    vertical-align:top;
    object-fit: cover;
}


/* ========================================
    gallery
========================================= */
#gallery {
    background:  url(../images/bg.jpg);
    height: 100%;
    position: relative;
    background-size: cover;
    padding: 30px 20px;
}

#gallery h2 {
    position: absolute;
    top: 30px;
}

.grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 40px;
    margin-bottom: 30px;
}

.item {
  background: #FFF;
  padding: 5px;
  text-align: center;
}

img {
  max-width: 100%;
  height: auto;
}

.gallery_p_area {
    padding-bottom: 30px;
}

.gallery_p {
    font-size: 14px;
    text-align: justify;
    margin-bottom: 50px;
    text-align: center;
    line-height: 20px;
}


/* ========================================
    Salon Info
========================================= */
#salon {
    background-color: var(--salon-bg-color);
    padding: 20px 0 0 0;
}

#salon h2 {
    margin-left: 20px;
}

#map {
    padding: 10px 20px;
}

.gmap {
    width: 100%;
    height: 300px;
}

#salon_info {
    padding: 20px 30px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#salon_info h3 {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

#salon_info h3 img {
    width: 200px;
}

.salon_info_area {
    text-align: left;
}

.salon_info_p {
    font-size: 13px;
    line-height: 18px;
}

#salon_info table {
    font-size: 13px;
    line-height: 18px;
}

.sns {
    text-align: center;
    margin-bottom: 20px;
}

.sns a img {
    width: 40px;
}

.rbutton_salon_area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rbutton_salon {
    width: calc(100% - 40px);
}

.btn_reserve_salon {
    border: 1px solid var(--main-font-color);
    border-radius: 100vh;
    color: var(--main-font-color);
}

.btn_reserve_salon:hover {
    background-color: var(--main-font-color);
    color: var(--main-bg-color);
}


/* ========================================
    フッター
========================================= */
footer {
    width: 100%;
    height: auto;
    background-color: var(--salon-bg-color);
    padding: 50px 0 20px;
    text-align: center;
}

.copy {
    font-size: 11px;
}


/* ========================================
    TOPに戻るボタン
========================================= */
.button_top{
    position: fixed;
    right: 20px;
    bottom: 20px;
    font-size: 50px;
    padding: 10px;
    cursor: pointer;
    transition: .3s;

    z-index: 99;

    background-color: var(--main-bg-color);
    color: #FFF;
    font-size: 16px;

    width: 50px;
    height: 50px;
    border-radius: 50%;

    /* 上向きの三角と、TOPの文字の位置を揃える */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  
    /*デフォルトで非表示にする*/
    opacity: 0;
    visibility: hidden;
}

.button_top::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(-45deg);
    transition: .3s;
}

.button_top:hover {
    opacity: 0.7;
} 

/*このクラスが付与されると表示する*/
.active{
  opacity: 1;
  visibility: visible;
}


/* ========================================
   ========================================

   min-width: 768px max-width:960px

======================================== 
========================================  */

@media screen and (min-width: 768px) and ( max-width:960px) {

.pc {
    display: block;
}

.sp {
    display: none;
}

.tab_b {
    display: block;
}

.tab_n {
    display: none;
}

h2 {
    font-size: 24px;
}


/* ========================================
    メイン画像
========================================= */

nav ul {
    line-height: 50px;
}

nav ul li a {
    font-size: 28px;
}

.rbutton {
    width: 220px;
}

.btn {
    font-size: 16px;
    line-height: 40px;
}


/* ========================================
    about
========================================= */

#about {
    color: var(--main-font-color);
    max-height: 650px;
}

.about_area {
    position: absolute;
    width: 35%;
    height: 100%;
    top: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-height: 800px;
}

#about .pc img {
    max-height: 650px;
}

#about h2 {
    top: 20px;
}

#about p {
    top: 80px;
    line-height: 22px;  
    font-size: 16px;
}

.btn_reserve {
    border: 1px solid var(--main-font-color);
    color: var(--main-font-color);
}

.btn_reserve:hover {
    background-color: var(--main-font-color);
    color: var(--main-bg-color);
}

.about_pc_btn {
    bottom: 10%;
}


/* ========================================
    menu
========================================= */
.menup {  
    font-size: 16px;
}

.menu_inner {
    margin-top: 30px;
}

.menu_title p {
    font-size: 16px;
}

.menu_content {
    font-size: 16px;
    line-height: 24px;
}

.menu_sup {
    font-size: 14px;
    line-height: 18px;
    padding-left: 18px;
}

.per {
    font-size: 14px;
    line-height: 18px;
}

.menu-margin {
    margin-top: 20px;
}


/* ========================================
    staff
========================================= */
.staff_image {
    width: 170px;
}

.staff_name_image {
    width: 260px;
    margin-top: 10px;
}

.staff_name {
    top: 50px;
    font-size: 22px;
}

.staff_memo {
    font-size: 18px;
    text-align: center;
}

.message_title {
    font-size: 22px;
    margin-bottom: 8px;
}

.staff_message {
    line-height: 26px;  
    font-size: 18px;
}


/* ========================================
    gallery
========================================= */
#gallery {
    padding: 30px 60px;
}

#gallery h2 {
    left: 30px;
}

.gallery_p_area {
    padding-bottom: 50px;
}

#gallery .about_pc_btn {
    bottom: 60px;
}


/* ========================================
    Salon Info
========================================= */
.salon_info_p {
    font-size: 18px;
    line-height: 24px;
}

#salon_info table {
    font-size: 18px;
    line-height: 24px;
}

.rbutton_salon {
    width: 100%;
}


/* ========================================
    フッター
========================================= */
.copy {
    font-size: 14px;
}

}


/* ========================================
   ========================================

   min-width: 961px

 ========================================
 ======================================== */
@media screen and (min-width: 961px)  {

.pc {
    display: block;
}

.sp {
    display: none;
}

h2 {
    font-size: 36px;
}

/* ========================================
    メイン画像
========================================= */
#mainimage {
    height: 100vh;
}

.home {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
}

.mainimage_area {
    width: 70%;
    height:100vh;
}

 .mainimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left bottom;
}

.home_menu {
    width: 30%;
    height: 800px;
    position: relative;
}

h1 {
    top: 18%;
    width: 23vw;
}

.logo {
    width: 100%;
}

.home_menu nav {
    top: 50%;
}

.home_menu nav ul {
    line-height: 45px;
}

.home_menu nav ul li a {
    font-size: 22px;
}

.rbutton {
    width: 175px;
}

.btn {
    font-size: 16px;
    line-height: 40px;
}


/* ========================================
    about
========================================= */
#about {
    color: var(--main-font-color);
    max-height: 650px;
}

.about_area {
    position: absolute;
    width: 35%;
    height: 100%;
    top: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-height: 800px;
}

#about .pc img {
    max-height: 650px;
}

#about h2 {
    top: 30px;
}

#about p {
    top: 100px;
    line-height: 26px;  
    font-size: 16px;
}

.btn_reserve {
    border: 1px solid var(--main-font-color);
    color: var(--main-font-color);
}

.btn_reserve:hover {
    background-color: var(--main-font-color);
    color: var(--main-bg-color);
}

.about_pc_btn {
    bottom: 10%;
}


/* ========================================
    menu
========================================= */
#menu {
    padding: 30px;
}

.menu_wrapper {
    padding: 30px;
}

#menu h2 {
    margin: 0 0 20px;
}

.menup {  
    font-size: 16px;
    line-height: 24px;
}

.menu_inner {
    margin-top: 30px;
}

.pc_menu_wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.pc_left {
    width: calc(50% - 10px);
}

.pc_right {
    width: calc(50% - 10px);
}

.menu_title {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    align-items: flex-end;
    margin-bottom: 20px;
}

.menu_title p {
    font-size: 18px;
}

.menu_image {
    width: 100px;
}

.menu_content {
    font-size: 16px;
    line-height: 24px;
}

.menu_sup {
    font-size: 12px;
    line-height: 18px;
    padding-left: 18px;
}

.per {
    font-size: 14px;
    line-height: 18px;
}

.menu-margin {
    margin-top: 20px;
}


/* ========================================
    staff
========================================= */
#staff {
    padding: 95px 0 0 0;
    position: relative;
    max-height: 600px;
}

#staff h2 {
    top: 40px;
    left: 60px;
}

.pc_staff_wrapper {
    display: flex;
    max-height: 600px;
}

.pc_left_50 {
    width: 50%;
}

.pc_right_50 {
    width: 50%;
}

.staff_image {
    width: 170px;
}

.staff_name_image {
    width: 260px;
    margin-top: 10px;
}

.staff_name {
    top: 50px;
    font-size: 20px;
}

.staff_memo {
    font-size: 16px;
    text-align: center;
}

.message_title {
    font-size: 20px;
    margin-bottom: 8px;
}

.staff_message {
    padding: 30px 60px;
    line-height: 26px;  
    font-size: 16px;
}

.salon_image_area{
    position: relative;
    width: 100%;
    height: 100%;
}

.salon_image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mrt {
    margin-top: -95px;
}


/* ========================================
    gallery
========================================= */
#gallery h2 {
    left: 60px;
}

.grid {
    margin: 60px 30px 30px;
}

#gallery .about_pc_btn {
    bottom: 60px;
}

.gallery_p {
    font-size: 16px;
}


/* ========================================
    Salon Info
========================================= */
#salon {
    padding: 30px;
}

#salon h2 {
    margin-left: 30px;
}

.pc_salon_wrapper {
    display: flex;
}

#map {
    padding: 10px 30px;
}

.gmap {
    height: 500px;
}

#salon_info {
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#salon_info h3 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    width: 100%;
}

#salon_info h3 img {
    width: 300px;
}

.salon_info_area {
    width: 100%;
}

.salon_info_p {
    font-size: 16px;
    line-height: 24px;
}

#salon_info table {
    font-size: 16px;
    line-height: 24px;
}

.sns {
    text-align: left;
    margin-bottom: 0;
}

.sns a img {
    width: 60px;
}

.sns_area {
    display: flex;
    align-items: center;
}

.rbutton_salon {
    width: 100%;
}


/* ========================================
    フッター
========================================= */

.copy {
    font-size: 14px;
}

}