/*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:#f3f3f3;
    color: #313131;
    color:#535353;
    line-height: 1.6;
    font-size: 1.6rem;
    font-feature-settings: "palt";
    -webkit-text-size-adjust: 100%;
}
@media (max-width: 768px) {
    body {
        font-size:4vw;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/***色指定***/
.-w-txt.-w-background {
    color: #fff;
    color:#f3f3f3;
}
.-w-txt.-w-background-r {
    color: #000;
    color:#535353;
}
.-w-txt.-w-main {
    color: #001754;
    color:#601132;
}
.-w-txt.-w-main-r {
    color: #fff;
    color:#ffffff;
}
.-w-txt.-w-accent {
    color: #4f0506;
    color:#e49eb4;
}
.-w-txt.-w-accent-r {
    color: #fff;
    color:#ffffff;
}
/*背景色＋テキスト色*/
.-w-bg.-w-background {
    background: #fff;
    background:#f3f3f3;
    color: #000;
    color:#535353;
}
.-w-bg.-w-main {
    background: #001754;
    background:#601132;
    color: #fff;
    color:#ffffff;
}
.-w-bg.-w-accent {
    background: #4f0506;
    background:#e49eb4;
    color: #fff;
    color:#ffffff;
}
/*反転ver*/
.-w-bg.-w-background-r {
    background: #000;
    background:#535353;
    color: #fff;
    color:#f3f3f3;
}
.-w-bg.-w-main-r {
    background: #fff;
    background:#ffffff;
    color: #001754;
    color:#601132;
}
.-w-bg.-w-accent-r {
    background: #fff;
    background:#ffffff;
    color: #4f0506;
    color:#e49eb4;
}
/*hover時背景色指定*/
a.-w-bg.-w-background:hover {
    background: #000;
    background:#535353;
    color: #fff;
    color:#f3f3f3;
}
a.-w-bg.-w-main:hover {
    background: #fff;
    background:#ffffff;
    color: #001754;
    color:#f3f3f3;
}
a.-w-bg.-w-accent:hover {
    background: #fff;
    background:#ffffff;
    color: #4f0506;
    color:#e49eb4;
}
a.-w-bg.-w-background-r:hover {
    background: #fff;
    background:#f3f3f3;
    color: #000;
    color:#535353;
}
a.-w-bg.-w-main-r:hover {
    background: #001754;
    background:#601132;
    color: #fff;
    color:#ffffff;
}
a.-w-bg.-w-accent-r:hover {
    background: #4f0506;
    background:#e49eb4;
    color: #fff;
    color:#ffffff;
}

/***ボーダー色指定***/
.-w-bd.-w-background {
    border-color: #fff;
    border-color:#f3f3f3;
}
.-w-bd.-w-main {
    border-color: #001754;
    border-color:#601132;
}
.-w-bd.-w-accent {
    border-color: #4f0506;
    border-color:#e49eb4;
}
.-w-bd.-w-background-r {
    border-color: #000;
    border-color:#535353;
}
.-w-bd.-w-main-r {
    border-color: #fff;
    border-color:#ffffff;
}
.-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:#535353;
}
a.-w-bd.-w-bg.-w-main-r:hover,
a.-w-bd.-w-main:hover {
    border-color: #fff;
    border-color:#ffffff;
}
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:#f3f3f3;
}
a.-w-bd.-w-bg.-w-main:hover,
a.-w-bd.-w-main-r:hover {
    border-color: #001754;
    border-color:#601132;
}
a.-w-bd.-w-bg.-w-accent:hover,
a.-w-bd.-w-accent-r:hover {
    border-color: #4f0506;
    border-color:#e49eb4;
}


