@charset "UTF-8";
/*
Theme Name: Rouge
Version:1.0.1
Author:
*/
html {
    font-size: 100%;
}
body {
    width: 100%;
    font-family: 'メイリオ', 'Meiryo','ＭＳ ゴシック','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
    font-size: 14px;
    color: #707070;
    letter-spacing: 0.07em;
    text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
}
body * {
    box-sizing: border-box;
}
a {
    text-decoration: none;
}
img {
    width: 100%;
    height: auto;
}
li {
    list-style: none;
}
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
}
.com_btn {
    position: relative;
    z-index: 0;
    display: inline-block;
    width: 180px;
    text-align: center;
    height: 45px;
    line-height: 45px;
    font-size: 13px;
    background: transparent;
    border: 1px solid #fff;
    -webkit-transition: .5s;
    transition: .5s;
    color: #fff;
}
.com_btn::before,
.com_btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}
.com_btn::before {
    transition: all 0.6s;
    z-index: -1;
    background: linear-gradient(135deg, #c2e9fb 0%, #8EAEBD 100%);
}
.com_btn::after {
    z-index: -2;
    background: linear-gradient(135deg, #ddd6f3 0%, #d7c3c7 100%);
}
.com_btn:hover::before {
    opacity: 0;
}
.fc_gold {
    color: #826325;
}
.com_subtitle {
    color: #826325;
    font-size: 12px;
    font-weight: normal;
}
.fadein {
    opacity: 0;
    transform: translate(0, 50px);
    transition: all 0.8s;
}
.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}
.wrap_original {
    overflow: hidden;
}
/*------------------------------------------------
ヘッダー
------------------------------------------------*/
.header_top {
    max-width: 1400px;
    height: 130px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.left img{
    width: 160px;
    height: auto;
    margin-top: 5px;
    position: relative;
    z-index: 11;
}
.gnav ul {
    width: 100%;
    background: rgba(255, 255, 255, .8);
    display: flex;
    justify-content: end;
    align-items: baseline;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 15px 0;
}
.gnav a {
    color: #707070;
    display: block;
}
.gnav li {
    margin-left: 40px;
}
.gnav li:last-child {
    margin-right: 20px;
}
.res_btn a {
    width: 8rem;
    text-align: center;
    height: 50px;
    line-height: 50px;
    border: 1px solid #fff;
    background-color: #8EAEBD;
    color: #fff;
    transition: 0.5s;
}
.res_btn a:hover {
    background-color: #d7c3c7;
}
.hover:hover {
    color: #8EAEBD;
    transition: color 0.3s;
}
.hover {
    position: relative;
}
.hover::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #8EAEBD;
    bottom: -10px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
}
.hover:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
}
/*--------------------------------------------------
メインビジュアル
--------------------------------------------------*/
#mainv {
    position: relative;
    overflow: hidden;
    height: 90vh;
    background-color: #E0EAEE;
}
#mainv img {
    display: block;
    width: 100%;
    height: 90vh;
    object-fit: cover;
}
.fade li {
    position: absolute;
    width: 100%;
    opacity: 0;
    animation: fade 21s infinite;
}
.fade li:nth-child(1) {
    animation-delay: 0s;
}
.fade li:nth-child(2) {
    animation-delay: 7s;
}
.fade li:nth-child(3) {
    animation-delay: 14s;
}
@keyframes fade {
    0% {
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    30% {
        opacity: 1;
    }
    45% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}
/*--------------------------------------------------
Rougeについて
--------------------------------------------------*/
#about {
    background-color: #E0EAEE;
    padding-bottom: 90px;
    margin-bottom: 120px;
}
#about h2 {
    text-align: center;
    padding-top: 100px;
}
.about_subtitle {
    text-align: center;
    margin-bottom: 40px;
}
.about_item {
    text-align: center;
}
#about p {
    line-height: 2.0rem;
    margin: 0 auto 40px auto;
    text-align:center;
}
#about a {
    display: block;
    margin: 0 auto;
}
.nail_line {
    padding-left: 30px;
}
.nail_line img {
    width: 45px;
    height: auto;
}
/*--------------------------------------------------
menu
--------------------------------------------------*/
#menu {
    margin-bottom: 120px;
}
#menu h2 {
    text-align: center;
}
#menu h3 {
    text-align: center;
    margin-bottom: 50px;
}
#menu h4 {
    font-size: 20px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 20px;
}
.menu_item_txt {
    display: block;
    text-align: center;
}
.menu_item p {
    display: inline-block;
    text-align: left;
    line-height: 2.0rem;
    margin-bottom: 30px;
    padding: 0 50px;
}
.grid {
    display: grid;
    gap: 0;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 700px 700px;
}
.menu_item img {
    display: inline-block;
    vertical-align: bottom;
    width: 100%;
    height: 400px;
    margin-bottom: 30px;
}
#menu a {
    display: block;
    margin: 0 auto;
}
/*--------------------------------------------------
news
--------------------------------------------------*/
#news {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 180px;
}
#news h3 {
    margin-bottom: 30px;
}
#news p {
    text-align: left;
}
#news p {
    padding-right: 20px;
    padding-left: 20px;
}
.date {
    padding-top: 10px;
    padding-bottom: 5px;
}
.title {
    padding-bottom: 10px;
}
.news_btn {
    display: block;
    margin: 30px auto 0 auto;
}
 /*-------------------------------------------------
 info
 -------------------------------------------------*/
 #info {
     margin-bottom: 120px;
 }
 #info h2, #info h3 {
     text-align: center;
 }
 .info_flex{
    display: flex;
    flex-flow: row-reverse;
    justify-content: center;
	align-items: flex-start;
 }
 #info h3 {
    margin-bottom: 40px;
 }
 #info img {
     width: 35%;
     height: auto;
     margin-right: 20px;
 }
 .info_text p {
     display: inline-block;
     text-align: left;
     line-height: 2.0rem;
     margin-bottom: 40px;
 }
 #info a {
     display: block;
     margin: 0 auto;
}
/*--------------------------------------------------
フッター
--------------------------------------------------*/
.reserve {
    width: 100%;
    height: 400px;
    background-image: url(img/reserve_bg2.jpeg);
    background-size: cover;
    background-position: 100% 0;
}
.res_flex img {
    margin-top: 20px;
    width: 250px;
    height: auto;
}
.res_flex_right p {
    color: #2E3443;
    line-height: 2.0rem;
}
.res_flex {
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}
.res_title h2 {
    font-size: 25px;
}
.res_flex_right {
    margin-left: 90px;
}
.res_flex_2 ul {
    display: flex;
    justify-content:center;
    align-items: baseline;
}
.res_flex_2 li {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #2E3443;
    margin-right: 50px;
}
.res_flex_2 img {
    margin-left: 10px;
}
.res_flex_2 a {
    color: #2E3443;
}
.res_flex_2 a:hover {
    color: #778899;
    transition: color 0.3s;
    opacity: .8;
}
.res_title {
    margin-bottom: 30px;
}
.instagram img, .line img {
    width: 35px;
    height: auto;
}
/*--------------------------------------------------
コピーライト
--------------------------------------------------*/
.copyright {
    text-align: center;
    padding: 25px 0;
    background-color: #8EAEBD;
    color: #fff;
}
/*--------------------------------------------------
ハンバーガーメニュー
--------------------------------------------------*/
.globalMenuSp {
    opacity: 0;
}
@media screen and (max-width: 1070px) {
    .pc_nav {
        display: none;
    }
    .hamburger {
        display: block;
        position: fixed;
        z-index: 3;
        right: 13px;
        top: 12px;
        width: 42px;
        height: 42px;
        cursor: pointer;
        text-align: center;
    }
    .hamburger span {
        display: block;
        position: absolute;
        width: 30px;
        height: 2px;
        left: 6px;
        background: #8EAEBD;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
    .hamburger span:nth-child(1) {
        top: 10px;
    }
    .hamburger span:nth-child(2) {
        top: 20px;
    }
    .hamburger span:nth-child(3) {
        top: 30px;
    }

    .hamburger.active span:nth-child(1) {
        top: 16px;
        left: 6px;
        background: #8EAEBD;
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .hamburger.active span:nth-child(2),
    .hamburger.active span:nth-child(3) {
        top: 16px;
        background: #8EAEBD;
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    nav.globalMenuSp {
        position: fixed;
        z-index: 2;
        top: 0;
        left: 0;
        color: #000;
        background: #fff;
        text-align: center;
        width: 100%;
        transform: translateY(-100%);
        transition: all 0.6s;
    }
    nav.globalMenuSp ul {
        background: #fff;
        margin: 0 auto;
        padding: 0;
        width: 100%;
    }
    nav.globalMenuSp ul li {
        list-style-type: none;
        padding: 0;
        width: 100%;
    }
    nav.globalMenuSp ul li:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
    nav.globalMenuSp ul li:hover {
        background: #ddd;
    }
    nav.globalMenuSp ul li a {
        display: block;
        color: #707070;
        padding: 1em 0;
        text-decoration: none;
    }
    nav.globalMenuSp.active {
        transform: translateY(0%);
        opacity: 1;
    }
    .left img {
        z-index: 1;
    }
    /*------------------
    閉じるボタン
    ------------------*/
}
/*--------------------------------------------------
sp
--------------------------------------------------*/
@media screen and (max-width: 1070px) {
    .header_top {
        height: 120px;
    }
    .wrapper {
        padding: 0 16px;
    }
    #mainv img {
        height: 90vh;
    }
    #about {
        margin-top: -50px;
    }
    #about p {
        margin: 0 auto 20px auto;
    }
    #menu {
        margin-bottom: 80px;
    }
    #menu img {
        width: 100%;
        height: auto;
    }
    #info img {
        display: block;
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    .info_flex {
        display: block;
    }
    .info_text {
        text-align: center;
    }
    #info a {
        margin: -20px auto 40px auto;
    }
    #news {
        padding: 0 10%;
    }
}

