 * {
    list-style: none;
    box-sizing: border-box;	
    font-family: sans-serif;
}
body {
  background: #F5F5F5;
}
#target {
    margin-top: 90px;
    padding: 1rem;
}
h2 {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.2rem 1rem 0rem;
    background-color: var(--main-color);
    text-shadow: 2px 2px 0px var(--accent-color),-2px 2px 0px var(--accent-color),2px -2px 0px var(--accent-color),-2px -2px 0px var(--accent-color),2px 2px 0px var(--accent-color);
  }
h3 {
    font-size: 1.2rem;
    font-weight: normal;
}
h3::before {
    content: "";
    display: inline-block;
    background-color: var(--sub-color);
    width: 0.6rem;
    height: 1.8rem;
    margin-right: 0.5rem;
    vertical-align: middle;
}

button {
    display: block;
    min-width: 8rem;
    max-width: 20rem;
    width: auto;
    height: 2.2rem;	
    margin: 2rem auto 4rem;
    font-size: 1rem;
    background-color: var(--accent-color);	
    color: rgb(255, 255, 255);	
    text-align: center;
    border-radius: 0.15rem;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none; 
    -ms-user-select: none;
    padding: 0 0.5rem;
}
button:hover {
  filter: saturate(2) brightness(2);
}
.btn-left {
    min-width: 5rem;	
    max-width: 8rem;	
    height: 1.6rem;	
    margin: 1rem 0;	
    line-height: 1.6rem;	
    border-radius: 0.13rem;	
}
.modoru {
    background-color: #AAA;
    margin-left: 5%;
}
button.modoru:hover {
  filter: saturate(1.2) brightness(1.2);
}
.btn-flex {
    display :inline-block;
    margin: 0 3rem;
    width: 8rem;	
    height: 1.8rem;	
    background-color: #F5F;	
    line-height: 2rem;	
    color: rgb(255, 255, 255);	
    text-align: center;
    border-radius: 0.15rem;
    cursor: pointer;   
}
.wide-letter {
    letter-spacing: 1em;
  text-indent: 1em;
} 

/*header*/
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 90px;
	background-color: var(--main-color);
    z-index: 5000;
    opacity: 0.9;
}
.logo {
    width: 9rem;
}
.header-title {
    position: absolute;
    left: 50%;
    top: 10%;
    transform: translate(-50%, 0);
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    z-index: 5100;
    letter-spacing: 0.1em;
    pointer-events: none;
    width: 100%;
    white-space: nowrap;
}
.salon-name {
    position: fixed;
    top: 1rem;
    left: auto;
    right: 1rem;
    color: var(--sub-color);
}
.menu {
  position: fixed;
  top: 40px;
  left: 13%;
  width: 85%;
  display: flex;
  z-index: 2000;
}
.menu.PC {
    display: flex;
}
.menu__item {
  width: 100%;
  margin-right: 3px;
  position: relative;
}
.menu__item:last-child {
  margin-right: 0;
}
.menu a {
  font-size: 18px;
  display: block;
  text-align: center;
  padding: 2px;
  color: #fff;
  background-color: var(--sub-color);
  transition: opacity 0.3s ease;
  text-decoration: none;
  font-size: 0.8rem;
  line-height: 1.2rem;
}
.menu a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.menu__drop {
  margin-bottom: 3px;
}

.menuSub {
    display: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.menu__item:hover .menuSub {
    max-height: 500px; /* 適切な最大高さを設定 */
}

.PC {
    display: block;
}
.SP {
    display: none;
}
@media screen and (max-width: 767px) {

    #target {
        margin-top: 60px;
    }
    header {
	    height: 60px;
    }
    .PC, .menu.PC {
        display: none;
    }
    .SP {
        display: block;
    }
        /*これつけないと表示されない。複雑化したせいかも*/
    .footerbox.SP {
        display: block;
    }

}