/*見出し設定*/
.-w-ttl_wrap {
    text-align: center;
}
.-w-section_inner h3.-w-general{
    text-align: center;
}
span.-w-general,
.-w-ttl-en.-w-font_en,
.-w-general .-w-font_en,
.-w-ttl-en.-w-font_en {
    font-size: 4.8rem;
    margin-bottom:1.0rem;
    display: block;
    line-height: 1.0;
    color:#313131;
    color:rgba(83,83,83,1);
}
h2.-w-general{
    font-size: 2.2rem;
    margin-bottom: 3.0rem;
    letter-spacing: -2px;
    color:#313131;
    color:rgba(83,83,83,1);
}
h3.-w-general{
    font-size: 2.0rem;
    margin-bottom: 3.0rem;
    letter-spacing:-2px;
    color:#EA7C5D;
    color:rgba(96,17,50,1);
}
h4.-w-general {
    font-size: 2.0rem;
    color:#313131;
    color:rgba(83,83,83,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: 9.0vw;
        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;
    }
    h4.-w-general {
        font-size: 3.1vw;
        letter-spacing: -2px;
        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(228,158,180,1);
    color:rgba(255,255,255,1);
    border-color:rgba(228,158,180,1);
}
.-w-more_btn a.current,
.-w-more_btn a:hover{
    opacity: 1;
    background-color:#ffffff;
    color:#ff6600;
    color:rgba(228,158,180,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(83,83,83,1);
    background-color:rgba(243,243,243,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(228,158,180,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:#e49eb4;
    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(83,83,83,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(228,158,180,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:#e49eb4;
    
    background-color:#e49eb4;
    color:#ffffff;
}
.owlet-form .form_button input[type="button"]:hover {
    background-color:#ffffff;
    color:#e49eb4;
    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:#e49eb4;
        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:#f3f3f3;
    }
    .owlet-form .-w-rules-agree{
        font-size:1.3rem;
    }
    .owlet-form .-w-form_wrap{
        background: none;
    }
    .owlet-form .-w-require{
        color:#e49eb4;
    }
}

/*
フォーム 規約
**************************************/
.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: 'Noto Serif JP', serif;
        font-weight: 300;
        font-style: normal;

        
        
        
    }
    /*ご予約はこちら、h2_日本語、見出しフォント*/
    .-w-font_title1{
        font-family: 'Noto Serif JP', serif;
        font-weight: 500;
    }
    /*メインキャッチ、MVフォント*/
    .-w-font_title2{
        font-family: 'Noto Serif JP', serif;
        font-weight: 500;
    }
    /*h2_英語、英数字フォント*/
    .-w-font_en{
        font-family: 'Trirong', serif;
        font-weight: 400;
    }
    .-w-font_en_after:after{
        font-family: 'Trirong', serif;
        font-weight: 400;
    }



















@media (max-width: 768px) {
    
    /*
     フォント
    ****************************************/
    
    
    
    
    
    
    
    
    
    
    
    
    
    
}

@media (max-width: 768px) {
    #google_translate_element select {
    font-size:28px;
    }
}



/*================================================================*/








    
    /*英語見出しアイコン*/
    span.-w-general,
    span.-w-en,
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en {
        position: relative;
        display: inline-block;
        padding: 0 80px 0;
    }
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en {
        position: relative;
        display: inline-block;
        padding: 0 80px 0;
        margin-right:0;
    }
    span.-w-general:before,
    span.-w-general:after,
    span.-w-en:before,
    span.-w-en:after,
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en:before,
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en:after,
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en:before,
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en:after{
        content: '';
        width: 61px;
        height: 5px;
        position: absolute;
        top: 60%;
        margin-top: -2.5px;
    }
    span.-w-general:before,
    span.-w-en:before,
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en:before,
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en:before{
        left: 0;
        background: url(/_img/ja/resource/9191/icon_lr/) no-repeat 0 0;
    }
    span.-w-general:after,
    span.-w-en:after,
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] span.-w-font_en:after,
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] span.-w-font_en:after{
        right: 0;
        background: url(/_img/ja/resource/9191/icon_lr/) no-repeat 0 0;
    }
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h2.-w-general {
        text-align: center;
    }
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h2.-w-general .-w-font_en {
        display: inline-block;
    }
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] h2.-w-general .-w-font_title2 {
        display: block;
        text-align: left;
    }
    [data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"] .-w-general{
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    [data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"] .-w-ttl-en.-w-font_en{
        position: relative;
        display: inline-block;
        padding: 0 80px 0;
    }
    [data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"] .-w-ttl-en.-w-font_en span:before,
    [data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"] .-w-ttl-en.-w-font_en span:after{
        content: '';
        width: 61px;
        height: 5px;
        position: absolute;
        top: 50%;
        margin-top: -2.5px;
    }
    [data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"] .-w-ttl-en.-w-font_en span:before{
        left: 0;
        background: url(/_img/ja/resource/9191/icon_lr/) no-repeat 0 0;
    }
    [data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"] .-w-ttl-en.-w-font_en span:after{
        right: 0;
        background: url(/_img/ja/resource/9191/icon_lr/) no-repeat 0 0;
    }
    @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: 9.0vw;
            text-align: center;
            margin-bottom:1.0rem;
        }
        h2.-w-general {
            margin-bottom: 1.5rem;
            font-size: 6.0vw;
            letter-spacing: 0;
            text-align: left;
            line-height:1.5;
        }
        h3.-w-general{
            font-size: 5.3vw;
            letter-spacing: 0;
            text-align: left;
            margin-bottom: 1.5rem;
        }
        h4.-w-general {
            font-size: 3.1vw;
            text-align: left;
            margin-bottom: 1.5rem;
        }
        [data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"] .-w-ttl-en.-w-font_en{
            position: relative;
            display: inline-block;
            padding: 0 80px 0;
        }
    }



