@media screen and (max-width: 767px) {
    .header_top {
        height: 110px;
    }
    p {
        font-size: 0.85rem;
    }
    .left img {
        width: 150px;
        height: auto;
        padding: 0 4%;
    }
    #mainv {
        height: 40vh;
    }
    #mainv img{
        width: 100%;
        height:40vh;
    }
    #about {
    background-color: #E0EAEE;
    padding-bottom: 30px;
    margin-bottom: 30px;
    }
    #about .new_line {
        display: inline-block;
    }
    .menu_item:not(:first-child) {
        margin-top: 50px;
    }
    .menu_item p {
        padding: 0;
    }
    .menu_list {
        margin-top: -60px;
        display: block;
    }
    .menu_item img {
        margin-top: 30px;
        width: 100%;
        height: auto;
    }
    #news {
        padding: 0 15px;
    }
    .info_flex {
        margin-top: -70px;
        display: block;
    }
    .info_text {
        text-align: center;
        margin-bottom: 20px;
    }
    .info_flex img {
        width: 100%;
        height: auto;
        margin-top: 30px;
    }
    #info h3 {
        margin-bottom: 30px;
    }
    #info a {
        margin: -40px auto 40px auto;
    }
    .res_flex {
        display: block;
    }
    .res_flex_2 ul{
        display: inline-block;
        text-align: center;
        margin-right: -80px;
    }
    .res_flex img {
        margin-top: -30px;
        max-width: 150px;
    }
    .res_flex_right {
        margin: 0 auto;
        display: block;
    }
    .res_flex_right p {
        margin-top: -20px;
    }
    .res_title {
        text-align: center;
        margin-top: -20px;
    }
    .res_flex_2 {
        text-align: center;
    }
    .res_flex_2 ul li {
        display: block;
        padding: 5px 0;
        text-align: center;
    }
    #footer p {
        padding: 10px 0;
    }
    .reserve {
        background-position: 50% 50%;
        height: 600px;
    }
}
    @media screen and (min-width: 767px) {
        a[href^="tel:"] {
            pointer-events: none;
        }
}
/*--------------------------------------------------
共通ヘッダー
--------------------------------------------------*/
#header_bottom {
    width: 100%;
    height: 220px;
    background-image: url(img/header_bg.jpg);
    background-position: center;
    background-size: cover;
    text-align: center;
}
#header_bottom h2 {
    padding: 80px 0 0 0;
    color: #fff;
    font-size: 35px;
}
#header_bottom p {
    color: #fff;
    font-size: 15px;
}
@media screen and (max-width: 767px) {
    #header_bottom {
        width: 100%;
        height: 150px;
    }
    #header_bottom h2 {
        padding: 50px 0 0 0;
    }
}
/*--------------------------------------------------
ABOUTページ
--------------------------------------------------*/
#page_about p {
    line-height: 2.0rem;
}
#page_about h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 25px;
}

