/*common_css*/
@font-face {
    font-family: 'icomoon';
    src:  url('/fonts/icomoon.eot?4b5hyb');
    src:  url('/fonts/icomoon.eot?4b5hyb#iefix') format('embedded-opentype'),
    url('/fonts/icomoon.ttf?4b5hyb') format('truetype'),
    url('/fonts/icomoon.woff?4b5hyb') format('woff'),
    url('/fonts/icomoon.svg?4b5hyb#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

[class^="icon-"], [class*=" icon-"] {
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Box sizingの定義 */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* デフォルトのpaddingを削除 */
ul,
li,
ul[class],
ol[class] {
    padding: 0;
}

/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
ul,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
}

/* bodyのデフォルトを定義 */
body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

/* class属性を持つul、ol要素のリストスタイルを削除 */
ul[class],
ol[class] {
    list-style: none;
}

/* classを持たない要素はデフォルトのスタイルを取得 */
a:not([class]) {
    text-decoration-skip-ink: auto;
}

/* img要素の扱いを簡単にする */
img {
    max-width: 100%;
    display: block;
}

/* article要素内の要素に自然な流れとリズムを定義 */
article > * + * {
    margin-top: 1em;
}

/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
    font: inherit;
}

/***幅指定***/
[data-w-width] {
    max-width: 100%;
}

/*コンテンツ幅での設置*/
[data-w-width="1"] {
    width: 1170px;
    width:1170px;
    margin: 0 auto;
}
@media (max-width: 1169px) {
    [data-w-width="1"] {
        width: calc(100% - 5%);
    } 
}
@media (max-width: 768px) {
    [data-w-width="1"] {
        width: calc(100% - 12%);
    } 
}
/*リソース設定無い場合とリソース設定がある場合。*/
/*margin設定はデザインによって変更OK*/

/*ウィンドウ幅での設置*/
[data-w-width="0"] {
    width: 100%;
}

/***基本設定***/
html {
    font-size: 62.5%;
}
/*パーツ内ではremで余白やフォントサイズの指定を行うため、この数値*/

body {
    background: #ffffff;
    background:#e6e6e2;
    color: #313131;
    color:#313131;
    line-height: 1.6;
    font-size: 1.6rem;
    font-feature-settings: "palt";
    -webkit-text-size-adjust: 100%;
}
@media (max-width: 768px) {
    body {
        font-size:3vw;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/***色指定***/
.-w-txt.-w-background {
    color: #fff;
    color:#e6e6e2;
}
.-w-txt.-w-background-r {
    color: #000;
    color:#313131;
}
.-w-txt.-w-main {
    color: #001754;
    color:#303439;
}
.-w-txt.-w-main-r {
    color: #fff;
    color:#000000;
}
.-w-txt.-w-accent {
    color: #4f0506;
    color:#313131;
}
.-w-txt.-w-accent-r {
    color: #fff;
    color:#ffffff;
}
/*背景色＋テキスト色*/
.-w-bg.-w-background {
    background: #fff;
    background:#e6e6e2;
    color: #000;
    color:#313131;
}
.-w-bg.-w-main {
    background: #001754;
    background:#303439;
    color: #fff;
    color:#000000;
}
.-w-bg.-w-accent {
    background: #4f0506;
    background:#313131;
    color: #fff;
    color:#ffffff;
}
/*反転ver*/
.-w-bg.-w-background-r {
    background: #000;
    background:#313131;
    color: #fff;
    color:#e6e6e2;
}
.-w-bg.-w-main-r {
    background: #fff;
    background:#000000;
    color: #001754;
    color:#303439;
}
.-w-bg.-w-accent-r {
    background: #fff;
    background:#ffffff;
    color: #4f0506;
    color:#313131;
}
/*hover時背景色指定*/
a.-w-bg.-w-background:hover {
    background: #000;
    background:#313131;
    color: #fff;
    color:#e6e6e2;
}
a.-w-bg.-w-main:hover {
    background: #fff;
    background:#000000;
    color: #001754;
    color:#e6e6e2;
}
a.-w-bg.-w-accent:hover {
    background: #fff;
    background:#ffffff;
    color: #4f0506;
    color:#313131;
}
a.-w-bg.-w-background-r:hover {
    background: #fff;
    background:#e6e6e2;
    color: #000;
    color:#313131;
}
a.-w-bg.-w-main-r:hover {
    background: #001754;
    background:#303439;
    color: #fff;
    color:#000000;
}
a.-w-bg.-w-accent-r:hover {
    background: #4f0506;
    background:#313131;
    color: #fff;
    color:#ffffff;
}

/***ボーダー色指定***/
.-w-bd.-w-background {
    border-color: #fff;
    border-color:#e6e6e2;
}
.-w-bd.-w-main {
    border-color: #001754;
    border-color:#303439;
}
.-w-bd.-w-accent {
    border-color: #4f0506;
    border-color:#313131;
}
.-w-bd.-w-background-r {
    border-color: #000;
    border-color:#313131;
}
.-w-bd.-w-main-r {
    border-color: #fff;
    border-color:#000000;
}
.-w-bd.-w-accent-r {
    border-color: #fff;
    border-color:#ffffff;
}
/*hover時ボーダー色指定*/
a.-w-bd.-w-bg.-w-background-r:hover,
a.-w-bd.-w-background:hover {
    border-color: #000;
    border-color:#313131;
}
a.-w-bd.-w-bg.-w-main-r:hover,
a.-w-bd.-w-main:hover {
    border-color: #fff;
    border-color:#000000;
}
a.-w-bd.-w-bg.-w-accent-r:hover,
a.-w-bd.-w-accent:hover {
    border-color: #fff;
    border-color:#ffffff;
}
a.-w-bd.-w-bg.-w-background:hover,
a.-w-bd.-w-background-r:hover {
    border-color: #000;
    border-color:#e6e6e2;
}
a.-w-bd.-w-bg.-w-main:hover,
a.-w-bd.-w-main-r:hover {
    border-color: #001754;
    border-color:#303439;
}
a.-w-bd.-w-bg.-w-accent:hover,
a.-w-bd.-w-accent-r:hover {
    border-color: #4f0506;
    border-color:#313131;
}


/*見出し設定*/
.-w-ttl_wrap {
    text-align: left;
}
.-w-section_inner h3.-w-general{
    text-align: left;
}
span.-w-general,
.-w-ttl-en.-w-font_en,
.-w-general .-w-font_en,
.-w-ttl-en.-w-font_en {
    font-size: 6rem;
    margin-bottom:1.0rem;
    display: block;
    line-height: 1.0;
    color:#313131;
    color:rgba(49,49,49,1);
}
h2.-w-general{
    font-size: 2.2rem;
    margin-bottom: 3.0rem;
    letter-spacing: 0px;
    color:#313131;
    color:rgba(49,49,49,1);
}
h3.-w-general{
    font-size: 2.0rem;
    margin-bottom: 3.0rem;
    letter-spacing: 0px;
    color:#EA7C5D;
    color:rgba(48,52,57,1);
}
h4.-w-general {
    font-size: 2.0rem;
    color:#313131;
    color:rgba(49,49,49,1);
    margin-bottom: 1.5rem;
}
[data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] .-w-wrapper .-w-ttl-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 1.0rem;
}
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h2.-w-general .-w-font_title2{
    letter-spacing: -2px;
}
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h3.-w-general{
    letter-spacing: -2px;
}
@media (max-width: 1020px) and (min-width: 768px) {
    h2.-w-general {
        font-size: 2.1rem;
    }
    h3.-w-general{
        font-size: 2.05rem;
        letter-spacing: 0;
    }
    h4.-w-general {
        font-size: 1.9rem;
    }
    [data-lib="2578"] table tr th {
        width:20%!important;
    }
}
@media (max-width: 768px) {
    .-w-ttl_wrap {
        text-align: center;
    }
    .-w-section_inner h3.-w-general{
        text-align: left;
    }
    span.-w-general,
    .-w-ttl-en.-w-font_en,
    .-w-general .-w-font_en,
    .-w-ttl-en.-w-font_en {
        font-size: 15vw;
        text-align: center;
        margin-bottom:1.0rem;
    }
    h2.-w-general {
        margin-bottom: 1.5rem;
        font-size: 5.5vw;
        letter-spacing: 0;
        text-align: left;
        line-height:1.5;
    }
    h3.-w-general{
        font-size: 5.0vw;
        letter-spacing: 0;
        text-align: left;
        margin-bottom: 1.5rem;
    }
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h2.-w-general .-w-font_title2{
        letter-spacing: 0px;
    }
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h3.-w-general{
        letter-spacing: 0px;
    }
    h4.-w-general {
        font-size: 3.1vw;
        letter-spacing: 0px;
        text-align: left;
        margin-bottom: 1.5rem;
    }
}
/*フェード*/
@media (min-width: 1024px) {
    .-w-anime-fade {
      opacity: 0;
      transition: all .5s ease-in-out;
      transform: translateY(50px);
    }
    .-w-anime-fade.active {
      opacity: 1;
      transform: translateY(0px);
    }
    
    .-w-anime-fade:nth-child(2){
        transition-delay:0.2s;
    }
    .-w-anime-fade:nth-child(3){
        transition-delay:0.4s;
    }
    .-w-anime-fade:nth-child(4){
        transition-delay:0.6s;
    }
    .-w-anime-fade:nth-child(5){
        transition-delay:0.8s;
    }
    .-w-anime-fade:nth-child(6){
        transition-delay:1s;
    }
    .-w-anime-fade:nth-child(n+7){
        transition-delay:1.2s;
    }
}


/*ボタン*/
.-w-more_btn{
    margin-top:3.0rem;
    text-align: center;
}    
.-w-more_btn a{
    display: inline-block;
    position: relative;
    text-decoration: none;
    border: 2px solid;
    -webkit-transition: all .3s;
    transition: all .3s;
    padding: 8px 5px;
    line-height: 1;
    text-align: center;
    min-width: 170px;
    background-color:#ff6600;
    color:#ffffff;
    border-color:#ff6600;
    background-color:rgba(49,49,49,1);
    color:rgba(255,255,255,1);
    border-color:rgba(49,49,49,1);
}
.-w-more_btn a.current,
.-w-more_btn a:hover{
    opacity: 1;
    background-color:#ffffff;
    color:#ff6600;
    color:rgba(49,49,49,1);
    background-color:rgba(255,255,255,1);
}
@media (max-width: 768px) {
    .-w-more_btn a{
        padding: 15px 10px;
        min-width: 100%;
        font-size: 4vw;
    }
}

.-w-more_btn a span,
.-w-contact_btn a > span > span {
    position: relative;
    z-index: 2;
    color:inherit;
}
.-w-more_btn a:hover span,
.-w-contact_btn a:hover > span > span {
    color:inherit;
}

/*ajaxフォーム*/
.owlet-form{
    position: relative;
    z-index: 1;
    padding: 5.0rem 0;
    border-bottom: 1px solid #dddddd;
    background-color: #fff;
    color:rgba(49,49,49,1);
    background-color:rgba(230,230,226,1);
}
.owlet-form .alert {
    font-weight: bold;
    color: #ff0000;
    
        color: hsla(0,100%,50%,1);
    
}
.owlet-form .-w-require{
    border-radius: 2px;
    margin-left: 10px;
    font-size: 1.4rem;
    font-weight: normal;
    padding: 5px 8px;
    color:#fff;
    color:rgba(255,255,255,1);
}
.owlet-form .require{
    border-radius: 2px;
    margin-left: 10px;
    font-size: 1.4rem;
    font-weight: normal;
    padding: 5px 8px;
    background : #CE0000;
    
        color: hsla(0,100%,40%,1);
    
    color: #fff;
    
        color: hsla(0,0%,100%,1);
    
}
.owlet-form table{
    width: 1170px;
    width:1170px;
    margin:0 auto;
    margin-bottom: 20px;
    border-collapse: collapse;
}
.owlet-form table tr {
    box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}
.owlet-form table tr th {
    background: #cecece;
    background:rgba(49,49,49,1);
    color: #313131;
    color:rgba(255,255,255,1);
    width: 25%;
    margin-right:5%;
    padding: 15px 20px;
    font-weight: bold;
    vertical-align: middle;
    text-align:left;
    border-radius: 12px;
    min-width: 250px;
}
.owlet-form table tr td {
    border-top: 1px solid ;
    border-color: #dddddd;
    border-color:#313131;
    background: #ffffff;
    color: #313131;
    width: 70%;
    padding: 15px 20px;
    vertical-align: middle;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    min-width: 785px;
}
.owlet-form .owlet-input-sample{
    font-size: 1.6rem;
    padding: 0 10px;
}
.owlet-form table input,
.owlet-form table select,
.owlet-form table textarea,
.owlet-form table label,
.owlet-form table .input_address{
    font-size:1.6rem;
}
.owlet-form input.owlet-input-tel1 + span,
.owlet-form input.owlet-input-tel2 + span{
    font-size:1.6rem;
}
.owlet-form input[type="text"]{
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
}
.owlet-form input.owlet-input-name-sei[type="text"],
.owlet-form input.owlet-input-name-mei[type="text"]{
    width: 40%;
    padding: 10px;
    margin: 0 10px 0 0;
}
.owlet-form input[type="text"],select {
    min-height: 30px;
    border: 1px solid ;
    border-color: #dddddd;
    border-color:rgba(49,49,49,0.8);
}
.owlet-form input.owlet-input-tel1[type="text"],
.owlet-form input.owlet-input-tel2[type="text"],
.owlet-form input.owlet-input-tel3[type="text"],
.owlet-form input.zip1[type="text"],
.owlet-form input.zip2[type="text"]{
    line-height: 1.2;
    padding: 10px;
    border-radius: 3px;
    min-height: 30px;
    box-sizing: border-box;
    border: 1px solid #dcdcdc;
    width: 115px;
}
.owlet-form textarea {
    min-height: 150px;
    line-height: 1.2;
    padding: 10px;
    border-radius: 3px;
    box-sizing: border-box;
    border: 1px solid #dcdcdc;
    width: 100%;
}
.owlet-form select {
    line-height: 1.2;
    border-radius: 3px;
    min-height: 30px;
    box-sizing: border-box;
    border: 1px solid #dcdcdc;
    width: 180px;
}
.owlet-form .owlet-input-name-sei,
.owlet-form .owlet-input-name-mei {
    width: 90px;
    margin: 0 5px;
}
.owlet-form input[name="input[email]"],
.owlet-form input[name="input[email_confirm]"] {
        
}
.owlet-form .zip1,.owlet-form .zip2 {
    width: 60px;
    margin-bottom: 10px;
}
.owlet-form .zip2addr {
    margin-bottom: 10px;
    padding: 10px 13px 6px;
    box-sizing: border-box;
    display: inline-block;
    background:rgba(49,49,49,1);
    color:rgba(255,255,255,1);
}
.owlet-form select.prefectures,
.owlet-form select.city {
    margin: 0 5px 10px 0;
    padding: 10px;
}
.owlet-form .address,
.owlet-form input[name="input[address_address]"],
.owlet-form input[name="input[address_address2]"],
.owlet-form input[name="input[address2_address]"],
.owlet-form input[name="input[address2_address2]"] {
    width: 100%;
    margin-left: 0;
}
.owlet-form .address,
.owlet-form input[name="input[address_address]"] {
    margin-bottom: 5px;
}
.owlet-form .owl-datepicker {
    width: 150px;
    margin-right: 5px;
}
.owlet-form select[name="input[date_hour]"],
.owlet-form select[name="input[date_minute]"] {
    margin-right: 5px;
}
.owlet-form .owlet-input-tel1,
.owlet-form .owlet-input-tel2,
.owlet-form .owlet-input-tel3 {
    width: 60px;
}
.owlet-form .owlet-input-tel2,
.owlet-form .owlet-input-tel3 {
    margin-left: 5px;
}
.owlet-form input[name="input[company_name]"] {
    width: 80%;
    line-height: 1.2;
    padding: 2px;
}
.owlet-form textarea[name="input[text]"] {
    width: 80%;
}
.owlet-form table tr td label {
    display: block;
}
.owlet-form input[name="input[select_etc]"],
.owlet-form input[name="input[radio_etc]"],
.owlet-form input[name="input[check_etc]"] {
    width: 80%;
    margin-top: 5px;
}
.owlet-form .-w-rules-agree {
    text-align: center;
    margin-bottom: 3.0rem;
}
.owlet-form .-w-rules-agree a{
  display: inline-block;
}
.owlet-form input[type="submit"], .owlet-form input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
.owlet-form input[type="button"], .owlet-form select {
    border-radius: 3px;
    min-height: 30px;
    box-sizing: border-box;
    border: 1px solid #dcdcdc;
}
.owlet-form .form_button {
    text-align: center;
}

.owlet-form .form_button input[type="button"],
.owlet-form .owlet-form-confirm a{
    border-radius: 0px;
    cursor: pointer;
    padding: 8px 5px;
    cursor: pointer;
    width:170px;
    font-size: 1.5rem;
}

.owlet-form .form_button input[type="button"]{
    border:1px solid;
    border-color:#313131;
    font-family:YuMincho,'Yu Mincho',serif;
    background-color:#313131;
    color:#ffffff;
}
.owlet-form .form_button input[type="button"]:hover {
    background-color:#ffffff;
    color:#313131;
    transition: all .4s;
}

.owlet-form .owlet-form-confirm a{
    border:1px solid #999;
    background-color: #999;
    color:#fff;
    display: inline-block;
    text-decoration: none;
    margin-left:20px;
}
.owlet-form .owlet-form-confirm a:hover{
    border:1px solid #999;
    background-color: #fff;
    color:#999;
    transition: all .4s;
}
@media (max-width: 1169px) {
    .owlet-form{
        padding:5.0rem 6%;    
    }
    .owlet-form table{
        width: 100%;
    }
    .owlet-form table tr th,
    .owlet-form table tr td{
        min-width: auto;
    }
    .owlet-form table tr th{
        width: 28%;
        margin-right: 2%;
    }
    .owlet-form table tr td{
        background: ;
    }
}
@media (max-width: 768px) {
    .owlet-form table {
    }
    .owlet-form table tr th {
        display: block;
        width: 100%;
        border-bottom: none;
        text-align:left;
        
        margin-bottom: 5px;
        background: none;
        color: #2d65af;
        color:#313131;
        padding: 0;
        min-width: auto;
    }
    .owlet-form table tr td {
        display: block;
        width: 100%;
        padding: 10px 2%;
        border-bottom: none;
        text-align:left;
        border-bottom-right-radius: initial;
        border-bottom-left-radius: initial;
        min-width: auto;
        background:#e6e6e2;
    }
    .owlet-form .-w-rules-agree{
        font-size:1.3rem;
    }
    .owlet-form .-w-form_wrap{
        background: none;
    }
    .owlet-form .-w-require{
        color:#313131;
    }
}

/*
フォーム 規約
**************************************/
.owlet-form .owlet-rules {
    width:1170px;
    width:1170px;
    margin: 0 auto;
}
.owlet-form .owlet-rules-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.owlet-form .owlet-rules-body {
    height: 200px;
    padding: 1rem;
    border: 1px solid;
    box-sizing: border-box;
    margin-bottom: 2rem;
    overflow-y: scroll;
}
.owlet-form .owlet-rules-agree {
    text-align: center;
    margin-bottom: 2rem;
}
@media (max-width: 1169px) {
    .owlet-form .owlet-rules{
        width: 100%;
    }
}


/*
 フォント
****************************************/


    body {
        font-family: source-han-sans-cjk-ja, sans-serif;
        font-weight: 300;
        font-style: normal;

        font-family:YuMincho,'Yu Mincho',serif;
        font-style:normal;
        font-weight:500;
    }
        
    /*見出しフォント*/
  .-w-font_title1{
        font-family:YuMincho,'Yu Mincho',serif, YuMincho,'Yu Mincho',serif,sans-serif;
        font-style:normal;
        font-weight:600;
    }
    /*MVフォント*/
  .-w-font_title2{
        font-family:YuMincho,'Yu Mincho',serif, YuMincho,'Yu Mincho',serif,sans-serif;
        font-style:normal;
        font-weight:600;
    }
    /*英数字フォント*/
  .-w-font_en{
        font-family:YuMincho,'Yu Mincho', YuMincho,'Yu Mincho',serif, YuMincho,'Yu Mincho',serif,sans-serif;
        font-style:normal;
        font-weight:600;
    }
    .-w-font_en_after:after{
        font-family:YuMincho,'Yu Mincho', YuMincho,'Yu Mincho',serif, YuMincho,'Yu Mincho',serif,sans-serif;
        font-style:normal;
        font-weight:600;
    }
     /*英数字フォント2*/
     .font_en2{
        font-family:YuMincho,'Yu Mincho', serif;
        font-weight:600;
     }











































@media (max-width: 768px) {
    
    /*
     フォント
    ****************************************/
    
    
        /*見出しフォント*/
        .-w-font_title1,
        h2, h3, h4, h5, h6{
        }
        /*MVフォント*/
        .-w-font_title2,
        th,td,.-w-more_btn a{
        }
        /*英数字フォント*/
        .-w-font_en,
        .-w-ttl_wrap span{
            font-family:YuMincho,'Yu Mincho', YuMincho,'Yu Mincho',serif, YuMincho,'Yu Mincho',serif,sans-serif;
        }
        .-w-font_en_after:after{
            font-family:YuMincho,'Yu Mincho', YuMincho,'Yu Mincho',serif, YuMincho,'Yu Mincho',serif,sans-serif;
        }
    
    
    
    
    
    
    
    
    
    
    
    
    
}

@media (max-width: 768px) {
    #google_translate_element select {
    font-size:28px;
    }
}



/*================================================================*/


span.-w-general.-w-font_en {

}
[data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"] .-w-ttl-en.-w-font_en{

}
@media (max-width: 768px) {
    span.-w-general.-w-font_en {

    }

    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h2.-w-general .-w-font_title2{
        line-height:1.5
    }
    [data-lib-uuid="b3fade74-b018-4ba9-a23e-279b51d8051b"] .-w-box span {
    }
    [data-lib-uuid="b3fade74-b018-4ba9-a23e-279b51d8051b"] .-w-box h2 {
        line-height: 1.2;
    }
    [data-lib-uuid="fa22f160-f6dc-4a4d-b302-daa037a086c4"] h2.-w-general .-w-font_title2 {
        text-align: left;
        line-height: 1.5;
    }
}
[data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] h3.-w-general {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
[data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] .-w-access-wrapper h3.-w-general {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
[data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] .-w-ttl-en {

    margin-right:0;
}
@media (min-width: 769px) {
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] .-w-ttl-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding-bottom:3.0rem;!important;
    }
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] .-w-ttl-wrapper .-w-en {
        margin:0;
        display: block;
    }
}
@media (max-width: 768px) {
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] .-w-ttl-wrapper .-w-en {
        margin:0;
        display: block;
    }
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] .-w-ttl-wrapper .-w-left {
        width:100%;
    }
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] .-w-summary {
        width:100%;
    }
}
[data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] .-w-font_en {
}
@media (max-width: 768px) {
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] .-w-font_en {
        text-align: center;
    }
}











