/*ボタン*/

























    /*ボタン11*/
    .-w-more_btn{
        margin-top:3.0rem;
        text-align: center;
    }    
    #foot_fixed .-w-contact_btn a,
    .-w-more_btn a{
        min-width:170px;
        font-size: 1.6rem;
        line-height: 1.5;
        position: relative;
        display: inline-block;
        padding: 1.5rem 6rem;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        text-align: center;
        vertical-align: middle;
        text-decoration: none;
        letter-spacing: 0.1em;
        overflow: hidden;
        background-color:rgba(83,83,83,1) !important;
        color:rgba(255,255,255,1) !important;
        border: none !important;
    }
    #foot_fixed .-w-contact_btn a span,
    .-w-more_btn a span {
        position: relative;
        color:rgba(255,255,255,1);
    }
    #foot_fixed .-w-contact_btn a:before,
    .-w-more_btn a:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100px;
        height: 100px;
        content: '';
        -webkit-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
        border-radius: 50%;
        top: 50%;
        left: -80px;
        margin-top: -50px;
        background-color:rgba(228,158,180,1);
        background-color:rgba(228,158,180,1) !important;
    }
    .-w-more_btn a.current:before,
    #foot_fixed .-w-contact_btn a:hover:before,
    .-w-more_btn a:hover:before {
        width: 200%;
        height: 400px;
        margin-top: -200px;
    }
    .-w-foot-main .-w-more_btn a:before {
        width: 140px;
        height: 140px;
        margin-top: -70px;
        left: -110px;
    }
    .-w-foot-main .-w-more_btn a:hover:before {
        width: 200%;
        height: 400px;
        margin-top: -200px;
    }
    .-w-more_btn a span.icon-arrow::before,
    .-w-more_btn a span.material-icons::before,
    #foot_fixed table td .-w-contact_btn span.material-icons::before {
        display: none!important;
    }
    @media (max-width: 768px) {
        .-w-more_btn a{
            min-width: 100%;
        }
        #foot_fixed .-w-contact_btn a:hover:before,
        .-w-more_btn a:hover:before {
            width: 100px;
            height: 100px;
            left: -80px;
            margin-top: -50px;
        }
        .-w-foot-main .-w-more_btn a:hover:before {
            width: 140px;
            height: 140px;
            margin-top: -70px;
            left: -110px;
        }
    }














