/*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;
}

/* デフォルトの見出しboldを削除*/
h1,
h2,
h3,
h4{
    font-weight:normal;
}

/* 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:#f5f5f5;
    color: #313131;
    color:#231815;
    line-height: 1.6;
    font-size: 1.6rem;
    font-feature-settings: "palt";
    -webkit-text-size-adjust: 100%;
}
@media (max-width: 768px) {
    body {
        font-size:3.5vw;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/***色指定***/
.-w-txt.-w-background {
    color: #fff;
    color:#f5f5f5;
}
.-w-txt.-w-background-r {
    color: #000;
    color:#231815;
}
.-w-txt.-w-main {
    color: #001754;
    color:#5abfed;
}
.-w-txt.-w-main-r {
    color: #fff;
    color:#ffffff;
}
.-w-txt.-w-accent {
    color: #4f0506;
    color:#6bc8f2;
}
.-w-txt.-w-accent-r {
    color: #fff;
    color:#ffffff;
}
/*背景色＋テキスト色*/
.-w-bg.-w-background {
    background: #fff;
    background:#f5f5f5;
    color: #000;
    color:#231815;
}
.-w-bg.-w-main {
    background: #001754;
    background:#5abfed;
    color: #fff;
    color:#ffffff;
}
.-w-bg.-w-accent {
    background: #4f0506;
    background:#6bc8f2;
    color: #fff;
    color:#ffffff;
}
/*反転ver*/
.-w-bg.-w-background-r {
    background: #000;
    background:#231815;
    color: #fff;
    color:#f5f5f5;
}
.-w-bg.-w-main-r {
    background: #fff;
    background:#ffffff;
    color: #001754;
    color:#5abfed;
}
.-w-bg.-w-accent-r {
    background: #fff;
    background:#ffffff;
    color: #4f0506;
    color:#6bc8f2;
}
/*hover時背景色指定*/
a.-w-bg.-w-background:hover {
    background: #000;
    background:#231815;
    color: #fff;
    color:#f5f5f5;
}
a.-w-bg.-w-main:hover {
    background: #fff;
    background:#ffffff;
    color: #001754;
    color:#f5f5f5;
}
a.-w-bg.-w-accent:hover {
    background: #fff;
    background:#ffffff;
    color: #4f0506;
    color:#6bc8f2;
}
a.-w-bg.-w-background-r:hover {
    background: #fff;
    background:#f5f5f5;
    color: #000;
    color:#231815;
}
a.-w-bg.-w-main-r:hover {
    background: #001754;
    background:#5abfed;
    color: #fff;
    color:#ffffff;
}
a.-w-bg.-w-accent-r:hover {
    background: #4f0506;
    background:#6bc8f2;
    color: #fff;
    color:#ffffff;
}

/***ボーダー色指定***/
.-w-bd.-w-background {
    border-color: #fff;
    border-color:#f5f5f5;
}
.-w-bd.-w-main {
    border-color: #001754;
    border-color:#5abfed;
}
.-w-bd.-w-accent {
    border-color: #4f0506;
    border-color:#6bc8f2;
}
.-w-bd.-w-background-r {
    border-color: #000;
    border-color:#231815;
}
.-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:#231815;
}
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:#f5f5f5;
}
a.-w-bd.-w-bg.-w-main:hover,
a.-w-bd.-w-main-r:hover {
    border-color: #001754;
    border-color:#5abfed;
}
a.-w-bd.-w-bg.-w-accent:hover,
a.-w-bd.-w-accent-r:hover {
    border-color: #4f0506;
    border-color:#6bc8f2;
}


/*見出し設定*/
.-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: 3.5rem;
    margin-bottom: 1.0rem;
    display: block;
    line-height: 1.0;
    color:#313131;
    color:rgba(35,24,21,1);
}
h2.-w-general{
    font-size: 2.0rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0px;
    color:#313131;
    color:rgba(35,24,21,1);
}
h3.-w-general{
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0px;
    color:#3c79fa;
    /* color:rgba(90,191,237,1); */
}
h4.-w-general {
    font-size: 1.8rem;
    font-weight: 400;
    color:#313131;
    color:rgba(35,24,21,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;
    margin-bottom: 0.5rem;
}
[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: 7.5vw;
        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(107,200,242,1);
    color:rgba(255,255,255,1);
    border-color:rgba(107,200,242,1);
}
.-w-more_btn a.current,
.-w-more_btn a:hover{
    opacity: 1;
    background-color:#ffffff;
    color:#ff6600;
    color:rgba(107,200,242,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(35,24,21,1);
    background-color:rgba(245,245,245,1);
}
.owlet-form .alert {
    font-weight: bold;
    color: #ff0000;
    
        color: hsla(12.86,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(12.86,100%,40%,1);
    
    color: #fff;
    
        color: hsla(12.86,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(107,200,242,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:#6bc8f2;
    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(35,24,21,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(107,200,242,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;
}    .-w-more_btn a.current,
.-w-more_btn a:hover{
    opacity: 1;
    background-color:#ffffff;
    color:#ff6600;
    color:rgba(107,200,242,1);
    background-color:rgba(255,255,255,1);
}
.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:#6bc8f2;
    font-family:'Zen Kaku Gothic New';
    background-color:#6bc8f2;
    color:#ffffff;
}
.owlet-form .form_button input[type="button"]:hover {
    background-color:#ffffff;
    color:#6bc8f2;
    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:#6bc8f2;
        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:#f5f5f5;
    }
    .owlet-form .-w-rules-agree{
        font-size:1.3rem;
    }
    .owlet-form .-w-form_wrap{
        background: none;
    }
    .owlet-form .-w-require{
        color:#6bc8f2;
    }
}

/*
フォーム 規約
**************************************/
.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:'Zen Kaku Gothic New';
        font-style:normal;
        font-weight:400;
        
    }
    
    
    @media (max-width: 768px) {
        body {
            font-weight:400;
        }
    }
    /*見出しフォント*/
  .-w-font_title1{
        font-family:'Zen Kaku Gothic New', 'Zen Kaku Gothic New',sans-serif;
        font-style:normal;
        
    }
    /*MVフォント*/
  .-w-font_title2{
        font-family:'Zen Kaku Gothic New', 'Zen Kaku Gothic New',sans-serif;
        font-style:normal;
        font-weight:400;
    }
    /*英数字フォント*/
  .-w-font_en{
        font-family:'Zen Kaku Gothic New', 'Zen Kaku Gothic New', 'Zen Kaku Gothic New',sans-serif;
        font-style:normal;
        font-weight:400;
    }
    .-w-font_en_after:after{
        font-family:'Zen Kaku Gothic New', 'Zen Kaku Gothic New', 'Zen Kaku Gothic New',sans-serif;
        font-style:normal;
        font-weight:400;
    }











































@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:'Zen Kaku Gothic New', 'Zen Kaku Gothic New', 'Zen Kaku Gothic New',sans-serif;
        }
        .-w-font_en_after:after{
            font-family:'Zen Kaku Gothic New', 'Zen Kaku Gothic New', 'Zen Kaku Gothic New',sans-serif;
        }
    
    
    
    
    
    
    
    
    
    
    
    
    
}

@media (max-width: 768px) {
    #google_translate_element select {
    font-size:28px;
    }
}



/*================================================================*/
















h2.-w-general {
    margin-bottom: 0.5rem;
}

span.-w-general, .-w-ttl-en.-w-font_en, .-w-general .-w-font_en, .-w-ttl-en.-w-font_en {
    margin-bottom: 1.5rem;
}

span.-w-general.-w-font_en {
    background:url(/_img/ja/resource/9191/icon_b/) no-repeat center bottom;
    padding-bottom:1.5rem;
}
[data-lib-uuid="a4ade1d2-b495-4ce9-aaf4-e5b5d3155cbc"] .-w-ttl-en.-w-font_en,
[data-lib-uuid="fa379360-457f-49b3-897e-b89eef9eccd3"] .-w-ttl-en.-w-font_en{
    background:url(/_img/ja/resource/9191/icon_b/) no-repeat center bottom;
    padding-bottom:1.5rem;
}
@media (max-width: 768px) {
    span.-w-general.-w-font_en {
        background-image: none;
    }

    [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 {
    background:url(/_img/ja/resource/9191/icon_b/) no-repeat center bottom;
    padding-bottom:1.0rem;
    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;
        background:url(/_img/ja/layout//image/_/) no-repeat center bottom;
        padding-bottom:2.0rem;
        display: block;
    }
}
@media (max-width: 768px) {
    [data-lib-uuid="040abc13-19ac-4da1-9251-9031641c7556"] .-w-ttl-wrapper .-w-en {
        margin:0;
       background-image: none;
        padding-bottom:2.0rem;
        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 {
    display: inline-block;
    background:url(/_img/ja/resource/9191/icon_b/) no-repeat center bottom;
    padding-bottom:1.0rem;
}
@media (max-width: 768px) {
    [data-lib-uuid="ee9fd614-c208-44ba-9ce5-2b8d0a6cf8b0"] .-w-font_en {
        display: block;
        background:url(/_img/ja/resource/9191/icon_b/) no-repeat center bottom;
        padding-bottom:1.5rem;
        text-align: center;
    }
}




























/*ボタン*/


















.-w-more_btn{
    margin-top:3.0rem;
    text-align: center;
}
.-w-more_btn a ,
#foot_fixed .-w-contact_btn a{
    position: relative;
    display: inline-block;
    text-decoration: none;
    overflow: hidden;
    min-width: 225px;
    border:none !important;
    border-radius: 0;
    color: #ffffff;
    background: #6bc8f2 !important;
    padding: 1.4rem 2.0rem;
    font-size: 1.6rem;
    font-weight: 400;
}
[data-lib-uuid="44a1a35d-7f8d-4245-b7b4-c745739912f3"] #foot_fixed table .-w-contact_btn a{
    padding: 18px 5px;
}
.-w-more_btn a span,
#foot_fixed .-w-contact_btn a span {
    position: relative;
    z-index: 1;
}
.-w-more_btn a:hover,
#container #foot_fixed .-w-contact_btn a:hover {
    color: #ffffff;
}
.-w-more_btn a:before,
#foot_fixed .-w-contact_btn a:before {
    position: absolute;
    top: 0;
    left: calc(-100% + 10px);
    width: 100%;
    height: 100%;
    content: '';
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
    
        background-color:hsla(198.67,83%,78%,1);
    
}
.-w-more_btn a:after,
#foot_fixed .-w-contact_btn a:after {
    position: absolute;
    top: 0;
    right: calc(-100% + 10px);
    width: 100%;
    height: 100%;
    content: '';
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
    
        background-color:hsla(198.67,83%,78%,1);
    
}
.-w-more_btn a:hover:before,
#foot_fixed .-w-contact_btn a:hover:before {
    -webkit-transform: translateX(50%) translateY(0);
    transform: translateX(50%) translateY(0);
}
.-w-more_btn a:hover:after,
#foot_fixed .-w-contact_btn a:hover:after {
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
}
.-w-more_btn a:hover:after {}
.-w-more_btn a:hover span {}
[data-lib-uuid="da41ff3c-c941-4f33-b2ea-99ca4c2dae8a"] .-w-more_btn a span.material-icons::before,
[data-lib-uuid="bf5a239a-9ece-4c6c-a370-f5745eb8ec8e"] .-w-more_btn a span.material-icons::before,
[data-lib-uuid="b8e9163b-f776-49f0-b607-31155791cee0"] .-w-more_btn a span.material-icons::before,
[data-lib-uuid="5834cf65-46d0-4648-8f9a-0a1adfcbbcf8"] .-w-more_btn a span.material-icons::before,
[data-lib-uuid="12bfd301-7840-428c-814e-8765292aec62"] .-w-more_btn a span.material-icons::before {
    content: none !important;
}