#greeting {
    background-color: #E0EAEE;
    padding: 100px 0;
    margin-bottom: 150px;
}
.gre_flex {
    display: flex;
    justify-content:center;
    flex-flow: row-reverse;
}
#greeting img {
    margin-right: 100px;
    width: 500px;
    height: auto;
}
.comment {
    margin-bottom: 20px;
}
.name_en {
    font-size: 10px;
}
.owner_name {
    text-align: right;
}
.owner {
    display: inline-block;
    text-align: left;            /*親要素を右寄せにして、子要素をinline-block,左揃え。*/
}
.name_size {
    font-size: 21px;
    margin-right: 10px;
}
/*------------
ABOUTページ（当サロンについて）
------------*/
#salon {
    margin-bottom: 150px;
}
#salon p {
    margin-left: 50px;
}
.salon_flex {
    display: flex;
    justify-content:space-between;
}
#salon img {
    width: 600px;
    height: 300px;
}
/*------------
ABOUTページ(シャルムボー認定サロン)
-------------*/
#charmme {
    margin-bottom: 180px;
}
#charmme p {
    margin-left: 50px;
    margin-bottom: 50px;
}
#charmme img {
    width: 720px;
    height: 300px;
}
.charmme_flex {
    display: flex;
    justify-content: flex-end;
    flex-flow: row-reverse;
}
#charmme a {
    display: block;
    margin: 0 auto;
}
/*------------
ABOUTページ(アクセス)
-------------*/
.access_flex {
    display: flex;
    justify-content: space-between;
}
#access a {
    display: block;
    margin: 30px auto 0 auto;
}
.access_table {
    margin-left: 100px;
}
.location_map {
    width: 60%;
    margin-bottom: 80px;
}
.location_map iframe {
    width: 100%;
}
.table th, .table td {
    text-align: left;
    padding: 5px 0;
}
.salon_text {
    text-align: center;
}
/*------------
sp
-------------*/
@media screen and (max-width: 1070px) {
    .gre_flex {
        display: block;
    }
    .gre_title {
        text-align: center;
    }
    .owner_name {
        margin-right: 70px;
    }
    #greeting img {
        padding: 0 15px;
        width: 100%;
    }
    #salon img, #charmme img {
        width: 60vw;
        height: 50vh;
    }
    .access_table {
        margin-left: 20px;
    }
    .table th, .table td {
        text-align: left;
        padding: 5px 0;
    }
}
@media screen and (max-width: 767px) {
    #greeting {
        background-color: #E0EAEE;
        padding: 50px 0;
        margin-bottom: 50px;
    }
    .gre_flex {
        display: block;
    }
    .gre_title {
        display: block;
        text-align: center;
    }
    #greeting img, #salon img, #charmme img {
        width: 100%;
        height: auto;
    }
    #salon {
    margin-bottom: 80px;
    }
    #salon img {
        margin-top: 15px;
    }
    .owner_name {
        margin-right: 0;
        padding: 0 5px;
    }

    #salon p {
        text-align: left;
        margin-left: 0;
        padding: 0;
    }
    #charmme p {
        text-align: left;
        padding: 0;
        margin-left: 0;
        margin-bottom: 50px;
    }
    .salon_flex {
        display: block;
        margin-top: -70px;
    }
    .charmme_flex {
        display: block;
        margin-top: -40px;
    }
    #charmme a {
        margin: -30px auto 20px auto;
    }
    .table {
        display: inline-block;
        margin: 0 auto;
    }
    #page_about img {
        padding: 0 15px;
    }
    .access_flex {
        display: block;
        margin-top: -30px;
        margin-bottom: 50px;
    }
    .access_table {
        text-align: center;
        margin: 0;
        padding: 0;
    }
    .location_map {
        width: 100%;
        margin: 50px 0;
    }
    .location_map iframe {
        width: 100%;
    }
    .table th, .table td {
        padding: 5px 20px;
    }
}
/*--------------------------------------------------
脱毛ページ
--------------------------------------------------*/
#hair p {
    line-height: 1.5rem;
}
#hair h3 {
    text-align: center;
}
.content_title {
    font-size: 20px;
    margin-bottom: 30px;
}
.content_text {
    margin-top: 60px;
    margin-bottom: 50px;
    text-align: center;
}
.feature img {
    width: 40%;
    height: 250px;
}
.feature_flex {
    margin: 20px 0;
    display: flex;
    justify-content:center;
}
.feature_flex_rev {
    margin: 45px 0;
    display: flex;
    flex-flow: row-reverse;
    justify-content: center;
}
.point {
    padding: 10px 30px 0 0;
}
.point_item {
    padding: 0 30px;
    display: block;
    width: 45%;
}
.point_item_list {
    font-size: 9px;
}
.point_item_title {
    font-size: 15px;
    margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
    .feature img {
        width: 100%;
        height: auto;
    }
    .feature_flex {
        margin: 20px 0;
        display: flex;
        justify-content:center;
    }
    .point_item {
        padding: 30px 30px;
        display: block;
        width: 45%;
    }
    .feature_flex_rev {
        margin: 60px 0;
        display: flex;
        flex-flow: row-reverse;
        justify-content: center;
    }

}
/*-------------------
menu&price
-------------------*/
.menu_p {
    padding: 80px 0;
    margin-bottom: 100px;
}
.bg {
    background-color:#d7c3c7;
    background: rgba(255, 255, 255, .8);
    padding: 20px 0 20px 0;
    margin: 0 30px;
}
.menu_title {
    font-size: 25px;
    margin-bottom: 15px;
}
.menu_img {
    text-align: center;
    background-image: url(img/menu&price_bg.jpeg);
    position: relative;
    background-size: cover;
    width: 100%;
    height: auto;
}
.fixed_bg {
    height: 400px;
    background-attachment: fixed;
    background-size: cover;
}
.stripe {
    display: inline;
    position: relative;
    padding: 0.3em;
}
.stripe::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: repeating-linear-gradient(-45deg, orange, orange 2px, white 2px, white 4px);
}
.fw_b {
    font-weight: bold;
}
/*--------------------
メニュー表
--------------------*/
#full_body h4 {
    font-size: 20px;
    text-align: center;
}
#full_body h5 {
    font-size: 14px;
}
#full_body h6 {
    font-size: 12px;
}
.border_b {
    display: block;
    margin: 0 auto;
    width: 200px;
}
.inner {
    max-width: 800px;
    margin: 0 auto;
}
.line_left {
    position: relative;
}
.line_left::before {
    content: '';
    display: inline-block;
    width: 2px;
    height: 20px;
    background-color: #826325;
    position: absolute;
    top: -2px;
    left: -5px;
}
.menu_list-1 ul, .menu_list-3 ul, .menu_list-4 ul, .menu_list-5 ul ,.menu_list-6 ul, .menu_list-7 ul {
    display: flex;
}
.menu_list-1, .menu_list-2, .menu_list-3, .menu_list-4, .menu_list-5, .menu_list-6, .menu_list-7, .menu_list-9, .menu_list-15 {
    display: flex;
    justify-content: space-between;
    padding: 10px 10px;
}
.menu_list-1 ul li {
    padding: 0 20px 0 60px;
}
.menu_list-2 ul li {
    padding-right: 180px;
}
.menu_list-15 ul li {
    padding-right: 214px;
}
.fc_red {
    color: #F32B2B;
}
.menu_list-3 ul li, .menu_list-4 ul li, .menu_list-5 ul li {
    padding: 0 5px 0 31px;
}
.menu_list-6 ul li {
    padding: 0 5px 0 40px;
}
.menu_list-1, .menu_list-9 {
    border-bottom: 1px solid #826325;
}
.menu_list-2, .menu_list-3, .menu_list-4, .menu_list-5, .menu_list-6, .menu_list-15 {
    border-bottom: 1px dotted #826325;
}
.women, .popular, .facial, .vio, .arm, .see {
    margin-bottom: 50px;
}
.parts {
    margin-bottom: 100px;
}
.menu_list-7 ul li {
    padding: 0 5px 0 40px;
}
.menu_list-8 ul {
    display: flex;
}
.menu_list-8 ul li {
    padding-right: 55px;
}
.menu_list-8 {
    display: flex;
    justify-content: space-between;
    padding: 15px 10px;
    border-bottom: 1px dotted #826325;
}
.mens, .see {
    margin-bottom: 120px;
}
.menu_list-9 ul li {
    padding-right: 55px;
}
.margin_b {
    font-size: 12px;
}
/*-----------
sp
-----------*/
@media screen and (max-width: 1070px) {
    #full_body {
        padding: 0 15px;
    }
}
@media screen and (max-width: 767px) {
    .content_text {
        padding: 0;
        text-align: left;
    }
    .feature_flex {
        margin-top: -40px;
        display: block;
    }
    .feature_flex_rev {
        display: block;
    }
    .feature_flex_rev_1 {
        margin-top: 20px;
    }
    .feature_flex_rev_2 {
        margin-top: 0;
    }
    .point_item  {
        padding: 0;
        display: inline;
        margin: 0;
    }
    .point {
        padding: 0;
    }
    .feature_flex img, .feature_flex_rev img {
        display: block;
        margin: 0 auto;
        width: 400px;
        height: 25vh;
        margin-top: 20px;
    }
    #full_body {
        padding: 0;
    }
    .menu_img {
        background-position: 35%;
    }
    .menu_p {
        display: table;
        width: 100%;
        padding: 50px 5px;
        text-align: left;
    }
    .bg {
        display: table-cell;
        vertical-align: middle;
    }
    .discount {
        text-align: center;
    }
}
@media screen and (max-width: 470px) {
    .women, .mens {
        font-size: 11px;
    }
    .menu_list-1 ul li {
        padding: 0 0 0 50px;
    }
    .menu_list-2 ul li {
        padding-right: 100px;
    }
    .menu_list-15 ul li {
        padding-right: 128px;
    }
    .menu_list-3 ul li, .menu_list-4 ul li, .menu_list-5 ul li {
        padding: 0 0 0 13px;
    }
    .menu_list-6 ul li {
        padding: 0 5px 0 40px;
    }
    .menu_list-6 ul li {
        padding: 0 0 0 18px;
    }
    .menu_list-7 ul li {
        padding: 0 0 0 20px;
    }
    .parts {
        font-size: 12px;
    }
    .menu_list-8 ul li {
        padding-right: 30px;
    }
    .menu_list-9 ul li {
        padding-right: 45px;
    }
}
/*--------------------------------------------------
ボディ美白ページ
--------------------------------------------------*/
#ssr p {
    line-height: 1.5rem;
}
#ssr h5 {
    font-size: 14px;
}
.white_body_flex {
    display: flex;
    flex-flow: row-reverse;
    justify-content: space-between;
    margin-bottom: 100px;
	align-items: flex-start;
}
.white_body_flex img {
    width: 50%;
    height: auto;
}
.ssr_effect h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 25px;
}
.ssr_effect h4 {
    padding: 5px 0;
    font-size: 16px;
}
.ssr_effect li {
    padding: 10px 30px 10px 80px;
}
#white_body_menu h4{
    text-align: center;
    font-size: 20px;
    margin-top: 30px;
}
.menu_list-11 {
    border-bottom: 1px solid #826325;
    padding: 10px 10px;
}
.menu_list-11 ul {
    display: flex;
    justify-content: end;
}
.menu_list-11 ul li {
    padding-right: 70px;
}
.menu_list-10, .menu_list-12 {
    display: flex;
    justify-content: space-between;
    padding: 15px 10px;
    border-bottom: 1px dotted #826325;
}
.menu_list-10 ul, .menu_list-12 ul {
    display: flex;
}
.menu_list-10 ul li {
    padding-right: 40px;
}
.menu_list-12 ul li {
    padding-right: 45px;
}
#white_body_menu {
    margin-bottom: 100px;
}
.nail {
    margin-top: 30px;
}
.nail p {
    color: #826325;
}
.nail_img {
    display: flex;
    justify-content:flex-start;
}
.nail_img img {
    width: 300px;
    height: auto;
}