/*widget:9fd18891-e702-48d9-b18a-8703223bd1d8*/[data-lib="2845"]{min-width: auto;
	min-height: 4.2rem;
	box-sizing: border-box;
	font-size: 1.4rem;
	line-height: 1.4;
	margin: 0 auto;
	margin-top:15.0rem;}[data-lib="2845"] ol{margin: 0px;}[data-lib="2845"] ol li:last-child:after{content:none;}[data-lib="2845"] ol li{margin: 0px 4px 0 0;
	display: table-cell;
	vertical-align: middle;
	position: relative;
	color:rgba(243,243,243,1);
	text-shadow: rgba(83,83,83,1) 2px 0px, rgba(83,83,83,1) -2px 0px, rgba(83,83,83,1) 0px -2px, rgba(83,83,83,1) 0px 2px, rgba(83,83,83,1) 2px 2px, rgba(83,83,83,1) -2px 2px, rgba(83,83,83,1) 2px -2px, rgba(83,83,83,1) -2px -2px, rgba(83,83,83,1) 1px 2px, rgba(83,83,83,1) -1px 2px, rgba(83,83,83,1) 1px -2px, rgba(83,83,83,1) -1px -2px, rgba(83,83,83,1) 2px 1px, rgba(83,83,83,1) -2px 1px, rgba(83,83,83,1) 2px -1px, rgba(83,83,83,1) -2px -1px;}[data-lib="2845"] ol li > span{padding: 11px 0;
	display: block;
	text-align:center;}[data-lib="2845"] ol li > a > span{padding: 12px 0 11px;
	display: block;
	text-align:center;}[data-lib="2845"] ol li a{text-decoration: none;
	display: block;
	padding:0 10px 0 30px;
	position:relative;
	min-width: 55px;
	min-height: 37px;
	color:rgba(243,243,243,1);}[data-lib="2845"] ol li:first-child a{padding:0;}[data-lib="2845"] ol li:last-child span{display: block;
	padding:0 10px 0 30px;}[data-lib="2845"] ol li a:hover{text-decoration: none;}[data-lib="2845"] ol li:after{content: ">";
	position: absolute;
	right: -8px;
	top: 10px;
	width: 0;
	height: 0;
	z-index: 2;}[data-lib="2845"] ol li a[itemprop="item"]:after{content: "";
	position: absolute;
	right: -8px;
	top: 0px;
	width: 0;
	height: 0;
	z-index: 1;}@media (max-width: 1023px){[data-lib="2845"]{display: none;}}/*widget:ed188aec-3c7e-42cc-90cd-78066b0ae0dc*/[data-lib="14579"]{position: relative;
	background: #ffffff;
	padding:5rem 0;}[data-lib="14579"] .-w-pc{display: block;}[data-lib="14579"] .-w-sp{display: none;}[data-lib="14579"] *{box-sizing: border-box;}[data-lib="14579"] .-w-wrapper{background: #fbfbfb;
	max-width: 1000px;
	margin: 0 auto;}[data-lib="14579"] .-w-column{-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 2%;
	box-shadow: 0 0 5px 1px #cccccc;
	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;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: auto;}[data-lib="14579"] .-w-column .-w-left{width: 62%;
	margin-right: 2%;
	font-size: 20px;
	font-weight: bold;}[data-lib="14579"] .-w-column .-w-right{width: 36%;}[data-lib="14579"] .-w-contents{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: stretch;
	-ms-flex-pack: stretch;
	justify-content: stretch;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	margin-bottom: 10px;}[data-lib="14579"] .-w-contents a{text-decoration: none;}[data-lib="14579"] .-w-contents > span{background: #1a3369;
	background:rgba(228,158,180,1);
	color: #ffffff;
	padding: 0.5% 1%;
	margin-right: 2%;
	font-size: 14px;
	text-align: center;
	width: 20%;}[data-lib="14579"] .-w-contents .-w-tel a{font-size: 38px;
	text-decoration: underline;
	color: #1a3369;
	color:rgba(228,158,180,1);
	pointer-events: none;}[data-lib="14579"] .-w-contents > div{font-size: 20px;
	color: #1a3369;
	color:rgba(228,158,180,1);}[data-lib="14579"] .-w-contents > div span{font-size: 30px;
	text-decoration: underline;}@media (max-width: 1023px){[data-lib="14579"]{padding-top: 12rem;}[data-lib="14579"] .-w-wrapper{max-width: none;
	width:96%;}[data-lib="14579"] .-w-contents{-ms-flex-direction:column;
	-webkit-flex-direction:column;
	flex-direction:column;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: end;}[data-lib="14579"] .-w-contents > span{padding: 0.5% 5%;
	width: auto;}}@media (max-width: 768px){[data-lib="14579"]{padding-top: 10rem;}[data-lib="14579"] .-w-pc{display: none;}[data-lib="14579"] .-w-sp{display: block;}[data-lib="14579"] .-w-wrapper{width:calc(100% - 20px);}[data-lib="14579"] .-w-contents{align-items: center;
	justify-content: center;}[data-lib="14579"] .-w-column .-w-left ,[data-lib="14579"] 
.-w-column .-w-right{width:100%;}[data-lib="14579"] .-w-column .-w-left{margin: 0 0 20px;
	text-align: center;}[data-lib="14579"] .-w-contents .-w-tel a{pointer-events: initial;}[data-lib="14579"] .-w-contents > span{padding: 0.5% 1%;
	width: 20%;}}/*widget:26745760-ba84-4c3c-b3dc-6ca5b1f26ca3*/[data-lib="2671"] *{box-sizing: border-box;}[data-lib="2671"] .-w-wrapper{width:100.0rem;
	padding:5.0rem 0;
	margin:0 auto;}[data-lib="2671"] .-w-ttl-en{text-align: center;}[data-lib="2671"] h3.-w-general{text-align: center;}[data-lib="2671"] h4.-w-general{text-align: center;}[data-lib="2671"] .-w-text{margin-bottom:3.0rem;}[data-lib="2671"] .alert{font-weight: bold;
	color: #ff0000;
	color: hsla(0,100%,50%,1);}[data-lib="2671"] .-w-require,[data-lib="2671"] 