/*widget:f7483bc9-f72d-4123-85d6-b819c4a6a082*/[data-lib="15886"]{background: none;
	color:#ffffff;
	padding:0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 104;
	min-height: 90px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;}[data-lib="15886"]:after{content: "";
	height: calc(100% + 20px);
	max-height: 20vh;
	width: 100%;
	position: absolute;
	background: -webkit-linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.0));
	background: -moz-linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.0));
	background: -o-linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.0));
	background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.0));
	pointer-ebents: none;
	left: 0px;
	top: 0;}[data-lib="15886"].-w-navfixed_off{position: relative;}[data-lib="15886"].fixed:after{height: 100%;
	background:rgba(0,0,0,0.4);}[data-lib="15886"] [data-w-width="0"]{width: 95%;}[data-lib="15886"] .-w-wrapper{margin:0 auto;
	position: relative;
	z-index: 1;}[data-lib="15886"] .-w-head_main{display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;}[data-lib="15886"] a{color:#ffffff;
	color:#f5f5f5;
	text-decoration: none;}[data-lib="15886"] a:hover{text-decoration: none;}[data-lib="15886"] .-w-h1-wrap{margin-left: auto;
	margin-top: 1rem;}[data-lib="15886"] .-w-h1-wrap h1{font-size:1.2rem;
	line-height: 1.0;
	font-weight: 500;
	text-align: right;
	margin-left:1rem;
	color: #ffffff;
	color:#ffffff;}[data-lib="15886"] .-w-sp{display: none;}[data-lib="15886"] .-w-head_middle{display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-left: auto;
	margin-top: 1.0rem;}[data-lib="15886"] .-w-tel{position: relative;
	font-size: 26px;
	line-height: 1;
	padding-left: 26px;
	margin: 0 1rem 0 0;}[data-lib="15886"] .-w-tel svg{display: block;
	position: absolute;
	fill: #ffffff;
	width: 22px;
	height: 22px;
	top: calc(50% - 11px);
	left: 0;}[data-lib="15886"] .-w-contact{margin-right: 1rem;}[data-lib="15886"] .-w-contact a{display: block;
	text-align: center;
	min-width: 150px;
	background: #ffffff;
	background: #6bc8f2;
	color: #fff !important;
	padding: 5px 10px;
	font-size: 1.4rem;
	transition: 0.2s ease-in-out;
	text-shadow: none;}[data-lib="15886"] .-w-contact a:hover{opacity: 0.8;}[data-lib="15886"] .-w-translate svg{margin: 0% auto 0;
	fill: #ffffff;}[data-lib="15886"] .-w-header_contents{box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: left;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
	width: auto;}[data-lib="15886"] .-w-flex{width: 100%;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;}[data-lib="15886"] .-w-logo{box-sizing: border-box;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 2rem 0;
	max-width: 350px;
	max-height: 90px;}[data-lib="15886"] .-w-logo a{display: block;}[data-lib="15886"] .-w-logo img{padding:0px;
	background:none;
	object-fit: contain;
	object-position: left;
	width: auto;
	height: 100%;
	min-width: 90px;
	max-height: 90px;}[data-lib="15886"] .-w-gnav{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;
	width: 100%;
	margin-top: 1.0rem;}[data-lib="15886"] .-w-gnav ul li.-w-menu-item:after{content: "";
	display: block;
	width: 1px;
	height: 40%;
	position: absolute;
	top: 30%;
	left: 0;
	border-left: 1px solid white;}[data-lib="15886"] .-w-gnav ul{display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	list-style: none;}[data-lib="15886"] .-w-gnav ul li.-w-menu-item{line-height: 1.0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 40px;
	position: relative;
	font-weight: bold;}[data-lib="15886"] .-w-gnav ul li a{margin:0;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 13px;
	font-size: 1.6rem;
	color: #ffffff;}[data-lib="15886"] .-w-gnav ul li a:hover{text-decoration: none;
	opacity:0.7;
	color: #6bc8f2;}[data-lib="15886"] .-w-gnav ul li ul li a{padding:10px 25px 10px 10px;
	font-size: 1.4rem;
	text-shadow: none;
	color: #231815;}[data-lib="15886"] .-w-menu-item{position: relative;}[data-lib="15886"] .-w-menu-item:before{position: absolute;
	content: "";
	overflow: hidden;
	width: 0%;
	left: 50%;
	bottom: 0;
	transition: 0.2s ease-in-out 0.15s;}[data-lib="15886"] .-w-menu-item:hover:before{width: 100%;
	left: 0%;
	transition: 0.2s ease-in-out;}[data-lib="15886"] .-w-sub-menu{position: absolute;
	left: initial;
	right: 0;
	margin: 0 auto;
	top: 40px;
	padding: 0;
	text-align: left;
	box-shadow: 0px 4px 20px -5px rgba(0, 0, 0, 0.15);
	max-height: 0;
	width: 320px;
	width:max-content;
	opacity: 0;
	transition: 0.45s ease all 0.10s;
	z-index: 100;
	-ms-flex-direction:column;
	-webkit-flex-direction:column;
	flex-direction:column;
	line-height: 1.5;}[data-lib="15886"] .-w-sub-menu .-w-menu-item{display: block;}[data-lib="15886"] .-w-sub-menu li{background: #FFF;
	background-color:#f5f5f5;}[data-lib="15886"] .-w-sub-menu li a{color: #313131;
	color:#231815;}[data-lib="15886"] ul li .-w-sub-menu li a:hover{color: #252525;
	opacity: 0.7;
	color:#6bc8f2;}[data-lib="15886"] .-w-menu-item .-w-sub-menu-item{list-style-type: none;
	display: block;
	margin: 0;
	position: relative;
	-webkit-transform: translateY(-10px);
	transform: translateY(-10px);
	opacity: 0;
	transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) all 0.1s;
	visibility: hidden;}[data-lib="15886"] .-w-menu-item:hover .-w-sub-menu{max-height: 320px;
	width: 320px;
	width:max-content;
	opacity: 1;}[data-lib="15886"] .-w-menu-item:hover .-w-sub-menu-item a{transition: 0.15s ease all;}[data-lib="15886"] .-w-menu-item:hover .-w-sub-menu-item{-webkit-transform: translateY(0px);
	transform: translateY(0px);
	opacity: 1;
	visibility: visible;
	display: block;}[data-lib="15886"] .-w-menu-item:hover .-w-sub-menu-item:first-child{transition-delay: 0.15s;}[data-lib="15886"] .-w-menu-item:hover .-w-sub-menu-item:nth-child(2){transition-delay: 0.30s;}[data-lib="15886"] .-w-menu-item:hover .-w-sub-menu-item:nth-child(3){transition-delay: 0.45s;}[data-lib="15886"] .-w-menu-item:hover .-w-sub-menu-item:nth-child(4){transition-delay: 0.6s;}[data-lib="15886"] .-w-menu-item:hover .-w-sub-menu-item:nth-child(5){transition-delay: 0.75s;}[data-lib="15886"] .-w-menu-item:hover .-w-sub-menu-item:nth-child(n + 6){transition-delay: 0.90s;}[data-lib="15886"] .-w-sub-menu-item + .-w-sub-menu-item{border-top: 1px solid #231815;}[data-lib="15886"] .-w-sub-menu-item{position: relative;}[data-lib="15886"] .-w-sub-menu-item:after{content:'>';
	position: absolute;
	color: #313131;
	color:#231815;
	;
	right: 0;
	top:50%;
	transform: translateY(-50%);
	margin-right: 1rem;
	font-size: 0.8em;
	text-shadow: none;}[data-lib="15886"] .-w-wrap{width: 100%;}[data-lib="15886"] .-w-gnav ul li.-w-menu-item:first-of-type:after{display: none;}[data-lib="15886"] #google_translate_element .goog-te-gadget img{display: inline-block;}[data-lib="15886"] .-w-translate_li{width: 34px;
	height: 34px;}[data-lib="15886"] .-w-translate_li .-w-translate{width: 100%;
	height: 100%;
	position: relative;
	top: 0;
	right: 0;}[data-lib="15886"] .-w-translate_li .-w-translate a{display: block;
	height: 100%;
	width: 100%;
	transition: 0.2s ease-in-out;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0;
	z-index: 0;
	margin: 0;}[data-lib="15886"] #google_translate_element{position: relative;
	height: 100%;
	width: 100%;
	overflow: hidden;
	opacity: 0;
	z-index: 1;}[data-lib="15886"] #google_translate_element:hover{cursor: pointer;}[data-lib="15886"] .skiptranslate.goog-te-gadget{height: 100%;
	width: 100%;}[data-lib="15886"] #google_translate_element .skiptranslate > div{display: block !important;
	height: 100%;
	width: 100%;}[data-lib="15886"] #google_translate_element .skiptranslate > span{display: none;}[data-lib="15886"] #google_translate_element select{color: #333 !important;
	cursor: pointer;
	margin: 0;
	height: 100%;
	width: 100%;
	-webkit-appearance: button;
	appearance: button;}[data-lib="15886"] .-w-translate_li .-w-translate svg{width: 34px;
	fill: #ffffff;}[data-lib="15886"] .-w-sp_logo{display:none;}@media (max-width: 1023px){[data-lib="15886"]{min-height: 90px;}[data-lib="15886"] .-w-pc{display: none;}[data-lib="15886"] .-w-sp{display: block;}[data-lib="15886"] .-w-sp-menu-btn{top: 0;
	right: 0;}[data-lib="15886"] .-w-sp-menu-btn input{position: fixed;
	opacity: 0;}[data-lib="15886"] .-w-sp-menu-btn label{width: 90px;
	height: 90px;
	position: relative;
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	cursor: pointer;
	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="15886"] .-w-sp-menu-btn label::before{position: fixed;
	z-index: -2;
	height: 100vh;
	top: 90px;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);}[data-lib="15886"] .-w-sp-menu-btn label .-w-burger{position: absolute;
	z-index: 3;
	width: 35px;
	height: 40px;
	margin: 0;
	padding: 0;
	transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);}[data-lib="15886"] .-w-sp-menu-btn label .-w-burger::before,[data-lib="15886"] 
.-w-sp-menu-btn label .-w-burger .-w-bar,[data-lib="15886"] 
.-w-sp-menu-btn label .-w-burger::after{position: absolute;
	right: 0;
	display: block;
	width: 100%;
	height: 1px;
	content: '';
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	background: #ffffff;
	filter: brightness(130%);}[data-lib="15886"] .-w-sp-menu-btn label .-w-burger .-w-bar{top: 45%;}[data-lib="15886"] .-w-sp-menu-btn label .-w-burger::before{top: 10px;
	transform-origin: top left;}[data-lib="15886"] .-w-sp-menu-btn label .-w-burger::after{bottom: 13px;
	transform-origin: bottom left;}[data-lib="15886"] .-w-sp-menu-btn input:focus + label .-w-burger,[data-lib="15886"] 
.-w-sp-menu-btn label:hover .-w-burger{opacity: .75;}[data-lib="15886"] nav#-w-hamburger_menu{height: 100vh;
	padding: 100px 0 10vh;
	margin-bottom: 5vh;
	width:100%;
	position: fixed;
	top: 0px;
	left: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: flex-start;
	transform: translate3d(0, 0, 0);
	transform: translateX(-100%);
	will-change: transform;
	transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	background: rgba(0,0,0,0.8);}[data-lib="15886"] nav#-w-hamburger_menu ul{display:block;
	height:auto;}[data-lib="15886"] nav#-w-hamburger_menu > ul{overflow-y: scroll;
	text-align: left;
	width: 100%;
	margin: 0 0 0px;
	-ms-overflow-style: none;
	scrollbar-width: none;}[data-lib="15886"] nav#-w-hamburger_menu > ul > li{width: 95%;
	padding: 1rem 0;
	margin: 0 auto;
	border-top: 1px solid #cccccc;
	list-style: none;
	position:relative;}[data-lib="15886"] nav#-w-hamburger_menu li div > a{margin: .5em 4%;
	display: block;
	font-size: 1.8rem;
	text-decoration: none;
	font-weight: 500;
	transform: translateX(-100%);
	transition: color .15s, transform .5s;
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
	color:#ffffff;
	text-shadow: none;
	display:block;}[data-lib="15886"] nav#-w-hamburger_menu li .-w-accordion_submenu a{font-size: 1.6rem;}[data-lib="15886"] nav#-w-hamburger_menu a:hover,[data-lib="15886"]  nav#-w-hamburger_menu a:focus{font-weight: 700;}[data-lib="15886"] [id="navcheck"]:checked + label::before{opacity: 1;
	pointer-events: auto;}[data-lib="15886"] [id="navcheck"]:checked + label .-w-burger{right: 10px;}[data-lib="15886"] [id="navcheck"]:checked + label .-w-burger::before,[data-lib="15886"]  [id="navcheck"]:checked + label .-w-burger::after{width: 141.42%;}[data-lib="15886"] [id="navcheck"]:checked + label .-w-burger::before{transform: rotate(45deg) translateY(-50%);
	top: 4px;}[data-lib="15886"] [id="navcheck"]:checked + label .-w-burger::after{transform: rotate(-45deg) translateY(50%);
	bottom: 1px;}[data-lib="15886"] [id="navcheck"]:checked + label .-w-burger .-w-bar{transform: scale(0.1);
	display:none;}[data-lib="15886"] [id="navcheck"]:checked ~ nav#-w-hamburger_menu{transform: translateX(0);}[data-lib="15886"] [id="navcheck"]:checked ~ nav#-w-hamburger_menu::before{transform: skewX(15deg) translateX(0);}[data-lib="15886"] [id="navcheck"]:checked ~ nav#-w-hamburger_menu a{transform: translateX(0);}[data-lib="15886"] [id="navcheck"]:checked ~ main .-w-content{transform: translateX(3em);
	transform-origin: left center;
	-webkit-filter: blur(2px);
	filter: blur(2px);}[data-lib="15886"] .-w-visuallyhidden{border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;}[data-lib="15886"] .-w-inner{display: none;}[data-lib="15886"] .-w-h1-wrap{display: none;}[data-lib="15886"] .-w-logo{padding: 10px 0;
	position: relative;
	z-index: 10;}[data-lib="15886"] .-w-gnav ul li.-w-menu-item{display: none;}[data-lib="15886"] .-w-translate_li{position: relative;
	z-index: 10;
	margin:0 30px 0 0;}[data-lib="15886"] .-w-translate_li .-w-translate{margin: 0;
	position: relative;
	right: 0;
	top: 0;
	width: 34px;
	height: 34px;
	filter: brightness(130%);}[data-lib="15886"] .-w-header_contents .-w-tel,[data-lib="15886"]  .-w-header_contents .-w-contact{display: none;}[data-lib="15886"] .-w-sp .-w-head_middle{width: 95%;
	margin: 0 auto;
	justify-content: space-around;
	padding: 2rem 0;
	border-top: 1px solid #cccccc;
	border-bottom: 1px solid #cccccc;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;}[data-lib="15886"] .-w-sp .-w-head_middle .-w-tel{left: 25%;}[data-lib="15886"] .-w-sp .-w-head_middle .-w-tel a{color:rgba(35,24,21,1);}[data-lib="15886"] .-w-sp .-w-head_middle .-w-contact{width: 50%;
	left: 25%;
	position: relative;
	margin-right: 0;
	margin-bottom:1rem;}[data-lib="15886"] .-w-sp .-w-head_middle .-w-contact a{width: 100%;
	margin: 0!important;}[data-lib="15886"] .-w-sp nav#-w-hamburger_menu .-w-head_middle .-w-tel{left: 0;
	text-align: center;
	padding: 0;
	margin: 0 0 2rem;}[data-lib="15886"] .-w-sp nav#-w-hamburger_menu .-w-head_middle .-w-tel .-w-sp{display: inline;}[data-lib="15886"] .-w-sp nav#-w-hamburger_menu .-w-head_middle .-w-contact{left:initial;}[data-lib="15886"] .-w-sp nav#-w-hamburger_menu .-w-head_middle .-w-tel span{display: inline-block;}[data-lib="15886"] .-w-sp nav#-w-hamburger_menu .-w-head_middle .-w-tel a{font-size: 4.5vw;
	display: inline;
	padding: 0;
	transform: none;}[data-lib="15886"] nav#-w-hamburger_menu li > a,[data-lib="15886"] 