/*ボタン*/









































.-w-more_btn{
    margin-top:3.0rem;
    text-align: center;
}
.-w-more_btn a{
    min-width: initial;
    position: relative;
    padding-bottom: 5px;
}
.-w-more_btn a:after {
    transition: all .5s;
    content: "";
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background:#313131;
    width: 0%;
}
.-w-more_btn a:hover:after {
    width: 100%;
}
#foot_fixed .-w-contact_btn a,
.-w-more_btn a{
    font-family: YuMincho,'Yu Mincho',serif;
    font-weight: 600;
    color:#313131;
    text-decoration: none;
    padding: 0;
    background: none;
    border: none;
    font-size: 25px;
    letter-spacing: 2px;
}
#foot_fixed table .-w-contact_btn a,
.-w-more_btn a{
    padding: 0;
    background-color: initial;
}
.-w-more_btn a.current,
.-w-more_btn a:hover{
    background-color: initial;
}
.-w-more_btn span.big {
    font-size: 35px;
}
/*PAGE*/@charset "utf-8";
/* CSS Document */
/*★★★★★★★★テンプレート[始]★★★★★★★★*/

/*===============================================
	reset
===============================================*/
*{margin:0; padding:0; color:#000;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
} 
h1,h2,h3,h4,h5,h6,p,address,
ul,ol,li,dl,dt,dd,
table,caption,th,td,img,form{margin:0; padding:0; border:none; font-style:normal; font-weight:normal; font-size:100%; text-align:left;}
textarea{font-size:100%;}
img{vertical-align:bottom;}
li{list-style:none;}
/*===============================================
	a,text
===============================================*/
a:hover{text-decoration:underline;}
a{text-decoration:none; color:#1800ff;}
/*=============================================== 
	base
===============================================*/
html,body{height:100%;}
/*===============================================
	font
===============================================*/
body{font-family: 'Noto Sans JP', sans-serif;}
input,textarea,select{font-family: 'Noto Sans JP', sans-serif; font-size:12px;}
/* for IE6 */
* html body{font-family: 'Noto Sans JP', sans-serif;}
* html input, * html textarea{font-family: 'Noto Sans JP', sans-serif;}
h1,h3,h4{font-family: 'Hiragino Mincho ProN' ,"ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;}
h2{font-family: 'Hiragino Mincho ProN' ,"ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;}
p{font-family: 'Hiragino Mincho ProN' ,"ヒラギノ明朝 ProN W3", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif; }
li{font-family: 'Hiragino Mincho ProN' ,"ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif; font-weight: 100;}
table{font-family: 'Hiragino Mincho ProN' ,"ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif; font-weight: 100;}

/*===============================================
	align
===============================================*/
.center{text-align:center !important; margin: 0 auto !important;}
.textleft{text-align:left !important;}
.textright{text-align:right !important;}

/*===============================================
	他span
===============================================*/
.underL{text-decoration:underline !important;}
.displayN{display:none !important;}
.bold{font-weight:bold !important;}

/*===============================================
	cFix
===============================================*/
/*Opera Fix*/
body:before{content:""; height:100%; float:left; width:0; margin-top:-32767px;}
/*cFix*/
.cFix:after {content:"."; display:block; height:0; clear:both; visibility:hidden;}
* html .cFix {height:1%;}
.cFix {display:block;}

/*===============================================
	共通部分
===============================================*/
#wrap{width: 100%;}
/* img mouse hover */
a:hover {opacity: 0.4;filter: alpha(opacity=40);-ms-filter: "alpha(opacity=40)"; transition: all .2s;}
.sp{display:none;}
.pc{display: inline;}
p{line-height: 2rem;}
.under_red{text-decoration: underline; text-decoration-color: red; text-decoration-style: double; }

/*ヘッダー*/
header{width: 100%; margin:0 auto; background: #fff; padding: 5px 0;}
header .wrap{width: 1200px; margin:0 auto;}
header .head__logo{float: left; padding: 10px 0; width: 330px;}
header .head__logo li{float: left;}
header .head__logo li:nth-child(1){ width: 143px;}
header .head__logo li:nth-child(2){ width: 167px; margin-left: 20px;}
header .head__logo img{width: 100%;}
header .head__navi{float: right; width: 800px;}
header .head__navi li{ float: left; padding: 0; margin-left: 10px; text-align: center;}
header .head__navi li img{ width: 100%; height: 100%;}
header .head__navi li a{color: #000; font-weight: normal; text-decoration: none;}
header .head__navi__top{display: block; float: right; margin-bottom: 5px;}
header .head__navi__down{display: block; float: right;}
header .head__navi__down li{ margin-left: 35px;}
header .head__navi__down span{font-family:'Helvetica Neue','Arial','Hiragino Kaku Gothic ProN','Meiryo',sans-serif; font-size: 0.6rem;
 display: block; text-align: center; line-height: 0.6rem; color: #6d6d6d;}

/*フッター*/
footer{width: 100%; background:#b5a884; padding: 60px 0 30px;}
footer .wrap{width: 800px; margin: 0 auto;}
footer .left{float: left; width: 250px;}
footer .logo{width: 169px; margin: 0 auto 40px;}
footer .logo img{ width: 100%;}
footer .sns{border:1px solid #000; padding: 15px 20px 10px;}
footer .sns ul{width: 100px; margin: 0 auto;}
footer .sns li{float: left;}
footer .sns li:nth-child(2){float: right;}
footer .sns li img{width: 45px;}
footer .sns p{font-size: 0.8rem; text-align: center; margin-top: 5px;}
footer .right{float: right; width: 350px;}
footer .right li{font-size: 0.9rem; margin-bottom: 20px;}
footer .right a{color: #000;}
footer .right .ft_navi_left{float: left; width: 150px;}
footer .right .ft_navi_right{float: right; width: 150px;}


/*ドロップダウンメニュー*/
.gnavi__lists {display: flex;}
.gnavi__list { position: relative; transition: all .3s;}
.gnavi__list:hover { background-color: #0071BB;}
.gnavi__list:not(:first-child)::before { content: ""; width: 1px; height: 100%; background-color: #fff; position: absolute; top: 0; left: 0; transition: all .3s;}
.gnavi__list:hover::before { background-color: #0071BB;}
.gnavi__list a { display: flex; justify-content: center; align-items: center; width: 100%; height: 100%; text-decoration: none; color: #000; font-size: 15px;
 letter-spacing: 0.05em; font-weight: 600; transition: all .3s;}
.gnavi__list:hover a { color: #000;}
.dropdown__lists { display: none;/*デフォルトでは非表示の状態にしておく*/ width: 100%; position: absolute; top: 30px; left:-35px;}
.gnavi__list:hover .dropdown__lists { display: block;/*Gナビメニューにホバーしたら表示*/}
.dropdown__list { background-color: #fff; height: 40px; transition: all .3s; position: relative;}
.dropdown__list:not(:first-child)::before{ content: ""; width: 100%; height: 1px; background-color: #3492d1; position: absolute; top: 0; left: 0;}
.dropdown__list:hover { background-color: #f4f4f4;}
.dropdown__list a { display: flex; justify-content: center; align-items: center; color: #000; text-decoration: none; position: relative; width: 160px; font-size: 0.8rem; padding-right: 10px;}
.dropdown__list a::before { content: ''; display: block; width: 6px; height: 6px; border-top: 2px solid #000; border-left: 2px solid #000;
 transform: rotate(135deg); position: absolute; right: 15px; top: calc(50% - 5px);}
/* //ドロップダウンメニュー*/


/*パンクズリスト*/
#pankuzu{width: 1200px; margin: 0 auto 50px;}
#pankuzu ul{ float: right;}
#pankuzu li{ float: left; font-size: 0.9rem;}
#pankuzu a{color: #000;}


/*===============================================
	メインビジュアル
===============================================*/

/*メインビジュアル*/
#main{background: height: 500px; margin: 20px auto ;}
#main .mainTx{width: 1000px; margin: 0 auto; height: 500px; padding: 212px 0 0 30px;}
#main h1{ font-size: 2rem; letter-spacing: 4px;}
#main p{color: #cecece; font-size: 1.1rem; letter-spacing: 1px;}

/*メニューごとの画像*/
#top #main{background: url(../img/top/main.png) bottom center no-repeat; height: 700px;}
#top #main .mainTx{width: 1090px; margin: 0 auto; height: 500px; padding: 20px 0 0 0;}
#usuge #main{background: url(../img/usuge/usuge_main.png) bottom center no-repeat;}
#hair-removal #main{background: url(../img/hair-removal/hair-removal_main.png) bottom center no-repeat;}
#eyelash #main{background: url(../img/eyelash/eyelash_main.png) bottom center no-repeat;}
#facial-care #main{background: url(../img/facial-care/facial-care_main.png) bottom center no-repeat;}
#under #main{background: url(../img/under/under_main.png) bottom center no-repeat; height: 300px;}
#under #main .mainTx{width: 500px; margin: 0 auto; height: 300px; padding: 112px 0 0 30px;}

/*===============================================
*TOP*
===============================================*/

/*コンセプト*/
#concept{width: 100%; background: url(../img/top/concept_top.png) no-repeat top 0 left 5%, url(../img/top/concept_down.png) no-repeat bottom 0 right 5%; padding: 100px 0; margin: 50px 0 100px;}
#concept .wrap{width: 1000px; margin: 0 auto;}
#concept h2{text-align: center; margin-bottom: 40px;}
#concept .left{float: left; width: 492px; }
#concept .left p{font-size: 1rem; line-height: 2.5rem;}
#concept .right{float: right; width: 450px;}
#concept .right img{ width: 100%;}
#concept .staff{ text-align: right;}

/*トップメニュー*/
#top_menu {width: 1200px; margin: 0 auto 100px;} 
#top_menu .menuttl{margin: 0 auto 100px;}
#top_menu ul{display: flex; align-items: stretch; flex-wrap: wrap;}
#top_menu li{float: left; width: 580px; margin: 0 40px 50px 0;} 
#top_menu li:nth-child(2n){margin: 0 0 50px;}
#top_menu li:nth-child(1) .menu_detail_cnt,#top_menu li:nth-child(2) .menu_detail_cnt{min-height: 710px;}
#top_menu li:nth-child(3) .menu_detail_cnt,#top_menu li:nth-child(4) .menu_detail_cnt{min-height: 650px;}
#top_menu .menu_detail_cnt{background:#fff; padding: 40px; width: 500px; filter: drop-shadow(0 0 5px rgba(100,100,100,0.2)); margin: -50px auto 0; position: relative;}
#top_menu .top_menu_img{width:100%; height: 300px;}
#top_menu .menu_detail_cnt h3{text-align: center; color: #00647e; font-size: 1.8rem; margin-bottom: 10px; letter-spacing: 1px;}
#top_menu .menu_detail_cnt p{margin-bottom: 10px;}
#top_menu .menu_detail_cnt a{text-align: center; display: block; margin: 0 auto; width: 250px;}
#top_menu .menu_detail_cnt img{text-align: center; display: block; margin: 0 auto; width: 250px;}
#top_menu .menu_detail_cnt .btn{position: absolute; bottom: 10px;
	left: 50%; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%);}

/*フィーチャー*/
#feature{width: 100%; padding: 50px 0; position: relative; overflow: hidden; margin: 0 auto 100px;}
#feature .wrap_out{width: 100%; margin: 0 auto; background: #edf3f4; padding: 80px 0;}
#feature .wrap_in{width: 1100px; margin: 0 auto;}
#feature .feature_cnt{width: 520px; }
#feature h2{text-align: center; color: #00647e; font-size: 2.2rem; font-style: italic; }
#feature .feature_sub{text-align: center; margin-bottom: 10px;}
#feature .feature_img{ width: 1000px; position: absolute; left: 50%; top: -0; overflow: hidden;}

/*代表メッセージ*/
#message{width: 1200px; margin: 0 auto 150px;}
#message .left{float: left; width: 500px;}
#message .left img{width: 100%;}
#message .right {float: right; width: 500px; margin: 0 100px; padding-top: 30px;}
#message h2{text-align: center; color: #00647e; font-size: 2.2rem; font-style: italic; }
#message .message_sub{text-align: center; margin-bottom: 10px;}

/*お客様の声*/
#voice{width: 1200px; margin: 0 auto 100px;}
#voice h2{text-align: center; color: #00647e; font-size: 2.2rem; font-style: italic; }
#voice .voice_sub{text-align: center; margin-bottom: 50px;}
#voice .border_top{height: 30px; border-left: 1px solid #000; border-top: 1px solid #000; border-right: 1px solid #000; margin-bottom: 50px;}
#voice .border_bottom{height: 30px; border-left: 1px solid #000; border-bottom: 1px solid #000; border-right: 1px solid #000;}
#voice ul{display: flex; align-items: stretch; flex-wrap: wrap;}
#voice li{float: left; width: 360px; filter: drop-shadow(0 0 5px rgba(100,100,100,0.2)); margin: 0 60px 50px 0; background: #fff; padding: 30px;}
#voice li:nth-child(3n){margin: 0 0 50px;}
#voice .name{text-align: right; position: relative;}
#voice .name:before{position: absolute; content: ""; left: 0; top: 15px; width: 60%; border-top: 1px solid #000;}


/*店舗情報*/
#shopinfo{margin: 0 auto; width: 1000px;}
#shopinfo .shopImg{float: left; width: 282px; height: 500px;}
#shopinfo .shopMap{float: right; width: 670px;}
#shopinfo .shopMap iframe{width: 100%; height: 500px;}
#shopinfo .about{ width: 700px; margin: 50px auto;}
#shopinfo .about table{width: 100%; margin-bottom: 30px;}
#shopinfo .about td,#shopinfo .about th{ border-bottom: 1px solid #000; padding: 15px 5px;}
#shopinfo .about th{width: 20%;}
#shopinfo .about td{width: 80%;}
#shopinfo .about p{text-align: center;}
#shopinfo .about .gate{padding: 20px; background: #f4f4f4; margin: 20px auto;}


/*ビフォーアフター*/
#before-after{margin: 0 auto; width: 1000px;}
#before-after .menu{width: 100%;}
#before-after .menu li{float: left; width: 25%; padding: 0 10px;}
#before-after .menu li a{border: 1px solid #00647e; border-radius: 50px; padding: 10px; width: 100%; display: block; text-align: center; color: #00647e;}
#before-after .menu li a:hover{background: #00647e; color: #fff; transition: .2s}
#before-after .bfImg {margin-bottom: 90px;}
#before-after .bfImg h2{text-align: center; font-size: 1.5rem; color: #00647e; margin-bottom: 10px;}
#before-after .bfImg li{width: 50%; float: left; margin-bottom: 20px; padding: 0 2%;}
#before-after .bfImg li img{width: 100%;}
#before-after .bfImg p{border-bottom: 1px solid #00647e; width: 100%; margin-bottom: 20px;}
#before-after .bfImg a{border: 1px solid #00647e; padding: 10px; width: 300px; margin: 0 auto; display: block; text-align: center; color: #00647e; position: relative;}
#before-after .bfImg a:hover{background: #00647e; color: #fff; transition: .2s}
#before-after .bfImg a:after{position: absolute; content: ">"; right: 10px; top: 10px;}


/*エブリスキン*/
#every-skin{margin: 0 auto; width: 1000px;}
#every-skin .efArea{margin-bottom: 40px;}
#every-skin li {margin-bottom: 100px;}
#every-skin li .imgL{float: left;}
#every-skin li .imgR{float: right;}
#every-skin li .txR{float: right;}
#every-skin li .txL{float: left;}
#every-skin .img{ width: 400px;}
#every-skin .img img{ width: 100%;}
#every-skin .tx{ width: 600px;}
#every-skin .tx .ttl{margin: 30px 0;}
#every-skin .tx .ttl h2{ font-size: 1.3rem; color: #00647e; line-height: 2.5rem;}
#every-skin .tx .ttl p{ font-size: 1.3rem; line-height: 2.5rem;}
#every-skin .tx .read h3{width: 200px; text-align: center; padding: 5px 0; border: 1px solid #000; border-radius: 50px; margin-bottom: 10px;}
#every-skin .tx .read p{font-size: 0.9rem; margin-bottom: 30px; line-height: 1.5rem;}
#every-skin .tx .read .about{background: #f4f4f4; padding: 20px 30px; margin-bottom: 30px;}
#every-skin .tx .read .about h4{text-align: center; color: #00647e; margin-bottom: 5px;}
#every-skin .tx .read .about p{margin: 0;}
#every-skin li .buy a{border: 1px solid #00647e; padding: 10px; width: 300px; margin: 0 auto; display: block; text-align: center; color: #00647e; position: relative;}
#every-skin li .buy a:hover{background: #00647e; color: #fff; transition: .2s}
#every-skin li .buy a:after{position: absolute; content: ">"; right: 10px; top: 10px;}


/* faq */
#faq{margin: 0 auto; width: 800px;}
#faq .cnt{margin-bottom: 100px;}
#faq h2{text-align: center; font-size: 1.8rem; letter-spacing: 1px; margin-bottom: 30px; color: #00647e;}
#faq .faq__Q { cursor: pointer; padding: 12px 20px; width: 100%; position: relative; border:1px solid #00647e; background: #fff; display: block; margin-bottom: 30px;}
#faq .faq__Q:hover { text-decoration: underline;}
#faq .faq__Q:before{content: ""; width: 21px; height: 24px; background: url(../img/under/faq_q.png) no-repeat left; position: absolute; top: 30%; left: 20px;}
#faq .faq__Q:after {width: 0; height: 0; position: absolute; top: 46%; right: 3%; border: 8px solid transparent; border-top-color: #00647e; content: '';}
#faq .faq__Q p{padding:3px 0 0 40px; font-size: 1rem; }
#faq .faq__A { display: none; padding:0 0 10px; width: 100%; font-size: 1rem; line-height: 2rem; margin: 0 auto; color: #000; position: relative;}
#faq .faq__A:before{content: ""; width: 21px; height: 21px; background: url(../img/under/faq_a.png) no-repeat left; position: absolute; left: 20px; }
#faq .faq__A p{padding:0 0 0 60px; margin-bottom: 30px; font-size: 1rem; }




/*===============================================
*各メニューページ*
===============================================

/*=======薄毛改善=======*/

/*リード*/
#read {width: 1200px; margin: 0 auto 80px;}
#read .left{ float:left; width: 600px; padding-left: 100px;}
#read .right{ float:right; width: 560px;}
#read .right img{ width: 100%;}

/*キャンペーン*/
#campaign {background:url(../img/camBG.png) no-repeat top center; width: 100%; height: 600px; padding: 50px 0 0; margin: 0 auto 100px;}
#campaign img{margin: 0 auto; display: block; width: 830px;} 

/*メニュー*/
.menu{width: 1200px; margin: 0 auto 80px;}
.menu .menu_cnt{width: 1200px; margin: 0 auto;}
.menu .menuttl{margin: 0 auto 100px;}
.menu .menu_cnt h2{color: #00647e; font-size: 2.2rem; text-align: center; margin: 0 auto 10px; line-height: 2.7rem;}
.menu .menu_cnt .sub{color: #d6e4e8; font-size: 1.8rem; font-style: italic; text-align: center; margin-bottom: -20px;}
.menu .menu_cnt .menu_read{text-align: center;  margin: 0 auto 30px;}
.menu .menu_cnt .menu_btn{text-align: center; display: block; margin: 0 auto 100px; width: 250px;} 
.menu .menu_cnt .menu_btn img{width: 100%;} 
.menu .menu_cnt .menu_box{width: 800px; margin: 0 auto; background: #f4f4f4; padding: 10px 50px 50px; position: relative;} 
.menu .menu_cnt .menu_box h3{text-align: center; color: #00647e; font-size: 2.2rem; font-style: italic; position: absolute; top: 0;
	left: 50%; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%);}
.menu .menu_cnt .menu_sub{text-align: center; margin: 10px auto 50px;}
.menu .menu_cnt .menu_course li{margin: 0 auto 20px; border-bottom: 1px solid #000; padding-bottom: 10px; width: 350px; }
.menu .menu_cnt .menu_course li .left{float: left; width: 150px; background: #fff; text-align: center;}
.menu .menu_cnt .menu_course li .right{float: right; width: 170px;}
.menu .menu_cnt .menu_course li .left p{font-size: 1.4rem; padding: 5px 10px; text-align: center; display: inline-block; }
.menu .menu_cnt .menu_course li p span{font-size: 0.9rem; display: inline-block;}
.menu .menu_cnt .menu_course li .right p{font-size: 1.6rem; text-align: center; display: inline-block; padding: 5px;}
.menu .menu_cnt .menu_course li .right .old_price{font-size: 0.9rem; margin: 0; padding: 0; line-height: .5rem;}
.menu .menu_cnt .menu_course li .right .new_pirce{font-size: 1.6rem; color: #f00; line-height: 1rem;}
.menu .menu_cnt .menu_course li .right .new_pirce span{color: #f00;}
.menu .menu_cnt .tax{text-align: right; font-size: 0.8rem; margin: 10px auto 0; width: 350px;}
.menu .menu_cnt .eyelash_tx{text-align: center; font-size: 1.4rem; margin: 20px auto 0; line-height: 2.5rem;}
.menu .glowin{width: 1000px; margin: 0 auto 100px;}
.menu .glowin .left{float: left; padding-left: 100px; width: 640px;}
.menu .glowin .right{float: right; width: 300px;}
.menu .glowin .right img{ width: 100%;}
.menu .glowin .flow{font-size: 1.2rem; line-height: 1.5rem; margin-bottom: 10px;}
.menu .glowin .flow span{ background:#000; padding: 5px 10px; color: #fff; display: inline-block; font-size: 0.9rem; letter-spacing: 1px; line-height: 1rem; margin-right: 10px;}
.menu .glowin .flow_tx{ line-height: 1.5rem;}
.menu .glowin li{margin-bottom: 20px;}


/*ビフォーアフター*/
#performance{width: 800px; margin: 0 auto 100px;}
#performance .left{float: left; width: 325px; padding: 50px 0 0 75px;}
#performance h2{text-align: center; color: #00647e; font-size: 2.2rem; font-style: italic; }
#performance .performance_sub{text-align: center; margin-bottom: 30px;}
#performance .left .insta_box{border:1px solid #000; padding: 20px 10px 10px; width: 250px;}
#performance .left .insta_box img{display: block; text-align: center; margin: 0 auto; width: 45px;}
#performance .left .insta_box p{text-align: center; font-size: 0.8rem;}
#performance .right{float: right; width: 400px; }
#performance .right img{width: 100%;}
/*まつ毛用ビフォーアフター*/
#performance .ll_img{width: 100%; margin: 0 auto 50px; width: 600px;}
#performance .ll_img img{width: 100%;}
#performance .ll_center {display: block; text-align: center; margin: 0 auto ; width: 250px;}
#performance .ll_center .insta_box{border:1px solid #000; padding: 20px 10px 10px; width: 250px;}
#performance .ll_center .insta_box img{display: block; text-align: center; margin: 0 auto; width: 45px;}
#performance .ll_center .insta_box p{text-align: center; font-size: 0.8rem;}


/*プロセルセラピーズとは*/
#proCell{width: 100%; margin: 0 auto 100px;}
#proCell h2{text-align: center; color: #00647e; font-size: 2.2rem; font-style: italic; }
#proCell .proCell_sub{text-align: center; margin-bottom: 10px;}
#proCell .wrap_out{ width: 100%; background: #edf3f4; padding: 50px 0;}
#proCell .wrap_in{ width: 850px; margin: 0 auto;}
#proCell .left{float: left; width: 300px; padding-top: 50px;}
#proCell .left img{width: 100%;}
#proCell .right {float: right; width: 510px;}


/*オプションメニュー*/
#option{width: 100%; padding: 50px 0; background: #edf3f4; position: relative; overflow: hidden;}
#option .wrap{width: 800px; margin: 0 auto; }
#option h2{text-align: center; color: #00647e; font-size: 2.2rem; font-style: italic; }
#option .option_sub{text-align: center; margin-bottom: 10px;}
#option .option_box{ width: 400px;}
#option .read{margin-bottom: 40px;}
#option h3{color: #00647e; font-size: 2rem; text-align: center;}
#option .h3_sub{text-align: center; margin: 10px auto;}
#option .h3_sub span{font-size: 1.5rem;}
#option .menu_btn{text-align: center; margin: 0 auto;}
#option .menu_btn img{width: 250px; margin: 0 auto;}
#option .menu_btn p{text-align: center; margin: 10px auto;}
#option .option_img{ width: 1000px; position: absolute; left: 50%; top: 150px; overflow: hidden;}
#eyelash #option .wrap{width: 1000px; margin: 0 auto; }
#eyelash #option .option_box {width: 1000px; background: #f4f4f4; padding: 100px 0 ; position: relative; margin: 0 auto;} 
#eyelash #option .option_box li{margin: 0 0 20px; border-bottom: 1px solid #000; padding-bottom: 10px; width: 450px; }
#eyelash #option .option_box li .left{float: left; width: 300px; background: #fff; text-align: center;}
#eyelash #option .option_box li .right{float: right; width: 130px;}
#eyelash #option .option_box li .left p{font-size: 1.2rem; padding: 5px 10px; text-align: center; display: inline-block; }
#eyelash #option .option_box li p span{font-size: 0.9rem; display: inline-block;}
#eyelash #option .option_box li .right p{font-size: 1.4rem; text-align: center; display: inline-block; padding: 5px;}



/*=======脱毛=======*/
#hair-removal .menu .menu_cnt .menu_course li{margin: 0 auto 20px; border-bottom: 1px solid #000; padding-bottom: 10px; width: 600px; }
#hair-removal .menu .menu_cnt .menu_course li .left{float: left; width: 300px; background: #fff; text-align: center;}
#hair-removal .menu .menu_cnt .menu_course li .left p{line-height: 1.6rem; padding: 10px 0 5px; font-size: 1.2rem;}
#hair-removal .menu .menu_cnt .menu_course li .right{float: right; width: 300px; padding: 0 0 0 20px;}
#hair-removal .menu .menu_cnt .menu_course li .right p{text-align: left; line-height: 2rem; font-size: 1.3rem; padding: 0;}

/*=======まつげ=======*/
/*キャンペーン*/
#eye_campaign {background:url(../img/camBG.png) no-repeat top center; width: 100%; height: 400px; padding: 50px 0 0; margin: 0 auto 100px;}
#eye_campaign img{margin: 0 auto; display: block; width: 830px;} 
/*メニュー*/
.menu .menu_cnt .eyelash_menu li{margin: 0 auto 20px; border-bottom: 1px solid #000; padding-bottom: 10px; width: 550px; }
.menu .menu_cnt .eyelash_menu li .left{float: left; width: 350px; background: #fff; text-align: center;}
/*オプションメニュー*/
#eyelash #option .wrap{width: 1000px; margin: 0 auto; }
#eyelash #option .option_box {width: 1000px; background: none; padding: 100px 0 ; position: relative; margin: 0 auto;} 
#eyelash #option .option_box li{margin: 0 0 20px; border-bottom: 1px solid #000; padding-bottom: 10px; width: 450px; }
#eyelash #option .option_box li .left{float: left; width: 300px; background: #fff; text-align: center;}
#eyelash #option .option_box li .right{float: right; width: 130px;}
#eyelash #option .option_box li .left p{font-size: 1.2rem; padding: 5px 10px; text-align: center; display: inline-block; }
#eyelash #option .option_box li p span{font-size: 0.9rem; display: inline-block;}
#eyelash #option .option_box li .right p{font-size: 1.4rem; text-align: center; display: inline-block; padding: 5px;}

/*=======小顔=======*/
#facial-care .menu h2{text-align: center; color: #00647e; font-size: 1.8rem; font-style: italic; position: static; padding: 20px 0 5px;}
#facial-care .menu .read{text-align: center; font-size: 1rem; margin: 0 0 20px;}
#facial-care .menu_box{width: 800px; margin: 0 auto 40px; background: #f4f4f4; padding: 10px 50px 20px; position: relative;} 
#facial-care .menu .procell{background: #e7dcbe !important; } 
#facial-care .menu .zeikomi{text-align: right; width: 800px; margin: 0 auto;}


/*=======初めての方へ=======*/
#flow{width: 800px; margin: 0 auto 100px;}
#flow .menu_cnt{width: 800px; margin: 0 auto;}
#flow .menuttl{margin: 0 auto 100px;}
#flow .menu_cnt h2{color: #00647e; font-size: 2.2rem; text-align: center; margin: 0 auto 10px; line-height: 2.7rem;}
#flow .menu_cnt .sub{color: #d6e4e8; font-size: 1.8rem; font-style: italic; text-align: center; margin-bottom: -20px;}
#flow .menu_cnt .menu_read{text-align: center;  margin: 0 auto 30px;}
#flow .flow_cnt {margin-bottom: 40px;}
#flow .flow_cnt h3{text-align: center; border:1px solid #000; border-radius: 50px; padding: 10px 0; width: 100%; font-size: 1.2rem; position: relative; margin-bottom: 10px;}
#flow .flow_cnt h3 span{text-align: left; font-size: 0.9rem; position: absolute; left: 35px; top: 14px;}
#flow .flow_cnt .box{background:#f4f4f4; padding: 30px 40px;}
#flow .flow_cnt .box li{position: relative; margin: 5px 0; padding-left: 20px;}
#flow .flow_cnt .box li:before{position: absolute; left: 0; top: 5px; height: 15px; width: 15px; background: url(../img/under/check.png) no-repeat left top; content: "";}
#flow .flow_cnt a{background: #39ae36; display: block; padding: 10px; text-align: center; width: 55%; margin: 10px auto; color: #fff; border-radius: 50px;}
#flow .flow_next{display: block; text-align: center; margin: 0 auto 50px;}
#pointcard{background: #edf3f4; width: 100%; padding: 80px 0;}
#pointcard .wrap{width: 1000px; margin: 0 auto;}
#pointcard h2{text-align: center; display: block; margin: 0 auto 50px;}
#pointcard .card_box{width: 600px; margin: 0 auto 50px;}
#pointcard .card_box .left {float: left; width: 200px;}
#pointcard .card_box .right {float: right; width: 365px;}
#pointcard .card_box .right p{ margin-bottom: 10px;}
#pointcard .card_box .right .strong{font-size: 1.1rem; font-weight: bold; line-height: 1.8rem; margin: 0;}
#pointcard table{width: 600px; margin: 0 auto 10px;}
#pointcard table th{text-align: center; color: #fff; padding: 5px 0; background: #00718c; width: 33.3%;}
#pointcard table td{text-align: center; width: 33.3%; border-bottom: 1px solid #000; padding: 10px 0;}
#pointcard table .bold{font-size: 1.2rem; color: #00718c;}
#pointcard .zeinuki{text-align: right; width: 600px; margin: 0 auto 80px; font-family: 'Noto Sans JP', sans-serif; font-size: 0.8rem;}
#pointcard h3{text-align: center; display: block; margin: 0 auto 20px;}
#pointcard .pointopresent{text-align: center; display: block; margin: 0 auto;}






#cnt6{width: 100%; background:#f9f6f4; padding: 100px 0;}
#cnt6 .wrap{width: 1000px; margin:0 auto; }
#cnt6 h2{text-align: center; display: block; margin: 0 auto 50px;}
#cnt6 .faq__Q { cursor: pointer; padding: 13px 30px 17px; width: 100%; position: relative; /*filter: drop-shadow(0 0 5px rgba(100,100,100,0.2));*/ 
background: #fff; display: block; margin-bottom: 30px; border-radius: 10px;}
#cnt6 .faq__Q:hover { text-decoration: underline;}
#cnt6 .faq__Q:before{content: ""; width: 52px; height: 39px; background: url(../img/faq_q.png) no-repeat left; position: absolute;}
#cnt6 .faq__Q:after {width: 0; height: 0; position: absolute; top: 46%; right: 3%; border: 8px solid transparent; border-top-color: #b5a884; content: '';}
#cnt6 .faq__Q p{padding:3px 0 0 50px; font-size: 1.1rem; }
#cnt6 .faq__A { display: none; padding:0 0 10px 11px; width: 100%; font-size: 1rem; line-height: 2rem; margin: 0 auto; color: #000; position: relative;}
#cnt6 .faq__A:before{content: ""; width: 52px; height: 39px; background: url(../img/faq_a.png) no-repeat left; position: absolute; left: 30px;}
#cnt6 .faq__A p{padding:3px 0 0 70px; margin-bottom: 30px; font-size: 1.1rem; }


/*フォーム*/
.formWrap__bg{width: 100%; padding: 100px 0; background: #f2f9ed;}
.formWrap__bg h2{text-align: center; display: block; margin: 0 auto 50px;}
#formWrap{width: 1000px; background: #fff; margin: 0 auto; padding: 50px; filter: drop-shadow(0 0 5px rgba(100,100,100,0.2)); border-radius: 10px;}
.formTable{width: 800px; margin: 0 auto;}
.formTable th {width: 28%; font-size: 0.9rem; font-weight: bold; padding: 10px; border: #fff 3px solid;  }
.formTable td{line-height: 2rem;}
.formTable th span{color: #fff; font-weight: bold; background: #ff6464; display: inline-block; padding: 1px 5px; float: right;}
/*.formTable .th2 {background: #eee;}*/
.formTable td{width: 72%; border: 10px solid #fff;}
.formTable .formtextarea{width: 80%;}
.formTable input ,.formTable select{padding: 10px; border: 1px solid #ccc; font-size: 1rem; margin-right: 5px;}
.formTable .serect_margin input{margin-bottom: 7px;}
.formTable label{ margin-right: 30px; }
.formTable textarea{width: 100%; padding: 10px; border: 1px solid #ccc; font-size: 1rem; }
.formWrap__botton{text-align: center; margin:20px auto;}
.formWrap__botton__submit{ background: #E40000; width: 350px; height:80px; border: none; border-radius: 10px; color: #fff; font-size: 1.5rem; font-weight: bold;}
.formWrap__botton__submit:hover {opacity: 0.7;filter: alpha(opacity=70);-ms-filter: "alpha(opacity=70)";}
.formWrap__policy{width: 800px; height: 200px; margin: 30px auto 30px ; overflow: auto;  border: 1px solid #ccc; padding: 20px;}
.formWrap__policy p{font-size: 0.8rem; margin-bottom: 20px; line-height: 1.5rem;}
.formTable__sutxt{font-size: 0.7rem; line-height: 1.5rem;}
.formTable__short span{padding: 12px 0 0 20px; display: inline-block;}
.formTable__short input{width: 70% !important; float: right; margin-bottom: 10px; display: inline-block;}
.formTable__short__red{font-size: 0.8rem; color: #f00;}
#formWrap .form__date input{width: 50%;}
.form_select_tx{font-size: 0.8rem; color: #f00;}
.form_select_tx span{color: #f00; font-weight: bold;}
.formWrap__policy__agree{text-align: center; margin-top: 20px auto;}
.formTable td .end1{color: #adadad;}
.formTable td .end2{background: #adadad; padding: 3px 5px; color: #fff;}


/*フォーム機能*/
#formWrap2{width: 800px; margin: 50px auto;}
.error_messe_h3{text-align: center; background: #fcc; padding: 20px; width: 100%; font-weight: bold; font-size: 1.1rem; margin-bottom: 20px;}
.error_messe{color: #f00; font-weight: bold; background: #fee; padding: 10px; margin-bottom: 10px;}
.form__error__back{color: #fff; padding: 20px ; border:none; font-size: 1.1rem; letter-spacing: 2px; background: #888; border-radius: 10px; width: 30%; }
.form__error__next{color: #fff; padding: 20px ; border:none; font-size: 1.1rem; letter-spacing: 2px;
 background: #E40000; border-radius: 10px; width: 30%; margin-bottom: 10px; font-weight: bold;}
.form__fix__h3{text-align: center; padding: 20px; color: #fff; background: #b5a884; font-size: 1.3rem; letter-spacing: 2px; margin-bottom: 20px; font-weight: bold;}
.form__fix__h3__tx{text-align: center; margin-bottom: 20px;}

/*サンキューページ*/
.form__submit{width: 100%; background: #fff; padding: 30px 0;}
.form__submit h2{text-align: center; color: #b5a884; font-weight: bold; font-size: 1.2rem;}
.form__submit__area{margin:0;}
.form__submit__sub{background-color: #fff200; padding: 5px; border-radius: 10px; text-align: center; margin: -21px auto 0; font-size: 1.2rem; letter-spacing: 1px; width: 350px; font-weight: bold;}
.form__submit__txtarea{width: 700px; margin: 0 auto 50px;}
.form__submit__txtarea p{margin: 20px 0;}
.form__submit__btn{margin: 0 auto 50px; display: block; text-align: center;}

/*コピーライト*/
#cnt_copy p{background:#b5a884; text-align: center; padding: 10px; color: #000;}
#cnt_copy2 p{background:#b5a884; text-align: center; padding: 10px; color: #000;}





@media screen and (max-width:640px) {
	#wrap{width: 100%;}
	p{font-size: 0.9rem; line-height: 1.6rem;}
	.sp{display:inline;}
	.pc{display:none !important;}

	/*===============================================
		共通部分
	===============================================*/

	/*ヘッダー*/
	header{width: 100%; margin:0 auto; background: #fff; padding: 5px 0;}
	header .wrap{width: 100%; margin:0 auto;}
	header .head__logo{float: left; padding: 10px; width: 80%;}
	header .head__logo li{float: left;}
	header .head__logo li:nth-child(1){ width: 40%;}
	header .head__logo li:nth-child(2){ width: 50%; margin-left: 20px;}
	header .head__logo img{width: 100%;}
	header .head__navi{float: right; width: 100%; display: none;}
	header .head__navi li{ float: left; padding: 0; margin-left: 10px; text-align: center;}
	header .head__navi li img{ width: 100%; height: 100%;}
	header .head__navi li a{color: #000; font-weight: normal; text-decoration: none;}
	header .head__navi__top{display: block; float: right; margin-bottom: 5px;}
	header .head__navi__down{display: block; float: right;}
	header .head__navi__down li{ margin-left: 35px;}
	header .head__navi__down span{font-family:'Helvetica Neue','Arial','Hiragino Kaku Gothic ProN','Meiryo',sans-serif; font-size: 0.6rem;
	 display: block; text-align: center; line-height: 0.6rem; color: #6d6d6d;}
	header .sp_navi li{ margin: 0 auto; font-size: 0.8rem;}
	header .sp_navi li a{ font-size: 0.8rem;}
	header .sp_btn{ border-radius: 50px; padding: 0 !important;}
	header .sp_btn a{padding: 1px !important;}
	header .sp_btn img{ width: 100%;}

	/*フッター*/
	footer{width: 100%; background:#b5a884; padding: 60px 3% 30px;}
	footer .wrap{width: 100%; margin: 0 auto;}
	footer .left{float: none; width: 100%; margin-bottom: 50px;}
	footer .logo{width: 30%; margin: 0 auto 20px;}
	footer .logo img{ width: 100%;}
	footer .sns{border:1px solid #000; padding: 15px 20px 10px; width: 70%; margin: 0 auto; }
	footer .sns ul{width: 60%; margin: 0 auto;}
	footer .sns li{float: left; width: 47%;}
	footer .sns li:nth-child(2){float: right;}
	footer .sns li img{width: 100%;}
	footer .sns p{font-size: 0.8rem; text-align: center; margin-top: 5px;}
	footer .right{float: right; width: 100%; padding: 0 5%;}
	footer .right li{font-size: 0.8rem; margin-bottom: 20px;}
	footer .right a{color: #000;}
	footer .right .ft_navi_left{float: left; width: 50%;}
	footer .right .ft_navi_right{float: right; width: 50%;}

	/*ドロップダウンメニュー*/
	.gnavi__lists {display: flex;}
	.gnavi__list { position: relative; transition: all .3s;}
	.gnavi__list:hover { background-color: #0071BB;}
	.gnavi__list:not(:first-child)::before { content: ""; width: 1px; height: 100%; background-color: #fff; position: absolute; top: 0; left: 0; transition: all .3s;}
	.gnavi__list:hover::before { background-color: #0071BB;}
	.gnavi__list a { display: flex; justify-content: center; align-items: center; width: 100%; height: 100%; text-decoration: none; color: #1b4059; font-size: 15px;
	 letter-spacing: 0.05em; font-weight: 600; transition: all .3s;}
	.gnavi__list:hover a { color: #fff;}
	.dropdown__lists { display: none;/*デフォルトでは非表示の状態にしておく*/ width: 100%; position: absolute; top: 60px; left: 0;}
	.gnavi__list:hover .dropdown__lists { display: block;/*Gナビメニューにホバーしたら表示*/}
	.dropdown__list { background-color: #004d80; height: auto; transition: all .3s; position: relative;}
	.dropdown__list:not(:first-child)::before{ content: ""; width: 100%; height: 1px; background-color: #000; position: absolute; top: 0; left: 0;}
	.dropdown__list:hover { background-color: #000;}
	.dropdown__list a { display: flex; justify-content: center; align-items: center; color: #fff; text-decoration: none; position: relative;}
	.dropdown__list a::before { content: ''; display: none; width: 6px; height: 6px; border-top: 2px solid #fff; border-left: 2px solid #fff;
	 transform: rotate(135deg); position: absolute; right: 15px; top: calc(50% - 5px);}
	/* //ドロップダウンメニュー*/

	/*パンクズリスト*/
	#pankuzu{width: 100%; margin: 0 auto 50px; padding: 0 3%;}
	#pankuzu ul{ float: right;}
	#pankuzu li{ float: left; font-size: 0.8rem;}
	#pankuzu a{color: #000;}


	/*===============================================
	*メインビジュアル*
	===============================================*/

	/*メインビジュアル*/
	#main{background: height: 79vw; margin: 20px auto ;}
	#main .mainTx{width: 100%; margin: 0 auto; height: 79vw; padding: 47.5vw 0 0 20px;}
	#main h1{ font-size: 1.5rem; letter-spacing: 2px;}

	/*メニューごとの画像*/
	#top #main{background: url(../img/top/mainSP.png) bottom center no-repeat; height: 113vw; background-size: contain;}
	#top #main .mainTx{width: 100%; margin: 0 auto; height: 500px; padding: 20px 0 0 0; display: none;}
	#usuge #main{background: url(../img/usuge/usuge_mainSP.png) bottom center no-repeat; background-size: contain;}
	#hair-removal #main{background: url(../img/hair-removal/hair-removal_mainSP.png) bottom center no-repeat; background-size: contain;}
	#eyelash #main{background: url(../img/eyelash/eyelash_mainSP.png) bottom center no-repeat; background-size: contain;}
	#facial-care #main{background: url(../img/facial-care/facial-care_mainSP.png) bottom center no-repeat; background-size: contain;}
	#under #main{background: url(../img/under/under_mainSP.png) bottom center no-repeat; background-size: contain; height: 47vw;}
	#under #main .mainTx{width: 100%; margin: 0 auto; height: auto; padding: 16vw 0 0 60px;}
	#under #main h1{ font-size: 1.4rem; letter-spacing: 1px;}
	#under #main p{color: #cecece; font-size: 1rem; letter-spacing: 1px;}


	/*===============================================
	*TOP*
	===============================================*/

	/*コンセプト*/
	#concept{width: 100%; background: url(../img/top/concept_top.png) no-repeat top 0 left 5%, url(../img/top/concept_down.png) no-repeat bottom 0 right 5%; padding: 100px 0;
	 margin: 50px 0 100px; padding: 0 5%;}
	#concept .wrap{width: 100%; margin: 0 auto;}
	#concept h2{text-align: center; margin-bottom: 20px;}
	#concept h2 img{width: 40%; margin: 0 auto;}
	#concept .left{float: none; width: 100%; margin-bottom: 30px}
	#concept .left p{font-size: 0.9rem; line-height: 2rem;}
	#concept .right{float: none; width: 80%; margin: 0 auto;}
	#concept .right img{ width: 100%;}
	#concept .staff{ text-align: right;}

	/*トップメニュー*/
	#top_menu {width: 100%; margin: 0 auto 50px;} 
	#top_menu .menuttl{margin: 0 auto 100px;}
	#top_menu .menuttl img{width: 100%;}
	#top_menu ul{display: flex; align-items: stretch; flex-wrap: wrap;}
	#top_menu li{float: none; width: 90%; margin: 0 auto 50px;} 
	#top_menu li:nth-child(2n){margin: 0 auto 50px;}
	#top_menu li:nth-child(1) .menu_detail_cnt,#top_menu li:nth-child(2) .menu_detail_cnt{min-height: auto;}
	#top_menu li:nth-child(3) .menu_detail_cnt,#top_menu li:nth-child(4) .menu_detail_cnt{min-height: auto;}
	#top_menu .menu_detail_cnt{background:#fff; padding: 30px; width: 90%; filter: drop-shadow(0 0 5px rgba(100,100,100,0.2)); margin: -50px auto 0; position: relative;}
	#top_menu .top_menu_img{width:100%; height: auto;}
	#top_menu .menu_detail_cnt h3{text-align: center; color: #00647e; font-size: 1.2rem; margin-bottom: 10px; letter-spacing: 1px;}
	#top_menu .menu_detail_cnt p{margin-bottom: 10px;}
	#top_menu .menu_detail_cnt a{text-align: center; display: block; margin: 0 auto; width: 250px;}
	#top_menu .menu_detail_cnt img{text-align: center; display: block; margin: 0 auto; width: 250px;}
	#top_menu .menu_detail_cnt .btn{position: static; bottom: 10px; width: 70%; margin: 0 auto;
		left: 0; transform: translate(0, 0); -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0);}
	#top_menu .menu_detail_cnt .btn img{width: 100%;}

	/*フィーチャー*/
	#feature{width: 100%; padding: 0; position: relative; overflow: hidden; margin: 0 auto 30px;}
	#feature .wrap_out{width: 100%; margin: 0 auto; background: #edf3f4; padding: 40px 5% 20px;}
	#feature .wrap_in{width: 100%; margin: 0 auto;}
	#feature .feature_cnt{width: 100%; }
	#feature h2{text-align: center; color: #00647e; font-size: 1.5rem; font-style: italic; }
	#feature .feature_sub{text-align: center; margin-bottom: 10px;}
	#feature .feature_img{ width: 100%; position: static; left: 0; top: 0; overflow: hidden; background: #edf3f4; padding: 0 0 40px; }
	#feature .feature_img img{ width: 80%; margin-left: 20%;  }

	/*代表メッセージ*/
	#message{width: 100%; margin: 0 auto 100px; padding: 0 5%;}
	#message .left{float: none; width: 100%;}
	#message .left img{width: 100%;}
	#message .right {float: none; width: 100%; margin: 0 auto; padding-top: 30px;}
	#message .right img{width: 80%; margin: 30px auto; display: block; text-align: center;}
	#message h2{text-align: center; color: #00647e; font-size: 1.5rem; font-style: italic; }
	#message .message_sub{text-align: center; margin-bottom: 10px;}

	/*お客様の声*/
	#voice{width: 100%; margin: 0 auto 100px; padding: 0 5%;}
	#voice h2{text-align: center; color: #00647e; font-size: 1.5rem; font-style: italic; }
	#voice .voice_sub{text-align: center; margin-bottom: 20px;}
	#voice .border_top{height: 30px; border-left: 1px solid #000; border-top: 1px solid #000; border-right: 1px solid #000; margin-bottom: 0;}
	#voice .border_bottom{height: 30px; border-left: 1px solid #000; border-bottom: 1px solid #000; border-right: 1px solid #000;}
	#voice ul{display: flex; align-items: stretch; flex-wrap: wrap;}
	#voice li{float: none; width: 100%; filter: drop-shadow(0 0 5px rgba(100,100,100,0.2)); margin: 0 0 30px; background: #fff; padding: 30px;}
	#voice li p{ font-size: 0.8rem;}
	#voice li:nth-child(3n){margin: 0 0 30px;}
	#voice .name{text-align: right; position: relative; font-size: 0.8rem;}
	#voice .name:before{position: absolute; content: ""; left: 0; top: 15px; width: 65%; border-top: 1px solid #000;}

	/*店舗情報*/
	#shopinfo{ padding: 0 5%; width: 100%;}
	#shopinfo .shopImg{float: none; width: 100%; height: auto; margin-bottom: 10px;}
	#shopinfo .shopImg img{width: 100%;}
	#shopinfo .shopMap{float: none; width: 100%;}
	#shopinfo .shopMap iframe{width: 100%; height: 60vw;}
	#shopinfo .about{ width: 100%; margin: 30px auto;}
	#shopinfo .about table{width: 100%; margin-bottom: 30px; font-size: 0.9rem;}
	#shopinfo .about td,#shopinfo .about th{ border-bottom: 1px solid #000; padding: 15px 5px;}
	#shopinfo .about th{width: 25%;}
	#shopinfo .about td{width: 70%;}
	#shopinfo .about p{text-align: center;}
	#shopinfo .about .gate{padding: 20px; background: #f4f4f4; margin: 20px auto;}

	/*ビフォーアフター/*/
	#before-after{margin: 0 auto; width: 100%; padding: 0 5%;}
	#before-after .menu{width: 100%;}
	#before-after .menu li{float: left; width: 50%; padding: 0 5px; font-size: 0.9rem; margin-bottom: 15px;}
	#before-after .menu li a{border: 1px solid #00647e; border-radius: 50px; padding: 5px 0; width: 100%; display: block; text-align: center; color: #00647e;}
	#before-after .menu li a:hover{background: #00647e; color: #fff; transition: .2s}
	#before-after .bfImg {margin-bottom: 90px;}
	#before-after .bfImg h2{text-align: center; font-size: 1.5rem; color: #00647e; margin-bottom: 10px;}
	#before-after .bfImg li{width: 100%; float: none; margin-bottom: 20px; padding: 0;}
	#before-after .bfImg li img{width: 100%;}
	#before-after .bfImg p{border-bottom: 1px solid #00647e; width: 100%; margin-bottom: 20px;}
	#before-after .bfImg a{border: 1px solid #00647e; padding: 10px; width: 80%; font-size: 0.9rem;}
	#before-after .bfImg a:hover{background: #00647e; color: #fff; transition: .2s}
	#before-after .bfImg a:after{position: absolute; content: ">"; right: 10px; top: 10px;}

	/*エブリスキン*/
	#every-skin{margin: 0 auto; width: 100%; padding: 0 5%;}
	#every-skin .efArea{margin-bottom: 40px;}
	#every-skin li {margin-bottom: 100px;}
	#every-skin li .imgL{float: none;}
	#every-skin li .imgR{float: none;}
	#every-skin li .txR{float: none;}
	#every-skin li .txL{float: none;}
	#every-skin .img{ width: 60%; margin: 0 auto;}
	#every-skin .img img{ width: 100%;}
	#every-skin .tx{ width: 100%;}
	#every-skin .tx .ttl{margin: 10px 0 30px;}
	#every-skin .tx .ttl h2{ font-size: 1rem; color: #00647e; line-height: 2rem; text-align: center;}
	#every-skin .tx .ttl p{ font-size: 1rem; line-height: 2rem; text-align: center;}
	#every-skin .tx .read h3{width: 50%; text-align: center; padding: 5px 0; margin: 0 auto 10px; display: block;}
	#every-skin .tx .read p{font-size: 0.9rem; margin-bottom: 30px; line-height: 1.5rem;}
	#every-skin .tx .read .about{background: #f4f4f4; padding: 20px 30px; margin-bottom: 30px;}
	#every-skin .tx .read .about h4{text-align: center; color: #00647e; margin-bottom: 5px;}
	#every-skin .tx .read .about p{margin: 0; font-size: 0.9rem;}
	#every-skin li .buy a{border: 1px solid #00647e; padding: 10px; width: 300px; margin: 0 auto; display: block; text-align: center; color: #00647e; position: relative;}
	#every-skin li .buy a:hover{background: #00647e; color: #fff; transition: .2s}
	#every-skin li .buy a:after{position: absolute; content: ">"; right: 10px; top: 10px;}

/* faq */
#faq{margin: 0 auto; width: 100%; padding: 0 5%;}
#faq .cnt{margin-bottom: 60px;}
#faq h2{text-align: center; font-size: 1.3rem; letter-spacing: 1px; margin-bottom: 20px; color: #00647e;}
#faq .faq__Q { cursor: pointer; padding: 10px; width: 100%; position: relative; border:1px solid #00647e; background: #fff; display: block; margin-bottom: 20px;}
#faq .faq__Q:hover { text-decoration: underline;}
#faq .faq__Q:before{content: ""; width: 13px; height: 24px; top: 27%; left: 10px; background-size: contain; }
#faq .faq__Q:after {width: 0; height: 0; position: absolute; top: 46%; right: 3%; border: 8px solid transparent; border-top-color: #00647e; content: '';}
#faq .faq__Q p{padding:3px 0 0 20px; font-size: 0.9rem; }
#faq .faq__A { display: none; padding:0 0 10px; width: 100%; font-size: 1rem; line-height: 2rem; margin: 0 auto; color: #000; position: relative;}
#faq .faq__A:before{content: ""; width: 13px; height: 21px; position: absolute; left: 10px; background-size: contain;}
#faq .faq__A p{padding:0 0 10px 30px; margin-bottom: 30px; font-size: 0.9rem; }


	/*===============================================
	*各メニューページ*
	===============================================*/

	/*=======薄毛=======*/

	/*リード*/
	#read {width: 100%; margin: 0 auto; padding: 0 3%;}
	#read .left{ float:none; width: 100%; padding: 0 0 30px;}
	#read .right{ float:none; width: 100%;}
	#read .right img{ width: 100%;}

	/*キャンペーン*/
	#campaign {background:none; width: 100%; height: auto; padding: 30px 0 0; margin: 0 auto 50px;}
	#campaign img{margin: 0 auto; display: block; width: 100%;}

	/*メニュー*/
	.menu{width: 100%; margin: 0 auto 50px;}
	.menu .menu_cnt{width: 100%; margin: 0 auto;}
	.menu .menuttl{margin: 0 auto 50px;}
	.menu .menuttl img{width: 100%;}
	.menu .menu_cnt h2{color: #00647e; font-size: 1.5rem; text-align: center; margin: 0 auto 10px;}
	.menu .menu_cnt .sub{color: #d6e4e8; font-size: 1.2rem; font-style: italic; text-align: center; margin-bottom: -20px;}
	.menu .menu_cnt .menu_read{text-align: center;  margin: 0 auto 30px;}
	.menu .menu_cnt .menu_btn{text-align: center; display: block; margin: 0 auto 50px; width: 60%;}  
	.menu .menu_cnt .menu_box{width: 100%; margin: 0 auto; background: #f4f4f4; padding: 10px 30px 50px; position: relative;} 
	.menu .menu_cnt .menu_box h3{text-align: center; color: #00647e; font-size: 1.8rem; font-style: italic; position: absolute; top: 0;
		left: 50%; transform: translate(-50%, -50%); -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%);}
	.menu .menu_cnt .menu_sub{text-align: center; margin: 10px auto 50px;}
	.menu .menu_cnt .menu_course li{margin: 0 auto 20px; border-bottom: 1px solid #000; padding-bottom: 10px; width: 100%; }
	.menu .menu_cnt .menu_course li .left{float: none; width: 100%; background: #fff; text-align: center; display: block; margin-bottom: 10px;}
	.menu .menu_cnt .menu_course li .right{float: none; width: 100%; display: block; text-align: center;}
	.menu .menu_cnt .menu_course li .left p{font-size: 1.1rem; padding: 5px 10px; text-align: center; display: inline-block; }
	.menu .menu_cnt .menu_course li p span{font-size: 0.9rem; display: inline-block;}
	.menu .menu_cnt .menu_course li .right p{font-size: 1.1rem; text-align: center; display: inline-block; padding: 5px;}
	.menu .menu_cnt .menu_course li .right .old_price{font-size: 0.9rem; margin: 0; padding: 0; line-height: .5rem;}
	.menu .menu_cnt .menu_course li .right .new_pirce{font-size: 1.3rem; color: #f00; line-height: 1rem;}
	.menu .menu_cnt .menu_course li .right .new_pirce span{color: #f00;}
	.menu .menu_cnt .tax{text-align: right; font-size: 0.8rem; margin: 10px auto 0; width: 100%;}
	.menu .menu_cnt .eyelash_tx{text-align: center; font-size: 1.2rem; margin: 20px auto 0; line-height: 2rem;}
	.menu .glowin{width: 100%; margin: 0 auto 60px; padding: 0 3%;}
	.menu .glowin .left{float: none; padding: 0; width: 100%; margin: 0 auto 30px;}
	.menu .glowin .right{float: none; width: 60%; margin: 0 auto;}
	.menu .glowin .right img{ width: 100%;}
	.menu .glowin .flow{font-size: 1rem; line-height: 1.5rem; margin-bottom: 10px;}
	.menu .glowin .flow span{ background:#000; padding: 5px 10px; color: #fff; display: inline-block; font-size: 0.9rem; letter-spacing: 1px; line-height: 1rem; margin-right: 10px;}
	.menu .glowin .flow_tx{ line-height: 1.5rem;}
	.menu .glowin li{margin-bottom: 20px;}

	/*ビフォーアフター*/
	#performance{width: 100%; margin: 0 auto 50px; padding: 0 3%;}
	#performance .left{float: none; width: 100%; padding: 20px 0;}
	#performance h2{text-align: center; color: #00647e; font-size: 1.5rem; font-style: italic; }
	#performance .performance_sub{text-align: center; margin-bottom: 30px;}
	#performance .left .insta_box{border:1px solid #000; padding: 20px 10px 10px; width: 70%; margin: 0 auto;}
	#performance .left .insta_box img{display: block; text-align: center; margin: 0 auto; width: 45px;}
	#performance .left .insta_box p{text-align: center; font-size: 0.8rem;}
	#performance .right{float: none; width: 100%; display: none;}
	#performance .right img{width: 100%; display: none;}
	#performance .sp_img img{width: 100%; margin: 0 auto 20px;}

	#performance .ll_img{width: 100%; margin: 0 auto 50px; width: 100%;}
	#performance .ll_img img{width: 100%;}
	#performance .ll_center {display: block; text-align: center; margin: 0 auto 40px; width: 100%;}
	#performance .ll_center .insta_box{border:1px solid #000; padding: 20px 10px 10px; width: 70%; margin: 0 auto;}
	#performance .ll_center .insta_box img{display: block; text-align: center; margin: 0 auto; width: 45px;}
	#performance .ll_center .insta_box p{text-align: center; font-size: 0.8rem;}

	/*プロセルセラピーズとは*/
	#proCell{width: 100%; margin: 0 auto 50px;}
	#proCell h2{text-align: center; color: #00647e; font-size: 1.5rem; font-style: italic; }
	#proCell .proCell_sub{text-align: center; margin-bottom: 10px;}
	#proCell .wrap_out{ width: 100%; background: #edf3f4; padding: 30px 5%;}
	#proCell .wrap_in{ width: 100%; margin: 0 auto;}
	#proCell .left{float: none; width: 50%; padding-top: 10px; margin: 0 auto 10px;}
	#proCell .left img{width: 100%;}
	#proCell .right {float: none; width: 100%;}

	/*オプションメニュー*/
	#option{width: 100%; padding: 50px 0; background: #edf3f4; position: relative; overflow: hidden;}
	#option .wrap{width: 100%; margin: 0 auto 40px; padding: 0 5%;}
	#option h2{text-align: center; color: #00647e; font-size: 1.5rem; font-style: italic; }
	#option .option_sub{text-align: center; margin-bottom: 10px;}
	#option .option_box{ width: 100%;}
	#option .read{margin-bottom: 40px; text-align: center;}
	#option h3{color: #00647e; font-size: 1.4rem; text-align: center;}
	#option .h3_sub{text-align: center; margin: 10px auto;}
	#option .h3_sub span{font-size: 1.5rem;}
	#option .menu_btn{text-align: center; margin: 0 auto;}
	#option .menu_btn img{width: 60%; margin: 0 auto;}
	#option .menu_btn p{text-align: center; margin: 10px auto;}
	#option .option_img{ width: 100%; position: static; left: auto; top: auto; overflow: visible; padding-left: 10%;}
	#option .option_img img{ width: 100%;}


	/*=======脱毛=======*/
	#hair-removal .menu .menu_cnt .menu_course li{margin: 0 auto 20px; border-bottom: 1px solid #000; padding-bottom: 10px; width: 100%; }
	#hair-removal .menu .menu_cnt .menu_course li .left{float: none; width: 100%; background: #fff; text-align: center;}
	#hair-removal .menu .menu_cnt .menu_course li .left p{line-height: 1.6rem; padding: 10px 0 5px; font-size: 1.1rem;}
	#hair-removal .menu .menu_cnt .menu_course li .right{float: none; width: 100%; padding: 0 0 0 20px;}
	#hair-removal .menu .menu_cnt .menu_course li .right p{text-align: center; line-height: 2rem; font-size: 1.1rem; padding: 0;}

	/*=======まつげ=======*/

	#eye_campaign {background:none; width: 100%; height: auto; padding: 30px 0 0; margin: 0 auto 50px;}
	#eye_campaign img{margin: 0 auto; display: block; width: 100%;} 
	#eyelash #option .wrap{width: 100%; margin: 0 auto; padding: 0 30px; }
	#eyelash #option .option_box {width: 100%; background: none; padding: 30px 0 ; position: relative; margin: 0 auto;} 
	#eyelash #option .option_box li{margin: 0 0 20px; border-bottom: 1px solid #000; padding-bottom: 10px; width: 100%; }
	#eyelash #option .option_box li .left{float: none; width: 100%; background: #fff; text-align: center; display: block;}
	#eyelash #option .option_box li .right{float: none; width: 100%; text-align: center; display: block;}
	#eyelash #option .option_box li .left p{font-size: 1.1rem; padding: 5px 10px; text-align: center; display: inline-block; }
	#eyelash #option .option_box li p span{font-size: 0.9rem; display: inline-block;}
	#eyelash #option .option_box li .right p{font-size: 1.1rem; text-align: center; display: inline-block; padding: 5px;}


	/*=======小顔=======*/
	#facial-care #read {width: 100%; margin: 0 auto 100px; padding: 0 3%;}
	#facial-care .menu h2{text-align: center; color: #00647e; font-size: 1.2rem; font-style: italic; position: static; padding: 20px 0 5px;}
	#facial-care .menu .read{text-align: center; font-size: 0.9rem; margin: 0 0 20px;}
	#facial-care .menu_box{width: 90%; margin: 0 auto 40px; background: #f4f4f4; padding: 10px 30px 20px; position: relative;} 


	/*=======初めての方へ=======*/
#flow{width: 100%; margin: 0 auto 100px; padding: 0 3%;}
#flow .menu_cnt{width: 100%; margin: 0 auto;}
#flow .menuttl{margin: 0 auto 100px;}
#flow .menu_cnt h2{color: #00647e; font-size: 1.4rem; text-align: center; margin: 0 auto 10px; line-height: 2.7rem;}
#flow .menu_cnt .sub{color: #d6e4e8; font-size: 1.8rem; font-style: italic; text-align: center; margin-bottom: -20px;}
#flow .menu_cnt .menu_read{text-align: center;  margin: 0 auto 30px;}
#flow .flow_cnt {margin-bottom: 30px;}
#flow .flow_cnt h3{text-align: center; border:1px solid #000; border-radius: 50px; padding: 10px 0; width: 100%; font-size: 1.2rem; position: relative; margin-bottom: 10px;}
#flow .flow_cnt h3 span{text-align: left; font-size: 0.9rem; position: absolute; left: 35px; top: 14px;}
#flow .flow_cnt p{margin-bottom: 10px;}
#flow .flow_cnt .box{background:#f4f4f4; padding: 10px 20px; margin-bottom: 10px;}
#flow .flow_cnt .box li{position: relative; margin: 5px 0; padding-left: 20px; font-size: 0.9rem;}
#flow .flow_cnt .box li:before{position: absolute; left: 0; top: 5px; height: 15px; width: 15px; background: url(../img/under/check.png) no-repeat left top; content: "";}
#flow .flow_next{display: block; text-align: center; margin: 0 auto 30px;}
#pointcard{background: #edf3f4; width: 100%; padding: 50px 5%;}
#pointcard .wrap{width: 100%; margin: 0 auto;}
#pointcard h2{text-align: center; display: block; margin: 0 auto 30px; width: 80%;}
#pointcard h2 img{width: 100%;}
#pointcard .card_box{width: 100%; margin: 0 auto 30px;}
#pointcard .card_box .left {float: none; width: 100%; margin: 0 auto;}
#pointcard .card_box .left img{ width: 60%; margin: 0 auto 30px; display: block; text-align: center;}
#pointcard .card_box .right {float: none; width: 100%;}
#pointcard table{width: 100%; margin: 0 auto 10px;}
#pointcard table th{text-align: center; color: #fff; padding: 5px 0; background: #00718c; width: 33.3%; font-size: 0.8rem;}
#pointcard table td{text-align: center; width: 33.3%; border-bottom: 1px solid #000; padding: 10px 0; font-size: 0.8rem;}
#pointcard table .bold{font-size: 1rem; color: #00718c;}
#pointcard .zeinuki{text-align: right; width: 100%; margin: 0 auto 80px; font-family: 'Noto Sans JP', sans-serif; font-size: 0.6rem;}
#pointcard h3{text-align: center; display: block; margin: 0 auto 20px; width: 80%;}
#pointcard h3 img{width: 100%;}
#pointcard .pointopresent{text-align: center; display: block; margin: 0 auto;}
#pointcard .pointopresent img{width: 100%;}



	#cnt6{width: 100%; background:#f9f6f4; padding: 50px 3%;}
	#cnt6 .wrap{width: 100%; margin:0 auto; }
	#cnt6 h2{text-align: center; display: block; margin: 0 auto 30px;}
	#cnt6 h2 img{width: 100%;}
	#cnt6 .faq__Q { cursor: pointer; padding: 13px 15px 17px; width: 100%; position: relative; /*filter: drop-shadow(0 0 5px rgba(100,100,100,0.2)); */
	background: #fff; display: block; margin-bottom: 20px;}
	#cnt6 .faq__Q:hover { text-decoration: underline;}
	#cnt6 .faq__Q:before{content: ""; width: 52px; height: 39px; background: url(../img/faq_q.png) no-repeat left; position: absolute;}
	#cnt6 .faq__Q:after {width: 0; height: 0; position: absolute; top: 46%; right: 3%; border: 8px solid transparent; border-top-color: #000; content: '';}
	#cnt6 .faq__Q p{padding:3px 10px 0 33px; font-size: 0.8rem; line-height: 1.2rem;}
	#cnt6 .faq__A { display: none; padding:0 0 10px 11px; width: 100%; font-size: 1rem; line-height: 2rem; margin: 0 auto; color: #000; position: relative;}
	#cnt6 .faq__A:before{content: ""; width: 52px; height: 39px; background: url(../img/faq_a.png) no-repeat left; position: absolute; left: 20px;}
	#cnt6 .faq__A p{padding:3px 0 0 40px; margin-bottom: 30px; font-size: 0.8rem; }


	#cnt8{background: #fff; padding: 30px 0; }
	#cnt8 h2{font-size: 1.2rem; color: #b5a884; font-weight: bold; text-align: center; }
	#cnt8 h2:after{background: none;}
	#cnt8 table{width: 90%; margin: 0 auto;}
	#cnt8 table th{font-weight: bold; width: 25%;}
	#cnt8 table th,#cnt8 table td{border-bottom: 1px solid #000; margin-bottom: 20px; padding: 15px 0; font-size: 0.8rem;}

	/*コピーライト*/
	#cnt_copy p{font-size: 0.8rem; padding: 10px 0;}


/*cta_sp*/
	#cta_sp{display: block; position: fixed; width: 100%; bottom: 0; height: auto; background-image: linear-gradient(90deg, rgba(255, 228, 0, 1), rgba(255, 150, 0, 1));
	 padding: 2px 3%; z-index: 9999;}
	#cta_sp .cta_tel{float: left; width: 49.5%; z-index: 9999; display: block;}
	#cta_sp .cta_mail{ float: right; width: 49.5%; z-index: 9999; display: block;}
	#cta_sp .cta_tel img,#cta_sp .cta_mail img{width: 100%; z-index: 9999;}
	#cta_sp h1{text-align: center; color: #ff0; padding: 3px 0 0; }
	#cta_sp h1 span{color: #ff0;}
	#cta_sp h2{text-align: center; font-size: 0.8rem; padding: 0 0 2px; color: #fff;}
	#cta_sp a{
		position: relative;
		display: block;
		width: 100%;
		overflow: hidden;}
	#cta_sp a::after {
		content: '';
		position: absolute;
		top: -10%;
		left: -20%;
		width: 40px;
		height: 100%;
		transform: scale(2) rotate(20deg);
		background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .5) 100%, rgba(255, 255, 255, 0) 0%);
		/* アニメーション */
		animation-name: shiny;
		animation-duration: 3s;
		animation-timing-function: ease-in-out;
		animation-iteration-count: infinite;}
	@keyframes shiny {
		0% { left: -20%; }
		10% { left: 120%; }
		100% { left: 120%; }
	}

	/*フォーム*/
	.formWrap__bg{width: 100%; margin: 0 auto; padding: 30px 0;}
	.formWrap__bg h2{margin-bottom: 20px;}
	.formWrap__bg h2 img{width: 100%;}
	#formWrap{width: 90%; margin: 0 auto; padding: 30px 15px 20px;}
	.formTable{width: 100% !important; padding: 0;}
	.formTable th {width: 100% !important; border: 4px solid #fff; display: block; padding: 0px; font-size: 0.8rem;}
	.formTable td {font-size: 0.8rem;}
	.formTable .th2 {background: #eee;}
	.formTable td{width: 100% !important; border: 0; display: block;}
	.formTable input{ margin-bottom: 10px; font-size: 0.8rem;}
	.formTable textarea{width: 100%; padding: 10px; }
	.formWrap__botton{text-align: center; margin:20px auto;}
	.formWrap__botton__submit{ width: 70%; height:15vw; background-size: contain; font-size: 1.1rem; }
	.formWrap__botton{text-align: center; margin:20px auto;}
	.formWrap__policy{width: 100%; height: 150px; margin: 30px auto ; overflow: auto;  border: 1px solid #ccc; padding: 20px;}
	.formWrap__policy p{font-size: 0.8rem; margin-bottom: 20px; line-height: 1.5rem;}
	.formTable__sutxt{line-height: 1.0rem; margin-top: 3px;}
	#formWrap .form__date input{width: 80%;}
	.formTable .formtextarea{width:100%;}
	.formTable .formtextareaADD{width:60%;}
	.formTable label{line-height: 2rem; font-size: 0.95rem; padding-left: 3vw; font-size: 0.8rem;}
	.formWrap__policy__agree{text-align: center; margin-top: 20px auto;}
	input[type="submit"], input[type="button"] { -webkit-appearance: none; }
	.formTable .serect_margin input{margin-bottom: 7px; font-size: 0.8rem;}
	.formTable .serect_margin select{margin-bottom: 15px; font-size: 0.8rem;}

	/*フォーム機能*/
	#formWrap2{width: 90%; margin: 10px auto 50px;}
	.error_messe_h3{ font-size: 1.0rem; }
	.error_messe{ margin:0 auto 10px; width: 95%;}
	.form__error__back{font-size: 1.0rem; letter-spacing: 1px; border-radius: 10px; width: 50%; margin: 0 auto; display: block;}
	.form__error__next{font-size: 1.0rem; letter-spacing: 1px; border-radius: 10px; width: 50%; margin-bottom: 10px; font-weight: bold;}
	.form__fix__h3{padding: 10px; margin-top: 10px;}
	.form__fix__h3__tx{padding: 0 20px;}

	/*サンキューページ*/
	.form__submit{width: 100%; padding: 20px 0; margin: 0 0 20px;}
	.form__submit  h2{font-weight: bold; text-align: center; font-size: 1.0rem;}
	.form__submit__sub{margin: 20px auto 0; font-size: 1.0rem; letter-spacing: 1px; width: 80%; font-weight: bold;}
	.form__submit__txtarea{width: 90%; margin: 0 auto;}
	.form__submit__area{width: 100%; margin: 0 auto;}
	.form__submit__area a{width: 50%; margin: 0 auto;}
	.form__submit__area img{width: 80%; margin: 20px auto; display: block;}

	/*コピーライト*/
	#cnt_copy p{font-size: 0.8rem; padding: 10px 0;}
	#cnt_copy2 p{text-align: center; padding: 10px; color: #fff;}


	/*===============================================
	ハンバーガーアイコンをCSSだけで表現
	===============================================*/
	#nav-drawer {position: relative;}
	/*アイコンのスペース*/
	#nav-open {
	  display: inline-block;
	  width: 50px;
	  height: 42px;
	  vertical-align: middle;
	  position: fixed;
	  top: 0;
	  right: 0;
	  z-index: 9999;
	  background:#00647e;
	  padding: 10px;
	}
	#nav-open span, #nav-open span:before, #nav-open span:after {
	  position: absolute;
	  height: 4px;/*線の太さ*/
	  width: 30px;/*長さ*/
	  border-radius: 3px;
	  background: #fff;
	  display: block;
	  content: '';
	  cursor: pointer;
	}
	#nav-open span:before {
	  bottom: -8px;
	}
	#nav-open span:after {
	  bottom: -16px;
	}
	/*閉じる用の薄黒カバー*/
	#nav-close {
	  display: none;/*はじめは隠しておく*/
	  position: fixed;
	  z-index: 99;
	  top: 0;/*全体に広がるように*/
	  left: 0;
	  width: 100%;
	  height: 100%;
	  background: black;
	  opacity: 0;
	  transition: .3s ease-in-out;
	}
	/*中身*/
	#nav-content {
	  overflow: auto;
	  position: fixed;
	  top: 0;
	  right: 0;
	  z-index: 9999;/*最前面に*/
	  width: 60%;/*右側に隙間を作る（閉じるカバーを表示）*/
	  max-width: 330px;/*最大幅（調整してください）*/
	  height: 100%;
	  background: #fff;/*背景色*/
	  transition: .3s ease-in-out;/*滑らかに表示*/
	  -webkit-transform: translateX(105%);
	  transform: translateX(105%);/*左に隠しておく*/
	}
	/*チェックが入ったらもろもろ表示*/
	#nav-input:checked ~ #nav-close {
	  display: block;/*カバーを表示*/
	  opacity: .5;
	}
	#nav-input:checked ~ #nav-content {
	  -webkit-transform: translateX(0%);
	  transform: translateX(0%);/*中身を表示（右へスライド）*/
	  box-shadow: 6px 0 25px rgba(0,0,0,.15);
	  background: #000;
	  background: rgba(0,0,0,0.3);
	  z-index: 99999;
	}
	/*チェックボックス等は非表示に*/
	.nav-unshown {
	  display:none;
	}
	.MainImage_navi li{background: #fff; width: 80%; margin:13px auto; text-align: center; font-size: 0.9rem;}
	.MainImage_navi li a{ color: #000; width: 100%; display: block; padding: 5px; font-size: 0.9rem;}
	.MainImage_navi .MainImage_navi_link{background: none;}
	.MainImage_navi .MainImage_navi_link a{width: 100%; padding: 0;}
	.MainImage_navi .MainImage_navi_link img{width: 100%;}
	/*===============================================
	ハンバーガーアイコン終わり
	===============================================*/


}