.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);}[data-lib="2671"] table{width: 100%;
	margin: 0 auto 20px;
	border-collapse: collapse;}[data-lib="2671"] table tr th{border: 1px solid;
	border-color: #dddddd;
	border-color:rgba(83,83,83,0.8);
	background: #cecece;
	background: hsla(0,0%,80%,1);
	color: #313131;
	color: hsla(0,0%,19%,1);
	width: 30%;
	padding: 28px 37px 25px;
	font-weight: bold;
	vertical-align: middle;
	text-align:right;}[data-lib="2671"] table tr td{border: 1px solid;
	border-color: #dddddd;
	border-color:rgba(83,83,83,0.8);
	background: #ffffff;
	background: hsla(0,0%,100%,1);
	color: #313131;
	color: hsla(0,0%,19%,1);
	width: 70%;
	padding: 28px 37px 25px;
	vertical-align: middle;}[data-lib="2671"] .-w-form-btn{text-align: center;}[data-lib="2671"] .-w-form-btn button[type="submit"]{cursor: pointer;
	border: none;
	padding: 8px 5px;
	cursor: pointer;
	width:170px;
	font-size: 1.5rem;
	background-color:#601132;
	color:#ffffff;
	border:1px solid rgba(96,17,50,1);
	;}[data-lib="2671"] .-w-form-btn button[type="submit"]:hover{background-color:#ffffff;
	color:#601132;
	border:1px solid rgba(96,17,50,1);}[data-lib="2671"] .-w-btn-wrap{width: 50%;
	margin: 0 auto;
	font-size: 3.0rem;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;}[data-lib="2671"] .-w-back-btn a{border: 1px solid;
	padding: 8px 5px;
	width:170px;
	font-size: 1.5rem;
	text-decoration: none;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	border: 1px solid;
	border-color: #dddddd;
	border-color:rgba(96,17,50,0.8);
	background-color: #fdfdfd;
	background-color: hsla(0,0%,99%,1);
	color: #313131;
	color: hsla(0,0%,19%,1);}[data-lib="2671"] .-w-back-btn a:hover{background-color: #dddddd;
	border-color: #dddddd;
	background-color:rgba(96,17,50,0.8);
	border-color:rgba(96,17,50,0.8);}[data-lib="2671"] .-w-btn-wrap .-w-form-btn{margin-left:3.0rem;}[data-lib="2671"] .-w-btn-wrap .-w-form-btn button[type="submit"]{vertical-align: top;}[data-lib="2671"] .owlet-input-sample{font-size: 1.6rem;
	padding: 0 10px;}[data-lib="2671"] table input,[data-lib="2671"] 
table select,[data-lib="2671"] 
table textarea,[data-lib="2671"] 
table label,[data-lib="2671"] 
table .input_address{font-size:1.6rem;}[data-lib="2671"] input.owlet-input-tel1 + span,[data-lib="2671"] 
input.owlet-input-tel2 + span{font-size:1.6rem;}[data-lib="2671"] input[type="text"]{width: 100%;
	box-sizing: border-box;
	padding: 10px;}[data-lib="2671"] input.owlet-input-name-sei[type="text"],[data-lib="2671"] 
input.owlet-input-name-mei[type="text"]{width: 40%;
	padding: 10px;
	margin: 0 10px 0 0;}[data-lib="2671"] input[type="text"],[data-lib="2671"] select{min-height: 30px;
	border: 1px solid;
	border-color: #dddddd;
	border-color:rgba(83,83,83,0.8);}[data-lib="2671"] input.owlet-input-tel1[type="text"],[data-lib="2671"] 