/*-----------
sp
-----------*/
@media screen and (max-width: 1070px) {
    .white_body_flex img {
        width: 60vw;
        height: 40vh;
    }
    .ssr_effect li {
        padding: 0 10px;
    }
}
@media screen and (max-width: 767px) {
   .white_body_flex {
       display: block;
   }
   .white_body img {
       width: 100%;
       height: auto;
       display: block;
       margin: 0 auto;
       margin-top: 20px;
   }
   #white_body_menu {
       padding: 0 15px;
   }
   .ssr_effect li {
        padding: 10px 20px 10px 40px;
    }
    .ssr_effect li {
        padding: 10px 0;
    }
    .nail_img {
    }
    .nail_img img {
        width: 50%;
    }
    .nail p {
        text-align: center;
    }
}
@media screen and (max-width: 480px) {
    #ssr h2 {
        font-size: 28px;
        padding: 60px 0 0 0;
    }
    .menu_list-10, .menu_list-12 {
        padding: 15px 0;
    }
    .menu_list-11 {
        padding: 15px 0;
    }
    .menu_list-10 ul li {
        padding-right: 15px;
    }
    .menu_list-11 ul li {
        padding-right: 50px;
    }
    .menu_list-12 ul li {
        padding-right: 30px;
    }
    #ssr h5 {
        font-size: 13px;
    }
}
    @media screen and (max-width: 389px) {
        #ssr h2 {
            font-size: 28px;
            padding: 30px 0 0 0;
        }
}
/*--------------------------------------------------
光フェイシャルページ
--------------------------------------------------*/
#hikari_facial p {
    line-height: 1.5rem;
}
.title_content {
    margin: 0 auto;
    text-align: left;
    width: 500px;
    margin-top: 20px;
    margin-bottom: 50px;
}
#hikari_facial h3 {
    text-align: center;
    font-size: 20px;
    margin-top: 30px;
}
#hikari_facial h4 {
    font-size: 20px;
    text-align: center;
}
#hikari_facial h5 {
    padding: 5px 0;
    font-size: 16px;
}
#e_light, #carbon {
    margin-bottom: 100px;
}
.e_light_effect_flex, .carbon_effect_flex {
    display: flex;
    flex-flow: row-reverse;
	align-items: flex-start;
}
#e_light h4 {
    font-size: 18px;
}
.e_light_effect_flex img{
    width: 450px;
    height: 450px;
}
.carbon_effect_flex img {
     width: 500px;
    height: 400px;
}
.e_light_effect, .carbon_effect{
    padding: 0 50px;
    text-align: left;
}
.e_light_menu, .carbon_menu {
    text-align: right;
}
.e_light_menu_price , .carbon_menu_price {
    display: inline-block;
    text-align: left;
}
.e_light_menu p, .carbon_menu p {
    border-bottom: 1px solid #826325;
}
.e_light_menu ul, .carbon_menu ul {
    display: flex;
    justify-content: space-between;
}
.effect_list li {
    padding: 10px 30px;
}
.e_light_menu_price ul, .carbon_menu_list_1 ul {
    padding: 10px 0;
}
.carbon_menu_list_2 ul {
    padding-top: 10px;
}
.e_light_menu_price ul, .carbon_menu_list_1 ul{
    border-bottom: 1px dotted #826325;
}
.e_light_menu_price ul li:first-child, .carbon_menu_price ul li:first-child {
    padding: 0 60px 0 0;
}
.carbon_menu_list_3 ul li {
    font-size: 12px;
}
/*-----------
sp
-----------*/
@media screen and (max-width: 1070px) {
    .e_light_effect_flex img, .carbon_effect_flex img {
    }
    .e_light_effect, .carbon_effect{
        padding: 0;
    }

}
@media screen and (max-width: 767px) {
    .e_light_effect_flex {
        display: block;
    }
    .carbon_effect_flex {
        display: block;
    }
    .e_light_effect_flex img, .carbon_effect_flex img {
        width: 100%;
        height: auto;
    }
    .carbon_effect_flex img {
        margin-top: 30px;
    }
    .title_content {
        width: 100%;
        padding: 0;
    }
    .effect_list li {
        padding: 15px 0;
    }
    .e_light_menu, .carbon_menu {
        text-align: center;
        margin-top: 15px;
    }
    #footer {
        margin-top: -30px;
    }
    #e_light h4 {
        margin-top: 30px;
    }
    .e_light_menu_price , .carbon_menu_price {
        display: block;
    }
}
/*--------------------------------------------------
フェイシャル
--------------------------------------------------*/
#facial p {
    line-height: 1.5rem;
}
#facial span {
    font-size: 14px;
}
#facial_charmme h3 {
    margin-top: 60px;
    text-align: center;
    font-size: 20px;
}
#facial_charmme {
    margin-bottom: 150px;
}
.facial_charmme_content h4 {
    font-size: 16px;
    margin-bottom: 15px;
}
.facial_charmme_menu h4 {
    font-size: 16px;
    padding-bottom: 5px;
}
#facial_charmme img {
    margin-bottom: 80px;
}
.facial_charmme_flex img {
    width: 50%;
    height: auto;
}
.facial_charmme_flex {
    display: flex;
    flex-flow: row-reverse;
    margin-bottom: 50px;
	align-items: flex-start;
}
.facial_charmme_content {
    padding: 0 30px 0 90px;
}
.facial_charmme_menu h4 {
    border-bottom: 1px solid #826325;
}
.facial_charmme_menu ul {
    display: flex;
}
.course_1 ul li {
    margin-right: 50px;
    padding: 5px 0;
}
.course_1 {
    margin-bottom: 50px;
}
.course_1 p {
    border-bottom: 1px dotted #826325;
}
.course_2 ul li {
    margin-right: 85px;
    padding: 5px 0;
}
/*------------
デコルテマッサージ ハーブトリートメント
------------*/
#herb {
	margin-top: 60px;
}
.effect {
    border: 1px solid #826325;
    padding: 10px 5px;
    margin: 20px 0;
}
.ba {
    text-align: center;
}
.beforeafter_img {
    display: flex;
    justify-content: center;
}
.beforeafter_img img {
    width: 400px;
    padding: 40px;
}
.decorte_flex {
    display: flex;
    justify-content: center;
}
.herb_flex {
    display: flex;
    flex-flow: row-reverse;
    justify-content: center;
}
.facial_img {
	margin-top: 30px;
    width: 430px;
    height: 350px;
}
.facial_content {
    padding: 20px 40px;
}
#decorte h3, #herb h3, #simi h3 {
    text-align: center;
    font-size: 18px;
}
#herb h4, #simi h4 {
    font-size: 18px;
}
.decorte_border_b {
    display: block;
    margin: 0 auto;
    width: 270px;
}
.decorte_menu ul, .herb_menu ul {
    display: flex;
}
.decorte_menu ul li:first-child {
    margin-right: 30px;
}
.decorte_menu, .herb_menu {
    text-align: right;
}
.decorte_menu_price {
    display: inline-block;
    text-align: left;
}
.herb_menu_price {
    display: inline-block;
    text-align: left;
    padding: 25px 0;
}
.herb_menu_price ul {
    border-bottom: 1px dotted #826325;
    padding: 10px 0;
}
.decorte_menu_price p, .herb_menu_price p {
    border-bottom: 1px solid #826325;
}
.facial_text {
    padding: 10px 0;
}
.special {
    margin-top: 5px;
    text-align: center;
}
.special span {
    display: inline-block;
}
#decorte, #herb{
    margin-bottom: 150px;
}
/*-----------
sp
-----------*/
@media screen and (max-width: 1070px) {
    .facial_charmme_flex img, .facial_img {
        width: 60vw;
        height: 40vh;
    }
    .facial_text, .facial_charmme_content {
        padding: 0 10px;
    }
    .stripe_center {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
	#facial_charmme h3 {
    	margin-top: -20px;
	}
    .facial_charmme_flex img, .facial_img {
        width: 100%;
        height: auto;
    }
    .facial_charmme_flex {
        margin-top: -30px;
        display: block;
    }
    .facial_charmme_content {
        margin-bottom: 20px;
    }
    .facial_charmme_content h4 {
        text-align: center;
    }
    .decorte_flex {
        display: block;
    }
    .herb_flex {
        display: block;
    }
    .facial_charmme_menu {
        margin-top: -60px;
    }
    #decorte {
        margin-top: -40px;
    }
	#herb {
		margin-top: 40px;
	}
    .facial_charmme_menu .new_line {
        display: inline-block;
    }
    #footer {
        margin-top: -30px;
    }
	.beforeafter_img {
        display: block;
    }
	.beforeafter_img img {
		width: 100%;
	}
	.herb_menu ul {
        display: flex;
    }
    #herb h3 {
        font-size: 17px;
    }
	#herb h4 {
        padding-bottom: 10px;
    }
    .facial_img {
        margin-top: 10px;
    }
    .beforeafter {
        width: 100%;
        padding: 15px 5px 5px 5px;
    }
	.beforeafter_img img {
    	padding: 0;
	}
     .facial_content {
        padding: 0;
    }
}
    @media screen and (max-width: 480px) {
    .decorte_menu, .herb_menu {
        margin: 15px 0;
    }
    .course_1 ul li, .course_2 ul li {
        white-space: nowrap;
    }
}
/*--------------------------------------------------
お知らせ
--------------------------------------------------*/
#news_content, #news_indivisual {
    max-width: 600px;
    text-align: left;
    margin-top: 150px;
    margin-bottom: 150px;
}
#news_content ul li {
    padding: 15px 0;
}
#news_content ul li p {
    padding: 3px 0;
}
.news_list a {
    color: #707070;
}
.news_list li:hover, #news_content ul li:hover {
    background: #f1f3f3;
    transition: 0.5s;
}
.clearfix {
    text-align: center;
    margin: 50px 0;
}
.clearfix a {
    color: #fff;
    background-color: #8EAEBD;
    margin: 0 58px;
}
/*----------
sp
----------*/
@media screen and (max-width: 767px) {
    #news_content, #news_indivisual {
        padding: 0 20px;
        margin-top: 80px;
    }
    .clearfix a {
        width: 110px;
        margin: 0 20px;
    }
    .res_btn {
        width: 130px;
    }
}

/*-------------------------------------------------
404ページ
-------------------------------------------------*/
@media screen and (max-width: 767px) {
    .inner_404 {
        max-width: 800px;
        margin: 100px auto 100px auto;
    }
}