.-w-sp .-w-head_middle .-w-tel a{color: #ffffff;}[data-lib="15886"] .-w-tel svg{position: relative;
	display: inline;}[data-lib="15886"] .-w-pc_logo{display:none;}[data-lib="15886"] .-w-sp_logo{display:-webkit-box;
	display:-ms-flexbox;
	display:flex;}[data-lib="15886"] .-w-accordion{display: inline-block;
	position: absolute;
	width: 20px;
	height: 30px;
	left: 0;
	top: 34px;
	transform: translateY(-50%);
	z-index: 100;}[data-lib="15886"] .-w-accordion .-w-circle{position: absolute;
	top: 52%;
	left: 50%;
	transform: translate(0, -50%);
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 100%;
	border: 2px solid #ffffff;}[data-lib="15886"] .-w-accordion .-w-circle::after{content: "";
	position: absolute;
	top: 7px;
	left: 8px;
	background-color: #ffffff;
	display: block;
	width: 10px;
	height: 2px;
	transform: translateX(-50%) rotate(90deg);
	transition: all 300ms;}[data-lib="15886"] .-w-accordion .-w-circle::before{content: "";
	position: absolute;
	top: 7px;
	left: 8px;
	background-color: #ffffff;
	display: block;
	width: 10px;
	height: 2px;
	transform: translateX(-50%) rotate(0deg);
	transition: all 300ms;}[data-lib="15886"] ul.-w-accordion_submenu{margin-left:4%;
	padding-left: 1.5em;
	transition: 0.45s ease all 0.10s;}[data-lib="15886"] .-w-accordion.-w-active .-w-circle::before{transform: translateX(-50%) rotate(180deg);}[data-lib="15886"] .-w-accordion.-w-active .-w-circle::after{transform: translateX(-50%) rotate(360deg);}[data-lib="15886"] nav#-w-hamburger_menu .-w-accordion_submenu{visibility: hidden;}[data-lib="15886"] nav#-w-hamburger_menu .-w-accordion_submenu.-w-active{visibility: visible;}[data-lib="15886"] li.-w-accordion_submenu-item{position:relative;
	padding-bottom: 5px;
	visibility: hidden;
	opacity:0;
	transition: all 300ms;
	top:-35px;}[data-lib="15886"] .-w-active li.-w-accordion_submenu-item{opacity: 1;
	visibility: visible;
	top:0;}[data-lib="15886"] .-w-padding_active{padding-left:6%;}[data-lib="15886"] .-w-heightzero{height:0!important;}[data-lib="15886"] ul.-w-accordion_submenu.-w-transition_zero{transition:0s!important;}[data-lib="15886"] ul.-w-accordion_submenu.-w-transition_zero li{transition:0s!important;}[data-lib="15886"] nav#-w-hamburger_menu > ul::-webkit-scrollbar{display: none;}}@media (min-width: 769px) and (max-width: 1400px){[data-lib="15886"] .-w-gnav ul{font-size: 1vw;}[data-lib="15886"] .-w-gnav ul li a{font-size: 1.3rem;
	padding:0 1vw;}[data-lib="15886"] .-w-number{font-size: 2.5vw;}}@media (max-width: 768px){[data-lib="15886"]{padding:0;
	height:80px;
	min-height: initial;}[data-lib="15886"]:after{content: "";
	height: 100%;
	max-height: none;}[data-lib="15886"] .-w-pc{display: none;}[data-lib="15886"] .-w-sp{display: block;}[data-lib="15886"] .-w-gnav ul li.-w-menu-item.-w-pc{display: none;}[data-lib="15886"] .-w-h1-wrap{display: none;}[data-lib="15886"] .-w-head_main{display:-webkit-box;
	display:-ms-flexbox;
	display:flex;}[data-lib="15886"] .-w-header_contents + .-w-header_contents{margin-left: auto;
	margin-right: 0;}[data-lib="15886"] .-w-logo{max-width: 280px;
	max-height: 60px;
	padding: 0;
	box-sizing: border-box;
	z-index: 9999;}[data-lib="15886"] .-w-logo img{max-height:60px;
	width: auto;}[data-lib="15886"] .-w-head_middle{margin: 0;}[data-lib="15886"] .-w-gnav{display: none;
	margin: 0;}[data-lib="15886"] .-w-tel-wrap{margin-left:inherit;
	margin-top: inherit;
	width:70%;
	margin:0 auto;}[data-lib="15886"] .-w-sp-menu-btn label{width: 60px;
	height: 60px;
	top: 0px;}[data-lib="15886"] .-w-sp-menu-btn label::before{top: 60px;}[data-lib="15886"] nav#-w-hamburger_menu{height:100vh;
	top: -2px;
	padding: 100px 0 10vh;
	justify-content: flex-start;}[data-lib="15886"] [id="navcheck"]:checked + label .-w-burger{right: 0px;}[data-lib="15886"] .-w-translate_li{margin:0 10px 0 0;}[data-lib="15886"] .-w-translate_li .-w-translate{right: 0;
	top: 0;
	z-index: 9999;}[data-lib="15886"] nav#-w-hamburger_menu > ul{margin-bottom: 0px;
	max-height: 65vh;}[data-lib="15886"] .-w-sp nav#-w-hamburger_menu .-w-head_middle .-w-tel{left: 0;}[data-lib="15886"] .-w-padding_active{padding-left:9%;}}/*widget:c68be05e-b65d-408e-99a4-5ebc1cacf889*/[data-lib="1998"][data-pattern="3"] .pace{-webkit-pointer-events: none;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	position: fixed;
	z-index: 20002;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	transition: all 1s ease-in-out;
	transition-delay: .5s;}[data-lib="1998"][data-pattern="3"] .pace.pace-inactive{z-index: 20001;
	opacity: 0;
	visibility: hidden;}[data-lib="1998"][data-pattern="3"] .pace .pace-progress{position: fixed;
	z-index: 2000;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	-webkit-transition: width 1s;
	-moz-transition: width 1s;
	-o-transition: width 1s;
	transition: width 1s;
	background-color:#;
	background-color:#ffffff;
	background-size: 200px auto;
	width: 100% !important;}[data-lib="1998"][data-pattern="3"] .pace .pace-progress:before{content: "";
	position: absolute;
	transition: all 1s cubic-bezier(1,.05,.58,.9);
	transition-delay: .3s;
	background: #ffffff;
	background: #ffffff;}[data-lib="1998"][data-pattern="3"] .pace.pace-inactive .pace-progress:before{opacity: 0;}[data-lib="1998"][data-pattern="3"] .pace-progress-inner{position: absolute;
	transition: all 1s cubic-bezier(1,.05,.58,.9);
	transition-delay: .3s;
	background-color:#既存サイト参照;
	background: #ffffff;
	background: #ffffff;}[data-lib="1998"][data-pattern="3"] .pace.pace-inactive .pace-progress .pace-progress-inner{opacity: 0;}[data-lib="1998"][data-pattern="3"] .pace .pace-progress:after{display: inline-block;
	position: absolute;
	top: 33%;
	left: 50%;
	content: attr(data-progress-text);
	padding-top: 200px;
	line-height: 1;
	text-align: center;
	transition: all 1s ease-in-out;
	transform: translate(-50%);
	background: url(/_img/ja/resource/9/logo/) center center no-repeat;
	background-size: inherit;
	font-family: "Helvetica Neue", sans-serif;
	font-weight: 200;
	font-size: 2em;
	width: 100%;
	color: inherit;
	color: inherit;}[data-lib="1998"][data-pattern="3"].logo_off .pace .pace-progress:after{display: inline-block;
	position: absolute;
	top: 33%;
	left: 50%;
	content: attr(data-progress-text);
	padding-top: 200px;
	line-height: 1;
	text-align: center;
	transition: all 1s ease-in-out;
	transform: translate(-50%);
	background: none;
	font-family: "Helvetica Neue", sans-serif;
	font-weight: 200;
	font-size: 2em;
	width: 100%;}[data-lib="1998"][data-pattern="3"] .pace.pace-inactive .pace-progress:after{transform: translate(-50%, 100%);}[data-lib="1998"][data-pattern="3"].bg_既存サイト参照,[data-lib="1998"][data-pattern="3"] 
    .bg_既存サイト参照 .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_既存サイト参照 .pace-progress-inner{background-color:#既存サイト参照;}[data-lib="1998"][data-pattern="3"].bg_black .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_black .pace-progress-inner{background-color:#000000;}[data-lib="1998"][data-pattern="3"].bg_white .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_white .pace-progress-inner{background-color:#ffffff;}[data-lib="1998"][data-pattern="3"].bg_gray .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_gray .pace-progress-inner{background-color:#808080;}[data-lib="1998"][data-pattern="3"].bg_yellow .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_yellow .pace-progress-inner{background-color:#ffff00;}[data-lib="1998"][data-pattern="3"].bg_red .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_red .pace-progress-inner{background-color:#ff0000;}[data-lib="1998"][data-pattern="3"].bg_blue .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_blue .pace-progress-inner{background-color:#0000ff;}[data-lib="1998"][data-pattern="3"].bg_green .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_green .pace-progress-inner{background-color:#008000;
	background-color:#008000;}[data-lib="1998"][data-pattern="3"].bg_既存サイト参照 .pace .pace-progress:before,[data-lib="1998"][data-pattern="3"] 
    .bg_既存サイト参照 .pace-progress-inner{background-color:#既存サイト参照;}[data-lib="1998"][data-pattern="1"]{position: fixed;
	top:0;
	left: 0;
	z-index:10000000;
	width:100vw;
	height:100%;
	background-color:#ffffff;
	transition: top 1.5s ease;
	font-size: 34px;}[data-lib="1998"][data-pattern="1"] *{box-sizing: border-box;}[data-lib="1998"][data-pattern="1"] .opening_logo{width: '.resource('loading','logo_size').'px;}[data-lib="1998"][data-pattern="1"] .-w-cl{text-align: center;}[data-lib="1998"][data-pattern="1"] .-w-catch ,[data-lib="1998"][data-pattern="1"]  .-w-logo{position: fixed;
	width:100vw;
	height:100%;
	left:0;
	top:0;
	line-height: 100%;
	opacity:0;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;}[data-lib="1998"][data-pattern="1"] .-w-screen{width:100vw;
	height:100%;
	background-color:#既存サイト参照;
	position: absolute;
	left: 0;
	top: 100%;}[data-lib="1998"][data-pattern="1"] .-w-catch span ,[data-lib="1998"][data-pattern="1"]  .-w-logo img{display: inline-block;
	vertical-align: middle;}[data-lib="1998"][data-pattern="1"] .-w-logo img{width: 200px;}[data-lib="1998"][data-pattern="1"].domloaded .-w-catch{transition: opacity 0.5s ease .5s;
	opacity: 1;}[data-lib="1998"][data-pattern="1"].domloaded.showlogo .-w-catch{transition: opacity 0.5s ease 1.0s;
	opacity: 0;}[data-lib="1998"][data-pattern="1"].domloaded.showlogo .-w-logo{transition: opacity 0.5s ease 2.0s;
	opacity: 1;}[data-lib="1998"][data-pattern="1"].loaded{top:-200%;}[data-lib="1998"][data-pattern="1"].loaded .-w-catch ,[data-lib="1998"][data-pattern="1"].loaded  .-w-logo{transition: opacity 0.5s ease 0s!important;
	opacity: 0!important;}[data-lib="1998"][data-pattern="1"].loaded .-w-cl{transition: opacity 0.5s ease 2.0s;
	opacity: 0;}[data-lib="1998"][data-pattern="2"]{overflow-y: scroll;
	overflow-x: hidden;
	background-color:#既存サイト参照;}[data-lib="1998"][data-pattern="2"] .pace-done{background-color:#既存サイト参照;}[data-lib="1998"][data-pattern="2"] #pace{background-color:#既存サイト参照;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	-webkit-transition: transform .5s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	transition: transform .5s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	z-index: 10000;}[data-lib="1998"][data-pattern="2"] #pace .pace-logo{opacity: 1;
	-webkit-transition: opacity 1s .3s, transform .5s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	transition: opacity 1s .3s, transform .5s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	width: 100%;}[data-lib="1998"][data-pattern="2"] #pace .pace-logo img{display: block;
	margin: 0 auto;
	width: 200px;}[data-lib="1998"][data-pattern="2"] #pace .pace-logo.pace-hide{//opacity: 0;}[data-lib="1998"][data-pattern="2"] #pace .pace-progress{background-color:#ffffff;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 0;
	z-index: 1;}[data-lib="1998"][data-pattern="2"] #pace.pace-transition-1 .pace-progress{-webkit-transition: width 1s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	transition: width 1s cubic-bezier(0.95, 0.05, 0.795, 0.035);}[data-lib="1998"][data-pattern="2"] #pace.pace-transition-2 .pace-progress{-webkit-transition: width .3s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	transition: width .3s cubic-bezier(0.95, 0.05, 0.795, 0.035);}[data-lib="1998"][data-pattern="2"] .pace-activity{align-items: center;
	display: flex;
	height: 100%;
	left: 0;
	justify-content: center;
	overflow: hidden;
	position: absolute;
	top: 0;
	-webkit-transition: transform .5s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	transition: transform .5s cubic-bezier(0.95, 0.05, 0.795, 0.035);
	width: 100%;
	z-index: 2;}[data-lib="1998"].loader_ .pace-progress,[data-lib="1998"] 