input.owlet-input-tel2[type="text"],[data-lib="2671"] 
input.owlet-input-tel3[type="text"],[data-lib="2671"] 
input.zip1[type="text"],[data-lib="2671"] 
input.zip2[type="text"]{line-height: 1.2;
	padding: 10px;
	border: 1px solid;
	border-color: #dddddd;
	border-color:rgba(83,83,83,0.8);
	width: 115px;}[data-lib="2671"] textarea{min-height: 150px;
	line-height: 1.2;
	padding: 10px;
	border: 1px solid;
	border-color: #dddddd;
	border-color:rgba(83,83,83,0.8);
	width: 100%;}[data-lib="2671"] select{line-height: 1.2;
	border: 1px solid;
	border-color: #dcdcdc;
	border-color:rgba(83,83,83,0.8);
	width: 180px;}[data-lib="2671"] .owlet-input-name-sei,[data-lib="2671"] 
.owlet-input-name-mei{width: 90px;
	margin: 0 5px;}[data-lib="2671"] input[name="input[email]"],[data-lib="2671"] 
input[name="input[email_confirm]"]{width: 100%;}[data-lib="2671"] .zip1,[data-lib="2671"] .zip2{width: 60px;
	margin-bottom: 10px;}[data-lib="2671"] .zip2addr{margin-bottom: 10px;
	padding: 10px 13px 6px;
	box-sizing: border-box;
	display: inline-block;}[data-lib="2671"] select.prefectures,[data-lib="2671"] 
select.city{margin: 0 5px 10px 0;
	padding: 10px;
	-webkit-appearance: none;}[data-lib="2671"] .address,[data-lib="2671"] 
input[name="input[address_address]"],[data-lib="2671"] 
input[name="input[address_address2]"],[data-lib="2671"] 
input[name="input[address2_address]"],[data-lib="2671"] 
input[name="input[address2_address2]"]{width: 100%;
	margin-left: 0;}[data-lib="2671"] .address,[data-lib="2671"] 
input[name="input[address_address]"]{margin-bottom: 5px;}[data-lib="2671"] .owl-datepicker{width: 150px;
	margin-right: 5px;}[data-lib="2671"] select[name="input[date_hour]"],[data-lib="2671"] 
select[name="input[date_minute]"]{margin-right: 5px;}[data-lib="2671"] .owlet-input-tel1,[data-lib="2671"] 
.owlet-input-tel2,[data-lib="2671"] 
.owlet-input-tel3{width: 60px;}[data-lib="2671"] .owlet-input-tel2,[data-lib="2671"] 
.owlet-input-tel3{margin-left: 5px;}[data-lib="2671"] input[name="input[company_name]"]{width: 80%;
	line-height: 1.2;
	padding: 2px;}[data-lib="2671"] textarea[name="input[text]"]{width: 80%;}[data-lib="2671"] table tr td label{display: block;}[data-lib="2671"] input[name="input[select_etc]"],[data-lib="2671"] 
input[name="input[radio_etc]"],[data-lib="2671"] 
input[name="input[check_etc]"]{width: 80%;
	margin-top: 5px;}[data-lib="2671"] .-w-rules-agree{text-align: center;
	margin-bottom: 3.0rem;}[data-lib="2671"] .-w-rules-agree a{display: inline-block;}@media (max-width: 1023px){[data-lib="2671"] .-w-wrapper{width:100%;}[data-lib="2671"] input.owlet-input-name-sei[type="text"],[data-lib="2671"] 
input.owlet-input-name-mei[type="text"]{width: 100%;}[data-lib="2671"] input.owlet-input-name-sei[type="text"]{margin-bottom:10px;}}@media (max-width: 768px){[data-lib="2671"] .-w-wrapper{width: calc(100% - 12%);
	padding:10.0rem 0 5.0rem;}[data-lib="2671"] table tr th{display: block;
	width: 100%;
	padding: 10px 2%;
	border-bottom: none;
	text-align:left;}[data-lib="2671"] table tr td{display: block;
	width: 100%;
	padding: 10px 2%;
	border-bottom: none;
	text-align:left;}[data-lib="2671"] table tr:last-child td{border-bottom: 1px solid;}[data-lib="2671"] .-w-rules-agree{font-size:1.3rem;}}