.loader_{color:#;}[data-lib="1998"].loader_black .pace-progress,[data-lib="1998"] 
.loader_black{color:#000000;}[data-lib="1998"].loader_white .pace-progress,[data-lib="1998"] 
.loader_white{color:#ffffff;}[data-lib="1998"].loader_gray .pace-progress,[data-lib="1998"] 
.loader_gray{color:#808080;}[data-lib="1998"].loader_yellow .pace-progress,[data-lib="1998"] 
.loader_yellow{color:#ffff00;}[data-lib="1998"].loader_red .pace-progress,[data-lib="1998"] 
.loader_red{color:#ff0000;}[data-lib="1998"].loader_blue .pace-progress,[data-lib="1998"] 
.loader_blue{color:#0000ff;}[data-lib="1998"].loader_green .pace-progress,[data-lib="1998"] 
.loader_green{color:#008000;}[data-lib="1998"]{background-color:#既存サイト参照;}[data-lib="1998"] .-w-catch span{font-size: 3.4rem;}@media all and (orientation: landscape){[data-lib="1998"] .pace-progress-inner{top: 0;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: skewX(-45deg);}[data-lib="1998"] .pace.pace-inactive .pace-progress .pace-progress-inner{transform: translateX(100%) skewX(-45deg);}[data-lib="1998"] .pace .pace-progress:before{top: 0;
	left: -50%;
	width: 102%;
	height: 100%;
	transform: skewX(-45deg);}[data-lib="1998"] .pace.pace-inactive .pace-progress:before{transform: translateX(-100%) skewX(-45deg);}}@media (max-width: 640px){[data-lib="1998"] .-w-catch span{font-size: 2.4rem;}}/*widget:fa0b1921-1d52-4346-aa02-e89bfc6a1bee*/[data-lib="35719"] *{box-sizing:border-box;}[data-lib="35719"]{padding: 5.0rem 0;
	position: relative;
	top:0;
	z-index: 10;
	background: #f5f5f5;
	background:#f5f5f5;}[data-lib="35719"] .-w-wrapper{margin: 0px auto;}[data-lib="35719"] .-w-ttl_wrap{margin: 0 0 16px;}[data-lib="35719"] .text_wrap_title{border-bottom: 1px solid #d3d0ca;}[data-lib="35719"] h2.-w-general.-w-font_title3{display: block;
	font-size:3.0rem;
	font-weight: 600;}[data-lib="35719"] h2.-w-general.-w-font_title3:after{content: none;}[data-lib="35719"] h3.-w-general.-w-font_title3{text-align: left;
	margin-bottom: 15px;
	border-bottom: none;}[data-lib="35719"] h3.-w-general.-w-font_title3:after{content: none;}[data-lib="35719"] .flex{display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-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;
	margin: auto;}[data-lib="35719"] .flex .text_wrap{width: 58%;
	margin-left: auto;
	padding: 30px 50px;
	background: rgb(255 255 255 / 0.7);}[data-lib="35719"] .flex .text_wrap .text{padding: 10px 0;}[data-lib="35719"] .flex .image_wrap{width: 40%;
	padding: 0 0 40px 40px;}[data-lib="35719"] .flex .image_wrap img{max-width: 100%;
	box-shadow: -20px 20px 0 0 rgba(90,191,237,0.7);
	object-fit: contain;
	margin: 0 auto;
	height: 300px;
	min-width: 422px;
	width: 100%;
	object-fit: cover;}[data-lib="35719"] .flex:nth-child(n + 2){margin-top: 50px;}[data-lib="35719"] .-w-more_btn{margin-top: 2rem;}[data-lib="35719"] .-w-more_btn a{padding: 10px 15px;}[data-lib="35719"] .flex:nth-child(even){margin-top: 50px;
	flex-direction: row-reverse;}@media (max-width: 768px){[data-lib="35719"]{padding: 5.0rem 0;}[data-lib="35719"] .flex:nth-child(n + 2){margin-top: 50px;}[data-lib="35719"] .flex .text_wrap{width: 100%;
	padding: 10px 25px;}[data-lib="35719"] .flex .image_wrap{width: 100%;
	padding: 0 0 40px 20px;}[data-lib="35719"] .flex:nth-child(even){-webkit-box-orient: vertical;
	-webkit-box-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;}[data-lib="35719"] h2.-w-general{text-align: left;
	font-size: 6vw;}[data-lib="35719"] h3.-w-general{font-size: 5vw;
	line-height: 1.5;}[data-lib="35719"] span.-w-general{font-size: 6.9vw;}}@media (max-width: 768px){[data-lib="35719"]{padding: 5.0rem 0;}[data-lib="35719"] .flex:nth-child(n + 2){margin-top: 50px;}[data-lib="35719"] .flex .text_wrap{width: 100%;
	padding: 10px 25px;}[data-lib="35719"] .flex .image_wrap{width: 100%;
	padding: 0 0 40px 20px;}[data-lib="35719"] .flex:nth-child(even){-webkit-box-orient: vertical;
	-webkit-box-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;}[data-lib="35719"] h2.-w-general{text-align: left;
	font-size: 6vw;}[data-lib="35719"] h3.-w-general{font-size: 5vw;
	line-height: 1.5;}[data-lib="35719"] span.-w-general{font-size: 6.9vw;
	text-align: center;}[data-lib="35719"] span.-w-general.-w-font_en{background: url(/_img/ja/resource/9191/icon_b/) no-repeat center bottom;
	white-space: nowrap;}}[data-instance="40752"]{background:url(/_img/ja/cms/40752/bg_image/___/session//);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;}[data-instance="40752"]::before{content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background:rgba(90,191,237,0.05);
	z-index: -1;}[data-instance="40752"] .flex .image_wrap img{height: 300px;}/*instance mediea*/@media (max-width: 768px){[data-instance="40752"] .flex .image_wrap img{height: 200px;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40752"] .flex .image_wrap img{height: 200px;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40752"] .flex .image_wrap img{height: 200px;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40752"] .flex .image_wrap img{height: 200px;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40752"] .flex .image_wrap img{height: 200px;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40752"] .flex .image_wrap img{height: 200px;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40752"] .flex .image_wrap img{height: 200px;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40752"] .flex .image_wrap img{height: 200px;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40752"] .flex .image_wrap img{height: 200px;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40752"] .flex .image_wrap img{height: 200px;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40752"] .flex .image_wrap img{height: 200px;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40752"] .flex .image_wrap img{height: 200px;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40752"] .flex .image_wrap img{height: 200px;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40752"] .flex .image_wrap img{height: 200px;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40752"] .flex .image_wrap img{height: 200px;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40752"] .flex .image_wrap img{height: 200px;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40752"] .flex .image_wrap img{height: 200px;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40752"] .flex .image_wrap img{height: 200px;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40752"] .flex .image_wrap img{height: 200px;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40752"] .flex .image_wrap img{height: 200px;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40752"] .flex .image_wrap img{height: 280px;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40752"] .flex .image_wrap img{height: 280px;}}/*widget:85451ae8-e7c3-4e6f-aca6-3455709e725c*/@keyframes w-15891-fade{
0% {
    transform: scale(1);
}
100% {
    transform: scale(1.1);
}}@keyframes w-15891-fade{
0% {
    transform: scale(1);
}
100% {
    transform: scale(1.1);
}}@keyframes w-15891-fade{
0% {
    transform: scale(1);
}
100% {
    transform: scale(1.1);
}}@keyframes w-15891-fade{
0% {
    transform: scale(1);
}
100% {
    transform: scale(1.1);
}}[data-lib="15891"]{position: relative;}[data-lib="15891"] .swiper-wrapper{height: 100vh;}[data-lib="15891"] .-w-nav_wrapper{padding:10px 0;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	top: 60%;
	transform: translateY(-50%);
	z-index: 9999;
	width: 100%;}[data-lib="15891"] .-w-button{position: relative;
	width: 100%;
	height: 100%;}[data-lib="15891"] .-w-button > p{text-align: center;
	margin-top:10px;}[data-lib="15891"] .swiper-button-prev,[data-lib="15891"] 
.swiper-button-next{width: 40px;
	height: 40px;
	margin-top:-30px;
	background-size:100%;
	z-index: 9999;
	position: absolute;
	outline: none;}[data-lib="15891"] .swiper-button-prev:before,[data-lib="15891"] 
.swiper-button-next:before{content: "";
	display: block;
	width: 20px;
	height: 20px;
	position: absolute;
	top: 14px;
	left: 17px;}[data-lib="15891"] .swiper-button-prev{background: none;
	transform: rotate(-45deg);
	left:0;}[data-lib="15891"] .swiper-button-prev:before{border-left: 2px solid rgba(180,180,180,0.7);
	border-top: 2px solid rgba(180,180,180,0.7);}[data-lib="15891"] .swiper-button-next{background: none;
	transform: rotate(135deg);
	right: 0;}[data-lib="15891"] .swiper-button-next:before{border-left: 2px solid rgba(180,180,180,0.7);
	border-top: 2px solid rgba(180,180,180,0.7);}[data-lib="15891"] .swiper-slide{z-index: 1;
	overflow: hidden;}[data-lib="15891"] .swiper-slide-active{z-index: 30;}[data-lib="15891"] .swiper-slide-active > img,[data-lib="15891"] 
.swiper-slide-duplicate-active > img,[data-lib="15891"] 
.swiper-slide-prev > img{animation: w-15891-fade 10s linear 0s 1 normal both;}[data-lib="15891"] .-w-bg-reverse{transform: scale(-1, 1);
	filter: FlipH;
	-ms-filter: "FlipH";
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;}[data-lib="15891"] .swiper-pagination-bullet{display: inline-block;
	width: 40px;
	height: 20px;
	margin: 0 5px 0 0;
	cursor: pointer;
	transition: 0.3s ease-in-out;
	background: none;
	border-radius: 0;}[data-lib="15891"] .swiper-pagination-bullet-active{width: 60px;
	background: none;}[data-lib="15891"] .swiper-pagination-bullet:before{content: "";
	display: block;
	width: 100%;
	height: 2px;
	margin-top: 9px;
	transition: 0.3s ease-in-out;
	background: rgba(180,180,180,0.5);}[data-lib="15891"] .swiper-pagination-bullet-active:before{background: rgba(180,180,180,0.9);}[data-lib="15891"] .-w-scroll_wrap{width: 50px;
	height: 50px;
	position: absolute;
	bottom: 30px;
	left: calc(50% - 25px);
	z-index: 15;}[data-lib="15891"] .-w-scroll_wrap a{display: block;
	width: 100%;
	height: 100%;
	text-indent: -10000px;
	outline: none;
	line-height: 1px;
	font-size: 1px;}[data-lib="15891"] .-w-scroll_wrap a:before{content: "";
	display: block;
	width: 30px;
	height: 30px;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	left: 9.5px;
	border-right: 2px solid rgba(180,180,180,0.7);
	border-bottom: 2px solid rgba(180,180,180,0.7);}[data-lib="15891"] .-w-box-main-image__wrp-txt-wrp{position: absolute;
	top: 50%;
	right: 50%;
	margin-right: -500px;
	width:39.41%;
	width: 1000px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 100;
	text-align: center;
	transition: opacity 0.3s;
	transform: translateY(-50%);}[data-lib="15891"] .-w-top-main-txt01{font-size:5.5rem;
	font-size: 4.5vw;
	font-size: 6rem;
	position: relative;
	line-height: 1.4;
	display: block;
	color:#6bc8f2;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
	margin-bottom: 2.0rem;
	letter-spacing: 0.2rem;}[data-lib="15891"] .-w-top-main-txt02{font-size:3.6rem;
	font-size: 1.35vw;
	font-size: 3.0rem;
	position: relative;
	color:#6bc8f2;
	text-shadow: 0 0 5px rgba(0,0,0,0.3);}@media screen and (max-width: 1023px){[data-lib="15891"] .swiper-wrapper{height: 80vh;}[data-lib="15891"] .-w-button > p{margin-top:13px;}[data-lib="15891"] .-w-button > p > img{width:43px;}[data-lib="15891"] .swiper-button-prev,[data-lib="15891"] 
.swiper-button-next{margin-top:-20.5px;
	background-size:contain;
	width: 50px;
	height: 50px;}[data-lib="15891"] .swiper-slide{overflow: hidden;}[data-lib="15891"] .swiper-slide img{height:100%;
	object-fit: cover;
	object-position: center;
	display: block;}[data-lib="15891"] .-w-nav_wrapper{top: 50%;}[data-lib="15891"] .-w-box-main-image__wrp-txt-wrp{width: 95%;
	margin: 0 auto;
	right: 0;
	left: 0;}[data-lib="15891"] .-w-top-main-txt01{font-size: 6.5vw;}[data-lib="15891"] .-w-top-main-txt02{font-size: 3.8vw;}}@media (min-width: 769px){[data-lib="15891"] .swiper-slide img{width: 100%;
	height: 100%;
	object-fit: cover;}}[data-instance="40593"] .-w-bg-reverse40594{display: none;}[data-instance="40593"] .-w-bg-reverse40595{display: none;}[data-instance="40593"] .-w-bg-reverse40596{display: none;}/*instance mediea*/@media (max-width: 768px){[data-instance="40593"] .-w-bg40594  img{object-position: 50%!important;}[data-instance="40593"] .-w-bg40595  img{object-position: 50%!important;}[data-instance="40593"] .-w-bg40596  img{object-position: 80%!important;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40593"] .-w-bg40594 img{object-position: 50%;}[data-instance="40593"] .-w-bg40595 img{object-position: 50%;}[data-instance="40593"] .-w-bg40596 img{object-position: 80%;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40593"] .-w-bg40594  img{object-position: 50%!important;}[data-instance="40593"] .-w-bg40595  img{object-position: 50%!important;}[data-instance="40593"] .-w-bg40596  img{object-position: 80%!important;}}/*instance mediea*/@media (max-width: 768px){[data-instance="40593"] .-w-bg40594 img{object-position: 50%;}[data-instance="40593"] .-w-bg40595 img{object-position: 50%;}[data-instance="40593"] .-w-bg40596 img{object-position: 80%;}}/*widget:ae2bc0d8-aacc-43a7-a23e-e2505b265b58*/[data-lib="15159"]{position: relative;
	top:0;
	z-index: 10;
	background: #f5f5f5;
	background:#f5f5f5;
	padding:3.0rem 0;}[data-lib="15159"] *{box-sizing:border-box;}[data-lib="15159"] ul{list-style: none;}[data-lib="15159"] .-w-inner{color:#313131;
	color:rgba(35,24,21,1);
	padding: 3rem 0;}[data-lib="15159"] .-w-3column_list ul{box-sizing: border-box;
	display: -webkit-box;
	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: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;}[data-lib="15159"] .-w-3column_list ul li{width: calc(100% / 3);}[data-lib="15159"] .-w-3column_list ul li a{position: relative;
	display: block;
	width: 100%;
	overflow: hidden;}[data-lib="15159"] .-w-3column_list ul li a:before{position: absolute;
	content: "";
	top: 0%;
	width: 100%;
	height: 100%;
	opacity: 1;
	transition: all .5s ease-in-out;
	z-index: 2;
	background-color: rgba(0,0,0,.3);
	background-color:rgba(35,24,21,0.2);
	color: #fff;
	color:rgba(35,24,21,1);}[data-lib="15159"] .-w-3column_list ul li a:hover:before{transition: background-color 0.4s;
	background-color: rgba(0,0,0, 0.1);}[data-lib="15159"] .-w-3column_list ul li img{position: relative;
	display: block;
	width: 100%;
	height: auto;
	transition: all .5s ease-in-out;
	z-index: 1;}[data-lib="15159"] .-w-3column_list ul li .-w-textArea{display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	width: 100%;
	padding:0 6%;
	min-height: 140px;
	margin: 0 auto;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: transparent;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	z-index: 2;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;}[data-lib="15159"] .-w-3column_list ul li .-w-box{display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	padding: 20px;
	background:rgba(245,245,245,0.8);}[data-lib="15159"] .-w-3column_list ul li .-w-ttl{display: inline-block;
	margin: 0;
	padding: 30px 20px 20px;
	opacity: 1;
	font-size: 1.1vw;
	width: 100%;
	text-align: center;
	color: #fff;
	font-weight: 500;
	color:rgba(35,24,21,1);}[data-lib="15159"] .-w-3column_list ul li .-w-text{margin:0 auto;
	font-weight: 500;
	padding: 0 20px 5%;
	white-space: initial;
	font-size: 1vw;
	line-height: 1.75;
	width: 100%;
	color: #fff;
	color:rgba(35,24,21,1);}[data-lib="15159"] .-w-3column_list ul li .-w-icon.icon-arrow{display: block;
	bottom:0;}[data-lib="15159"] .-w-3column_list ul li .-w-icon.icon-arrow:before{font-size: 3.0rem;
	content: "\e901";
	opacity: 0;
	transition: all 0.2s cubic-bezier(0.5, 0, 0.5, 1);
	font-size: 3.0rem;}[data-lib="15159"] .-w-3column_list ul li a:hover .-w-icon.icon-arrow:before{margin-left: 5px;
	text-indent: 10px;
	opacity: 1;
	transition: all 0.2s cubic-bezier(0.5, 0, 0.5, 1);
	color:rgba(35,24,21,1);}[data-lib="15159"] .sa{opacity: 0;
	transition: all .5s ease-in-out;}[data-lib="15159"] .sa.show{opacity: 1;
	transform: none;}[data-lib="15159"] .sa--up{transform: translate(0, 100px);}@media (max-width: 1023px){[data-lib="15159"] .-w-3column_list ul li .-w-box{padding: 6%;}[data-lib="15159"] .-w-3column_list ul li .-w-ttl{padding:5% 3% 3%;}[data-lib="15159"] .-w-3column_list ul li .-w-icon.icon-arrow:before{font-size: 2rem;}}@media (max-width: 768px){[data-lib="15159"]{padding: 3rem 6%;}[data-lib="15159"] .-w-inner{width: 100%;}[data-lib="15159"] .-w-ttl_wrap{padding:0;}[data-lib="15159"] .-w-section_inner{padding:0;}[data-lib="15159"] .-w-3column_list{margin:0;}[data-lib="15159"] .-w-3column_list ul{-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;}[data-lib="15159"] .-w-3column_list ul li{width:100%;}[data-lib="15159"] .-w-3column_list ul li .-w-ttl{font-size: 3.2vw;}[data-lib="15159"] .-w-3column_list ul li .-w-text{font-size: 3.2vw;
	font-weight: 400;
	margin: 4% auto;}[data-lib="15159"] .-w-3column_list ul li .-w-icon.icon-arrow:before{opacity: 1;
	color:rgba(35,24,21,1);
	font-size:3rem;}[data-lib="15159"] .-w-3column_list ul li:not(:first-child){display: none;}[data-lib="15159"] span.-w-general.-w-font_en{background: url(/_img/ja/resource/9191/icon_b/) no-repeat center bottom !important;}}/*instance mediea*/@media (max-width: 1023px){}[data-instance="40725"]{background:url(/_img/ja/cms/40725/bg_image/___/session//) no-repeat center center / cover;}[data-instance="40725"]::before{content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background:rgba(90,191,237,0.05);
	z-index: -1;}/*instance mediea*/@media (max-width: 1023px){[data-instance="40725"]::before{content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background:rgba(90,191,237,0.05);
	z-index: -1;}}/*instance mediea*/@media (max-width: 1023px){}/*widget:142fbe87-7b5e-4dcb-be68-9541a8352955*/[data-lib="1400"]{padding:3.0rem 5.0rem;
	position: relative;
	top:0;
	z-index: 10;
	background: #f5f5f5;
	background:#f5f5f5;}[data-lib="1400"] *{box-sizing:border-box;}[data-lib="1400"] .-w-inner{color:#313131;
	color:rgba(35,24,21,1);
	padding:3.0rem 0;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-direction:column;
	-webkit-flex-direction:column;
	flex-direction:column;}[data-lib="1400"] .-w-inner .-w-img{text-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	max-width: 80%;
	margin: 0 auto;}[data-lib="1400"] .-w-section_inner{max-width: 100%;
	width: 1190px;
	padding: 0 5%;}[data-lib="1400"] .-w-section_inner .-w-ttl h4.-w-general{position: absolute;
	top: 50%;
	left: 50%;
	display: inline-block;
	margin: 0 auto;
	padding: 0;
	background: transparent;
	transform: translate(-50%,270px);
	font-size: 1.8rem;
	opacity: 0;
	width: 90%;
	text-align: center;
	transition: all .5s ease-in-out;
	z-index: 5;
	color:#fff;
	color:rgba(255,255,255,1);}[data-lib="1400"] .-w-section_inner a:hover .-w-ttl h4.-w-general{opacity: 1;
	transform: translate(-50%,-50%);
	transition-delay: .1s;}[data-lib="1400"] .-w-faq_list li{margin: 0 auto 20px;}[data-lib="1400"] .-w-faq_list li .-w-q-cont{padding: 24px 15px 22px 110px;
	margin-bottom: 1px;
	font-weight: bold;
	font-size: 2rem;
	line-height: 1.2;
	position: relative;
	border: none;
	background: #ffffff;
	background:#f5f5f5;
	color: #313131;
	color:#231815;
	background-color:hsla(0,0%,91%,1);}[data-lib="1400"] .-w-faq_list li .-w-q-cont:before{content: "";
	position: absolute;
	left: 0;
	top: 0;
	border: none;
	width: 8rem;
	height: 100%;
	color:#fff;
	color:#ffffff;
	background-color: #EA7C5D;
	background-color:#5abfed;}[data-lib="1400"] .-w-faq_list li .-w-a-cont{padding: 24px 15px 22px 110px;
	min-height: 25px;
	position: relative;
	border: none;
	font-size: 1.6rem;
	background: #ffffff;
	background:#f5f5f5;
	color: #313131;
	color:#231815;
	background-color:hsla(0,0%,100%,1);}[data-lib="1400"] .-w-faq_list li .-w-a-cont:before{content: "";
	position: absolute;
	left: 0;
	top: 0;
	border: none;
	width: 80px;
	height: 100%;
	color:#fff;
	background: #313131;
	background: hsla(12.86,25%,75%,1);
	background: #ffffff;
	background:#231815;
	color: #313131;
	color:#f5f5f5;}[data-lib="1400"] .-w-faq_list li .-w-q-cont:after,[data-lib="1400"] .-w-faq_list li  .-w-a-cont:after{position: absolute;
	left: 0;
	top: 50%;
	margin-top: -20px;
	font-size: 4rem;
	line-height: 1;
	width: 8rem;
	text-align: center;}[data-lib="1400"] .-w-faq_list li .-w-q-cont:after{content: "Q";
	color: #ffffff;
	color:#ffffff;
	top: 55%;}[data-lib="1400"] .-w-faq_list li .-w-a-cont:after{content: "A";
	color: #ffffff;
	color:#f5f5f5;}@media (max-width: 768px){[data-lib="1400"]{padding: 3rem 0;}[data-lib="1400"] .-w-inner{width:100%;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	padding: 3rem 6%;
	margin:0 auto;}[data-lib="1400"] .-w-section_inner{padding:0;}[data-lib="1400"] .-w-faq_list li:nth-of-type(n+2){display: none;}[data-lib="1400"] span.-w-general.-w-font_en{background: url(/_img/ja/resource/9191/icon_b/) no-repeat center bottom !important;}}[data-instance="40751"]{background:url(/_img/ja/cms/40751/bg_image/___/) no-repeat center center / cover;}[data-instance="40751"]::before{content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background:rgba(90,191,237,0.05);
	z-index: -1;}/*widget:2f47861f-24a4-4b40-beb8-2860decd3cac*/[data-lib="1074"]{padding: 3.0rem 0;
	position: relative;
	top:0;
	z-index: 10;
	background-color : #f5f5f5;
	background-color:#f5f5f5;}[data-lib="1074"] *{box-sizing:border-box;}[data-lib="1074"] .-w-content_wrap_in{display:-webkit-box;
	display:-ms-flexbox;
	display:flex;}[data-lib="1074"] .-w-content_wrap:nth-child(2n + 1) .-w-content_wrap_in{-ms-flex-direction:row-reverse;
	-webkit-flex-direction:row-reverse;
	flex-direction:row-reverse;}[data-lib="1074"] .-w-inner{padding: 3rem;
	color:#313131;
	color:rgba(35,24,21,1);}[data-lib="1074"] .-w-left,[data-lib="1074"] 
.-w-right{width: 50%;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-direction:column;
	-webkit-flex-direction:column;
	flex-direction:column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;}[data-lib="1074"] .-w-left{display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;}[data-lib="1074"] .-w-left a{width:100%;
	height:100%;
	display: block;}[data-lib="1074"] .-w-right{color:#313131;
	color:#231815;}[data-lib="1074"] .-w-right .-w-textArea{width: calc(100% - 100px);
	padding: 5.0rem 0;
	text-align: center;}[data-lib="1074"] .-w-ttl{margin-bottom: 3.0rem;
	font-weight: 600;}[data-lib="1074"] .-w-text{margin-bottom: 3.0rem;}[data-lib="1074"] .-w-more_btn{margin-top:3.0rem;}[data-lib="1074"] .-w-right a{display: inline-block;
	min-width: 200px;
	position: relative;
	text-decoration: none;}[data-lib="1074"] .-w-right a span{display: block;
	text-align: center;
	color:#6bc8f2;
	font-size: 1.6rem;}[data-lib="1074"] .-w-right a:before{content: "";
	display: block;
	position: absolute;
	top: 25px;
	left: 0px;
	width: 100%;
	height: 2px;
	background: #fff;
	background:rgba(107,200,242,1);}[data-lib="1074"] .-w-right a:after{content: "";
	display: block;
	position: absolute;
	top: 11px;
	left: 165px;
	right: 0px;
	width: 36px;
	height: 20px;
	border: 2px solid;
	border-color: transparent;
	border-bottom-color:rgba(107,200,242,1);
	transform: rotate(-135deg);}[data-lib="1074"] .-w-right a:hover:before{transition: 0.7s;
	left: 50px;}[data-lib="1074"] .-w-right a:hover:after{transition: 0.7s;
	right: 0;
	left: 215px;}@media (max-width: 768px){[data-lib="1074"] .-w-inner{padding: 3rem 6%;}[data-lib="1074"] [data-w-width="1"]{padding:3rem 0;}[data-lib="1074"] .-w-content_wrap_in{-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;}[data-lib="1074"] .-w-content_wrap:nth-child(2n + 1) .-w-content_wrap_in{-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;}[data-lib="1074"] .-w-left,[data-lib="1074"] 
.-w-right{width: 100%;}[data-lib="1074"] .-w-left{height:400px;}[data-lib="1074"] .-w-content_wrap .-w-right .-w-textArea{width: 100%;
	padding: 3.0rem 0;}[data-lib="1074"] .-w-ttl{font-size:4vw;}[data-lib="1074"] .-w-text{text-align:left;}[data-lib="1074"] span.-w-general.-w-font_en{background: url(/_img/ja/resource/9191/icon_b/) no-repeat center bottom !important;}}[data-instance="40602"] .-w-left.id_815{background-image:url(/_img/ja/article/815/image/___/session//);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;}/*widget:629c238e-eebf-4c6b-a785-57f4bb882260*/[data-lib="4084"] *{box-sizing:border-box;}[data-lib="4084"]{padding:5.0rem 0;
	position: relative;
	top:0;
	z-index: 10;
	background:#f5f5f5;}[data-lib="4084"] .-w-section_inner{position: relative;}[data-lib="4084"] .-w-bg_white{background:#ffffff;
	color:#231815;
	padding: 2em 0 0;}[data-lib="4084"] .-w-flex_box4{box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 0 5%;}[data-lib="4084"] .-w-flex_box4 a{color:#231815;}[data-lib="4084"] section.-w-section_inner li{margin-left: 20px;
	width: 25%;}[data-lib="4084"] .-w-title{text-decoration: none;
	padding: 0 0 1rem 0;
	color:#5abfed;
	font-weight: bold;}[data-lib="4084"] .-w-date{margin-bottom: 1rem;
	color: #313131;
	color: hsla(12.86,25%,19%,1);}[data-lib="4084"] a{text-decoration: none;}[data-lib="4084"] .-w-text{position: relative;
	color: #313131;
	color: hsla(12.86,25%,19%,1);}[data-lib="4084"] .-w-text:before{content: "";
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100%;
	height: 1px;
	background: hsla(12.86,25%,19%,1);}[data-lib="4084"] .-w-text:after{content: "";
	position: absolute;
	bottom: -12px;
	right: 0;
	width: 7px;
	height: 5.7px;
	border-top: 1px solid #231815;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	border-color: hsla(12.86,25%,19%,1);}@media (max-width: 768px){[data-lib="4084"] .-w-inner{width: calc(100% - 12%);}[data-lib="4084"] .-w-bg_white{padding: 2em;}[data-lib="4084"] .-w-flex_box4{flex-wrap: wrap;
	padding: 0;}[data-lib="4084"] section.-w-section_inner li{width: 100%;
	margin-left: 0;}[data-lib="4084"] h2.-w-general{margin-bottom: 10px;
	text-align: left;}[data-lib="4084"] h3.-w-general{width: calc(100% - 12%);
	text-align: left;
	margin: 0 auto 5rem;}[data-lib="4084"] section.-w-section_inner li:nth-child(n+2){display: none;}[data-lib="4084"] .-w-text:after{width: 7px;
	height: 6.7px;}[data-lib="4084"] span.-w-general.-w-font_en{background: url(/_img/ja/resource/9191/icon_b/) no-repeat center bottom !important;}}[data-instance="40605"]{background:url(/_img/ja/cms/40605/bg_image/___/session//);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;}[data-instance="40605"]:before{content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background:rgba(90,191,237,0.05);
	z-index: -1;}/*widget:cf7d3ee0-7293-4999-8be0-e9781d9ce3c6*/[data-lib="1170"]{width: 100%;
	height: 400px;
	position: relative;
	z-index: 100;
	background-attachment: fixed;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-image:url(/_img/ja/resource/9/parallax_common_bg/);}@media (max-width: 1023px){[data-lib="1170"]{display:none;}}/*widget:1bf5a7b9-d291-4eec-9bf1-eea5cc081f42*/[data-lib="4492"]{padding: 5.0rem 0;
	position: relative;
	box-sizing: border-box;
	background: #f5f5f5;
	background:#f5f5f5;}[data-lib="4492"] [data-w-width="0"].-w-wrapper{padding:0 1rem;}[data-lib="4492"] *{box-sizing: border-box;}[data-lib="4492"] .-w-ttl-wrapper{display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 1rem;
	margin-bottom:3.0rem;
	border-bottom:1px solid rgba(35,24,21,0.8);}[data-lib="4492"] .-w-en{font-size: 3.5rem;
	line-height: 1.0;
	margin-right:1.5rem;
	background-image: none !important;}[data-lib="4492"] .-w-right{display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;}[data-lib="4492"] h2.-w-general{margin-bottom:0;}[data-lib="4492"] h3.-w-general{margin-bottom: 1rem;}[data-lib="4492"] .-w-access-wrapper{display:-webkit-box;
	display:-ms-flexbox;
	display:flex;}[data-lib="4492"] .-w-art-access{margin-top:10rem;}[data-lib="4492"] .-w-access-wrapper h3.-w-general{text-align: left;
	line-height: 1;
	margin-bottom: 1rem;}[data-lib="4492"] .-w-access-wrap{padding: 2rem;
	margin-top: 2rem;
	background:rgba(35,24,21,0.1);}[data-lib="4492"] .-w-access-text{word-wrap:break-word;
	font-size: 1.6rem;
	line-height: 1.4;}[data-lib="4492"] .-w-summary-wrapper{width: calc(50% - 3.0rem);}[data-lib="4492"] table{width: 100%;
	margin: 0 auto 3.0rem;
	line-height: 1.4;}[data-lib="4492"] table tr th{width:20%;
	padding: 5px 0;
	vertical-align: middle;
	font-size: 1.6rem;
	text-align: left;
	font-weight: 400;}[data-lib="4492"] table tr td{width:85%;
	padding: 5px 15px;
	vertical-align: middle;
	font-size: 1.6rem;
	text-align: left;}[data-lib="4492"] .-w-gmap{width: calc(50% - 3.0rem);
	margin-left:auto;
	height: 35rem;}[data-lib="4492"] .-w-canvas{width: 100%;
	height: 100%;
	margin: 0;
	position: relative;}[data-lib="4492"] .-w-canvas iframe{position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;}[data-lib="4492"] .-w-more_btn{margin-top:4.0rem;}[data-lib="4492"] .-w-sp{display: none;}[data-lib="4492"] .-w-sns_icon{text-align: center;
	width: 60px;
	background: rgba(20,24,34,0.7);
	background-color: hsla(12.86,25%,0%,0.6);
	margin: 30px 10px 0px 10px;
	;
	border-radius: 100%;
	height: 53px;
	position: relative;}[data-lib="4492"] .-w-sns_icon:hover{opacity: 0.8;}[data-lib="4492"] .-w-anchor_link{display: none;}[data-lib="4492"] .-w-sns_icon a{display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;}[data-lib="4492"] .-w-sns_icon img{width: 25px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);}[data-lib="4492"] .-w-sns{display: flex;
	justify-content: center;}@media (max-width: 768px){[data-lib="4492"]{padding: 5.0vw 0;
	border-top: 1px solid #dddddd;}[data-lib="4492"] .-w-pc{display: none;}[data-lib="4492"] .-w-sp{display: block;}[data-lib="4492"] a[href^="tel:"]{color:#231815;}[data-lib="4492"] .-w-left{margin-bottom: 2.0rem;
	text-align: center;}[data-lib="4492"] .-w-en{margin-right:0;
	font-size: 6.5vw;
	background: url(/_img/ja/resource/9191/icon_b/) no-repeat center bottom;
	padding-bottom: 1.5rem;
	white-space: nowrap;}[data-lib="4492"] .-w-ttl-wrapper{-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding-bottom: 0rem;}[data-lib="4492"] .-w-access-wrapper{-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;}[data-lib="4492"] .-w-summary-wrapper{width: 100%;}[data-lib="4492"] table tr th{width:100%;
	display: block;
	padding: 3% 0 0;
	font-weight: 700;}[data-lib="4492"] table tr td{width:100%;
	display: block;
	padding: 3% 0;}[data-lib="4492"] .-w-gmap{width: 100%;
	height: 200px;
	margin-bottom: 5rem;}[data-lib="4492"] .-w-access-wrap{margin-top: 0;}}/*widget:4e2deb4d-ce40-46c8-a981-fa597c617b16*/[data-lib="4672"]{position: relative;
	top:0;
	z-index: 10;
	background: #ffffff;
	padding-bottom: 2rem;
	background:#f5f5f5;}[data-lib="4672"] .-w-contents{display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	position: relative;}[data-lib="4672"] .-w-contents:nth-child(even){-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;}[data-lib="4672"] .-w-image{width: 50%;}[data-lib="4672"] .-w-content{width: 50%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: block;
	z-index: 10000;
	width: 65%;}[data-lib="4672"] h2.-w-general{text-align: center;}[data-lib="4672"] h2.-w-general .-w-font_en{font-size: 4.8rem;
	margin-bottom:4.0rem;
	display: block;
	line-height: 1.0;}[data-lib="4672"] h2.-w-general .-w-font-jp{font-size: 2.1rem;
	display: block;
	line-height: 1.0;
	margin-bottom:2.0rem;}[data-lib="4672"] h3.-w-general{text-align: left;
	margin-bottom:2.0rem;}[data-lib="4672"] .-w-h2_content:nth-of-type(n+2){display: none;}[data-lib="4672"] .-w-content > section,[data-lib="4672"] 
.-w-content > div{padding: 3em 3em 3em 3em;
	background:rgba(245,245,245,0.8);
	position: relative;}[data-lib="4672"] .-w-contents .-w-image{position: absolute;
	top: 0;
	width: 70%;
	height: 100%;}[data-lib="4672"] .-w-contents:nth-of-type(3) .-w-image{left: 0;}[data-lib="4672"] .-w-contents:nth-of-type(odd) .-w-content{margin: 0 0 0 auto;
	padding:10.0rem 0 10.0rem 4.5rem;}[data-lib="4672"] .-w-contents:nth-of-type(4) .-w-image{right: 0;}[data-lib="4672"] .-w-contents:nth-of-type(even) .-w-content{margin: 0 auto 0 0;
	padding:10.0rem 4.5rem 10.0rem 0;}[data-lib="4672"] .-w-h2_content h2.-w-general .-w-font-jp{margin-bottom: 4rem;}[data-lib="4672"] .-w-h2_content{padding: 5rem 0 0;}[data-lib="4672"] .-w-anima-fade{opacity: 0;
	visibility: hidden;
	transform: translateY(40px);
	transition: all 1s;}[data-lib="4672"] .-w-anima-fade.-w-is-show{opacity: 1;
	visibility: visible;
	transform: translateY(0px);}[data-lib="4672"] .-w-more_btn a:hover{color: #fff !important;}@media (max-width: 768px){[data-lib="4672"] .-w-contents{-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;}[data-lib="4672"] .-w-ttl_wrap{padding: 0 6%;}[data-lib="4672"] .-w-contents:nth-child(even){-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;}[data-lib="4672"] .-w-image{width:100%;
	height:400px;}[data-lib="4672"] .-w-content{width: 100%;
	padding:5.0rem 2.5rem;}[data-lib="4672"] h2.-w-general{text-align: left;}[data-lib="4672"] h2.-w-general .-w-font_en{font-size: 7.6vw;}[data-lib="4672"] h2.-w-general .-w-font-jp{margin-bottom: 10px;
	font-size: 5.6vw;}[data-lib="4672"] .-w-h2_content{padding: 5vw 0 0;}[data-lib="4672"] h3.-w-general{margin-bottom: 2.0rem;
	font-size: 4.5vw;}[data-lib="4672"] .-w-content > section{padding: 5vw 6vw;}[data-lib="4672"] .-w-contents:nth-of-type(3){display: block !important;}[data-lib="4672"] .-w-contents .-w-image{width: 100%;}[data-lib="4672"] .-w-contents:nth-of-type(3) .-w-content{margin: 0 auto;
	padding: 5vw 6vw 5vw;}[data-lib="4672"] .-w-contents:nth-of-type(odd) .-w-content{margin: 0 auto;
	padding: 5vw 6vw 5vw;}[data-lib="4672"] .-w-contents:nth-of-type(even) .-w-content{margin: 0 auto;
	padding: 5vw 6vw 5vw;}[data-lib="4672"] [data-w-width="1"]{width: 100%;}[data-lib="4672"] span.-w-general.-w-font_en{background: url(/_img/ja/resource/9191/icon_b/) no-repeat center bottom !important;}}[data-instance="40608"] .-w-num40609 .-w-image{background-image:url(/_img/ja/cms/40609/image/_/session//);
	background-repeat:no-repeat;
	background-position: center center;
	background-size:cover;}[data-instance="40608"] .-w-num40610 .-w-image{background-image:url(/_img/ja/cms/40610/image/_/session//);
	background-repeat:no-repeat;
	background-position: center center;
	background-size:cover;}[data-instance="40608"]{background:url(/_img/ja/cms/40608/bg_image/___/session//);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;}[data-instance="40608"]::before{content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background:rgba(90,191,237,0.05);
	z-index: -1;}/*widget:c339f394-23a0-4f02-8d27-8cd84c074ae3*/[data-lib="1185"]{display: -webkit-box;
	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: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	background: #ffffff;
	background: hsla(0,0%,100%,1);
	position: relative;
	z-index: 10;}[data-lib="1185"] .-w-btn{width : 33.33333%;
	width : calc(100% / 3);
	overflow: hidden;
	flex-grow:3;}[data-lib="1185"] .-w-btn a{width:100%;
	height:100%;
	color:#ffffff;
	color: hsla(0,0%,100%,1);
	text-decoration: none;
	padding:12.0rem 0.5rem 6.0rem;
	font-size: 2.1rem;
	line-height: 1.4;
	position: relative;
	display: block;
	-o-transform: rotate(0.028deg);
	-moz-transform: rotate(0.028deg);
	-webkit-transform: rotate(0.028deg);
	text-align: center;}[data-lib="1185"] .-w-btn a:before{position: absolute;
	content: '';
	top: 0%;
	left:0;
	width: 101%;
	height: 101%;
	opacity: 1;
	background-color: rgba(0,0,0,.4);
	color: #ffffff;
	background: hsla(12.86,25%,0%,.4);
	color: hsla(0,0%,100%,1);
	transition: all .5s ease-in-out;
	z-index: 2;}[data-lib="1185"] .-w-btn a:hover:before{background-color: rgba(0,0,0, 0.8);
	background: hsla(12.86,25%,0%,.8);
	transition: background-color 0.4s;}[data-lib="1185"] .-w-btn span{position: relative;
	z-index: 2;
	display: block;
	margin-bottom: 2.5rem;}[data-lib="1185"] .-w-icon.icon-arrow:before{font-size: 3.0rem;
	content: "\e901";
	opacity: 0;
	transition: all 0.2s cubic-bezier(0.5, 0, 0.5, 1);
	font-size: 3.0rem;
	z-index: 2;
	position: relative;}[data-lib="1185"] a:hover .-w-icon.icon-arrow:before{margin-left: 5px;
	text-indent: 10px;
	opacity: 1;
	transition: all 0.2s cubic-bezier(0.5, 0, 0.5, 1);
	color: hsla(0,0%,100%,1);}@media (max-width: 1023px){[data-lib="1185"]{-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;}[data-lib="1185"] .-w-btn{width: 100%;
	margin: 0 auto;}[data-lib="1185"] .-w-btn:last-child{margin-bottom:0;}[data-lib="1185"] .-w-btn a{padding: 10.0rem 0.5rem 5.0rem;
	font-size: 1.9rem;
	line-height: 1.2;}[data-lib="1185"] .-w-icon.icon-arrow:before{opacity: 1;
	color: hsla(0,0%,100%,1);}}[data-instance="40791"] .-w-num40792{background-image:url(/_img/ja/cms/40792/bg_image/_/session//);
	background-repeat:no-repeat;
	background-position: center center;
	background-size:cover;}[data-instance="40791"] .-w-num40793{background-image:url(/_img/ja/cms/40793/bg_image/_/session//);
	background-repeat:no-repeat;
	background-position: center center;
	background-size:cover;}[data-instance="40791"] .-w-num40794{background-image:url(/_img/ja/cms/40794/bg_image/_/session//);
	background-repeat:no-repeat;
	background-position: center center;
	background-size:cover;}/*widget:d0507630-1089-4463-848f-a1226428347a*/[data-lib="2515"]{padding:3.0rem 0;
	box-sizing: border-box;
	position: relative;
	background: #f5f5f5;
	background:#f5f5f5;}[data-lib="2515"] *{box-sizing: border-box;}[data-lib="2515"] a{color:#313131;
	color: hsla(12.86,25%,19%,1);
	color:#231815;
	text-decoration: none;}[data-lib="2515"] a:hover{text-decoration: none;}[data-lib="2515"] .-w-wrapper{background-color: #fff;
	padding:3.0rem;
	line-height: 1.8;}@media (max-width: 768px){[data-lib="2515"] .-w-wrapper{padding: 3.0rem 6%;}}/*widget:375f5eb8-1c0e-49d5-be05-480a632bd9eb*/[data-lib="4444"]{position: relative;
	z-index: 20000;}[data-lib="4444"] a[href^="tel:"]{cursor: default;}[data-lib="4444"] a[href^="tel:"]:hover{text-decoration: none;}[data-lib="4444"] .-w-pc{display: block;}[data-lib="4444"] .-w-sp{display: none;}[data-lib="4444"] #-w-side_sns{display: none;}[data-lib="4444"] #-w-side_sns ul{list-style: none;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-direction:column;
	-webkit-flex-direction:column;
	flex-direction:column;
	-webkit-box-pack: space-around;
	-ms-flex-pack: space-around;
	justify-content: space-around;}[data-lib="4444"] #-w-side_sns ul li{margin-bottom:0;}[data-lib="4444"] #-w-side_sns ul li:last-child{margin-bottom:0;}[data-lib="4444"] #-w-side_sns.fixed{display: block;
	position: fixed;
	right: 0px;
	bottom: 110px;
	text-align: center;
	width: 50px;
	background: rgba(20,24,34,0.7);
	background-color: hsla(12.86,25%,0%,0.6);}[data-lib="4444"] #-w-side_sns.fixed a{display: block;
	padding: 20px 5px;}@media (max-width: 768px){[data-lib="4444"]{z-index: 100;}[data-lib="4444"] .-w-pc{display: none;}[data-lib="4444"] .-w-sp{display: block;}[data-lib="4444"] #-w-side_sns{display: none;}[data-lib="4444"] #-w-side_sns.fixed{display: block;
	position: relative;
	right: 0;
	top: 0;
	bottom:inherit;
	padding:0;
	z-index: 101;
	text-align: center;
	width: 100%;
	background: rgba(20,24,34,0.7);
	background-color: hsla(12.86,25%,0%,0.6);}[data-lib="4444"] #-w-side_sns ul{display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;}[data-lib="4444"] #-w-side_sns ul li{width: 24%;
	padding:0;
	margin-bottom:0;}[data-lib="4444"] #-w-side_sns ul li img{margin:0 auto;}[data-lib="4444"] #-w-side_sns ul li:last-child{display: none;}}/*widget:44a1a35d-7f8d-4245-b7b4-c745739912f3*/[data-lib="4192"]{position: relative;
	z-index: 103;}[data-lib="4192"] a[href^="tel:"]{cursor: default;
	text-decoration: none;}[data-lib="4192"] a[href^="tel:"]:hover{text-decoration: none;}[data-lib="4192"] .-w-pc{display: block;}[data-lib="4192"] .-w-sp{display: none;}[data-lib="4192"] #foot_fixed{opacity: 1;
	padding: 20px 0 10px;
	position: relative;
	text-align: center;
	transition: .4s linear;
	width: 100%;
	background: rgba(0,0,0,0.6);
	background-color: hsla(12.86,25%,0%,0.6);
	bottom:0;}[data-lib="4192"] #foot_fixed table{display: flex;
	justify-content: center;}[data-lib="4192"] #foot_fixed table td{vertical-align: middle;
	padding:0 25px;}[data-lib="4192"] #foot_fixed table td:first-child{width: 57px;
	max-width: 57px;
	padding: 0 7px 0 0;}[data-lib="4192"] #foot_fixed table td:first-child svg{width: 50px;}[data-lib="4192"] #foot_fixed table td:first-child svg path{width: 50px;
	height: 50px;
	fill: #ffffff;}[data-lib="4192"] #foot_fixed table td:nth-child(2){padding: 0 20px 0 0;}[data-lib="4192"] #foot_fixed table *::-ms-backdrop,[data-lib="4192"] #foot_fixed table  td .-w-tel_icon{height: 66px;}[data-lib="4192"] #foot_fixed table *::-ms-backdrop,[data-lib="4192"] #foot_fixed table  td .-w-tel_icon span svg{height: 66px;}[data-lib="4192"] #foot_fixed table td:nth-child(3){padding: 0;}[data-lib="4192"] #foot_fixed table td .-w-contact_btn{text-align: center;
	margin-right: 3rem;}[data-lib="4192"] #foot_fixed table td .-w-contact_btn span{width:100%;
	font-size:1.6rem;}[data-lib="4192"] #foot_fixed table td .-w-contact_btn a:hover{transition: all .4s;
	position: relative;}[data-lib="4192"] #foot_fixed table td .-w-contact_btn:last-child{margin-right: 0rem;}[data-lib="4192"] #foot_fixed table td .-w-tel{font-size: 3.4rem;
	line-height: 1.0;
	color: #ffffff;}[data-lib="4192"] #foot_fixed table td .-w-tel a{color: inherit;}[data-lib="4192"] #foot_fixed table td .-w-hours{text-align: left;
	font-size: 1.4rem;
	color: #ffffff;}[data-lib="4192"] #foot_fixed .-w-contact_btn{text-align: center;}[data-lib="4192"] #foot_fixed .-w-contact_btn a{font-size: 1.6rem;
	display: inline-block;
	position: relative;
	text-decoration: none;
	border: 2px solid;
	-webkit-transition: all .3s;
	transition: all .3s;
	padding:15px 0px 14px;
	line-height: 1;
	text-align: center;
	min-width: 320px;
	background-color:#ff6600;
	color:#ffffff;
	border-color:#ff6600;
	background-color:#6bc8f2;
	color:#ffffff;
	border-color:#6bc8f2;}[data-lib="4192"] #foot_fixed .-w-contact_btn a:hover{opacity: 1;
	background-color:#ffffff;
	color:#ff6600;
	background-color:#ffffff;
	color:#6bc8f2;}[data-lib="4192"] #foot_fixed .-w-contact_btn a span::before{background-color:#ffffff;
	color:#6bc8f2;}[data-lib="4192"] #foot_fixed .-w-contact_btn a:hover span::before{background-color:#6bc8f2;
	color:#ffffff;}[data-lib="4192"] #foot_fixed.fixed_on{position: fixed;}[data-lib="4192"] #foot_fixed.fixed_off{position: fixed;
	bottom:-100px;
	opacity: 0;}[data-lib="4192"] #foot_fixed.fixed_on .-w-foot-nav{padding-bottom:11rem;}[data-lib="4192"] .popup_on #foot_fixed.first{display:block;
	bottom: 0px;
	opacity: 1;
	transition: .4s linear;}[data-lib="4192"] #foot_fixed.popup_on{bottom: -100px;
	opacity: 0;
	padding: 5px 0 5px;
	bottom:-111px;}[data-lib="4192"] #foot_fixed.popup_on.appear{bottom: 0;
	opacity: 1;
	transition: .4s linear;}[data-lib="4192"] #foot_fixed.fixed_off.popup_on{position: fixed;
	bottom:-100px;
	opacity: 0;}[data-lib="4192"] .popup{position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: .6s;}[data-lib="4192"] .popup.is-show{opacity: 1;
	visibility: visible;}[data-lib="4192"] .popup-inner{height: calc(100vh - 60px);
	top: 60px;
	position: absolute;
	width: 100%;
	z-index: 2;}[data-lib="4192"] .popup-inner img{width: 100%;}[data-lib="4192"] .close-btn{position: absolute;
	right: 0;
	top: 0;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	cursor: pointer;
	z-index:10000;}[data-lib="4192"] .close-btn i{font-size: 30px;
	color: #333;
	background: rgba(255,255,255,1);
	color:#f5f5f5;
	background:#231815;}[data-lib="4192"] .black-background{position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.8);
	background-color: hsla(12.86,25%,0%,0.8);
	z-index: 1;
	cursor: pointer;}[data-lib="4192"] .pay_main{height: calc(100% - 30px);}[data-lib="4192"] .pay_main img{width: 100%;}[data-lib="4192"] .pay_head{height: 30px;
	position: relative;}[data-lib="4192"] .pay_disc{height: 100%;
	text-align:left;}[data-lib="4192"] .pay_disc p{height: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	color: #ffffff;
	background:#f5f5f5;
	text-align: center;}[data-lib="4192"] .pay_disc .pay_shop{font-size: 4vw;
	display: contents;
	display: none;}[data-lib="4192"] .pay_head > .pay_image{float:left;
	width: 30%;
	height: 100%;
	position: relative;
	display: none;}[data-lib="4192"] .pay_image img{height: auto;
	width: 70%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);}[data-lib="4192"] .pay_body{padding: 2% 5%;
	box-sizing: border-box;
	color: #ffffff;
	color: hsla(12.86,25%,100%,1);
	height: 90%;}[data-lib="4192"] .pay_body_box{height: 100%;
	border-radius: 1%;
	box-sizing: border-box;}[data-lib="4192"] .pay_btn,[data-lib="4192"]  .pay_btn_empty{box-sizing: border-box;
	border-radius: 5px;
	padding: 1%;
	margin: 0 2% 2% 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;}[data-lib="4192"] .pay_btn{background: #ffffff;
	background-color: hsla(12.86,25%,100%,1);}[data-lib="4192"] .pay_btn a,[data-lib="4192"]  .pay_btn_empty a{display: block;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;}[data-lib="4192"] .pay_btn img,[data-lib="4192"]  .pay_btn_empty img{width: auto;}[data-lib="4192"] .pay_wrap{overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	height: 85%;}[data-lib="4192"] .pay_btn_empty:last-child{margin-right: 0;}[data-lib="4192"] .pay_btn_empty{border: 5px solid;
	border-color: rgba(255,255,255,0.5);
	border-color:rgba(35,24,21,0.5);
	padding: 3%;}[data-lib="4192"] .btn_layout12 .pay_btn{width: calc(96% / 3);
	height: calc(94% / 4);}[data-lib="4192"] .btn_layout12 .pay_btn:nth-child(3n){margin-right: 0;}[data-lib="4192"] .btn_layout11 .pay_btn,[data-lib="4192"]  .btn_layout11 .pay_btn_empty{width: calc(96% / 3);
	height: calc(94% / 4);}[data-lib="4192"] .btn_layout11 .pay_btn:nth-child(3n){margin-right: 0;}[data-lib="4192"] .btn_layout10 .pay_btn,[data-lib="4192"]  .btn_layout10 .pay_btn_empty{width: calc(96% / 3);
	height: calc(94% / 4);}[data-lib="4192"] .btn_layout10 .pay_btn:nth-child(3n){margin-right: 0;}[data-lib="4192"] .btn_layout9 .pay_btn{width: calc(96% / 3);
	height: calc(96% / 3);}[data-lib="4192"] .btn_layout9 .pay_btn:nth-child(3n){margin-right: 0;}[data-lib="4192"] .btn_layout8 .pay_btn{width: calc(98% / 2);
	height: calc(94% / 4);}[data-lib="4192"] .btn_layout8 .pay_btn:nth-child(2n){margin-right: 0;}[data-lib="4192"] .btn_layout7 .pay_btn,[data-lib="4192"]  .btn_layout7 .pay_btn_empty{width: calc(98% / 2);
	height: calc(94% / 4);}[data-lib="4192"] .btn_layout7 .pay_btn:nth-child(2n){margin-right: 0;}[data-lib="4192"] .btn_layout6 .pay_btn{width: calc(98% / 2);
	height: calc(96% / 3);}[data-lib="4192"] .btn_layout6 .pay_btn:nth-child(2n){margin-right: 0;}[data-lib="4192"] .btn_layout5 .pay_btn,[data-lib="4192"]  .btn_layout5 .pay_btn_empty{width: calc(98% / 2);
	height: calc(96% / 3);}[data-lib="4192"] .btn_layout5 .pay_btn:nth-child(2n){margin-right: 0;}[data-lib="4192"] .btn_layout4 .pay_btn{width: calc(98% / 2);
	height: calc(98% / 2);}[data-lib="4192"] .btn_layout4 .pay_btn:nth-child(2n){margin-right: 0;}[data-lib="4192"] .btn_layout3 .pay_btn{margin-right: 0;
	width: 100%;
	height: calc(96% / 3);}[data-lib="4192"] .btn_layout2 .pay_btn{width: 100%;
	height: calc(98% / 2);}[data-lib="4192"] .btn_layout2 .pay_wrap{height: 50%;
	margin: 5% 0 10%;}[data-lib="4192"] .btn_layout1 .pay_btn{margin-right: 0;
	width: 100%;
	height: 100%;}[data-lib="4192"] .btn_layout1 .pay_wrap{height: 50%;
	margin: 5% 0 10%;}[data-lib="4192"] .btn_layout1 .pay_btn img,[data-lib="4192"] 
.btn_layout5 .pay_btn img,[data-lib="4192"] 
.btn_layout5 .pay_btn_empty img,[data-lib="4192"] 
.btn_layout6 .pay_btn img,[data-lib="4192"] 
.btn_layout7 .pay_btn img,[data-lib="4192"] 
.btn_layout7 .pay_btn_empty img,[data-lib="4192"] 
.btn_layout8 .pay_btn img{height: 100%;}[data-lib="4192"] .btn_layout2 .pay_btn img,[data-lib="4192"] 
.btn_layout3 .pay_btn img,[data-lib="4192"] 
.btn_layout4 .pay_btn img,[data-lib="4192"] 
.btn_layout9 .pay_btn img,[data-lib="4192"] 
.btn_layout10 .pay_btn img,[data-lib="4192"] 
.btn_layout11 .pay_btn img,[data-lib="4192"] 
.btn_layout12 .pay_btn img{width: auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);}[data-lib="4192"] .pay_discription{text-align: center;
	width: 100%;
	height: 10%;
	display: table;
	padding-bottom: 5%;}[data-lib="4192"] .pay_discription.off{display:none;}[data-lib="4192"] .pay_discription > p{display: table-cell;
	vertical-align: middle;
	font-size: 4vw;}[data-lib="4192"] .pay_discription b{font-size: 6vw;}[data-lib="4192"] .pay_discription > p.disc_bottom{display: table-cell;
	font-size: 3.5vw;}[data-lib="4192"] .pay_kome{font-size: 3vw;}[data-lib="4192"] #footer{z-index:10002;}[data-lib="4192"] .table_pay_off{display:block;}[data-lib="4192"] .table_pay_on{display:none;}[data-lib="4192"] #foot_fixed .table_pay_on table td{width:33%;
	max-width:none;
	display: table-cell;
	padding:0;
	font-size: 3vw;}[data-lib="4192"] #foot_fixed .table_pay_on table td i{font-size: 10vw;
	color:#ff6600;
	color:#6bc8f2;}[data-lib="4192"] #foot_fixed .table_pay_on table td a{color:#fff;
	color:#ffffff;
	text-decoration:none;}[data-lib="4192"] .pay_click button{background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	color: #fff;
	color:#ffffff;
	font-size: 3vw;}[data-lib="4192"] .pay_btn.pay_off{display:none;}[data-lib="4192"] .pay_btn_img.off,[data-lib="4192"] 
.pay_btn_img2.off{display: none;}[data-lib="4192"] .pay_btn_empty.off{display: none;}[data-lib="4192"][data-cms_editable="true"]{position: initial;}[data-lib="4192"][data-cms_editable="false"]{position: initial;}[data-lib="4192"][data-cms_editable="true"] #foot_fixed.popup_on{position: absolute;
	bottom: 0;
	z-index: 1000;}[data-lib="4192"][data-cms_editable="false"] #foot_fixed.popup_on{position: absolute;
	bottom: 0;
	z-index: 1000;}[data-lib="4192"] .-w-btn-wrapper{display: flex;
	justify-content: space-between;}@media (max-width: 768px){[data-lib="4192"] .-w-pc{display: none;}[data-lib="4192"] .-w-sp{display: block;}[data-lib="4192"] #foot_fixed.fixed_sp_on{position: fixed;}[data-lib="4192"] #foot_fixed.fixed_sp_on.popup_off{position: fixed;
	bottom: 0;
	opacity: 1;}[data-lib="4192"] #foot_fixed.fixed_sp_off{position: fixed;
	bottom:-100vh!important;
	opacity: 0!important;}[data-lib="4192"] #foot_fixed.popup_on{padding: 1.0rem 0.5rem;}[data-lib="4192"] #foot_fixed{padding:1rem;}[data-lib="4192"] #foot_fixed table{width:100%;}[data-lib="4192"] #foot_fixed table td:first-child{display: none;}[data-lib="4192"] #foot_fixed table td{width:50%;}[data-lib="4192"] #foot_fixed table td:nth-child(2){padding: 0 2rem 0 0;}[data-lib="4192"] #foot_fixed .table_pay_on.on table td:first-child{display: table-cell;}[data-lib="4192"] #foot_fixed .table_pay_on.on table td{width:33%;}[data-lib="4192"] #foot_fixed.fixed_sp_on.popup_on{position: fixed;
	bottom: -100px;
	opacity: 0;}[data-lib="4192"] #foot_fixed.fixed_sp_on.popup_on.appear{bottom: 0;
	opacity: 1;
	transition: .4s linear;}[data-lib="4192"] #foot_fixed tr td .-w-tel{font-size:3.5vw;}[data-lib="4192"] #foot_fixed tr td .-w-contact_btn{margin-right: 0rem;}[data-lib="4192"] #foot_fixed tr td .-w-contact_btn + .-w-contact_btn:last-child{margin: 1rem 0 0;}[data-lib="4192"] #foot_fixed tr td .-w-contact_btn a{min-width: 100%;
	padding: 9px 0px 10px;
	min-width: 230px;}[data-lib="4192"] #foot_fixed table td .-w-contact_btn span{font-size:3.0vw;
	font-size: 2.5vw;}[data-lib="4192"] #foot_fixed table td .-w-hours{text-align: center;
	font-size: 3vw;}[data-lib="4192"] .table_pay_off,[data-lib="4192"] 
.table_pay_on{display:none;}[data-lib="4192"] .table_pay_off.off{display:block;}[data-lib="4192"] .table_pay_on.on{display:block;}[data-lib="4192"] #foot_fixed table .-w-contact_btn a{font-size: 2vw;}[data-lib="4192"] #foot_fixed table .-w-contact_btn a span{font-size: 3vw;
	padding: 0 3.2vw!important;}[data-lib="4192"] .-w-btn-wrapper{flex-direction: column;}}@media (max-width: 320px){[data-lib="4192"] #foot_fixed tr td .-w-contact_btn a span::before{content: '';
	height: 0px;
	padding-left: 0px;
	width: 0px;
	margin-right: 0px;
	border-radius: 0px;
	font-size: 0px;}}@media (min-width: 769px) and (max-width: 1023px){[data-lib="4192"] #foot_fixed table .-w-contact_btn a{min-width: 230px;}[data-lib="4192"] #foot_fixed table td .-w-tel{font-size: 2.4rem;}}/*widget:12bfd301-7840-428c-814e-8765292aec62*/[data-lib="8284"]{padding:0;
	position: relative;
	z-index: 100;
	background-color:#f5f5f5;}[data-lib="8284"] a[href^="tel:"]{cursor: default;}[data-lib="8284"] a[href^="tel:"]:hover{text-decoration: none;}[data-lib="8284"] .-w-pc{display: block;}[data-lib="8284"] .-w-sp{display: none;}[data-lib="8284"]::before{content: "";
	background-color: rgba(0,0,0,0.3);
	background-color: hsla(12.86,25%,0%,0.5);
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	z-index: -1;
	top:0;}[data-lib="8284"] .-w-wrap_in{display:-webkit-box;
	display:-ms-flexbox;
	display:flex;}[data-lib="8284"] .-w-foot-logo{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;
	width: 15%;
	padding:0 10px;
	display: none;}[data-lib="8284"] .-w-foot-main{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;
	-ms-flex-direction:column;
	-webkit-flex-direction:column;
	flex-direction:column;
	width: 25%;
	width: 40%;
	padding:60px 0;}[data-lib="8284"] .-w-more_btn{width: 80%;}[data-lib="8284"] .-w-more_btn a{width: 100%;
	max-width: 320px;
	padding: 20px 0;
	font-size: 1.8rem;}[data-lib="8284"] .-w-more_btn a span.material-icons{width:100%;
	font-weight: 700;
	font-size: inherit;}[data-lib="8284"] .-w-more_btn a span.material-icons::before{content: 'keyboard_arrow_right';
	font-family: "Material Icons";
	height: 20px;
	line-height: 1.2;
	padding-left: 1px;
	box-sizing: border-box;
	font-weight: 700;
	width: 20px;
	margin-right: 10px;
	border-radius: 10px;
	vertical-align: baseline;
	font-size: 1.8rem;
	display: inline-block;}[data-lib="8284"] .-w-more_btn a span::before{background-color:#ffffff;
	color:#6bc8f2;}[data-lib="8284"] .-w-more_btn a:hover span::before{background-color:#6bc8f2;
	color:#ffffff;}[data-lib="8284"] .-w-foot-nav{width:60%;
	padding:60px 30px;
	background:url(/_img/ja/resource/9/common_bg/___/) no-repeat;
	background-size:cover;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-direction:column;
	-webkit-flex-direction:column;
	flex-direction:column;
	-webkit-box-pack: space-between;
	-ms-flex-pack: space-between;
	justify-content: space-between;
	position: relative;}[data-lib="8284"] .-w-foot-nav:before{content: "";
	width: 100%;
	height: 100%;
	background:rgba(245,245,245,0.6);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;}[data-lib="8284"] .-w-flogo{margin-bottom: 25px;}[data-lib="8284"] .-w-flogo a{display: block;}[data-lib="8284"] .-w-flogo img{padding:0px;
	background:none;
	object-fit: contain;
	width: 100%;
	height: 100%;
	max-height: 80px;
	max-width: 300px;}[data-lib="8284"] .-w-address{font-size: 2.0rem;
	margin-bottom: 15px;
	color: #ffffff;
	color:#ffffff;
	text-align: center;}[data-lib="8284"] .-w-address span{display:inline-block;}[data-lib="8284"] .-w-tel{font-size: 4.0rem;
	font-weight: 400;
	line-height: 1.0;}[data-lib="8284"] .-w-tel a{color: #ffffff;
	color:#ffffff;
	text-decoration: none;}[data-lib="8284"] .-w-time{font-size: 2.0rem;
	letter-spacing: 0.2em;
	color: #ffffff;
	color:#ffffff;}[data-lib="8284"] .-w-line-btn{margin-bottom: 10px;}[data-lib="8284"] .-w-line-btn-text{font-size: 1.8rem;
	text-align: center;}[data-lib="8284"] .-w-fnav{margin:0 auto;
	position: relative;
	z-index: 1;}[data-lib="8284"] .-w-fnav ul{display: flex;
	flex-wrap: wrap;
	list-style:none;}[data-lib="8284"] .-w-fnav ul li{margin: 0 10px 20px;
	font-size: 1.4rem;}[data-lib="8284"] .-w-fnav ul li.-w-link10{display: none;}[data-lib="8284"] .-w-fnav ul li a{color: #ffffff;
	color:#231815;
	text-decoration: none;}[data-lib="8284"] .-w-fnav ul li a:hover{color: #ffffff;
	color:#231815;
	text-decoration: underline;}[data-lib="8284"] .-w-copyright{color: #ffffff;
	color:#231815;
	text-align: left;
	font-size:1.6rem;
	margin:0 10px;
	position: relative;
	z-index: 1;}[data-lib="8284"] .-w-copyright a{color: #ffffff;
	color:#231815;
	text-decoration: none;}[data-lib="8284"] .-w-sp-tel{display: none;}[data-lib="8284"] .-w-fixed_off .-w-foot-logo,[data-lib="8284"] 
.-w-fixed_off .-w-foot-main,[data-lib="8284"] 
.-w-fixed_off .-w-foot-nav{padding-bottom:5rem;}[data-lib="8284"] .-w-fixed_on .-w-foot-logo,[data-lib="8284"] 
.-w-fixed_on .-w-foot-main,[data-lib="8284"] 
.-w-fixed_on .-w-foot-nav{padding-bottom:11rem;}@media (max-width: 768px){[data-lib="8284"]{padding: 5.0vw 0 0;}[data-lib="8284"] .-w-pc{display: none;}[data-lib="8284"] .-w-sp{display: block;}[data-lib="8284"] .-w-foot-main{padding:0 2rem;
	width: 100%;}[data-lib="8284"] .-w-address{text-align: center;
	padding: 0 3rem;
	font-size: 3.5vw;}[data-lib="8284"] .-w-line-btn-text{font-size: 1.4rem;}[data-lib="8284"] .-w-fnav{display: none;}[data-lib="8284"] .-w-line-btn img{max-width:60%;
	margin:0 auto;}[data-lib="8284"] .-w-foot-nav{position: relative;
	background:none;
	width: 100%;}[data-lib="8284"] .-w-sp-tel{width:100%;
	display: block;
	position: fixed;
	left:0;
	bottom:0;
	padding: 1rem;
	background:rgba(0,0,0,0.5);
	z-index: 2;}[data-lib="8284"] .-w-tel{font-size: 9vw;}[data-lib="8284"] .-w-tel-wrap{width: 80%;
	margin: 0 auto;
	color:#231815;
	background: url(/_img/ja/cms_parts_library//image/_/) no-repeat left center;
	padding-left: 60px;}[data-lib="8284"] .-w-tel-wrap a{color:#231815;
	text-decoration: none;}[data-lib="8284"] .-w-tel-wrap a:hover{text-decoration: underline;}[data-lib="8284"] .-w-tel-wrap a[href^="tel:"]{cursor: default;}[data-lib="8284"] .-w-tel-wrap a[href^="tel:"]:hover{text-decoration: none;}[data-lib="8284"] .-w-number{font-size:3.0rem;
	line-height: 1.0;
	margin-bottom: 5px;}[data-lib="8284"] .-w-time{font-size:1.4rem;
	margin-bottom:0;}[data-lib="8284"] .-w-fixed_on .-w-foot-nav{background: rgba(0, 0, 0, 0.6);
	padding:15px 1rem 7rem;
	margin-top: 3rem;}[data-lib="8284"] .-w-fixed_on .-w-foot-nav .-w-copyright{line-height: 1;
	font-size:1.4rem;}[data-lib="8284"] .-w-more_btn{width:100%;}[data-lib="8284"] .-w-more_btn a{width: 100%;}[data-lib="8284"] .-w-copyright{text-align: center;
	color: #ffffff;
	color:#f5f5f5;}[data-lib="8284"] .-w-copyright a{color: #ffffff;
	color:#f5f5f5;}[data-lib="8284"] .-w-fixed_off .-w-foot-logo,[data-lib="8284"] 
.-w-fixed_off .-w-foot-main,[data-lib="8284"] 
.-w-fixed_off .-w-foot-nav,[data-lib="8284"] 
.-w-fixed_on .-w-foot-logo,[data-lib="8284"] 
.-w-fixed_on .-w-foot-main{padding-bottom:1rem;}[data-lib="8284"] .-w-wrap_in{flex-direction: column;}[data-lib="8284"] .-w-foot-logo{width: 100%;
	padding:0;}}@media (max-width: 1169px) and (min-width: 769px){[data-lib="8284"] .-w-foot-logo{width: 15%;}[data-lib="8284"] .-w-foot-main{width: 35%;}[data-lib="8284"] .-w-foot-nav{width: 50%;}[data-lib="8284"] .-w-address{font-size: 1.5rem;}[data-lib="8284"] .-w-tel{font-size: 3.0rem;}[data-lib="8284"] .-w-more_btn a{font-size: 1.5rem;}}/*layout:25*/table {
    border-collapse: collapse;
}
table th, table td {
    border: 1px solid transparent;
}

/* フォーム用 */
.form-table .table {
  border-collapse: collapse;
}

.form-table table p {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 60px auto 40px;
}

input[type="submit"],
input[type="text"],
select,
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
}


input[type="text"],
textarea {
  background: #fff;
  border:1px solid #eee;
  display: inline-block;
  font-size: 16px;
  padding: 12px 15px;
  width: 480px;
  transition: 0.8s;
  border-radius: 0;
}

input[type="text"]:focus,
textarea:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

textarea[name="content"] {
  display: inline-block;
  width: 100%;
  height: 200px;
}

input::placeholder,
textarea::placeholder {
  color: #ccc;
}

::-webkit-input-placeholder {
  color: #ccc;
  opacity: 1;
}

::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}

.form-table{
    background: #f5f5f5;
    background:rgba(245,245,245,1);
    padding: 2%;
    border-radius: 12px;
}

.form-table table {
	width: 100%;
	margin: 0 auto 20px;
	border-collapse: collapse;
	table-layout: fixed;
}

.form-table 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;
}
.form-table table tr th {
    background: #cecece;
    background:rgba(107,200,242,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;
}
.form-table table tr td {
    border-top: 1px solid ;
    border-color: #dddddd;
    border-color:#6bc8f2;
    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;
}
@media (max-width: 1169px) {
    .form-table table tr th {
        min-width: auto;
    }
    .form-table table tr td {
        min-width: auto;
    }
}
@media (max-width: 768px) {
    .form-table {
        background: none;
    }
    .form-table table tr th {
        display: block;
        width: 100%;
        border-bottom: none;
        text-align:left;
        margin-bottom: 5px;
        background: none;
        color: #2d65af;
        color:rgba(107,200,242,1);
        padding: 0;
        min-width: auto;
    }
    .form-table 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;
    }
    .form-table table tr:last-child td {
        border-bottom: 1px solid;
        border-radius: none;
    }
}

input.owlet-input-name-sei {
    margin-right: 10px;
}

input.owlet-input-name-sei,input.owlet-input-name-mei {
    width: 30%;
}

input.owlet-input-tel1, input.owlet-input-tel2, input.owlet-input-tel3 {
    width: 30%;
}

input.owlet-input-tel1 {
    margin-right: 5px;
}

input.owlet-input-tel2 {
    margin: 0 5px;
}

input.owlet-input-tel3 {
    margin-left: 5px;
}

.owlet-rules.owlet-rules-6 {
    width: 800px;
    margin: 0 auto;
    max-width: 100%;
    padding-top: 50px;
}

.owlet-rules-title {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

.owlet-rules-body {
    height: 300px;
    overflow: auto;
    border: 1px solid;
    padding: 30px;
    background: #fff;
}

.owlet-rules-agree {
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
}

.form-table td label{
    margin-right: 5px;
}

.form_button {
    padding-top: 50px;
    text-align: center;
    display : -webkit-box;
    display : -webkit-flex;
    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;
}

.form_button input {
    display: inline-block;
    padding: 5px 20px;
    text-decoration: none;
    color: #f2b043;
    border: solid 2px;
    border-color: #f2b043;
    border-radius: 3px;
    transition: .4s;
    font-size: 20px;
    background: #fff;
}
.form_button input:hover {
    background: #6bc8f2;
    color: #fff;
    cursor: pointer;
}

.form_button a {
    display: inline-block;
    padding: 2px 10px;
    text-decoration: none;
    color: #f2b043;
    border: solid 2px;
    border-color: #f2b043;
    border-radius: 3px;
    transition: .4s;
    font-size: 16px;
    background: #fff;
    margin-right: 10px;
}
.form_button a:hover {
    background: #6bc8f2;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .form-table{
        padding-top: 100px;
    }
    .form-table table{
        width: 96%;
        margin: 0 auto;
    }
    .form-table th,.form-table td {
        display: block;
        width: 80%;
        margin: 0 auto;
        border-bottom: none;
    }
    input[type="text"], textarea{
        width: 100%;
    }
    input.owlet-input-name-sei,input.owlet-input-name-mei {
            width: 30%;
        }

        input.owlet-input-tel1, input.owlet-input-tel2, input.owlet-input-tel3 {
            width: 30%;
        }
}

table.input_calendar {
	width: 100%;
	margin: 0 auto 20px;
	border-collapse: collapse;
	table-layout: fixed;
}
table.input_calendar 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;
}
table.input_calendar tr th {
    background: #cecece;
    background:rgba(107,200,242,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: 0;
	min-width: 250px;
}
table.input_calendar tr td {
    border-top: 1px solid ;
    border-color: #dddddd;
    border-color:#6bc8f2;
    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;
}/*layout:152*/@media (max-width: 768px) {
    h2.-w-general{
        font-size: 5.6vw;
        letter-spacing: 0px!important;
    }
    h3.-w-general{
        font-size: 3.8vw;
        letter-spacing: 0px;
    }
    h4.-w-general {
        font-size: 3.0vw;
    }
}